[Zope-Checkins] CVS: Zope2 - ZCatalog.py:1.88.6.7

andreas@digicool.com andreas@digicool.com
Mon, 14 May 2001 14:57:39 -0400 (EDT)


Update of /cvs-repository/Zope2/lib/python/Products/ZCatalog
In directory korak.digicool.com:/tmp/cvs-serv26353

Modified Files:
      Tag: ajung-dropin-registry
	ZCatalog.py 
Log Message:

rework



--- Updated File ZCatalog.py in package Zope2 --
--- ZCatalog.py	2001/05/14 14:19:32	1.88.6.6
+++ ZCatalog.py	2001/05/14 18:57:39	1.88.6.7
@@ -244,21 +244,21 @@
         self._catalog.replaceIndexes(indexes)
 
         self._catalog.addColumn('id')
-        self._catalog.addIndex('id', 'PluggableFieldIndex')
+        self._catalog.addIndex('id', 'FieldIndex')
 
         self._catalog.addColumn('title')
-        self._catalog.addIndex('title', 'PluggableTextIndex')
+        self._catalog.addIndex('title', 'TextIndex')
 
         self._catalog.addColumn('meta_type')
-        self._catalog.addIndex('meta_type', 'PluggableFieldIndex')
+        self._catalog.addIndex('meta_type', 'FieldIndex')
 
         self._catalog.addColumn('bobobase_modification_time')
-        self._catalog.addIndex('bobobase_modification_time', 'PluggableFieldIndex')
+        self._catalog.addIndex('bobobase_modification_time', 'FieldIndex')
 
         self._catalog.addColumn('summary')
-        self._catalog.addIndex('PrincipiaSearchSource', 'PluggableTextIndex')
+        self._catalog.addIndex('PrincipiaSearchSource', 'TextIndex')
 
-        self._catalog.addIndex('path','PluggablePathIndex')
+        self._catalog.addIndex('path','PathIndex')
 
     def __len__(self): return len(self._catalog)