[Zope-Checkins] CVS: Zope/lib/python/Products/Sessions - BrowserIdManager.py:1.18.16.1 SessionDataManager.py:1.23.86.1

Jim Fulton cvs-admin at zope.org
Fri Oct 31 14:24:52 EST 2003


Update of /cvs-repository/Zope/lib/python/Products/Sessions
In directory cvs.zope.org:/tmp/cvs-serv26022/lib/python/Products/Sessions

Modified Files:
      Tag: mro-advanture-branch
	BrowserIdManager.py SessionDataManager.py 
Log Message:
Changed various modules to fix mro problems when using the C3
method-lookup algorithm.


=== Zope/lib/python/Products/Sessions/BrowserIdManager.py 1.18 => 1.18.16.1 ===
--- Zope/lib/python/Products/Sessions/BrowserIdManager.py:1.18	Wed Jul  9 12:25:10 2003
+++ Zope/lib/python/Products/Sessions/BrowserIdManager.py	Fri Oct 31 14:24:21 2003
@@ -65,7 +65,7 @@
     
 class BrowserIdManagerErr(Exception): pass
     
-class BrowserIdManager(Item, Persistent, Implicit, RoleManager, Owned, Tabs):
+class BrowserIdManager(Item, Persistent, Implicit, RoleManager):
     """ browser id management class """
 
     meta_type = 'Browser Id Manager'


=== Zope/lib/python/Products/Sessions/SessionDataManager.py 1.23 => 1.23.86.1 ===
--- Zope/lib/python/Products/Sessions/SessionDataManager.py:1.23	Tue Aug 20 11:08:48 2002
+++ Zope/lib/python/Products/Sessions/SessionDataManager.py	Fri Oct 31 14:24:21 2003
@@ -47,7 +47,7 @@
     if REQUEST is not None:
         return self.manage_main(self, REQUEST, update_menu=1)
 
-class SessionDataManager(Item, Implicit, Persistent, RoleManager, Owned, Tabs):
+class SessionDataManager(Item, Implicit, Persistent, RoleManager):
     """ The Zope default session data manager implementation """
 
     meta_type = 'Session Data Manager'




More information about the Zope-Checkins mailing list