[Zope-Checkins]
SVN: Zope/branches/Zope-2_8-branch/lib/python/Products/PluginIndexes/DateIndex/DateIndex.py
Merge r 40426 from the trunk: make DateIndexes upgradeble
from Zope 2.7 by way
Martijn Pieters
mj at zopatista.com
Wed Nov 30 07:32:06 EST 2005
Log message for revision 40427:
Merge r 40426 from the trunk: make DateIndexes upgradeble from Zope 2.7 by way
of a re-index.
Changed:
U Zope/branches/Zope-2_8-branch/lib/python/Products/PluginIndexes/DateIndex/DateIndex.py
-=-
Modified: Zope/branches/Zope-2_8-branch/lib/python/Products/PluginIndexes/DateIndex/DateIndex.py
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/Products/PluginIndexes/DateIndex/DateIndex.py 2005-11-30 11:26:29 UTC (rev 40426)
+++ Zope/branches/Zope-2_8-branch/lib/python/Products/PluginIndexes/DateIndex/DateIndex.py 2005-11-30 12:32:05 UTC (rev 40427)
@@ -20,6 +20,7 @@
from datetime import tzinfo, timedelta
from types import StringType, FloatType, IntType
+import BTrees.Length
from BTrees.IIBTree import IISet, union, intersection, multiunion
from BTrees.IOBTree import IOBTree
from BTrees.OIBTree import OIBTree
@@ -111,7 +112,7 @@
""" Complete reset """
self._index = IOBTree()
self._unindex = OIBTree()
- self._length.set(0)
+ self._length = BTrees.Length.Length()
def index_object( self, documentId, obj, threshold=None ):
"""index an object, normalizing the indexed value to an integer
More information about the Zope-Checkins
mailing list