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

Stuart Bishop zen at shangri-la.dropbear.id.au
Wed May 26 07:01:36 EDT 2004


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

Modified Files:
      Tag: Zope-2_7-branch
	BrowserIdManager.py SessionDataManager.py 
Log Message:
Add Object security declaration so calls to this() in management pages
won't fail


=== Zope/lib/python/Products/Sessions/BrowserIdManager.py 1.17.66.1 => 1.17.66.2 ===
--- Zope/lib/python/Products/Sessions/BrowserIdManager.py:1.17.66.1	Mon Jul 21 12:36:11 2003
+++ Zope/lib/python/Products/Sessions/BrowserIdManager.py	Wed May 26 07:01:34 2004
@@ -83,6 +83,7 @@
     icon = 'misc_/Sessions/idmgr.gif'
 
     security = ClassSecurityInfo()
+    security.declareObjectPublic()
     ok = {'meta_type':1, 'id':1, 'title': 1, 'icon':1,
           'bobobase_modification_time':1, 'title_or_id':1 }
     security.setDefaultAccess(ok)


=== Zope/lib/python/Products/Sessions/SessionDataManager.py 1.23.68.1 => 1.23.68.2 ===
--- Zope/lib/python/Products/Sessions/SessionDataManager.py:1.23.68.1	Wed May 19 21:07:23 2004
+++ Zope/lib/python/Products/Sessions/SessionDataManager.py	Wed May 26 07:01:34 2004
@@ -65,6 +65,7 @@
         )
 
     security = ClassSecurityInfo()
+    security.declareObjectPublic()
 
     ok = {'meta_type':1, 'id':1, 'title': 1, 'icon':1,
           'bobobase_modification_time':1, 'title_or_id':1 }




More information about the Zope-Checkins mailing list