Index: openacs-4/packages/general-comments/tcl/general-comments-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/general-comments/tcl/general-comments-procs.tcl,v diff -u -r1.11 -r1.12 --- openacs-4/packages/general-comments/tcl/general-comments-procs.tcl 1 Nov 2003 08:45:38 -0000 1.11 +++ openacs-4/packages/general-comments/tcl/general-comments-procs.tcl 25 Feb 2004 10:40:46 -0000 1.12 @@ -207,7 +207,8 @@ { -link_text {Add a comment} } -context_id { -category {} } - object_id + { -link_attributes "" } + object_id {return_url {}} } { Generates an html link to add a comment to an object. @@ -218,6 +219,9 @@ @param link_text The text to display for the link. @param context_id The context_id for the comment. @param category A category to associate comment to. + @param link_attributes Some additional parameters for the link. Could be used + to set the link title and other things like that. Ex. -link_attributes + { title="My link title" } } { # get the package url set package_url [general_comments_package_url] @@ -229,7 +233,7 @@ if { ![info exists object_name] } { set object_name [acs_object_name $object_id] } if { ![info exists context_id] } { set context_id $object_id } - set html "$link_text" + set html "$link_text" return $html }