Index: openacs-4/packages/dotlrn-static/tcl/dotlrn-static-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-static/tcl/dotlrn-static-procs.tcl,v diff -u -r1.15 -r1.16 --- openacs-4/packages/dotlrn-static/tcl/dotlrn-static-procs.tcl 9 May 2002 23:59:52 -0000 1.15 +++ openacs-4/packages/dotlrn-static/tcl/dotlrn-static-procs.tcl 10 May 2002 06:35:15 -0000 1.16 @@ -176,4 +176,39 @@ } { } + ad_proc -public add_portlet { + args + } { + A helper proc to add the underlying portlet to the given portal. + + @param args a list-ified array of args defined in add_applet_to_community + } { + ns_log notice "** Error in [get_pretty_name]: 'add_portlet' not implemented!" + ad_return_complaint 1 "Please notifiy the administrator of this error: + ** Error in [get_pretty_name]: 'add_portlet' not implemented!" + } + + ad_proc -public remove_portlet { + args + } { + A helper proc to remove the underlying portlet from the given portal. + + @param args a list-ified array of args defined in remove_applet_from_community + } { + ns_log notice "** Error in [get_pretty_name]: 'remove_portlet' not implemented!" + ad_return_complaint 1 "Please notifiy the administrator of this error: + ** Error in [get_pretty_name]: 'remove_portlet' not implemented!" + } + + ad_proc -public clone { + old_community_id + new_community_id + } { + Clone this applet's content from the old community to the new one + } { + ns_log notice "** Error in [get_pretty_name] 'clone' not implemented!" + ad_return_complaint 1 "Please notifiy the administrator of this error: + ** Error in [get_pretty_name]: 'clone' not implemented!" + } + }