<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%namespace file="/webapps/tool_shed/common/repository_actions_menu.mako" import="render_tool_shed_repository_actions" /> <%namespace file="/webapps/tool_shed/common/common.mako" import="*" /> <%namespace file="/webapps/tool_shed/repository/common.mako" import="*" /> <%! def inherit(context): if context.get('use_panels'): return '/webapps/tool_shed/base_panels.mako' else: return '/base.mako' %> <%inherit file="${inherit(context)}"/> <%def name="stylesheets()"> ${parent.stylesheets()} ${h.css( "jquery.rating", "dynatree_skin/ui.dynatree" )} <%def name="javascripts()"> ${parent.javascripts()} ${h.js( "libs/jquery/jquery.rating", "libs/jquery/jquery-ui", "libs/jquery/jquery.cookie", "libs/jquery/jquery.dynatree" )} ${common_javascripts(repository)} <% is_new = repository.is_new( trans.app ) can_push = trans.app.security_agent.can_push( trans.app, trans.user, repository ) can_download = not is_new and ( not is_malicious or can_push ) can_browse_contents = not is_new %> ${render_tool_shed_repository_actions( repository, metadata=metadata, changeset_revision=changeset_revision )} %if message: ${render_msg( message, status )} %endif %if can_browse_contents:
Repository '${repository.name | h}' revision ${repository.tip( trans.app ) | h} (repository tip)
%if can_download:
${render_clone_str( repository )}
%endif
${render_repository_type_select_field( repository_type_select_field, render_help=False )}
%if can_push:
Loading...
Click on a file to display its contents below. You may delete files from the repository by clicking the check box next to each file and clicking the Delete selected files button.
%if commit_message: %else: %endif
This is the commit message for the mercurial change set that will be created if you delete selected files.
%else:
Loading...
%endif

%endif