commit/galaxy-central: guerler: ToolForm: Activate by default
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/2de1b7c819a2/ Changeset: 2de1b7c819a2 User: guerler Date: 2015-01-29 04:59:43+00:00 Summary: ToolForm: Activate by default Affected #: 2 files diff -r 052c03f52326a5755013a6b5e9d7ad746d4dd940 -r 2de1b7c819a2a1083b86d0d16ac2c6cd182578cf config/galaxy.ini.sample --- a/config/galaxy.ini.sample +++ b/config/galaxy.ini.sample @@ -755,7 +755,7 @@ # -- Beta features # Use new tool form -toolform_upgrade = True +#toolform_upgrade = True # Enable Galaxy to communicate directly with a sequencer #enable_sequencer_communication = False diff -r 052c03f52326a5755013a6b5e9d7ad746d4dd940 -r 2de1b7c819a2a1083b86d0d16ac2c6cd182578cf templates/webapps/galaxy/tool_form.mako --- a/templates/webapps/galaxy/tool_form.mako +++ b/templates/webapps/galaxy/tool_form.mako @@ -4,7 +4,7 @@ ${h.css('base', 'jquery-ui/smoothness/jquery-ui')} ## skip new tool form code if disabled -##%if util.string_as_bool(trans.app.config.get('toolform_upgrade', False)): +%if util.string_as_bool(trans.app.config.get('toolform_upgrade', True)): <% ## TEMPORARY: create tool dictionary in mako while both tool forms are in use. ## This avoids making two separate requests since the classic form requires the mako anyway. @@ -26,9 +26,9 @@ }); </script><div id="tool-form-classic" style="display: none;"> -##%else: -## <div id="tool-form-classic"> -##%endif +%else: + <div id="tool-form-classic"> +%endif <%namespace file="/message.mako" import="render_msg" /><%namespace file="/base_panels.mako" import="overlay" /> Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org