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

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


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

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/zcmlmodule/__init__.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/apidoc/zcmlmodule/__init__.py:1.4	Tue Mar  2 12:51:49 2004
+++ Zope3/src/zope/app/apidoc/zcmlmodule/__init__.py	Wed Mar  3 05:38:32 2004
@@ -118,7 +118,7 @@
         return name
 
     def get(self, key, default=None):
-        """See zope.app.interfaces.container.IReadContainer"""
+        """See zope.app.container.interfaces.IReadContainer"""
         ns = self.getFullName()
         if not namespaces[ns].has_key(key):
             return default
@@ -128,7 +128,7 @@
         return directive
     
     def items(self):
-        """See zope.app.interfaces.container.IReadContainer"""
+        """See zope.app.container.interfaces.IReadContainer"""
         list = []
         for key in namespaces[self.getFullName()].keys():
             list.append((key, self.get(key)))
@@ -215,7 +215,7 @@
 
 
     def get(self, key, default=None):
-        """See zope.app.interfaces.container.IReadContainer
+        """See zope.app.container.interfaces.IReadContainer
 
         Get the namespace by name; long and abbreviated names work.
         """
@@ -228,7 +228,7 @@
 
 
     def items(self):
-        """See zope.app.interfaces.container.IReadContainer"""
+        """See zope.app.container.interfaces.IReadContainer"""
         list = []
         for key in namespaces.keys():
             namespace = Namespace(self, key)


=== Zope3/src/zope/app/apidoc/zcmlmodule/configure.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/apidoc/zcmlmodule/configure.zcml:1.1	Thu Feb 19 15:46:43 2004
+++ Zope3/src/zope/app/apidoc/zcmlmodule/configure.zcml	Wed Mar  3 05:38:32 2004
@@ -4,12 +4,12 @@
 
   <class class=".ZCMLModule">
     <allow interface="zope.app.apidoc.interfaces.IDocumentationModule" />
-    <allow interface="zope.app.interfaces.container.IReadContainer" />
+    <allow interface="zope.app.container.interfaces.IReadContainer" />
   </class>
 
   <class class=".Namespace">
     <allow attributes="getShortName getFullName getQuotedName" />
-    <allow interface="zope.app.interfaces.container.IReadContainer" />
+    <allow interface="zope.app.container.interfaces.IReadContainer" />
   </class>
 
   <class class=".Directive">




More information about the Zope3-Checkins mailing list