[Zope3-checkins] CVS: Zope3/src/zope/app/index/text - processors.py:1.3
Steve Alexander
steve@cat-box.net
Mon, 30 Dec 2002 13:43:37 -0500
Update of /cvs-repository/Zope3/src/zope/app/index/text
In directory cvs.zope.org:/tmp/cvs-serv29407/src/zope/app/index/text
Modified Files:
processors.py
Log Message:
Implemented InterfacesField to select several interfaces.
Refined the query interfaces.
=== Zope3/src/zope/app/index/text/processors.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/index/text/processors.py:1.2 Wed Dec 25 09:12:55 2002
+++ Zope3/src/zope/app/index/text/processors.py Mon Dec 30 13:43:07 2002
@@ -35,8 +35,8 @@
__implements__ = IBatchedRankedProcessor
__used_for__ = IQuerying
- input_interface = IBatchedTextIndexQuery
- output_interface = (IRankedHubIdList, IBatchedResult)
+ inputInterfaces = (IBatchedTextIndexQuery,)
+ outputInterfaces = (IRankedHubIdList, IBatchedResult)
def __init__(self, textindex):
self.__textindex = textindex