[Checkins] SVN: Products.CMFCore/trunk/Products/CMFCore/ - tool interfaces: Replace non-existing IMember interface with the

Jens Vagelpohl jens at dataflake.org
Sat Oct 4 06:56:38 EDT 2008


Log message for revision 91738:
  - tool interfaces: Replace non-existing IMember interface with the
    correct IMemberData.
  

Changed:
  U   Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt
  U   Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py

-=-
Modified: Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt	2008-10-04 10:49:30 UTC (rev 91737)
+++ Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt	2008-10-04 10:56:37 UTC (rev 91738)
@@ -4,6 +4,9 @@
 2.2.0 (unreleased)
 ------------------
 
+- tool interfaces: Replace non-existing IMember interface with the
+  correct IMemberData.
+
 - CatalogTool: If proxy roles are set on a script that uses the catalog
   and those proxy roles have been unset using the ZMI, which results
   in an empty tuple as proxy roles, then the catalog would not correctly

Modified: Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py	2008-10-04 10:49:30 UTC (rev 91737)
+++ Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py	2008-10-04 10:56:37 UTC (rev 91738)
@@ -540,7 +540,7 @@
             )
 
     def wrapUser(user):
-        """Returns an IMember corresponding to the given user object.
+        """Returns an IMemberData instance for to the given user object.
 
         o Permission:  Private (Python-only)
         """
@@ -735,7 +735,7 @@
         """
 
     def getMemberById(id):
-        """ Returns the given IMember.
+        """ Returns the IMemberData instance corresponding to the given id.
 
         o Permission:  Manage users
         """
@@ -750,7 +750,7 @@
         """
 
     def listMembers():
-        """ Return a sequence of all IMembers.
+        """ Return a sequence of all IMemberData instances.
 
         o This may eventually be replaced with a set of methods for querying
           pieces of the list rather than the entire list at once.



More information about the Checkins mailing list