[CMF-checkins] CVS: Products/CMFCore - PortalFolder.py:1.84
Yvo Schubbe
y.2005- at wcm-solutions.de
Tue Jun 21 12:39:12 EDT 2005
Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv391/CMFCore
Modified Files:
PortalFolder.py
Log Message:
- fixed manage tabs
=== Products/CMFCore/PortalFolder.py 1.83 => 1.84 ===
--- Products/CMFCore/PortalFolder.py:1.83 Tue Jun 21 09:33:04 2005
+++ Products/CMFCore/PortalFolder.py Tue Jun 21 12:39:12 2005
@@ -101,7 +101,8 @@
"""
meta_type = 'Portal Folder Base'
- __implements__ = (IFolderish, DynamicType.__implements__, Folder.__implements__)
+ __implements__ = (IFolderish, DynamicType.__implements__,
+ Folder.__implements__)
security = ClassSecurityInfo()
@@ -162,7 +163,6 @@
typ.isConstructionAllowed( container )
, result )
-
def _filteredItems( self, ids, filt ):
"""
Apply filter, a mapping, to child objects indicated by 'ids',
@@ -536,6 +536,9 @@
OrderSupport.__implements__)
security = ClassSecurityInfo()
+
+ manage_options = ( OrderSupport.manage_options +
+ PortalFolderBase.manage_options[1:] )
security.declareProtected(AddPortalFolders, 'manage_addPortalFolder')
def manage_addPortalFolder(self, id, title='', REQUEST=None):
More information about the CMF-checkins
mailing list