Files @ 9dd726706178
Branch filter:

Location: kallithea/rhodecode/templates/forks/fork.html - annotation

Bradley M. Kuhn
Complete copyright notices for web interface; change footer to link to them.

The original copyright notice found in the footer was not accurate as it
included only one of the many copyright holders in this project. This change
creates an "about" page, which currently contains just the copyright and
license information. It links to repository for additional potential copyright
holders not listed on the about page.

Unlisted contributors are mentioned in template comments.

Html links for Kallithea is fixed and we link to Conservancy.

Display of version information in the footer is improved.
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
bb1eecda3172
e7eef7a1db6a
e7eef7a1db6a
2f5816720f82
2f5816720f82
2f5816720f82
ffd45b185016
e7eef7a1db6a
ffd45b185016
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
ffd45b185016
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
cee56368e4f9
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
133209bf300c
133209bf300c
133209bf300c
133209bf300c
133209bf300c
133209bf300c
133209bf300c
133209bf300c
d5e42c00f3c1
ffd45b185016
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
133209bf300c
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
e7eef7a1db6a
b61b7e266b39
133209bf300c
e7eef7a1db6a
6c88624c719b
6c88624c719b
40c4f7351574
40c4f7351574
40c4f7351574
40c4f7351574
40c4f7351574
40c4f7351574
133209bf300c
40c4f7351574
c20adbaf16af
6c88624c719b
b4f401524060
ffd45b185016
b4f401524060
e7eef7a1db6a
f91d3f9b7230
f91d3f9b7230
e7eef7a1db6a
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
ffd45b185016
f91d3f9b7230
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Fork repository %s') % c.repo_name}
    %if c.rhodecode_name:
        &middot; ${c.rhodecode_name}
    %endif
</%def>

<%def name="breadcrumbs_links()">
    ${_('Fork')}
</%def>

<%def name="page_nav()">
    ${self.menu('repositories')}
</%def>

<%def name="main()">
${self.repo_context_bar('createfork')}
<div class="box">
    <!-- box / title -->
    ${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}
    <div class="form">
        <!-- fields -->
        <div class="fields">

            <div class="field">
              <div class="label">
                  <label for="repo_name">${_('Fork name')}:</label>
              </div>
              <div class="input">
                  ${h.text('repo_name',class_="small")}
                  ${h.hidden('repo_type',c.repo_info.repo_type)}
                  ${h.hidden('fork_parent_id',c.repo_info.repo_id)}
              </div>
            </div>

            <div class="field">
                <div class="label label-textarea">
                    <label for="description">${_('Description')}:</label>
                </div>
                <div class="textarea editor">
                    ${h.textarea('description')}
                    <span class="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span>
                </div>
            </div>

            <div class="field">
                 <div class="label">
                     <label for="repo_group">${_('Repository group')}:</label>
                 </div>
                 <div class="input">
                     ${h.select('repo_group','',c.repo_groups,class_="medium")}
                     <span class="help-block">${_('Optionaly select a group to put this repository into.')}</span>
                 </div>
            </div>

             <div class="field">
                <div class="label">
                    <label for="landing_rev">${_('Landing revision')}:</label>
                </div>
                <div class="input">
                    ${h.select('landing_rev','',c.landing_revs,class_="medium")}
                    <span class="help-block">${_('Default revision for files page, downloads, whoosh and readme')}</span>
                </div>
            </div>

            <div class="field">
                <div class="label label-checkbox">
                    <label for="private">${_('Private')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('private',value="True")}
                    <span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span>
                </div>
            </div>
            <div class="field">
                <div class="label label-checkbox">
                    <label for="private">${_('Copy permissions')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('copy_permissions',value="True", checked="checked")}
                    <span class="help-block">${_('Copy permissions from forked repository')}</span>
                </div>
            </div>
            %if c.can_update:
            <div class="field">
                <div class="label label-checkbox">
                    <label for="private">${_('Update after clone')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('update_after_clone',value="True")}
                    <span class="help-block">${_('Checkout source after making a clone')}</span>
                </div>
            </div>
            %endif
            <div class="buttons">
                ${h.submit('',_('Fork this Repository'),class_="btn")}
            </div>
        </div>
    </div>
    ${h.end_form()}
</div>
<script>
    $(document).ready(function(){
        $("#repo_group").select2({
            'dropdownAutoWidth': true
        });
        $("#landing_rev").select2({
            'minimumResultsForSearch': -1,
        });
        $('#repo_name').focus();
    })
</script>
</%def>