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

R. David Murray bitz@bitdance.com
Wed, 6 Nov 2002 17:30:53 -0500


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

Modified Files:
	metaConfigure.py 
Log Message:
Merge of rdmurray-metameta-branch.  See checkin message for 
doc/zcml/meta.stx for a more comprehensive checkin comment.


=== Zope3/lib/python/Zope/App/Publisher/XMLRPC/metaConfigure.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/Publisher/XMLRPC/metaConfigure.py:1.2	Sat Jun 29 11:41:40 2002
+++ Zope3/lib/python/Zope/App/Publisher/XMLRPC/metaConfigure.py	Wed Nov  6 17:30:22 2002
@@ -20,6 +20,8 @@
 from Zope.Security.Checker \
      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
 
@@ -31,6 +33,9 @@
 
 class view(object):
     '''This view class handles the directives for the XML-RPC Presentation'''
+
+    __class_implements__ = INonEmptyDirective
+    __implementes__ = ISubdirectiveHandler
 
     type = IXMLRPCPresentation