[Zope-Checkins] CVS: Zope/lib/python/Products/ZCTextIndex - ZCTextIndex.py:1.36.6.1
Andreas Jung
andreas@andreas-jung.com
Sun, 17 Nov 2002 06:16:04 -0500
Update of /cvs-repository/Zope/lib/python/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv20205/ZCTextIndex
Modified Files:
Tag: ajung-oneindex-multipleattributes-branch
ZCTextIndex.py
Log Message:
added getIndexSourceNames()
=== Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py 1.36 => 1.36.6.1 ===
--- Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py:1.36 Thu Oct 24 09:40:15 2002
+++ Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py Sun Nov 17 06:16:04 2002
@@ -211,6 +211,11 @@
pass
self.index = self._index_factory(self.getLexicon())
+ def getIndexSourceNames(self):
+ """ return name of indexed attributes """
+ return (self.id, )
+
+
## User Interface Methods ##
manage_main = DTMLFile('dtml/manageZCTextIndex', globals())