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

Andreas Jung andreas@andreas-jung.com
Thu, 23 Jan 2003 12:46:53 -0500


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

Modified Files:
	FieldIndex.py 
Log Message:
Merging ajung-oneindex-multipleattributes-branch

This implements: http://lists.zope.org/pipermail/zope-coders/20002-November/002680.html



=== Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py 1.11 => 1.12 ===
--- Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py:1.11	Thu Dec  5 16:35:52 2002
+++ Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py	Thu Jan 23 12:46:21 2003
@@ -12,7 +12,6 @@
 ##############################################################################
 
 """Simple column indices
-
 $Id$
 """
 
@@ -44,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)