Child: [ddf08c] (diff)

Download this file

import.html    27 lines (23 with data), 1.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'allura:templates/repo/repo_master.html' %}
{% block title %}
{% if c.app.repo %}
SVN Repository: {{c.app.repo.name}}
{% else %}
SVN Repository
{% endif %}
{% endblock %}
{% block header %}{{c.app.config.options.mount_label}}{% endblock %}
{% block content %}
<div class="message error" style="width:90%">
<h1 class="header">Warning</h1>
<p class="content">Importing a repository will <strong>overwrite any and all data</strong>
in your existing repository.</p>
</div>
<br style="clear:both"/>
<p><strong>Be careful! Importing will overwrite current repository contents.</strong></p>
<p>We expect a URL to a publicly accessible repository (no password).<br />
(Examples: http://repository.url/svn/name, https://repository.url/svn/name or svn://repository.url/svn/name)</p>
<p>Notification email will be sent when import complete.</p>
<p>If you really, <strong>really</strong> want to do this, enter the URL of the source repository below:</p>
{{ c.form.display(action='do_import') }}
{% endblock %}