[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes - __init__.py:1.12
Tres Seaver
tseaver@zope.com
Thu, 6 Jun 2002 01:31:45 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes
In directory cvs.zope.org:/tmp/cvs-serv22737
Modified Files:
__init__.py
Log Message:
- Land new pluggable index types, specialized for date values and
date ranges, from branch.
=== Zope/lib/python/Products/PluginIndexes/__init__.py 1.11 => 1.12 ===
import KeywordIndex.KeywordIndex
import TopicIndex.TopicIndex
+import DateIndex.DateIndex
+import DateRangeIndex.DateRangeIndex
-_indexes = ('TextIndex','KeywordIndex','FieldIndex','PathIndex','TopicIndex')
+_indexes = ('TextIndex',
+ 'KeywordIndex',
+ 'FieldIndex',
+ 'PathIndex',
+ 'TopicIndex',
+ 'DateIndex',
+ 'DateRangeIndex',
+ )
def initialize(context):