[CMF-checkins] CVS: Products/CMFCore - PortalFolder.py:1.71.2.5

Jens Vagelpohl jens at dataflake.org
Fri Sep 24 16:09:03 EDT 2004


Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv22936

Modified Files:
      Tag: CMF-1_5-branch
	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.71.2.4 => 1.71.2.5 ===
--- Products/CMFCore/PortalFolder.py:1.71.2.4	Fri Sep 24 09:29:07 2004
+++ Products/CMFCore/PortalFolder.py	Fri Sep 24 16:09:03 2004
@@ -439,6 +439,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