Update of /cvsroot/zapp/ZApp
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv3144
Modified Files:
ZApp_Base.py ZApp_PlainTextImportExport.py
Log Message:
fix up permissions in the defaults UI
Index: ZApp_Base.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_Base.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** ZApp_Base.py 20 Feb 2005 19:45:44 -0000 1.26
--- ZApp_Base.py 3 Jul 2006 18:24:50 -0000 1.27
***************
*** 248,253 ****
# I think we probably need this, but I need to do some more testing before I check it in to the codebase.
#
! # security.declareProtected("Modify ZApp DataSkin", 'change')
! # security.declareProtected("Modify ZApp DataSkin", 'manage_changeProperties')
#
--- 248,253 ----
# I think we probably need this, but I need to do some more testing before I check it in to the codebase.
#
! security.declareProtected("Modify ZApp DataSkin", 'change')
! security.declareProtected("Modify ZApp DataSkin", 'manage_changeProperties')
#
Index: ZApp_PlainTextImportExport.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_PlainTextImportExport.py,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** ZApp_PlainTextImportExport.py 5 Dec 2002 14:06:56 -0000 1.1.1.1
--- ZApp_PlainTextImportExport.py 3 Jul 2006 18:24:50 -0000 1.2
***************
*** 6,9 ****
--- 6,13 ----
from DateTime.DateTime import DateTime
+ StringType=type('')
+ TupleType=type(())
+ ListType=type([])
+
# Low level formatting routines
|