[Zope-CVS] CVS: Products/PluginRegistry - CHANGES.txt:1.5
	PluginRegistry.py:1.4 version.txt:1.4
    Jens Vagelpohl 
    jens at dataflake.org
       
    Sat Oct  1 12:25:42 EDT 2005
    
    
  
Update of /cvs-repository/Products/PluginRegistry
In directory cvs.zope.org:/tmp/cvs-serv5234
Modified Files:
	CHANGES.txt PluginRegistry.py version.txt 
Log Message:
- Saner version name
- Added a new ZMI tab offering a simple overview over active/available
  plugins for each known plugin type. 
=== Products/PluginRegistry/CHANGES.txt 1.4 => 1.5 ===
--- Products/PluginRegistry/CHANGES.txt:1.4	Tue Sep  6 17:59:48 2005
+++ Products/PluginRegistry/CHANGES.txt	Sat Oct  1 12:25:11 2005
@@ -3,6 +3,11 @@
 
   After PluginRegistry-1.0.2
 
+    - Saner version name
+
+    - Added a new ZMI tab offering a simple overview over active/available
+      plugins for each known plugin type.
+
     - Removed deprecation warnings under Zope 2.8.x.
 
   PluginRegistry-1.0.2 (2005/08/30)
=== Products/PluginRegistry/PluginRegistry.py 1.3 => 1.4 ===
--- Products/PluginRegistry/PluginRegistry.py:1.3	Tue Sep  6 17:59:48 2005
+++ Products/PluginRegistry/PluginRegistry.py	Sat Oct  1 12:25:11 2005
@@ -299,14 +299,18 @@
 
     security.declareProtected( ManageUsers, 'manage_plugins' )
     manage_plugins = PageTemplateFile( 'plugins', _wwwdir )
+    security.declareProtected( ManageUsers, 'manage_active' )
+    manage_active = PageTemplateFile( 'active_plugins', _wwwdir )
     manage_twoLists = PageTemplateFile( 'two_lists', _wwwdir )
 
-    manage_options=( ( { 'label'        : 'Plugins'
-                       , 'action'       : 'manage_plugins'
-                     # , 'help'         : ( 'PluggableAuthService'
-                     #                    , 'plugins.stx')
+    manage_options=( ( { 'label'  : 'Plugins'
+                       , 'action' : 'manage_plugins'
+                     # , 'help'   : ( 'PluggableAuthService'
+                     #              , 'plugins.stx')
+                       }
+                     , { 'label'  : 'Active'
+                       , 'action' : 'manage_active'
                        }
-                     ,
                      )
                    + SimpleItem.manage_options
                    )
=== Products/PluginRegistry/version.txt 1.3 => 1.4 ===
--- Products/PluginRegistry/version.txt:1.3	Tue Sep  6 17:59:48 2005
+++ Products/PluginRegistry/version.txt	Sat Oct  1 12:25:11 2005
@@ -1 +1 @@
-PluginRegistry-1_0_2+
+1.0.2+
    
    
More information about the Zope-CVS
mailing list