[Checkins] SVN: zope.app.authentication/trunk/ Make it compatible with upcomming zope.app.container 3.6.1 changes.

Roger Ineichen roger at projekt01.ch
Tue Jul 8 13:45:54 EDT 2008


Log message for revision 88120:
  Make it compatible with upcomming zope.app.container 3.6.1 changes.

Changed:
  U   zope.app.authentication/trunk/CHANGES.txt
  U   zope.app.authentication/trunk/src/zope/app/authentication/groupfolder.py

-=-
Modified: zope.app.authentication/trunk/CHANGES.txt
===================================================================
--- zope.app.authentication/trunk/CHANGES.txt	2008-07-08 17:25:07 UTC (rev 88119)
+++ zope.app.authentication/trunk/CHANGES.txt	2008-07-08 17:45:53 UTC (rev 88120)
@@ -6,7 +6,9 @@
 Version 3.4.2dev (unreleased)
 -----------------------------
 
-* ...
+- Make it compatible with upcomming zope.app.container 3.6.1 changes.
+  Changed super(BTreeContainer, self).__init__() to 
+  super(GroupFolder, self).__init__() in GroupFolder class.
 
 
 Version 3.4.1 (2007-10-24)
@@ -18,10 +20,10 @@
 Version 3.4.0 (2007-10-11)
 --------------------------
 
-* Updated package meta-data.
+- Updated package meta-data.
 
 
 Version 3.4.0b1 (2007-09-27)
 ----------------------------
 
-* First Zope-independent release.
+- First Zope-independent release.

Modified: zope.app.authentication/trunk/src/zope/app/authentication/groupfolder.py
===================================================================
--- zope.app.authentication/trunk/src/zope/app/authentication/groupfolder.py	2008-07-08 17:25:07 UTC (rev 88119)
+++ zope.app.authentication/trunk/src/zope/app/authentication/groupfolder.py	2008-07-08 17:45:53 UTC (rev 88120)
@@ -154,8 +154,8 @@
     schema = IGroupSearchCriteria
 
     def __init__(self, prefix=u''):
-        self.prefix=prefix
-        super(BTreeContainer,self).__init__()
+        super(GroupFolder, self).__init__()
+        self.prefix = prefix
         # __inversemapping is used to map principals to groups
         self.__inverseMapping = BTrees.OOBTree.OOBTree()
 



More information about the Checkins mailing list