commit/galaxy-central: james_taylor: templates: Move tool_form templates into templates/webapps/galaxy
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/35e476a0c0c4/ changeset: 35e476a0c0c4 user: james_taylor date: 2013-02-04 05:10:37 summary: templates: Move tool_form templates into templates/webapps/galaxy affected #: 4 files diff -r 4c6e63dc04c9bd2a82ecd11b8ffdf5b544a8e355 -r 35e476a0c0c4a453396010629030c77575fbec95 templates/tool_executed.mako --- a/templates/tool_executed.mako +++ /dev/null @@ -1,70 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<html> - -<head> -<title>Galaxy</title> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<link href="${h.url_for('/static/style/base.css')}" rel="stylesheet" type="text/css" /> -<script type="text/javascript"> - var inside_galaxy_frameset = false; - - if ( parent.frames && parent.frames.galaxy_history ) { - parent.frames.galaxy_history.location.href="${h.url_for( controller='root', action='history' )}"; - inside_galaxy_frameset = true; - } - - %if trans.user: - if (inside_galaxy_frameset) - { - //parent.frames.galaxy_tools.update_recently_used(); - } - %endif - - if ( parent.handle_minwidth_hint ) { - parent.handle_minwidth_hint( -1 ); - } - - function main() { - // If called from outside the galaxy frameset, redirect there - %if tool.options.refresh: - if ( ! inside_galaxy_frameset ) { - setTimeout( "refresh()", 1000 ); - document.getElementById( "refresh_message" ).style.display = "block"; - } - %endif - } - - function refresh() { - top.location.href = '${h.url_for( "/" )}'; - } - -</script> - -</head> - -<body onLoad="main()"> - -<div class="donemessagelarge"> - -<p>The following job has been successfully added to the queue:</p> - -%for data in out_data.values(): - <div style="padding: 10px"><b> ${data.hid}: ${data.name}</b></div> -%endfor - -<p> -You can check the status of queued jobs and view the resulting -data by refreshing the <b>History</b> pane. When the job has been run -the status will change from 'running' to 'finished' if completed -successfully or 'error' if problems were encountered. -</p> - -%if tool.options.refresh: -<p id="refresh_message" style="display: none;">You are now being redirected back to <a href="${h.url_for( '/' )}">Galaxy</a></div> -%endif - -</div> - -</body> - -</html> diff -r 4c6e63dc04c9bd2a82ecd11b8ffdf5b544a8e355 -r 35e476a0c0c4a453396010629030c77575fbec95 templates/tool_form.mako --- a/templates/tool_form.mako +++ /dev/null @@ -1,357 +0,0 @@ -<%inherit file="/base.mako"/> -<%namespace file="/message.mako" import="render_msg" /> -<%namespace file="/base_panels.mako" import="overlay" /> - -<%def name="stylesheets()"> - ${h.css( "autocomplete_tagging", "base", "panel_layout", "library" )} - <style type="text/css"> - html, body { - background-color: #fff; - } - </style> -</%def> - -<%def name="javascripts()"> - ${parent.javascripts()} - ${h.js( "galaxy.panels", "libs/jquery/select2", "libs/jquery/jstorage" )} - <script type="text/javascript"> - $(function() { - $(window).bind("refresh_on_change", function() { - $(':file').each( function() { - var file = $(this); - var file_value = file.val(); - if (file_value) { - // disable file input, since we don't want to upload the file on refresh - var file_name = $(this).attr("name"); - file.attr( { name: 'replaced_file_input_' + file_name, disabled: true } ); - // create a new hidden field which stores the filename and has the original name of the file input - var new_file_input = $(document.createElement('input')); - new_file_input.attr( { "type": "hidden", "value": file_value, "name": file_name } ); - file.after(new_file_input); - } - }); - }); - - // For drilldown parameters: add expand/collapse buttons and collapse initially-collapsed elements - $( 'div.drilldown-container' ).each( function() { - $(this).find('span.form-toggle' ).each( function() { - var show_hide_click_elt = $(this); - var group_id = show_hide_click_elt.attr('id').substring( 0, show_hide_click_elt.attr('id').lastIndexOf( '-click' ) ); - $('#' + group_id + '-container').each( function() { - var show_hide_elt = $(this); - if ( show_hide_click_elt.hasClass( 'toggle-expand' ) ) { - show_hide_elt.hide(); - } - show_hide_click_elt.click( function() { - if ( show_hide_click_elt.hasClass("toggle") ){ - show_hide_click_elt.addClass("toggle-expand"); - show_hide_click_elt.removeClass("toggle"); - show_hide_elt.slideUp( 'fast' ); - } - else { - show_hide_click_elt.addClass("toggle"); - show_hide_click_elt.removeClass("toggle-expand"); - show_hide_elt.slideDown( 'fast' ); - } - }); - }); - }); - }); - - function checkUncheckAll( name, check ) { - $("input[name='" + name + "'][type='checkbox']").attr('checked', !!check); - } - - // Inserts the Select All / Unselect All buttons for checkboxes - $("div.checkUncheckAllPlaceholder").each( function() { - var check_name = $(this).attr("checkbox_name"); - select_link = $("<a class='action-button'></a>").text("Select All").click(function() { - checkUncheckAll(check_name, true); - }); - unselect_link = $("<a class='action-button'></a>").text("Unselect All").click(function() { - checkUncheckAll(check_name, false); - }); - $(this).append(select_link).append(" ").append(unselect_link); - }); - - $(".add-librarydataset").live("click", function() { - var link = $(this); - $.ajax({ - url: "/visualization/list_libraries", - error: function(xhr, ajaxOptions, thrownError) { alert( "Grid failed" ); console.log(xhr, ajaxOptions, thrownError); }, - success: function(table_html) { - show_modal( - "Select Library Dataset", - table_html, { - "Cancel": function() { - hide_modal(); - }, - "Select": function() { - var names = []; - var ids = []; - counter = 1; - $('input[name=ldda_ids]:checked').each(function() { - var name = $.trim( $(this).siblings("label").text() ); - var id = $(this).val(); - names.push( counter + ". " + name ); - counter += 1; - ids.push(id); - }); - link.html( names.join("<br/>") ); - link.siblings("input[type=hidden]").val( ids.join("||") ); - hide_modal(); - } - } - ); - } - }); - }); - }); - - %if not add_frame.debug: - if( window.name != "galaxy_main" ) { - location.replace( '${h.url_for( controller='root', action='index', tool_id=tool.id )}' ); - } - %endif - - </script> - -</%def> - -<%def name="do_inputs( inputs, tool_state, errors, prefix, other_values=None )"> - <% - from galaxy.util.expressions import ExpressionContext - other_values = ExpressionContext( tool_state, other_values ) - %> - %for input_index, input in enumerate( inputs.itervalues() ): - %if not input.visible: - <% pass %> - %elif input.type == "repeat": - <div class="repeat-group"> - <div class="form-title-row"><strong>${input.title_plural}</strong> - %if input.help: - <div class="toolParamHelp" style="clear: both;"> - ${input.help} - </div> - %endif - </div> - <% - repeat_state = tool_state[input.name] - num_repeats = len( repeat_state ) - %> - %for i in range( num_repeats ): - <div class="repeat-group-item"> - <% - if input.name in errors: - rep_errors = errors[input.name][i] - else: - rep_errors = dict() - index = repeat_state[i]['__index__'] - %> - <div class="form-title-row"><strong>${input.title} ${i + 1}</strong></div> - ${do_inputs( input.inputs, repeat_state[i], rep_errors, prefix + input.name + "_" + str(index) + "|", other_values )} - %if input.min < num_repeats: - <div class="form-row"><input type="submit" class="btn" name="${prefix}${input.name}_${index}_remove" value="Remove ${input.title} ${i+1}"></div> - %endif - </div> - %if rep_errors.has_key( '__index__' ): - <div><img style="vertical-align: middle;" src="${h.url_for('/static/style/error_small.png')}"> <span style="vertical-align: middle;">${rep_errors['__index__']}</span></div> - %endif - %endfor - %if input.max > num_repeats: - <div class="form-row"><input type="submit" class="btn" name="${prefix}${input.name}_add" value="Add new ${input.title}"></div> - %endif - </div> - %elif input.type == "conditional": - <% - group_state = tool_state[input.name] - group_errors = errors.get( input.name, {} ) - current_case = group_state['__current_case__'] - group_prefix = prefix + input.name + "|" - %> - %if input.value_ref_in_group: - ${row_for_param( group_prefix, input.test_param, group_state, group_errors, other_values )} - %endif - ${do_inputs( input.cases[current_case].inputs, group_state, group_errors, group_prefix, other_values )} - %elif input.type == "upload_dataset": - %if input.get_datatype( trans, other_values ).composite_type is None: #have non-composite upload appear as before - <% - if input.name in errors: - rep_errors = errors[input.name][0] - else: - rep_errors = dict() - %> - ${do_inputs( input.inputs, tool_state[input.name][0], rep_errors, prefix + input.name + "_" + str( 0 ) + "|", other_values )} - %else: - <div class="repeat-group"> - <div class="form-title-row"><strong>${input.group_title( other_values )}</strong></div> - <% - repeat_state = tool_state[input.name] - %> - %for i in range( len( repeat_state ) ): - <div class="repeat-group-item"> - <% - if input.name in errors: - rep_errors = errors[input.name][i] - else: - rep_errors = dict() - index = repeat_state[i]['__index__'] - %> - <div class="form-title-row"><strong>File Contents for ${input.title_by_index( trans, i, other_values )}</strong></div> - ${do_inputs( input.inputs, repeat_state[i], rep_errors, prefix + input.name + "_" + str(index) + "|", other_values )} - ##<div class="form-row"><input type="submit" name="${prefix}${input.name}_${index}_remove" value="Remove ${input.title} ${i+1}"></div> - </div> - %endfor - ##<div class="form-row"><input type="submit" name="${prefix}${input.name}_add" value="Add new ${input.title}"></div> - </div> - %endif - %else: - ${row_for_param( prefix, input, tool_state, errors, other_values )} - %endif - %endfor -</%def> - -<%def name="row_for_param( prefix, param, parent_state, parent_errors, other_values )"> - <% - if parent_errors.has_key( param.name ): - cls = "form-row form-row-error" - else: - cls = "form-row" - - label = param.get_label() - - field = param.get_html_field( trans, parent_state[ param.name ], other_values ) - field.refresh_on_change = param.refresh_on_change - - # Field may contain characters submitted by user and these characters may be unicode; handle non-ascii characters gracefully. - field_html = field.get_html( prefix ) - if type( field_html ) is not unicode: - field_html = unicode( field_html, 'utf-8', 'replace' ) - - if param.type == "hidden": - return field_html - %> - <div class="${cls}"> - %if label: - <label for="${param.name}">${label}:</label> - %endif - <div class="form-row-input">${field_html}</div> - %if parent_errors.has_key( param.name ): - <div class="form-row-error-message"> - <div><img style="vertical-align: middle;" src="${h.url_for('/static/style/error_small.png')}"> <span style="vertical-align: middle;">${parent_errors[param.name]}</span></div> - </div> - %endif - - %if param.help: - <div class="toolParamHelp" style="clear: both;"> - ${param.help} - </div> - %endif - - <div style="clear: both;"></div> - - </div> -</%def> - -<% overlay(visible=False) %> - -%if add_frame.from_noframe: - <div class="warningmessage"> - <strong>Welcome to Galaxy</strong> - <hr/> - It appears that you found this tool from a link outside of Galaxy. - If you're not familiar with Galaxy, please consider visiting the - <a href="${h.url_for( controller='root' )}" target="_top">welcome page</a>. - To learn more about what Galaxy is and what it can do for you, please visit - the <a href="${add_frame.wiki_url}" target="_top">Galaxy wiki</a>. - </div> - <br/> -%endif - -<% - # Render an error message if a dynamically generated select list is missing a required - # index file or entry in the tool_data_table_conf.xml file. - message = "" - params_with_missing_data_table_entry = tool.params_with_missing_data_table_entry - params_with_missing_index_file = tool.params_with_missing_index_file - if params_with_missing_data_table_entry: - param = params_with_missing_data_table_entry[0] - message += "Data table named '%s' is required by tool but not configured. " % param.options.missing_tool_data_table_name - if tool.params_with_missing_index_file: - param = params_with_missing_index_file[0] - message += "Index file named '%s' is required by tool but not available. " % param.options.missing_index_file - - # Handle calculating the redirect url for the special case where we have nginx proxy - # upload and need to do url_for on the redirect portion of the tool action. - try: - tool_url = h.url_for(tool.action) - except AttributeError: - assert len(tool.action) == 2 - tool_url = tool.action[0] + h.url_for(tool.action[1]) -%> - -<% - # Name of the tool in lower case - low_tool_name = tool.name.lower() -%> - -%if tool_id_version_message: - ${render_msg( tool_id_version_message, 'warning' )} -%endif - -<div class="toolForm" id="${tool.id}"> - <form id="tool_form" name="tool_form" action="${tool_url}" enctype="${tool.enctype}" target="${tool.target}" method="${tool.method}"> - %if tool.has_multiple_pages: - <div class="toolFormTitle">${tool.name} (step ${tool_state.page+1} of ${tool.npages}) - %elif not tool_version_select_field: - <div class="toolFormTitle">${tool.name} (version ${tool.version}) - %else: - <div class="toolFormTitle">${tool.name} ${tool_version_select_field.get_html()} - %endif - %if trans.app.config.biostar: - <!-- BioStar links --> - <a href="${trans.app.config.biostar}/new/post/tagged/${low_tool_name}" target="galaxy_main" class="icon-button general-question tooltip close-side-panels" data-original-title="Ask a tool related question"></a> - <a href="${trans.app.config.biostar}/show/tag/${low_tool_name}/" target="galaxy_main" class="icon-button tag-question tooltip close-side-panels" data-original-title="See tool related posts" ></a> - <!-- End of BioStar links --> - %endif - </div> - <div class="toolFormBody"> - <input type="hidden" name="refresh" value="refresh"> - <input type="hidden" name="tool_id" value="${tool.id}"> - <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], context=tool.get_param_html_map( trans, tool_state.page, tool_state.inputs ) )} - <input type="submit" class="btn btn-primary" name="runtool_btn" value="Execute"> - %else: - ${do_inputs( tool.inputs_by_page[ tool_state.page ], tool_state.inputs, errors, "" )} - <div class="form-row form-actions"> - %if tool_state.page == tool.last_page: - <input type="submit" class="btn btn-primary" name="runtool_btn" value="Execute"> - %else: - <input type="submit" class="btn btn-primary" name="runtool_btn" value="Next step"> - %endif - </div> - %endif - </div> - </form> -</div> -%if tool.help: - <div class="toolHelp"> - <div class="toolHelpBody"> - <% - if tool.has_multiple_pages: - tool_help = tool.help_by_page[tool_state.page] - else: - tool_help = tool.help - - # Help is Mako template, so render using current static path. - tool_help = tool_help.render( static_path=h.url_for( '/static' ) ) - - # Convert to unicode to display non-ascii characters. - if type( tool_help ) is not unicode: - tool_help = unicode( tool_help, 'utf-8') - %> - ${tool_help} - </div> - </div> -%endif diff -r 4c6e63dc04c9bd2a82ecd11b8ffdf5b544a8e355 -r 35e476a0c0c4a453396010629030c77575fbec95 templates/webapps/galaxy/tool_executed.mako --- /dev/null +++ b/templates/webapps/galaxy/tool_executed.mako @@ -0,0 +1,70 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> + +<head> +<title>Galaxy</title> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<link href="${h.url_for('/static/style/base.css')}" rel="stylesheet" type="text/css" /> +<script type="text/javascript"> + var inside_galaxy_frameset = false; + + if ( parent.frames && parent.frames.galaxy_history ) { + parent.frames.galaxy_history.location.href="${h.url_for( controller='root', action='history' )}"; + inside_galaxy_frameset = true; + } + + %if trans.user: + if (inside_galaxy_frameset) + { + //parent.frames.galaxy_tools.update_recently_used(); + } + %endif + + if ( parent.handle_minwidth_hint ) { + parent.handle_minwidth_hint( -1 ); + } + + function main() { + // If called from outside the galaxy frameset, redirect there + %if tool.options.refresh: + if ( ! inside_galaxy_frameset ) { + setTimeout( "refresh()", 1000 ); + document.getElementById( "refresh_message" ).style.display = "block"; + } + %endif + } + + function refresh() { + top.location.href = '${h.url_for( "/" )}'; + } + +</script> + +</head> + +<body onLoad="main()"> + +<div class="donemessagelarge"> + +<p>The following job has been successfully added to the queue:</p> + +%for data in out_data.values(): + <div style="padding: 10px"><b> ${data.hid}: ${data.name}</b></div> +%endfor + +<p> +You can check the status of queued jobs and view the resulting +data by refreshing the <b>History</b> pane. When the job has been run +the status will change from 'running' to 'finished' if completed +successfully or 'error' if problems were encountered. +</p> + +%if tool.options.refresh: +<p id="refresh_message" style="display: none;">You are now being redirected back to <a href="${h.url_for( '/' )}">Galaxy</a></div> +%endif + +</div> + +</body> + +</html> diff -r 4c6e63dc04c9bd2a82ecd11b8ffdf5b544a8e355 -r 35e476a0c0c4a453396010629030c77575fbec95 templates/webapps/galaxy/tool_form.mako --- /dev/null +++ b/templates/webapps/galaxy/tool_form.mako @@ -0,0 +1,357 @@ +<%inherit file="/base.mako"/> +<%namespace file="/message.mako" import="render_msg" /> +<%namespace file="/base_panels.mako" import="overlay" /> + +<%def name="stylesheets()"> + ${h.css( "autocomplete_tagging", "base", "panel_layout", "library" )} + <style type="text/css"> + html, body { + background-color: #fff; + } + </style> +</%def> + +<%def name="javascripts()"> + ${parent.javascripts()} + ${h.js( "galaxy.panels", "libs/jquery/select2", "libs/jquery/jstorage" )} + <script type="text/javascript"> + $(function() { + $(window).bind("refresh_on_change", function() { + $(':file').each( function() { + var file = $(this); + var file_value = file.val(); + if (file_value) { + // disable file input, since we don't want to upload the file on refresh + var file_name = $(this).attr("name"); + file.attr( { name: 'replaced_file_input_' + file_name, disabled: true } ); + // create a new hidden field which stores the filename and has the original name of the file input + var new_file_input = $(document.createElement('input')); + new_file_input.attr( { "type": "hidden", "value": file_value, "name": file_name } ); + file.after(new_file_input); + } + }); + }); + + // For drilldown parameters: add expand/collapse buttons and collapse initially-collapsed elements + $( 'div.drilldown-container' ).each( function() { + $(this).find('span.form-toggle' ).each( function() { + var show_hide_click_elt = $(this); + var group_id = show_hide_click_elt.attr('id').substring( 0, show_hide_click_elt.attr('id').lastIndexOf( '-click' ) ); + $('#' + group_id + '-container').each( function() { + var show_hide_elt = $(this); + if ( show_hide_click_elt.hasClass( 'toggle-expand' ) ) { + show_hide_elt.hide(); + } + show_hide_click_elt.click( function() { + if ( show_hide_click_elt.hasClass("toggle") ){ + show_hide_click_elt.addClass("toggle-expand"); + show_hide_click_elt.removeClass("toggle"); + show_hide_elt.slideUp( 'fast' ); + } + else { + show_hide_click_elt.addClass("toggle"); + show_hide_click_elt.removeClass("toggle-expand"); + show_hide_elt.slideDown( 'fast' ); + } + }); + }); + }); + }); + + function checkUncheckAll( name, check ) { + $("input[name='" + name + "'][type='checkbox']").attr('checked', !!check); + } + + // Inserts the Select All / Unselect All buttons for checkboxes + $("div.checkUncheckAllPlaceholder").each( function() { + var check_name = $(this).attr("checkbox_name"); + select_link = $("<a class='action-button'></a>").text("Select All").click(function() { + checkUncheckAll(check_name, true); + }); + unselect_link = $("<a class='action-button'></a>").text("Unselect All").click(function() { + checkUncheckAll(check_name, false); + }); + $(this).append(select_link).append(" ").append(unselect_link); + }); + + $(".add-librarydataset").live("click", function() { + var link = $(this); + $.ajax({ + url: "/visualization/list_libraries", + error: function(xhr, ajaxOptions, thrownError) { alert( "Grid failed" ); console.log(xhr, ajaxOptions, thrownError); }, + success: function(table_html) { + show_modal( + "Select Library Dataset", + table_html, { + "Cancel": function() { + hide_modal(); + }, + "Select": function() { + var names = []; + var ids = []; + counter = 1; + $('input[name=ldda_ids]:checked').each(function() { + var name = $.trim( $(this).siblings("label").text() ); + var id = $(this).val(); + names.push( counter + ". " + name ); + counter += 1; + ids.push(id); + }); + link.html( names.join("<br/>") ); + link.siblings("input[type=hidden]").val( ids.join("||") ); + hide_modal(); + } + } + ); + } + }); + }); + }); + + %if not add_frame.debug: + if( window.name != "galaxy_main" ) { + location.replace( '${h.url_for( controller='root', action='index', tool_id=tool.id )}' ); + } + %endif + + </script> + +</%def> + +<%def name="do_inputs( inputs, tool_state, errors, prefix, other_values=None )"> + <% + from galaxy.util.expressions import ExpressionContext + other_values = ExpressionContext( tool_state, other_values ) + %> + %for input_index, input in enumerate( inputs.itervalues() ): + %if not input.visible: + <% pass %> + %elif input.type == "repeat": + <div class="repeat-group"> + <div class="form-title-row"><strong>${input.title_plural}</strong> + %if input.help: + <div class="toolParamHelp" style="clear: both;"> + ${input.help} + </div> + %endif + </div> + <% + repeat_state = tool_state[input.name] + num_repeats = len( repeat_state ) + %> + %for i in range( num_repeats ): + <div class="repeat-group-item"> + <% + if input.name in errors: + rep_errors = errors[input.name][i] + else: + rep_errors = dict() + index = repeat_state[i]['__index__'] + %> + <div class="form-title-row"><strong>${input.title} ${i + 1}</strong></div> + ${do_inputs( input.inputs, repeat_state[i], rep_errors, prefix + input.name + "_" + str(index) + "|", other_values )} + %if input.min < num_repeats: + <div class="form-row"><input type="submit" class="btn" name="${prefix}${input.name}_${index}_remove" value="Remove ${input.title} ${i+1}"></div> + %endif + </div> + %if rep_errors.has_key( '__index__' ): + <div><img style="vertical-align: middle;" src="${h.url_for('/static/style/error_small.png')}"> <span style="vertical-align: middle;">${rep_errors['__index__']}</span></div> + %endif + %endfor + %if input.max > num_repeats: + <div class="form-row"><input type="submit" class="btn" name="${prefix}${input.name}_add" value="Add new ${input.title}"></div> + %endif + </div> + %elif input.type == "conditional": + <% + group_state = tool_state[input.name] + group_errors = errors.get( input.name, {} ) + current_case = group_state['__current_case__'] + group_prefix = prefix + input.name + "|" + %> + %if input.value_ref_in_group: + ${row_for_param( group_prefix, input.test_param, group_state, group_errors, other_values )} + %endif + ${do_inputs( input.cases[current_case].inputs, group_state, group_errors, group_prefix, other_values )} + %elif input.type == "upload_dataset": + %if input.get_datatype( trans, other_values ).composite_type is None: #have non-composite upload appear as before + <% + if input.name in errors: + rep_errors = errors[input.name][0] + else: + rep_errors = dict() + %> + ${do_inputs( input.inputs, tool_state[input.name][0], rep_errors, prefix + input.name + "_" + str( 0 ) + "|", other_values )} + %else: + <div class="repeat-group"> + <div class="form-title-row"><strong>${input.group_title( other_values )}</strong></div> + <% + repeat_state = tool_state[input.name] + %> + %for i in range( len( repeat_state ) ): + <div class="repeat-group-item"> + <% + if input.name in errors: + rep_errors = errors[input.name][i] + else: + rep_errors = dict() + index = repeat_state[i]['__index__'] + %> + <div class="form-title-row"><strong>File Contents for ${input.title_by_index( trans, i, other_values )}</strong></div> + ${do_inputs( input.inputs, repeat_state[i], rep_errors, prefix + input.name + "_" + str(index) + "|", other_values )} + ##<div class="form-row"><input type="submit" name="${prefix}${input.name}_${index}_remove" value="Remove ${input.title} ${i+1}"></div> + </div> + %endfor + ##<div class="form-row"><input type="submit" name="${prefix}${input.name}_add" value="Add new ${input.title}"></div> + </div> + %endif + %else: + ${row_for_param( prefix, input, tool_state, errors, other_values )} + %endif + %endfor +</%def> + +<%def name="row_for_param( prefix, param, parent_state, parent_errors, other_values )"> + <% + if parent_errors.has_key( param.name ): + cls = "form-row form-row-error" + else: + cls = "form-row" + + label = param.get_label() + + field = param.get_html_field( trans, parent_state[ param.name ], other_values ) + field.refresh_on_change = param.refresh_on_change + + # Field may contain characters submitted by user and these characters may be unicode; handle non-ascii characters gracefully. + field_html = field.get_html( prefix ) + if type( field_html ) is not unicode: + field_html = unicode( field_html, 'utf-8', 'replace' ) + + if param.type == "hidden": + return field_html + %> + <div class="${cls}"> + %if label: + <label for="${param.name}">${label}:</label> + %endif + <div class="form-row-input">${field_html}</div> + %if parent_errors.has_key( param.name ): + <div class="form-row-error-message"> + <div><img style="vertical-align: middle;" src="${h.url_for('/static/style/error_small.png')}"> <span style="vertical-align: middle;">${parent_errors[param.name]}</span></div> + </div> + %endif + + %if param.help: + <div class="toolParamHelp" style="clear: both;"> + ${param.help} + </div> + %endif + + <div style="clear: both;"></div> + + </div> +</%def> + +<% overlay(visible=False) %> + +%if add_frame.from_noframe: + <div class="warningmessage"> + <strong>Welcome to Galaxy</strong> + <hr/> + It appears that you found this tool from a link outside of Galaxy. + If you're not familiar with Galaxy, please consider visiting the + <a href="${h.url_for( controller='root' )}" target="_top">welcome page</a>. + To learn more about what Galaxy is and what it can do for you, please visit + the <a href="${add_frame.wiki_url}" target="_top">Galaxy wiki</a>. + </div> + <br/> +%endif + +<% + # Render an error message if a dynamically generated select list is missing a required + # index file or entry in the tool_data_table_conf.xml file. + message = "" + params_with_missing_data_table_entry = tool.params_with_missing_data_table_entry + params_with_missing_index_file = tool.params_with_missing_index_file + if params_with_missing_data_table_entry: + param = params_with_missing_data_table_entry[0] + message += "Data table named '%s' is required by tool but not configured. " % param.options.missing_tool_data_table_name + if tool.params_with_missing_index_file: + param = params_with_missing_index_file[0] + message += "Index file named '%s' is required by tool but not available. " % param.options.missing_index_file + + # Handle calculating the redirect url for the special case where we have nginx proxy + # upload and need to do url_for on the redirect portion of the tool action. + try: + tool_url = h.url_for(tool.action) + except AttributeError: + assert len(tool.action) == 2 + tool_url = tool.action[0] + h.url_for(tool.action[1]) +%> + +<% + # Name of the tool in lower case + low_tool_name = tool.name.lower() +%> + +%if tool_id_version_message: + ${render_msg( tool_id_version_message, 'warning' )} +%endif + +<div class="toolForm" id="${tool.id}"> + <form id="tool_form" name="tool_form" action="${tool_url}" enctype="${tool.enctype}" target="${tool.target}" method="${tool.method}"> + %if tool.has_multiple_pages: + <div class="toolFormTitle">${tool.name} (step ${tool_state.page+1} of ${tool.npages}) + %elif not tool_version_select_field: + <div class="toolFormTitle">${tool.name} (version ${tool.version}) + %else: + <div class="toolFormTitle">${tool.name} ${tool_version_select_field.get_html()} + %endif + %if trans.app.config.biostar: + <!-- BioStar links --> + <a href="${trans.app.config.biostar}/new/post/tagged/${low_tool_name}" target="galaxy_main" class="icon-button general-question tooltip close-side-panels" data-original-title="Ask a tool related question"></a> + <a href="${trans.app.config.biostar}/show/tag/${low_tool_name}/" target="galaxy_main" class="icon-button tag-question tooltip close-side-panels" data-original-title="See tool related posts" ></a> + <!-- End of BioStar links --> + %endif + </div> + <div class="toolFormBody"> + <input type="hidden" name="refresh" value="refresh"> + <input type="hidden" name="tool_id" value="${tool.id}"> + <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], context=tool.get_param_html_map( trans, tool_state.page, tool_state.inputs ) )} + <input type="submit" class="btn btn-primary" name="runtool_btn" value="Execute"> + %else: + ${do_inputs( tool.inputs_by_page[ tool_state.page ], tool_state.inputs, errors, "" )} + <div class="form-row form-actions"> + %if tool_state.page == tool.last_page: + <input type="submit" class="btn btn-primary" name="runtool_btn" value="Execute"> + %else: + <input type="submit" class="btn btn-primary" name="runtool_btn" value="Next step"> + %endif + </div> + %endif + </div> + </form> +</div> +%if tool.help: + <div class="toolHelp"> + <div class="toolHelpBody"> + <% + if tool.has_multiple_pages: + tool_help = tool.help_by_page[tool_state.page] + else: + tool_help = tool.help + + # Help is Mako template, so render using current static path. + tool_help = tool_help.render( static_path=h.url_for( '/static' ) ) + + # Convert to unicode to display non-ascii characters. + if type( tool_help ) is not unicode: + tool_help = unicode( tool_help, 'utf-8') + %> + ${tool_help} + </div> + </div> +%endif 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)
-
Bitbucket