[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/FieldIndex - FieldIndex.py:1.10.30.1

Andreas Jung andreas@andreas-jung.com
Tue, 26 Nov 2002 12:18:13 -0500


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

Modified Files:
      Tag: ajung-oneindex-multipleattributes-branch
	FieldIndex.py 
Log Message:
added multi-attribute indexing support for UnIndex base class and FieldIndex


=== Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py 1.10 => 1.10.30.1 ===
--- Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py:1.10	Wed Aug 14 18:19:29 2002
+++ Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py	Tue Nov 26 12:17:42 2002
@@ -43,7 +43,8 @@
 
 manage_addFieldIndexForm = DTMLFile('dtml/addFieldIndex', globals())
 
-def manage_addFieldIndex(self, id, REQUEST=None, RESPONSE=None, URL3=None):
+def manage_addFieldIndex(self, id, extra=None,
+                REQUEST=None, RESPONSE=None, URL3=None):
     """Add a field index"""
-    return self.manage_addIndex(id, 'FieldIndex', extra=None, \
+    return self.manage_addIndex(id, 'FieldIndex', extra=extra, \
              REQUEST=REQUEST, RESPONSE=RESPONSE, URL1=URL3)