[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Publisher/XMLRPC - metaConfigure.py:1.2.4.2

R. David Murray bitz@bitdance.com
Tue, 22 Oct 2002 08:19:46 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/Publisher/XMLRPC
In directory cvs.zope.org:/tmp/cvs-serv10611/lib/python/Zope/App/Publisher/XMLRPC

Modified Files:
      Tag: rdmurray-metameta-branch
	metaConfigure.py 
Log Message:
It doesn't seem right to have the __class_implements__ and not have the
corresponding __implelents__ for ISubdirectiveHandler, so I've added those
as well.


=== Zope3/lib/python/Zope/App/Publisher/XMLRPC/metaConfigure.py 1.2.4.1 => 1.2.4.2 ===
--- Zope3/lib/python/Zope/App/Publisher/XMLRPC/metaConfigure.py:1.2.4.1	Mon Oct 21 19:18:29 2002
+++ Zope3/lib/python/Zope/App/Publisher/XMLRPC/metaConfigure.py	Tue Oct 22 08:19:15 2002
@@ -21,6 +21,7 @@
      import InterfaceChecker, CheckerPublic, NamesChecker, Checker
 
 from Zope.Configuration.INonEmptyDirective import INonEmptyDirective
+from Zope.Configuration.ISubdirectiveHandler import ISubdirectiveHandler
 from Zope.Configuration.Action import Action
 from Zope.Configuration.Exceptions import ConfigurationError
 
@@ -34,6 +35,7 @@
     '''This view class handles the directives for the XML-RPC Presentation'''
 
     __class_implements__ = INonEmptyDirective
+    __implementes__ = ISubdirectiveHandler
 
     type = IXMLRPCPresentation