<%namespace file="/message.mako" import="render_msg" /> <%! 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()} <%def name="javascripts()"> ${parent.javascripts()} %if message: ${render_msg( message, status )} %endif
Importing may take a while, depending upon the contents of the capsule. Wait until this page refreshes after clicking the Import button below.
Repository capsule information
${export_info_dict.get( 'export_time', 'unknown' ) | h}
${export_info_dict.get( 'tool_shed', 'unknown' ) | h}
${export_info_dict.get( 'repository_name', 'unknown' ) | h}
${export_info_dict.get( 'repository_owner', 'unknown' ) | h}
${export_info_dict.get( 'changeset_revision', 'unknown' ) | h}
${export_info_dict.get( 'export_repository_dependencies', 'unknown' ) | h}

Exported archives for each of the following repositories are included in the capsule.

The Status column will display an entry starting with the word Exists for those repositories that already exist in this Tool Shed. These repositories will not be created, but the existing repository will be used. Existing repositories that are deprecated or deleted must be manually altered appropriately.

If you are not an admin user in this Tool Shed and you are not a member of the Intergalactic Utilities Commission defined for this Tool Shed, you will only be able to import repository archives whose associated owner is you. The Status column for repository archive that you are not authorized to import will display the entry Not authorized to import. Contact someone that is authorized to import these repository archives in this Tool Shed if necessary.

Repositories that do not yet exist in this Tool Shed (and whose archives you are authorized to import) will be created in the order defined by the following list.

Import capsule
%for repository_status_info_dict in repository_status_info_dicts: %endfor
Name Owner Changeset Revision Type Status
${ repository_status_info_dict[ 'name' ] | h } ${ repository_status_info_dict[ 'owner' ] | h } ${ repository_status_info_dict[ 'changeset_revision' ] | h } <% # Get the label for the repository type. type = repository_status_info_dict[ 'type' ] type_class = trans.app.repository_types_registry.get_class_by_label( type ) type_label = type_class.label %> ${ type_label | h } %if repository_status_info_dict[ 'status' ] is None:   %else: ${ repository_status_info_dict[ 'status' ] | h } %endif