[hg] galaxy 1594: Fix for use of deprecated <display> tags in to...

details: http://www.bx.psu.edu/hg/galaxy/rev/881ac57dcc81 changeset: 1594:881ac57dcc81 user: Dan Blankenberg <dan@bx.psu.edu> date: Fri Oct 31 15:21:30 2008 -0400 description: Fix for use of deprecated <display> tags in tool_form.mako. 1 file(s) affected in this change: templates/tool_form.mako diffs (12 lines): diff -r cb3507efced7 -r 881ac57dcc81 templates/tool_form.mako --- a/templates/tool_form.mako Fri Oct 31 14:52:41 2008 -0400 +++ b/templates/tool_form.mako Fri Oct 31 15:21:30 2008 -0400 @@ -127,7 +127,7 @@ <input type="hidden" name="tool_state" value="${util.object_to_string( tool_state.encode( tool, app ) )}"> %if tool.display_by_page[tool_state.page]: - ${trans.fill_template_string( tool.display_by_page[tool_state.page], other_values=tool.get_param_html_map( trans, tool_state.page, tool_state.inputs ) )} + ${trans.fill_template_string( tool.display_by_page[tool_state.page], context=tool.get_param_html_map( trans, tool_state.page, tool_state.inputs ) )} <input type="submit" class="primary-button" name="runtool_btn" value="Execute"> %else:
participants (1)
-
Greg Von Kuster