Index: openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-portlet-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-portlet-procs.tcl,v
diff -u -r1.13 -r1.14
--- openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-portlet-procs.tcl	7 Aug 2017 23:48:10 -0000	1.13
+++ openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-portlet-procs.tcl	11 Jul 2018 08:35:07 -0000	1.14
@@ -35,14 +35,17 @@
         return "dotlrn-portlet"
     }
 
-
     ad_proc -public get_pretty_name {
     } {
+        Get the pretty name.
+    } {
         return "#dotlrn-portlet.members_portlet_pretty_name#"
     }
 
     ad_proc -public link {
     } {
+        Get the link. This is currently empty.
+    } {
 	return ""
     }
 
@@ -52,7 +55,7 @@
 	{-community_id:required}
     } {
         Adds the dotlrn "members" portlet to the given portal.
-        Pass along the community_id
+        Pass along the community_id.
     } {
         return [portal::add_element_parameters \
                     -pretty_name [get_pretty_name] \
@@ -67,7 +70,7 @@
     ad_proc -public remove_self_from_page {
         {-portal_id:required}
     } {
-	Removes the dotlrn "members"  PE from the given portal
+	Removes the dotlrn "members" PE from the given portal.
     } {
         portal::remove_element \
             -portal_id $portal_id \
@@ -77,6 +80,7 @@
     ad_proc -public show {
 	 cf
     } {
+        Show the members portlet.
     } {
         portal::show_proc_helper \
             -package_key [my_package_key] \
Index: openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-staff-portlet-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-staff-portlet-procs.tcl,v
diff -u -r1.11 -r1.12
--- openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-staff-portlet-procs.tcl	7 Aug 2017 23:48:10 -0000	1.11
+++ openacs-4/packages/dotlrn-portlet/tcl/dotlrn-members-staff-portlet-procs.tcl	11 Jul 2018 08:37:54 -0000	1.12
@@ -36,19 +36,23 @@
 
     ad_proc -public get_pretty_name {
     } {
+        Get the pretty name.
+    } {
 	return "#dotlrn-portlet.members_staff_portlet_pretty_name#"
     }
 
     ad_proc -public link {
     } {
+        Get the link. This is currently empty.
+    } {
 	return ""
     }
 
     ad_proc -public add_self_to_page {
 	{-portal_id:required}
 	{-community_id:required}
     } {
-        Add the "dotlrn members staff" portlet to the page
+        Add the "dotlrn members staff" portlet to the page.
     } {
         set force_region [parameter::get_from_package_key \
                               -package_key [my_package_key] \
@@ -68,7 +72,7 @@
     ad_proc -public remove_self_from_page {
         {-portal_id:required}
     } {
-	Removes the PE from the given page
+	Removes the PE from the given page.
     } {
         portal::remove_element \
             -portal_id $portal_id \
@@ -78,7 +82,7 @@
     ad_proc -public show {
 	 cf
     } {
-	 Call the template to display
+	 Call the template to display.
 
 	 @param cf A config array
     } {
Index: openacs-4/packages/dotlrn-portlet/tcl/dotlrn-portlet-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-portlet/tcl/dotlrn-portlet-procs.tcl,v
diff -u -r1.39 -r1.40
--- openacs-4/packages/dotlrn-portlet/tcl/dotlrn-portlet-procs.tcl	21 Jan 2018 01:04:52 -0000	1.39
+++ openacs-4/packages/dotlrn-portlet/tcl/dotlrn-portlet-procs.tcl	11 Jul 2018 08:40:09 -0000	1.40
@@ -41,20 +41,24 @@
 
     ad_proc -public get_pretty_name {
     } {
+        Get the pretty name.
+    } {
         # get the param from the dotlrn package
 	return [dotlrn::parameter -name subcommunities_pretty_plural]
     }
 
     ad_proc -public link {
     } {
+        Get the link. This is currently empty.
+    } {
 	return ""
     }
 
     ad_proc -public add_self_to_page {
 	{-portal_id:required}
 	{-community_id:required}
     } {
-	Adds a dotlrn PE to the given communities's portal
+	Adds a dotlrn PE to the given communities's portal.
 
 	@param portal_id
 	@param community_id
@@ -92,6 +96,7 @@
     ad_proc -public show {
         cf
     } {
+        Show the dotlrn portlet.
     } {
         portal::show_proc_helper \
             -package_key [my_package_key] \