[Zope3-checkins] CVS: Zope3/src/zope/app/catalog - catalog.py:1.20 configure.zcml:1.7

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


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

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


=== Zope3/src/zope/app/catalog/catalog.py 1.19 => 1.20 ===
--- Zope3/src/zope/app/catalog/catalog.py:1.19	Tue Mar  2 13:50:56 2004
+++ Zope3/src/zope/app/catalog/catalog.py	Wed Mar  3 05:38:38 2004
@@ -27,8 +27,8 @@
 from zope.app.event.interfaces import ISubscriber
 from zope.app.interfaces.annotation import IAttributeAnnotatable
 from zope.app.interfaces.services.utility import ILocalUtility
-from zope.app.interfaces.container import IRemoveNotifiable, IAddNotifiable
-from zope.app.interfaces.container import IContainer
+from zope.app.container.interfaces import IRemoveNotifiable, IAddNotifiable
+from zope.app.container.interfaces import IContainer
 
 import zope.app.interfaces.services.hub as IHub
 import zope.app.services.hub as Hub


=== Zope3/src/zope/app/catalog/configure.zcml 1.6 => 1.7 ===
--- Zope3/src/zope/app/catalog/configure.zcml:1.6	Mon Mar  1 06:46:22 2004
+++ Zope3/src/zope/app/catalog/configure.zcml	Wed Mar  3 05:38:38 2004
@@ -14,7 +14,7 @@
            permission="zope.Public" />
   <require interface="zope.app.catalog.interfaces.catalog.ICatalogEdit"
            permission="zope.ManageContent" />
-  <require interface="zope.app.interfaces.container.IContainer"
+  <require interface="zope.app.container.interfaces.IContainer"
            permission="zope.ManageContent" />
 </content>
 
@@ -27,7 +27,7 @@
            permission="zope.View"/>
   <require interface="zope.app.catalog.interfaces.catalog.ICatalogEdit"
            permission="zope.ManageContent"/>
-  <require interface="zope.app.interfaces.container.IContainer"
+  <require interface="zope.app.container.interfaces.IContainer"
            permission="zope.ManageContent"/>
 </content>
 




More information about the Zope3-Checkins mailing list