https://github.com/galaxyproject/galaxy
Raw File
Tip revision: a900f995161e17197a294cca1a3ea471fffc2a7c authored by Dannon Baker on 12 February 2015, 13:28:37 UTC
Fix path manipulation during fetch_eggs. This getting an external version of pkg_resources (and not ours in lib/) is what is causing the weird egg fetching errors. Newer versions of pkg_resources create a mangled distribution string for some eggs with nonstandard version identifiers.
Tip revision: a900f99
export_base.mako
##
## Base template for exporting an item. Template expects the following parameters:
## (a) item - item to be exported.
##
<%!
    def inherit(context):
        if context.get('use_panels', False) == True:
            if context.get('webapp'):
                webapp = context.get('webapp')
            else:
                webapp = 'galaxy'
            return '/webapps/%s/base_panels.mako' % webapp
        else:
            return '/base.mako'
%>
<%inherit file="${inherit(context)}"/>

<%namespace file="./display_common.mako" import="*" />
<%namespace file="/message.mako" import="render_msg" />

##
## Page methods.
##

<%def name="init()">
<%
    self.has_left_panel=False
    self.has_right_panel=False
    self.message_box_visible=False
    self.overlay_visible=False
    self.message_box_class=""
    self.active_view=""
    self.body_class=""
    
    # Get class name strings.
    self.item_class_name = get_class_display_name( item.__class__ ) 
    self.item_class_name_lc = self.item_class_name.lower()
    self.item_class_plural_name = get_class_plural_display_name( item.__class__ )
    self.item_class_plural_name_lc = self.item_class_plural_name.lower()
    self.controller = get_controller_name(item)
%>
</%def>

<%def name="title()">
    Export ${get_class_display_name( item.__class__ )} '${get_item_name( item )}'
</%def>

<%def name="stylesheets()">
    ${parent.stylesheets()}
    <style>
        ## Put some whitespace before each section header.
        h3 {
            margin-top: 1.5em;
        }
        input.action-button {
            margin-left: 0;
        }
        ## If page is displayed in panels, pad from edges for readability.
        %if context.get('use_panels'):
        div#center {
            padding: 10px;
        }
        %endif
        .display-url {
            margin: 0.5em 0em 0.5em 0.5em;
            font-weight: bold;
        }
    </style>
</%def>

<%def name="center_panel()">
    ${self.body()}
</%def>

<%def name="render_url_for_importing(item)">
    <h3>URL for Importing to Another Galaxy</h3>
    
    %if item.importable:
        Use this URL to import the ${get_class_display_name( item.__class__ ).lower()} directly into another Galaxy server: 
        <div class="display-url">
            ${h.url_for(controller=self.controller, action='display_by_username_and_slug', username=item.user.username,
                        slug=item.slug, format='json', qualified=True )}
        </div>
        (Copy this URL into the box titled 'Workflow URL' in the Import Workflow page.)
    %else:
        <a href="${h.url_for(controller=self.controller, action='sharing', id=trans.security.encode_id( item.id ) )}">This  ${get_class_display_name( item.__class__ ).lower()} must be accessible before it can be imported into another Galaxy.</a>
    %endif
</%def>

<%def name="render_download_to_file(item)">
    <h3>Download to File</h3>
    
    <a href="${h.url_for( controller=self.controller, action='display_by_username_and_slug', username=item.user.username,
                          slug=item.slug, format='json-download' )}">
        Download ${get_class_display_name( item.__class__ ).lower()} to file so that it can be saved or imported into another Galaxy server.</a>
</%def>

<%def name="render_more(item)">
    ## Override.
</%def>

<%def name="render_footer()">
    <p><br><br>
    <a href="${h.url_for(controller=self.controller, action="list" )}">Back to ${self.item_class_plural_name} List</a>
</%def>

<%def name="body()">
    <%
        item_name = get_item_name(item)
    %>
    <h2>Download or Export ${self.item_class_name} '${item_name}'</h2>
    
    ${self.render_download_to_file(item)}
    
    ${self.render_url_for_importing(item)}
    
    ${self.render_more(item)}
    
    ${self.render_footer()}
</%def>
back to top