[Zope3-checkins] CVS: Zope3/src/zope/app/apidoc/ifacemodule - __init__.py:1.3 configure.zcml:1.2

Philipp von Weitershausen philikon at philikon.de
Wed Mar 3 05:39:02 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/apidoc/ifacemodule
In directory cvs.zope.org:/tmp/cvs-serv7814/apidoc/ifacemodule

Modified Files:
	__init__.py configure.zcml 
Log Message:
Moved container interfaces from zope.app.interfaces.container to
zope.app.container.interfaces.


=== Zope3/src/zope/app/apidoc/ifacemodule/__init__.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/apidoc/ifacemodule/__init__.py:1.2	Tue Mar  2 13:16:10 2004
+++ Zope3/src/zope/app/apidoc/ifacemodule/__init__.py	Wed Mar  3 05:38:31 2004
@@ -86,7 +86,7 @@
     """
 
     def get(self, key, default=None):
-        """See zope.app.interfaces.container.IReadContainer"""
+        """See zope.app.container.interfaces.IReadContainer"""
         service = zapi.getService(self, 'Interfaces')
         iface = service.queryInterface(key, default)
         if iface is default: 
@@ -106,7 +106,7 @@
         return iface
 
     def items(self):
-        """See zope.app.interfaces.container.IReadContainer"""
+        """See zope.app.container.interfaces.IReadContainer"""
         service = zapi.getService(self, 'Interfaces')
         items = list(service.items())
         items.sort()


=== Zope3/src/zope/app/apidoc/ifacemodule/configure.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/apidoc/ifacemodule/configure.zcml:1.1	Thu Feb 19 15:46:41 2004
+++ Zope3/src/zope/app/apidoc/ifacemodule/configure.zcml	Wed Mar  3 05:38:31 2004
@@ -4,7 +4,7 @@
 
   <class class=".InterfaceModule">
     <allow interface=".IInterfaceModule" />
-    <allow interface="zope.app.interfaces.container.IReadContainer" />
+    <allow interface="zope.app.container.interfaces.IReadContainer" />
   </class>
 
   <!-- Register the module with the API Documentation System -->
@@ -18,24 +18,27 @@
        introspector uses this name already. -->
 
   <browser:page
-    for="zope.interface.interfaces.IInterface"
-    permission="zope.View"
-    class=".browser.InterfaceDetails"
-    name="apiindex.html"
-    template="index.pt" />
+      for="zope.interface.interfaces.IInterface"
+      permission="zope.View"
+      class=".browser.InterfaceDetails"
+      name="apiindex.html"
+      template="index.pt"
+      />
 
   <!-- Interface Documentation Module Menu -->
 
   <adapter
       provides="zope.app.tree.interfaces.IChildObjects"
       for=".IInterfaceModule"
-      factory=".menu.InterfaceModuleChildObjects" />
+      factory=".menu.InterfaceModuleChildObjects"
+      />
 
   <browser:page
       for=".InterfaceModule"
       permission="zope.View"
       class=".menu.Menu"
       name="menu.html"
-      template="menu.pt" />
+      template="menu.pt"
+      />
 
 </configure>




More information about the Zope3-Checkins mailing list