##// END OF EJS Templates
Add Twitter's Bootstrap 3.0.0 CSS and Javascript files, under Apache License 2.0...
Add Twitter's Bootstrap 3.0.0 CSS and Javascript files, under Apache License 2.0 These files are exactly as they appear the upstream release 3.0.0 of Bootstrap, which Twitter released under the Apache License 2.0. To extract these files, I did the following: I downloaded the following file: https://github.com/twbs/bootstrap/archive/v3.0.0.zip with sha256sum of: $ sha256sum v3.0.0.zip 2d54f345f4abc6bf65ea648c323e9bae577e6febf755650e62555f2d7a222e17 v3.0.0.zip And extracted from it these two files: bootstrap-3.0.0/dist/css/bootstrap.css bootstrap-3.0.0/dist/js/bootstrap.js which are licensed under the Apache License 2.0. and placed them into: rhodecode/public/css/bootstrap.css rhodecode/public/js/bootstrap.js respectively.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4117:6af3e67c rhodecode-2.2.5-gpl
Show More
fork.html
116 lines | 4.1 KiB | text/html | HtmlLexer
#235 forking page repo group selection...
r1722 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${_('Fork repository %s') % c.repo_name}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
#235 forking page repo group selection...
r1722 </%def>
<%def name="breadcrumbs_links()">
Mads Kiilerich
clean-up of breadcrumbs on pages with repo context bar
r3602 ${_('Fork')}
#235 forking page repo group selection...
r1722 </%def>
added missing page_nav on forks page
r3639 <%def name="page_nav()">
${self.menu('repositories')}
</%def>
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
#235 forking page repo group selection...
r1722 <%def name="main()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${self.repo_context_bar('createfork')}
#235 forking page repo group selection...
r1722 <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">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
#235 forking page repo group selection...
r1722 <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>
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
<div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea-repo 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>
added landing revision into fork create form
r2485 <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>
white space cleanup
r2673 </div>
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
#235 forking page repo group selection...
r1722 <div class="field">
<div class="label label-checkbox">
<label for="private">${_('Private')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('private',value="True")}
added landing revision into fork create form
r2485 <span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span>
#235 forking page repo group selection...
r1722 </div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="private">${_('Copy permissions')}:</label>
</div>
<div class="checkboxes">
Make copy permission checkbox checked by default
r2175 ${h.checkbox('copy_permissions',value="True", checked="checked")}
added landing revision into fork create form
r2485 <span class="help-block">${_('Copy permissions from forked repository')}</span>
#235 forking page repo group selection...
r1722 </div>
Mads Kiilerich
fork: 'Update after clone' only makes sense if the update hook will maintain it
r3571 </div>
%if c.can_update:
added option to do a checkout after cloning a repository
r1742 <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")}
added landing revision into fork create form
r2485 <span class="help-block">${_('Checkout source after making a clone')}</span>
added option to do a checkout after cloning a repository
r1742 </div>
Mads Kiilerich
html: random indentation fixes
r3198 </div>
Mads Kiilerich
fork: 'Update after clone' only makes sense if the update hook will maintain it
r3571 %endif
Mads Kiilerich
html: don't use tabs
r3197 <div class="buttons">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${h.submit('',_('Fork this Repository'),class_="btn")}
Mads Kiilerich
html: don't use tabs
r3197 </div>
#235 forking page repo group selection...
r1722 </div>
White-space cleanup
r1888 </div>
${h.end_form()}
#235 forking page repo group selection...
r1722 </div>
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 <script>
$(document).ready(function(){
$("#repo_group").select2({
'dropdownAutoWidth': true
});
$("#landing_rev").select2({
'minimumResultsForSearch': -1,
});
$('#repo_name').focus();
})
</script>
White-space cleanup
r1888 </%def>