[Zope-Checkins] CVS: Zope2 - KeywordIndex.py:1.1.2.3
andreas@digicool.com
andreas@digicool.com
Wed, 16 May 2001 12:10:22 -0400 (EDT)
Update of /cvs-repository/Zope2/lib/python/Products/PluginIndexes/KeywordIndex
In directory korak.digicool.com:/tmp/cvs-serv4211/KeywordIndex
Modified Files:
Tag: ajung-dropin-registry
KeywordIndex.py
Log Message:
misc changes
--- Updated File KeywordIndex.py in package Zope2 --
--- KeywordIndex.py 2001/05/15 13:34:09 1.1.2.2
+++ KeywordIndex.py 2001/05/16 16:10:21 1.1.2.3
@@ -94,13 +94,12 @@
from OFS.SimpleItem import SimpleItem
from Products.PluginIndexes import PluggableIndex
-from Products.PluginIndexes import UnIndex
+from Products.PluginIndexes.common.UnIndex import UnIndex
-
_marker = []
-class KeywordIndex(PluggableIndex.PluggableIndex, Persistent,
- Implicit, SimpleItem,UnIndex):
+class KeywordIndex(PluggableIndex.PluggableIndex,UnIndex, Persistent,
+ Implicit, SimpleItem):
"""Like an UnIndex only it indexes sequences of items
@@ -117,7 +116,6 @@
manage_options= (
SimpleItem.manage_options
)
-
def index_object(self, documentId, obj, threshold=None):