Files
@ 99edd97366e3
Branch filter:
Location: kallithea/kallithea/templates/admin/repos/repo_edit_settings.html
99edd97366e3
5.8 KiB
text/html
locking: drop the pull-to-lock / push-to-unlock functionality
The feature is not worth the maintenance cost. The locking is too coarse and
unflexible with insufficient UI and UX. The implementation is also quite
invasive in tricky areas of the code, and thus high maintenance.
Dropping this will enable other cleanup ... or at least make it easier.
The feature is not worth the maintenance cost. The locking is too coarse and
unflexible with insufficient UI and UX. The implementation is also quite
invasive in tricky areas of the code, and thus high maintenance.
Dropping this will enable other cleanup ... or at least make it easier.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | ${h.form(url('update_repo', repo_name=c.repo_info.repo_name))}
<div class="form">
<div class="form-group">
<label class="control-label" for="repo_name">${_('Name')}:</label>
<div>
${h.text('repo_name',class_='form-control')}
<span class="help-block">${_('Permanent Repository ID')}: `_${c.repo_info.repo_id}` <span><a id="show_more_clone_id" href="#">${_('What is that?')}</a></span></span>
<span id="clone_id" class="help-block" style="display: none">
${_('URL by id')}: `${c.repo_info.clone_url(with_id=True)}`<br/>
${_('''In case this repository is renamed or moved into another group the repository URL changes.
Using the above permanent URL guarantees that this repository always will be accessible on that URL.
This is useful for CI systems, or any other cases that you need to hardcode the URL into a 3rd party service.''')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="clone_uri">${_('Remote repository')}:</label>
<div>
<div id="alter_clone_uri">
${h.text('clone_uri',class_='form-control', placeholder=_('Repository URL'))}
${h.hidden('clone_uri_hidden', c.repo_info.clone_uri_hidden)}
</div>
<span id="alter_clone_uri_help_block" class="help-block">
${_('Optional: URL of a remote repository. If set, the repository can be pulled from this URL.')}
</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="repo_group">${_('Repository group')}:</label>
<div>
${h.select('repo_group','',c.repo_groups,class_='form-control')}
<span class="help-block">${_('Optionally select a group to put this repository into.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="repo_landing_rev">${_('Landing revision')}:</label>
<div>
${h.select('repo_landing_rev','',c.landing_revs,class_='form-control')}
<span class="help-block">${_('Default revision for files page, downloads, whoosh and readme')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="owner">${_('Owner')}:</label>
<div>
${h.text('owner',class_='form-control', placeholder=_('Type name of user'))}
<span class="help-block">${_('Change owner of this repository.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="repo_description">${_('Description')}:</label>
<div>
${h.textarea('repo_description',class_='form-control')}
<span class="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="repo_private">${_('Private repository')}:</label>
<div>
${h.checkbox('repo_private',value="True")}
<span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="repo_enable_statistics">${_('Enable statistics')}:</label>
<div>
${h.checkbox('repo_enable_statistics',value="True")}
<span class="help-block">${_('Enable statistics window on summary page.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="repo_enable_downloads">${_('Enable downloads')}:</label>
<div>
${h.checkbox('repo_enable_downloads',value="True")}
<span class="help-block">${_('Enable download menu on summary page.')}</span>
</div>
</div>
%if c.visual.repository_fields:
## EXTRA FIELDS
%for field in c.repo_fields:
<div class="form-group">
<label class="control-label" for="${field.field_key_prefixed}">${field.field_label} (${field.field_key}):</label>
<div>
${h.text(field.field_key_prefixed, field.field_value, class_='form-control')}
%if field.field_desc:
<span class="help-block">${field.field_desc}</span>
%endif
</div>
</div>
%endfor
%endif
<div class="form-group">
<div class="buttons">
${h.submit('save',_('Save'),class_="btn btn-default")}
${h.reset('reset',_('Reset'),class_="btn btn-default")}
</div>
</div>
</div>
${h.end_form()}
<script>
$(document).ready(function(){
$('#show_more_clone_id').on('click', function(e){
$('#clone_id').show();
e.preventDefault();
});
$('#repo_landing_rev').select2({
'dropdownAutoWidth': true
});
$('#repo_group').select2({
'dropdownAutoWidth': true
});
// autocomplete
SimpleUserAutoComplete($('#owner'));
});
</script>
|