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

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


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

Modified Files:
	Property.py 
Log Message:
merged addition of some missing class init calls



--- Updated File Property.py in package Zope2 --
--- Property.py	2001/01/12 18:10:25	1.29
+++ Property.py	2001/03/30 17:41:03	1.30
@@ -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)