[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes - __init__.py:1.8

Andreas Jung andreas@zope.com
Fri, 4 Jan 2002 11:38:15 -0500


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes
In directory cvs.zope.org:/tmp/cvs-serv28876

Modified Files:
	__init__.py 
Log Message:
- added prototype for new TextIndex to support NEAR search and
  stemmer support for eleven languages.
- TextIndex code cleanup
- refactoring of the existing TextIndex code


=== Zope/lib/python/Products/PluginIndexes/__init__.py 1.7 => 1.8 ===
 import FieldIndex.FieldIndex
 import KeywordIndex.KeywordIndex
+import TextIndexNG.TextIndexNG
 
-_indexes =  ['TextIndex','KeywordIndex','FieldIndex','PathIndex']
+_indexes =  ['TextIndex','TextIndexNG','KeywordIndex','FieldIndex','PathIndex']
 
 def initialize(context):