settings.html
145 lines
| 5.3 KiB
| text/html
|
HtmlLexer
r346 | ## -*- coding: utf-8 -*- | |||
<%inherit file="/base/base.html"/> | ||||
<%def name="title()"> | ||||
${_('Settings administration')} | ||||
</%def> | ||||
r362 | ||||
<%def name="breadcrumbs_links()"> | ||||
${h.link_to(_('Admin'),h.url('admin_home'))} » ${_('Settings')} | ||||
r346 | </%def> | |||
r362 | ||||
r346 | <%def name="page_nav()"> | |||
${self.menu('admin')} | ||||
</%def> | ||||
r348 | ||||
r362 | <%def name="main()"> | |||
<div class="box"> | ||||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</div> | ||||
<!-- end box / title --> | ||||
r348 | ||||
r383 | <h3>${_('Remap and rescan repositories')}</h3> | |||
r371 | ${h.form(url('admin_setting', setting_id='mapping'),method='put')} | |||
r362 | <div class="form"> | |||
<!-- fields --> | ||||
r383 | ||||
r362 | <div class="fields"> | |||
<div class="field"> | ||||
<div class="label label-checkbox"> | ||||
r381 | <label for="destroy">${_('rescan option')}:</label> | |||
r362 | </div> | |||
<div class="checkboxes"> | ||||
<div class="checkbox"> | ||||
${h.checkbox('destroy',True)} | ||||
<label for="checkbox-1"> | ||||
<span class="tooltip" tooltip_title="${h.tooltip(_('In case a repository was deleted from filesystem and there are leftovers in the database check this option to scan obsolete data in database and remove it.'))}"> | ||||
${_('destroy old data')}</span> </label> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
<div class="buttons"> | ||||
r378 | ${h.submit('rescan','rescan repositories',class_="ui-button ui-widget ui-state-default ui-corner-all")} | |||
r362 | </div> | |||
</div> | ||||
</div> | ||||
${h.end_form()} | ||||
r383 | <h3>${_('Global application settings')}</h3> | |||
r371 | ${h.form(url('admin_setting', setting_id='global'),method='put')} | |||
r362 | <div class="form"> | |||
<!-- fields --> | ||||
r383 | ||||
r362 | <div class="fields"> | |||
<div class="field"> | ||||
<div class="label"> | ||||
r388 | <label for="hg_app_title">${_('Application name')}:</label> | |||
r362 | </div> | |||
<div class="input"> | ||||
r381 | ${h.text('hg_app_title',size=30)} | |||
r362 | </div> | |||
</div> | ||||
<div class="field"> | ||||
<div class="label"> | ||||
r388 | <label for="hg_app_realm">${_('Realm text')}:</label> | |||
r362 | </div> | |||
<div class="input"> | ||||
r381 | ${h.text('hg_app_realm',size=30)} | |||
r362 | </div> | |||
</div> | ||||
<div class="buttons"> | ||||
${h.submit('save','save settings',class_="ui-button ui-widget ui-state-default ui-corner-all")} | ||||
</div> | ||||
</div> | ||||
</div> | ||||
${h.end_form()} | ||||
r388 | ||||
<h3>${_('Mercurial settings')}</h3> | ||||
${h.form(url('admin_setting', setting_id='mercurial'),method='put')} | ||||
<div class="form"> | ||||
<!-- fields --> | ||||
<div class="fields"> | ||||
<div class="field"> | ||||
<div class="label label-checkbox"> | ||||
r395 | <label for="web_push_ssl">${_('Web')}:</label> | |||
r388 | </div> | |||
<div class="checkboxes"> | ||||
<div class="checkbox"> | ||||
${h.checkbox('web_push_ssl','true')} | ||||
<label for="web_push_ssl">${_('require ssl for pushing')}</label> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
r395 | ||||
<div class="field"> | ||||
<div class="label label-checkbox"> | ||||
<label for="web_push_ssl">${_('Hooks')}:</label> | ||||
</div> | ||||
<div class="checkboxes"> | ||||
<div class="checkbox"> | ||||
${h.checkbox('hooks_changegroup_update','True')} | ||||
<label for="hooks_changegroup_update">${_('Update repository after push (hg update)')}</label> | ||||
</div> | ||||
<div class="checkbox"> | ||||
${h.checkbox('hooks_changegroup_repo_size','True')} | ||||
<label for="hooks_changegroup_repo_size">${_('Show repository size after push')}</label> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
r388 | ||||
<div class="field"> | ||||
<div class="label"> | ||||
<label for="paths_root_path">${_('Repositories location')}:</label> | ||||
</div> | ||||
<div class="input"> | ||||
r409 | ${h.text('paths_root_path',size=30,readonly="readonly")} | |||
<span id="path_unlock" class="tooltip" | ||||
tooltip_title="${h.tooltip(_('This a crucial application setting. If You really sure you need to change this, you must restart application in order to make this settings take effect. Click this label to unlock.'))}"> | ||||
r388 | ${_('unlock')}</span> | |||
</div> | ||||
</div> | ||||
<div class="buttons"> | ||||
${h.submit('save','save settings',class_="ui-button ui-widget ui-state-default ui-corner-all")} | ||||
</div> | ||||
</div> | ||||
</div> | ||||
${h.end_form()} | ||||
<script type="text/javascript"> | ||||
YAHOO.util.Event.onDOMReady(function(){ | ||||
YAHOO.util.Event.addListener('path_unlock','click',function(){ | ||||
r409 | YAHOO.util.Dom.get('paths_root_path').removeAttribute('readonly'); | |||
r388 | }); | |||
}); | ||||
</script> | ||||
r362 | </div> | |||
r346 | </%def> | |||