[Zope-CVS] SVN: PluginRegistry/trunk/ - Repaired warings appearing in Zope 2.8.5 due to a couple typos

Jens Vagelpohl jens at dataflake.org
Sat Dec 17 08:27:31 EST 2005


Log message for revision 40846:
  - Repaired warings appearing in Zope 2.8.5 due to a couple typos
    in security declarations.
  

Changed:
  U   PluginRegistry/trunk/CHANGES.txt
  U   PluginRegistry/trunk/PluginRegistry.py

-=-
Modified: PluginRegistry/trunk/CHANGES.txt
===================================================================
--- PluginRegistry/trunk/CHANGES.txt	2005-12-17 13:26:25 UTC (rev 40845)
+++ PluginRegistry/trunk/CHANGES.txt	2005-12-17 13:27:31 UTC (rev 40846)
@@ -16,6 +16,9 @@
 
     - Removed deprecation warings under Zope 2.8.x.
 
+    - Repaired warings appearing in Zope 2.8.5 due to a couple typos
+      in security declarations.
+
   PluginRegistry-1.0.2 (2005/01/31)
 
     - SVN tag:  svn+ssh://svn.zope.org/repos/main/PluginRegistry/tags/1.0.2

Modified: PluginRegistry/trunk/PluginRegistry.py
===================================================================
--- PluginRegistry/trunk/PluginRegistry.py	2005-12-17 13:26:25 UTC (rev 40845)
+++ PluginRegistry/trunk/PluginRegistry.py	2005-12-17 13:27:31 UTC (rev 40846)
@@ -133,7 +133,7 @@
         plugin_type = self._getInterfaceFromName( plugin_type )
         return self._plugin_type_info[plugin_type]
 
-    security.declareProtected( ManageUsers, 'listPluginInfo' )
+    security.declareProtected( ManageUsers, 'listPluginIds' )
     def listPluginIds( self, plugin_type ):
 
         """ See IPluginRegistry.



More information about the Zope-CVS mailing list