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

Steve Alexander steve@cat-box.net
Sun, 5 Jan 2003 14:04:44 -0500


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

Modified Files:
	configure.zcml 
Log Message:
Make text indexes IQueryProcessable.


=== Zope3/src/zope/app/index/text/configure.zcml 1.3 => 1.4 ===
--- Zope3/src/zope/app/index/text/configure.zcml:1.3	Sat Dec 28 12:49:26 2002
+++ Zope3/src/zope/app/index/text/configure.zcml	Sun Jan  5 14:04:42 2003
@@ -1,18 +1,20 @@
 <zopeConfigure xmlns="http://namespaces.zope.org/zope">
 
-  <content class="zope.app.index.text.index.TextIndex">
+<content class="zope.app.index.text.index.TextIndex">
 
-    <require
+  <require
       permission="zope.ManageServices"
       interface="zope.app.interfaces.index.text.IUITextIndex"
       attributes="query"
       />
 
-    <factory
+  <factory
       id="zope.app.index.text.factory"
       permission="zope.ManageServices"
       />
-
-    </content>
+  <implements
+      interface="zope.app.interfaces.services.query.IQueryProcessable"
+      />
+</content>
 
 </zopeConfigure>