##// END OF EJS Templates
Add javascript for Object Code excanvas (flot) version herein included and use that instead of minified version....
Add javascript for Object Code excanvas (flot) version herein included and use that instead of minified version. I had a bit of trouble finding the upstream on excanvas, as the version from Google, which appears to be the original source, seems unmaintained. However, it appears the version we're carrying in Kallithea is indeed from the excanvas era of flot. $ (cd /tmp; \ svn -r 135 checkout http://flot.googlecode.com/svn/trunk/ flot ) $ cp /tmp/flot/excanvas.js rhodecode/public/js/excanvas.js I also verified the sha256sum of the min file matched ours: $ sha256sum /tmp/flot/excanvas.min.js rhodecode/public/js/excanvas.min.js 5f94b032a110504b7b261eaf71392fa3e8d82cdc6455c0cba5c9f03cd34ed122 /tmp/flot/excanvas.min.js 5f94b032a110504b7b261eaf71392fa3e8d82cdc6455c0cba5c9f03cd34ed122 rhodecode/public/js/excanvas.min.js

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4132:531ab818 rhodecode-2.2.5-gpl
Show More
defaults.html
96 lines | 3.1 KiB | text/html | HtmlLexer
Implemented #379 defaults settings page for creation of repositories...
r3056 ## -*- 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 ${_('Repositories defaults')}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
Implemented #379 defaults settings page for creation of repositories...
r3056 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 ${_('Defaults')}
Implemented #379 defaults settings page for creation of repositories...
r3056 </%def>
<%def name="page_nav()">
Mads Kiilerich
html: don't use tabs
r3197 ${self.menu('admin')}
Implemented #379 defaults settings page for creation of repositories...
r3056 </%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
whitespace and formatting
r3057
Implemented #379 defaults settings page for creation of repositories...
r3056 <h3>${_('Repositories defaults')}</h3>
${h.form(url('default', id='defaults'),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
whitespace and formatting
r3057
Implemented #379 defaults settings page for creation of repositories...
r3056 <div class="field">
<div class="label">
<label for="default_repo_type">${_('Type')}:</label>
</div>
<div class="input">
${h.select('default_repo_type','hg',c.backends,class_="medium")}
</div>
whitespace and formatting
r3057 </div>
Implemented #379 defaults settings page for creation of repositories...
r3056
<div class="field">
<div class="label label-checkbox">
<label for="default_repo_private">${_('Private repository')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('default_repo_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="default_repo_enable_statistics">${_('Enable statistics')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('default_repo_enable_statistics',value="True")}
<span class="help-block">${_('Enable statistics window on summary page.')}</span>
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="default_repo_enable_downloads">${_('Enable downloads')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('default_repo_enable_downloads',value="True")}
<span class="help-block">${_('Enable download menu on summary page.')}</span>
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="default_repo_enable_locking">${_('Enable locking')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('default_repo_enable_locking',value="True")}
<span class="help-block">${_('Enable lock-by-pulling on repository.')}</span>
</div>
</div>
<div class="buttons">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${h.submit('save',_('Save'),class_="btn")}
Implemented #379 defaults settings page for creation of repositories...
r3056 </div>
</div>
</div>
${h.end_form()}
whitespace and formatting
r3057
Implemented #379 defaults settings page for creation of repositories...
r3056 ##<h3>${_('Groups defaults')}</h3>
whitespace and formatting
r3057
Implemented #379 defaults settings page for creation of repositories...
r3056 </div>
</%def>