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
panels.mako
<%inherit file="/webapps/galaxy/base_panels.mako"/>

<%def name="init()">
<%
    self.has_left_panel=False
    self.has_right_panel=False
    self.active_view=active_view
    self.message_box_visible=False
%>
</%def>

<%def name="center_panel()">
    <div style="overflow: auto; height: 100%;">
        <div style="padding: 10px">
            ${grid}
        </div>
    </div>
</%def>
back to top