[Zope3-checkins] CVS: Zope3/src/zope/app/publisher/xmlrpc - metaconfigure.py:1.11

Jim Fulton jim@zope.com
Mon, 28 Jul 2003 18:21:12 -0400


Update of /cvs-repository/Zope3/src/zope/app/publisher/xmlrpc
In directory cvs.zope.org:/tmp/cvs-serv30139/src/zope/app/publisher/xmlrpc

Modified Files:
	metaconfigure.py 
Log Message:
No longer declare INonEmptyDirective and ISubdirectiveHandler.
Complex directive handlers and now recognized through the meta
configuration.


=== Zope3/src/zope/app/publisher/xmlrpc/metaconfigure.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/publisher/xmlrpc/metaconfigure.py:1.10	Thu May  1 15:35:29 2003
+++ Zope3/src/zope/app/publisher/xmlrpc/metaconfigure.py	Mon Jul 28 18:21:08 2003
@@ -20,8 +20,6 @@
 from zope.security.proxy import Proxy
 from zope.security.checker import CheckerPublic, NamesChecker, Checker
 
-from zope.configuration.interfaces import INonEmptyDirective
-from zope.configuration.interfaces import ISubdirectiveHandler
 from zope.configuration.action import Action
 from zope.configuration.exceptions import ConfigurationError
 
@@ -33,9 +31,6 @@
 
 class view(object):
     '''This view class handles the directives for the XML-RPC Presentation'''
-
-    classProvides(INonEmptyDirective)
-    __implementes__ = ISubdirectiveHandler
 
     type = IXMLRPCPresentation