[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndex - TextIndex.py:1.31
Andreas Jung
andreas@digicool.com
Thu, 25 Apr 2002 08:44:33 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/TextIndex
In directory cvs.zope.org:/tmp/cvs-serv6189/TextIndex
Modified Files:
TextIndex.py
Log Message:
waahhhh...re-added SimpleItem as base class as SimpleItem seems to
be needed for the ZMI
=== Zope/lib/python/Products/PluginIndexes/TextIndex/TextIndex.py 1.30 => 1.31 ===
from Products.PluginIndexes.common.util import parseIndexRequest
+from OFS.SimpleItem import SimpleItem
from BTrees.IOBTree import IOBTree
from BTrees.OIBTree import OIBTree
from BTrees.IIBTree import IIBTree, IIBucket, IISet, IITreeSet
@@ -51,7 +52,7 @@
'...': Near, 'near': Near,
AndNot: AndNot, And: And, Or: Or, Near: Near}
-class TextIndex(Persistent, Implicit):
+class TextIndex(Persistent, Implicit, SimpleItem):
"""Full-text index.
There is a ZCatalog UML model that sheds some light on what is