Index: openacs-4/packages/calendar-portlet/tcl/calendar-full-portlet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar-portlet/tcl/calendar-full-portlet-procs.tcl,v diff -u -N -r1.13 -r1.14 --- openacs-4/packages/calendar-portlet/tcl/calendar-full-portlet-procs.tcl 7 Aug 2017 23:48:05 -0000 1.13 +++ openacs-4/packages/calendar-portlet/tcl/calendar-full-portlet-procs.tcl 10 Jul 2018 15:53:42 -0000 1.14 @@ -40,11 +40,15 @@ ad_proc -public get_pretty_name { } { + Get portlet pretty name. + } { return [parameter::get_from_package_key -package_key [my_package_key] -parameter full_portlet_pretty_name] } ad_proc -public link { } { + Get portlet link (empty). + } { return "" } @@ -55,7 +59,7 @@ {-scoped_p ""} {-param_action "overwrite"} } { - Adds a "full" calendar PE to the given portal + Adds a "full" calendar PE to the given portal. @param portal_id The page to add self to @param calendar_id The new calendar_id to add @@ -84,7 +88,7 @@ {-calendar_id:required} } { Removes a "full" calendar PE from the given page or - a calendar_id from its params + a calendar_id from its params. } { portal::remove_element_parameters \ -portal_id $portal_id \ @@ -96,6 +100,7 @@ ad_proc -public show { cf } { + Show full calendar portlet. } { portal::show_proc_helper \ -package_key [my_package_key] \ Index: openacs-4/packages/calendar-portlet/tcl/calendar-list-portlet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar-portlet/tcl/calendar-list-portlet-procs.tcl,v diff -u -N -r1.7 -r1.8 --- openacs-4/packages/calendar-portlet/tcl/calendar-list-portlet-procs.tcl 7 Aug 2017 23:48:05 -0000 1.7 +++ openacs-4/packages/calendar-portlet/tcl/calendar-list-portlet-procs.tcl 10 Jul 2018 15:55:14 -0000 1.8 @@ -40,11 +40,15 @@ ad_proc -public get_pretty_name { } { + Get portlet pretty name. + } { return "\#calendar-portlet.Schedule\#" } ad_proc -public link { } { + Get portlet link (empty). + } { return "" } @@ -54,7 +58,7 @@ {-calendar_id:required} {-scoped_p ""} } { - Adds a "list" calendar PE to the given portal + Adds a "list" calendar PE to the given portal. @param portal_id The page to add self to @param calendar_id The new calendar_id to add @@ -80,7 +84,7 @@ calendar_id } { Removes a "list" calendar PE from the given page or - a calendar_id from its params + a calendar_id from its params. } { portal::remove_element_parameters \ -portal_id $portal_id \ @@ -92,6 +96,7 @@ ad_proc -public show { cf } { + Show list calendar portlet. } { portal::show_proc_helper \ -package_key [my_package_key] \ Index: openacs-4/packages/calendar-portlet/tcl/calendar-portlet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar-portlet/tcl/calendar-portlet-procs.tcl,v diff -u -N -r1.34 -r1.35 --- openacs-4/packages/calendar-portlet/tcl/calendar-portlet-procs.tcl 7 Aug 2017 23:48:05 -0000 1.34 +++ openacs-4/packages/calendar-portlet/tcl/calendar-portlet-procs.tcl 10 Jul 2018 15:59:00 -0000 1.35 @@ -38,13 +38,17 @@ ad_proc -public get_pretty_name { } { + Get portlet pretty name. + } { return [parameter::get_from_package_key \ -package_key [my_package_key] \ -parameter pretty_name] } ad_proc -public link { } { + Get portlet link (empty). + } { return "" } @@ -58,7 +62,7 @@ {-param_action "overwrite"} } { Adds a (normal) calendar PE to the given page or appends a - calendar_id to the current calendar portlet + calendar_id to the current calendar portlet. @param portal_id The page to add self to @param calendar_id The new calendar_id to add @@ -101,10 +105,10 @@ {-calendar_id:required} } { Removes a calendar PE from the given page or just - the given calendar_id + the given calendar_id. - @param portal_id The page to remove self from - @param calendar_id + @param portal_id The page to remove self from + @param calendar_id } { portal::remove_element_parameters \ -portal_id $portal_id \ @@ -116,6 +120,7 @@ ad_proc -public show { cf } { + Show calendar portlet. } { portal::show_proc_helper \ -package_key [my_package_key] \