[Zope-Checkins] SVN: Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py Merge r110877 to trunk
Wichert Akkerman
wichert at wiggy.net
Wed Apr 14 08:51:13 EDT 2010
Log message for revision 110879:
Merge r110877 to trunk
Changed:
U Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py
-=-
Modified: Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py 2010-04-14 12:50:03 UTC (rev 110878)
+++ Zope/trunk/src/Products/PluginIndexes/PathIndex/PathIndex.py 2010-04-14 12:51:12 UTC (rev 110879)
@@ -118,7 +118,7 @@
self._length.change(1)
for i in range(len(comps)):
- self._insertEntry(comps[i], docid, i)
+ self.insertEntry(comps[i], docid, i)
self._unindex[docid] = path
return 1
@@ -228,7 +228,7 @@
# Helper methods
- def _insertEntry(self, comp, id, level):
+ def insertEntry(self, comp, id, level):
""" Insert an entry.
'comp' is an individual path component
More information about the Zope-Checkins
mailing list