[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/common - UnIndex.py:1.12
Andreas Jung
andreas@digicool.com
Thu, 25 Apr 2002 08:44:03 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/common
In directory cvs.zope.org:/tmp/cvs-serv6189/common
Modified Files:
UnIndex.py
Log Message:
waahhhh...re-added SimpleItem as base class as SimpleItem seems to
be needed for the ZMI
=== Zope/lib/python/Products/PluginIndexes/common/UnIndex.py 1.11 => 1.12 ===
from BTrees.IOBTree import IOBTree
from BTrees.IIBTree import IITreeSet, IISet, union, intersection
+from OFS.SimpleItem import SimpleItem
import BTrees.Length
from Products.PluginIndexes.common.util import parseIndexRequest
@@ -32,7 +33,7 @@
_marker = []
-class UnIndex(Persistent, Implicit):
+class UnIndex(Persistent, Implicit, SimpleItem):
"""UnIndex object interface"""