[Zope-Checkins] CVS: Zope2 - FieldIndex.py:1.3
andreas@serenade.digicool.com
andreas@serenade.digicool.com
Thu, 31 May 2001 08:23:22 -0400
Update of /cvs-repository/Zope2/lib/python/Products/PluginIndexes/FieldIndex
In directory serenade:/tmp/cvs-serv24400/PluginIndexes/FieldIndex
Modified Files:
FieldIndex.py
Log Message:
- Fix for passing additional parameters
- minor code cleanup for handling wrong index names
--- Updated File FieldIndex.py in package Zope2 --
--- FieldIndex.py 2001/05/30 15:57:31 1.2
+++ FieldIndex.py 2001/05/31 12:22:52 1.3
@@ -137,5 +137,6 @@
def manage_addFieldIndex(self, id, REQUEST=None, RESPONSE=None, URL3=None):
"""Add a field index"""
- return self.manage_addIndex(id, 'FieldIndex', REQUEST, RESPONSE, URL3)
+ return self.manage_addIndex(id, 'FieldIndex', extra=None, \
+ REQUEST=REQUEST, RESPONSE=RESPONSE, URL1=URL3)