[Zope3-checkins] CVS: Zope3/src/zope/app/catalog - catalog.py:1.22 tests.py:1.4

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Mar 11 04:19:55 EST 2004


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

Modified Files:
	catalog.py tests.py 
Log Message:


Moved object hub to zope.app.hub. I did provide module aliases.


=== Zope3/src/zope/app/catalog/catalog.py 1.21 => 1.22 ===
--- Zope3/src/zope/app/catalog/catalog.py:1.21	Sat Mar  6 11:50:18 2004
+++ Zope3/src/zope/app/catalog/catalog.py	Thu Mar 11 04:19:23 2004
@@ -30,8 +30,8 @@
 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
+import zope.app.hub.interfaces as IHub
+import zope.app.hub as Hub
 from zope.app.container.sample import SampleContainer
 from zope.app.catalog.interfaces.catalog import ICatalog
 


=== Zope3/src/zope/app/catalog/tests.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/catalog/tests.py:1.3	Tue Mar  2 13:50:56 2004
+++ Zope3/src/zope/app/catalog/tests.py	Thu Mar 11 04:19:23 2004
@@ -18,13 +18,12 @@
 
 $Id$
 """
-
 import unittest
 
 from zope.interface import implements
 from zope.app.index.interfaces.field import IUIFieldCatalogIndex
 from zope.app.event.interfaces import ISubscriber
-from zope.app.interfaces.services.hub import IObjectHub
+from zope.app.hub.interfaces import IObjectHub
 from zope.app.catalog.interfaces.index import ICatalogIndex
 from zope.index.interfaces import ISimpleQuery
 
@@ -36,7 +35,7 @@
 
 from zope.app.index.tests.test_objectretrievingprocessor import FakeObjectHub
 
-import zope.app.services.hub as Hub
+import zope.app.hub as Hub
 
 regEvt = Hub.ObjectRegisteredHubEvent
 unregEvt = Hub.ObjectUnregisteredHubEvent




More information about the Zope3-Checkins mailing list