[CMF-checkins] CVS: Products/CMFCore - PortalFolder.py:1.77
Jens Vagelpohl
jens at dataflake.org
Fri Sep 24 16:05:18 EDT 2004
Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv21701
Modified Files:
PortalFolder.py
Log Message:
- Fix to the fix to the fix: allow another ID to be created even if
it's not contentish and it exists in a folder obove, this one is
needed by the syndication machinery
=== Products/CMFCore/PortalFolder.py 1.76 => 1.77 ===
--- Products/CMFCore/PortalFolder.py:1.76 Fri Sep 24 09:29:30 2004
+++ Products/CMFCore/PortalFolder.py Fri Sep 24 16:05:18 2004
@@ -394,6 +394,11 @@
if id == 'index_html':
return
+ # Another exception: Must allow "syndication_information" to enable
+ # Syndication...
+ if id == 'syndication_information':
+ return
+
# This code prevents people other than the portal manager from
# overriding skinned names and tools.
if not getSecurityManager().checkPermission(ManagePortal, self):
More information about the CMF-checkins
mailing list