[Zope-dev] CST patches for Zope 2.4.0b2

Chris Withers chrisw@nipltd.com
Tue, 03 Jul 2001 11:11:00 +0100


This is a multi-part message in MIME format.
--------------9051A1D6E0D65FF3429FA5D5
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Chris Withers wrote:
> 
> Any ideas?

Yup, and the patches are attached...

cheers,

Chris
--------------9051A1D6E0D65FF3429FA5D5
Content-Type: text/plain; charset=us-ascii;
 name="SessionIDManager.py.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="SessionIDManager.py.patch"

--- SessionIDManager.py.original	Tue Apr 10 16:33:00 2001
+++ SessionIDManager.py	Tue Jul 03 10:52:44 2001
@@ -174,7 +174,7 @@
 
     __replaceable__ = UNIQUE # singleton for now
 
-    __implements__ = SessionIdManagerInterface
+    __implements__ = (SessionIdManagerInterface,)
 
     icon = 'misc_/CoreSessionTracking/idmgr.gif'
 

--------------9051A1D6E0D65FF3429FA5D5
Content-Type: text/plain; charset=us-ascii;
 name="SessionDataManager.py.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="SessionDataManager.py.patch"

--- SessionDataManager.py.original	Tue Apr 10 16:33:00 2001
+++ SessionDataManager.py	Tue Jul 03 10:51:30 2001
@@ -168,7 +168,7 @@
 
     __allow_access_to_unprotected_subobjects__ = 0
 
-    __implements__ = SessionDataManagerInterface
+    __implements__ = (SessionDataManagerInterface,)
 
     manage_sessiondatamgr = HTMLFile('manageDataManager', globals())
 

--------------9051A1D6E0D65FF3429FA5D5
Content-Type: text/plain; charset=us-ascii;
 name="SessionDataContainer.py.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="SessionDataContainer.py.patch"

--- SessionDataContainer.py.original	Tue Apr 10 16:33:00 2001
+++ SessionDataContainer.py	Tue Jul 03 10:50:20 2001
@@ -150,7 +150,7 @@
 
     icon='misc_/CoreSessionTracking/datacontainer.gif'
 
-    __implements__ = SessionDataContainerInterface
+    __implements__ = (SessionDataContainerInterface,)
 
     manage_options=(
         {'label': 'Manage', 'action':'manage_container'},

--------------9051A1D6E0D65FF3429FA5D5
Content-Type: text/plain; charset=us-ascii;
 name="SessionData.py.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="SessionData.py.patch"

--- SessionData.py.original	Tue Apr 10 16:33:00 2001
+++ SessionData.py	Tue Jul 03 10:49:20 2001
@@ -109,7 +109,7 @@
 
     __allow_access_to_unprotected_subobjects__ = 1
 
-    __implements__ = SessionDataInterface
+    __implements__ = (SessionDataInterface,)
 
     def __init__(self, id, onstart=None, onend=None, datamgr=None,
                  time=time.time):

--------------9051A1D6E0D65FF3429FA5D5--