[Zapp-cvs-commit] ZApp ZApp_CMFBase.py,1.8,1.9
Brought to you by:
sspickle
|
From: <ssp...@us...> - 2003-06-25 16:31:22
|
Update of /cvsroot/zapp/ZApp
In directory sc8-pr-cvs1:/tmp/cvs-serv29758
Modified Files:
ZApp_CMFBase.py
Log Message:
added all edit methods to factory type info..
Index: ZApp_CMFBase.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_CMFBase.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** ZApp_CMFBase.py 25 Jun 2003 11:45:53 -0000 1.8
--- ZApp_CMFBase.py 25 Jun 2003 16:31:18 -0000 1.9
***************
*** 124,127 ****
--- 124,140 ----
'action': 'zapp_cmf_object_view',
'permissions': (CMFCorePermissions.View,)},
+ {'id': 'edit',
+ 'name': 'Edit',
+ 'action': 'zapp_cmf_object_view',
+ 'permissions': (CMFCorePermissions.View,)},
+ {'id': 'editType',
+ 'name': 'EditType',
+ 'action': 'zapp_cmf_object_edit_form',
+ 'permissions': (CMFCorePermissions.ManagerPortalContent,)},
+ )
+ {'id': 'editType',
+ 'name': 'EditType',
+ 'action': 'zapp_cmf_object_type_edit_form',
+ 'permissions': (CMFCorePermissions.ManagerPortal,)},
)
},
|