##// END OF EJS Templates
Added tag v0.8.1 for changeset a9814a642e11
Added tag v0.8.1 for changeset a9814a642e11

File last commit:

r388:3bcf9529 default
r394:42367607 default
Show More
settings.html
129 lines | 4.6 KiB | text/html | HtmlLexer
added settings rest controllers for admin, updated routes with easier submodule handling
r346 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Settings administration')}
</%def>
version bump to 0.8...
r362
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))} &raquo; ${_('Settings')}
added settings rest controllers for admin, updated routes with easier submodule handling
r346 </%def>
version bump to 0.8...
r362
added settings rest controllers for admin, updated routes with easier submodule handling
r346 <%def name="page_nav()">
${self.menu('admin')}
</%def>
implemented manual repo rescann and remapping
r348
version bump to 0.8...
r362 <%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
implemented manual repo rescann and remapping
r348
fixed settings template
r383 <h3>${_('Remap and rescan repositories')}</h3>
routes python 2.5 compatible...
r371 ${h.form(url('admin_setting', setting_id='mapping'),method='put')}
version bump to 0.8...
r362 <div class="form">
<!-- fields -->
fixed settings template
r383
version bump to 0.8...
r362 <div class="fields">
<div class="field">
<div class="label label-checkbox">
cleared global application settings....
r381 <label for="destroy">${_('rescan option')}:</label>
version bump to 0.8...
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">
removed td tag
r378 ${h.submit('rescan','rescan repositories',class_="ui-button ui-widget ui-state-default ui-corner-all")}
version bump to 0.8...
r362 </div>
</div>
</div>
${h.end_form()}
fixed settings template
r383 <h3>${_('Global application settings')}</h3>
routes python 2.5 compatible...
r371 ${h.form(url('admin_setting', setting_id='global'),method='put')}
version bump to 0.8...
r362 <div class="form">
<!-- fields -->
fixed settings template
r383
version bump to 0.8...
r362 <div class="fields">
<div class="field">
<div class="label">
Added new application settings,Push ssl and repositories path
r388 <label for="hg_app_title">${_('Application name')}:</label>
version bump to 0.8...
r362 </div>
<div class="input">
cleared global application settings....
r381 ${h.text('hg_app_title',size=30)}
version bump to 0.8...
r362 </div>
</div>
<div class="field">
<div class="label">
Added new application settings,Push ssl and repositories path
r388 <label for="hg_app_realm">${_('Realm text')}:</label>
version bump to 0.8...
r362 </div>
<div class="input">
cleared global application settings....
r381 ${h.text('hg_app_realm',size=30)}
version bump to 0.8...
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()}
Added new application settings,Push ssl and repositories path
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">
<label for="web_push_ssl">${_('Push ssl')}:</label>
</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>
<div class="field">
<div class="label">
<label for="paths_root_path">${_('Repositories location')}:</label>
</div>
<div class="input">
${h.text('paths_root_path',size=30,disabled="disabled")}
<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.'))}">
${_('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(){
YAHOO.util.Dom.get('paths_root_path').disabled=false;
});
});
</script>
version bump to 0.8...
r362
</div>
added settings rest controllers for admin, updated routes with easier submodule handling
r346 </%def>