[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/KeywordIndex - KeywordIndex.py:1.9
Andreas Jung
andreas@digicool.com
Thu, 25 Apr 2002 08:44:33 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/KeywordIndex
In directory cvs.zope.org:/tmp/cvs-serv6189/KeywordIndex
Modified Files:
KeywordIndex.py
Log Message:
waahhhh...re-added SimpleItem as base class as SimpleItem seems to
be needed for the ZMI
=== Zope/lib/python/Products/PluginIndexes/KeywordIndex/KeywordIndex.py 1.8 => 1.9 ===
from Products.PluginIndexes import PluggableIndex
+
from Products.PluginIndexes.common.UnIndex import UnIndex
_marker = []
-class KeywordIndex(UnIndex,Persistent, Implicit):
+class KeywordIndex(UnIndex):
__implements__ = (PluggableIndex.PluggableIndexInterface,)