Files
@ f4fed0b32103
Branch filter:
Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups_edit.html - annotation
f4fed0b32103
2.0 KiB
text/html
Rewrote git middleware with the same pattern as recent fix for #176
- additionally fixed dulwich server bug, that used old deprecated method. This fix caused huge improvement of speed for fetching git repos
- moved simplehg and simplegit middleware into begining of pylons callstack. This low level middleware
don't need to run any of the middlewares except each other.
- additionally fixed dulwich server bug, that used old deprecated method. This fix caused huge improvement of speed for fetching git repos
- moved simplehg and simplegit middleware into begining of pylons callstack. This low level middleware
don't need to run any of the middlewares except each other.
43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f aaec08ad9daf 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f aaec08ad9daf | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Edit repos group')} ${c.repos_group.group_name} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${h.link_to(_('Repos groups'),h.url('repos_groups'))}
»
${_('edit repos group')} "${c.repos_group.group_name}"
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
${h.form(url('repos_group',id=c.repos_group.group_id),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="users_group_name">${_('Group name')}:</label>
</div>
<div class="input">
${h.text('group_name',class_='medium')}
</div>
</div>
<div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('group_description',cols=23,rows=5,class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
<label for="repo_group">${_('Group parent')}:</label>
</div>
<div class="input">
${h.select('group_parent_id','',c.repo_groups,class_="medium")}
</div>
</div>
<div class="buttons">
${h.submit('save',_('save'),class_="ui-button")}
</div>
</div>
</div>
${h.end_form()}
</div>
</%def>
|