Update of /cvsroot/warp-framework/warp_framework
In directory usw-pr-cvs1:/tmp/cvs-serv21706
Modified Files:
Tag: interra
html_edit_properties_display_light.py
Log Message:
Correcting bug with missed 'name_prefix' named parameter leading to unusable multiple_edit_properties views
Index: html_edit_properties_display_light.py
===================================================================
RCS file: /cvsroot/warp-framework/warp_framework/html_edit_properties_display_light.py,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -r1.1 -r1.1.2.1
*** html_edit_properties_display_light.py 19 Feb 2002 17:53:18 -0000 1.1
--- html_edit_properties_display_light.py 19 Jul 2002 00:47:28 -0000 1.1.2.1
***************
*** 38,42 ****
html += property % {
'title':property_.title,
! 'widget':property_.widget(keywords['name_prefix'])
}
except:
--- 38,42 ----
html += property % {
'title':property_.title,
! 'widget':property_.widget(name_prefix=keywords['name_prefix'])
}
except:
|