Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/packages/general-comments/www/url-add-2-oracle.xql'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/contrib/packages/general-comments/www/url-add-edit-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/general-comments/www/Attic/url-add-edit-oracle.xql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/contrib/packages/general-comments/www/url-add-edit-oracle.xql 3 Jul 2003 18:51:09 -0000 1.1 @@ -0,0 +1,25 @@ + + + + oracle8.1.6 + + + + + begin + :1 := content_extlink.new ( + name => :name, + url => :url, + label => :label, + parent_id => :parent_id, + extlink_id => :attach_id, + creation_user => :user_id, + creation_ip => :creation_ip + ); + end; + + + + + + Index: openacs-4/contrib/packages/general-comments/www/url-add-edit-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/general-comments/www/Attic/url-add-edit-postgresql.xql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/contrib/packages/general-comments/www/url-add-edit-postgresql.xql 3 Jul 2003 18:51:09 -0000 1.1 @@ -0,0 +1,31 @@ + + + + postgresql7.1 + + + + declare + v_extlink_id cr_extlinks.extlink_id%TYPE; + + begin + select content_extlink__new ( + /* name => */ :name, + /* url => */ :url, + /* label => */ :label, + /* description */ NULL, + /* parent_id => */ :parent_id, + /* extlink_id => */ :attach_id, + /* creation_date */ now(), + /* creation_user => */ :user_id, + /* creation_ip => */ :creation_ip + ) into v_extlink_id; + + return v_extlink_id; + end; + + + + + +