[Zope-Checkins] CVS: Zope2 - Property.py:1.29.4.1

Brian Lloyd brian@digicool.com
Fri, 30 Mar 2001 12:40:35 -0500 (EST)


Update of /cvs-repository/Zope2/lib/python/ZClasses
In directory korak:/home/brian/temp/zope-23-branch/lib/python/ZClasses

Modified Files:
      Tag: zope-2_3-branch
	Property.py 
Log Message:
Added some missing class init calles



--- Updated File Property.py in package Zope2 --
--- Property.py	2001/01/12 18:10:25	1.29
+++ Property.py	2001/03/30 17:40:34	1.29.4.1
@@ -309,6 +309,8 @@
                 self, REQUEST, 
                 manage_tabs_message='The permission mapping has been updated')
 
+Globals.default__class_init__(ZCommonSheet)
+
 property_sheet_permissions=(
     # 'Access contents information',
     'Manage properties',
@@ -330,7 +332,8 @@
                                'manage',
                                )),
         ('Access contents information', ('hasProperty', 'propertyIds',
-                                         'propertyValues','propertyItems',''),
+                                         'propertyValues','propertyItems',
+                                         'propertyMap', ''),
          ),
         )
     
@@ -412,3 +415,4 @@
         return propsets+tuple(r)
 
   
+Globals.default__class_init__(ZInstanceSheets)