[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/index - text.py:1.3
Anthony Baxter
anthony@interlink.com.au
Sun, 13 Jul 2003 04:23:53 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/index
In directory cvs.zope.org:/tmp/cvs-serv16578/app/interfaces/index
Modified Files:
text.py
Log Message:
Hooked up full text indexing. There's a new interface ISimpleQuery that
accepts a term and returns a list of hubids. A simple adapter is installed
to adapt textindex to this interface. FieldIndex actually implements this
interface, rather than IQuerying (oops).
=== Zope3/src/zope/app/interfaces/index/text.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interfaces/index/text.py:1.2 Sun Jul 13 01:51:06 2003
+++ Zope3/src/zope/app/interfaces/index/text.py Sun Jul 13 04:23:19 2003
@@ -34,6 +34,10 @@
from zope.index.interfaces.index import IStatistics
+class IUITextCatalogIndex(IStatistics):
+
+ """Interface for creating a TextIndex from with a catalog"""
+
class IUITextIndex(IStatistics):
"""Interface for creating a TextIndex from the ZMI."""