[Zope3-checkins] CVS: Zope3/src/zope/app/index/text - configure.zcml:1.3 index.py:1.3

Steve Alexander steve@cat-box.net
Sat, 28 Dec 2002 12:49:57 -0500


Update of /cvs-repository/Zope3/src/zope/app/index/text
In directory cvs.zope.org:/tmp/cvs-serv912/src/zope/app/index/text

Modified Files:
	configure.zcml index.py 
Log Message:
Compressed various independent modules in zope.app.traversing into 
far fewer modules.
Also, changed the place where the textindex lives to one level higher.


=== Zope3/src/zope/app/index/text/configure.zcml 1.2 => 1.3 ===
--- Zope3/src/zope/app/index/text/configure.zcml:1.2	Wed Dec 25 09:12:55 2002
+++ Zope3/src/zope/app/index/text/configure.zcml	Sat Dec 28 12:49:26 2002
@@ -4,7 +4,7 @@
 
     <require
       permission="zope.ManageServices"
-      interface="zope.app.interfaces.index.text.interfaces.IUITextIndex"
+      interface="zope.app.interfaces.index.text.IUITextIndex"
       attributes="query"
       />
 


=== Zope3/src/zope/app/index/text/index.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/index/text/index.py:1.2	Wed Dec 25 09:12:55 2002
+++ Zope3/src/zope/app/index/text/index.py	Sat Dec 28 12:49:26 2002
@@ -34,7 +34,8 @@
      IObjectUnregisteredHubEvent, \
      IObjectModifiedHubEvent
 from zope.app.traversing import locationAsUnicode
-from zope.app.interfaces.index.text.interfaces import ISearchableText, IUITextIndex
+from zope.app.interfaces.index.text import ISearchableText
+from zope.app.interfaces.index.text import IUITextIndex
 
 class TextIndex(TextIndexWrapper):