[CMF-checkins] SVN: CMF/branches/2.1/ - updated GenericSetup
Yvo Schubbe
y.2007- at wcm-solutions.de
Thu Aug 2 14:33:38 EDT 2007
Log message for revision 78547:
- updated GenericSetup
- enabled 'Components' ZMI tab
Changed:
_U CMF/branches/2.1/
U CMF/branches/2.1/CHANGES.txt
U CMF/branches/2.1/CMFCore/PortalFolder.py
U CMF/branches/2.1/EXTERNALS.txt
-=-
Property changes on: CMF/branches/2.1
___________________________________________________________________
Name: svn:externals
- #
# Used for maintenance of external resources in this svn bundle. Edit
# this file as appropriate and then run the following command from within
# the checkout directory where this file lives on your local machine:
#
# svn propset svn:externals -F ./EXTERNALS.TXT .
#
GenericSetup svn://svn.zope.org/repos/main/GenericSetup/tags/1.3
+ #
# Used for maintenance of external resources in this svn bundle. Edit
# this file as appropriate and then run the following command from within
# the checkout directory where this file lives on your local machine:
#
# svn propset svn:externals -F ./EXTERNALS.TXT .
#
GenericSetup -r78545 svn://svn.zope.org/repos/main/GenericSetup/branches/1.3
Modified: CMF/branches/2.1/CHANGES.txt
===================================================================
--- CMF/branches/2.1/CHANGES.txt 2007-08-02 18:07:51 UTC (rev 78546)
+++ CMF/branches/2.1/CHANGES.txt 2007-08-02 18:33:38 UTC (rev 78547)
@@ -1,5 +1,10 @@
CMF 2.1.0 (unreleased)
+ New Features
+
+ - PortalFolder: Enabled 'Components' ZMI tab.
+ This GenericSetup tab allows to inspect and edit component registrations.
+
Bug Fixes
- Fixed all componentregistry.xml files to use plain object paths and strip
Modified: CMF/branches/2.1/CMFCore/PortalFolder.py
===================================================================
--- CMF/branches/2.1/CMFCore/PortalFolder.py 2007-08-02 18:07:51 UTC (rev 78546)
+++ CMF/branches/2.1/CMFCore/PortalFolder.py 2007-08-02 18:33:38 UTC (rev 78547)
@@ -62,8 +62,12 @@
description = ''
- manage_options = ( Folder.manage_options +
- CMFCatalogAware.manage_options )
+ manage_options = ( Folder.manage_options[:1]
+ + ({'label': 'Components',
+ 'action': 'manage_components'},)
+ + Folder.manage_options[1:]
+ + CMFCatalogAware.manage_options
+ )
def __init__(self, id, title='', description=''):
self.id = id
Modified: CMF/branches/2.1/EXTERNALS.txt
===================================================================
--- CMF/branches/2.1/EXTERNALS.txt 2007-08-02 18:07:51 UTC (rev 78546)
+++ CMF/branches/2.1/EXTERNALS.txt 2007-08-02 18:33:38 UTC (rev 78547)
@@ -5,4 +5,4 @@
#
# svn propset svn:externals -F ./EXTERNALS.TXT .
#
-GenericSetup svn://svn.zope.org/repos/main/GenericSetup/tags/1.3
+GenericSetup -r78545 svn://svn.zope.org/repos/main/GenericSetup/branches/1.3
More information about the CMF-checkins
mailing list