[Zope-Checkins] CVS: Zope/lib/python/Products/ZCTextIndex - ZCTextIndex.py:1.39

Andreas Jung andreas@andreas-jung.com
Fri, 24 Jan 2003 00:36:46 -0500


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

Modified Files:
	ZCTextIndex.py 
Log Message:
added getIndexSourceNames()


=== Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py 1.38 => 1.39 ===
--- Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py:1.38	Mon Dec 16 13:34:49 2002
+++ Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py	Fri Jan 24 00:36:43 2003
@@ -215,6 +215,10 @@
 
     manage_main = DTMLFile('dtml/manageZCTextIndex', globals())
 
+    def getIndexSourceNames(self):
+        """ return name of indexed attributes """
+        return (self.id, )
+
     def getIndexType(self):
         """Return index type string"""
         return getattr(self, '_index_type', self._index_factory.__name__)