##// END OF EJS Templates
Removes #move_to= (#12909)....
Removes #move_to= (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15339 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14889:eaea4e9fee7e
r14957:39ff11ba06a7
Show More
_repositories.html.erb
158 lines | 5.6 KiB | text/plain | TextLexer
/ app / views / settings / _repositories.html.erb
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:action => 'edit', :tab => 'repositories'}) do %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033
Jean-Philippe Lang
Set style for tips in forms....
r7812 <fieldset class="box settings enabled_scm">
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <legend><%= l(:setting_enabled_scm) %></legend>
Jean-Philippe Lang
Fixed legend tag position....
r9947 <%= hidden_field_tag 'settings[enabled_scm][]', '' %>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <table>
<tr>
<th></th>
<th><%= l(:text_scm_command) %></th>
<th><%= l(:text_scm_command_version) %></th>
</tr>
<% Redmine::Scm::Base.all.collect do |choice| %>
<% scm_class = "Repository::#{choice}".constantize %>
<% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %>
<% setting = :enabled_scm %>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/settings/_repositories.html.erb...
r11395 <% enabled = Setting.send(setting).include?(value) %>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <tr>
Jean-Philippe Lang
Slight UI changes (#4273)....
r5840 <td class="scm_name">
Jean-Philippe Lang
Add labels on SCMs....
r9943 <label>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/settings/_repositories.html.erb...
r11395 <%= check_box_tag("settings[#{setting}][]", value, enabled, :id => nil) %>
<%= text.to_s %>
Jean-Philippe Lang
Add labels on SCMs....
r9943 </label>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 </td>
<td>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/settings/_repositories.html.erb...
r11395 <% if enabled %>
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <span class="icon <%= (scm_class.scm_available ? 'icon-ok' : 'icon-error') %>"></span>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <%= scm_class.scm_command %>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/settings/_repositories.html.erb...
r11395 <% end %>
</td>
<td>
<%= scm_class.scm_version_string if enabled %>
</td>
</tr>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <% end %>
</table>
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <p><em class="info"><%= l(:text_scm_config) %></em></p>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 </fieldset>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <div class="box tabular settings">
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :autofetch_changesets %></p>
Toshi MARUYAMA
scm: remove trailing white-spaces from app/views/settings/_repositories.rhtml....
r5766 <p><%= setting_check_box :sys_api_enabled,
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 :onclick =>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 "if (this.checked) { $('#settings_sys_api_key').removeAttr('disabled'); } else { $('#settings_sys_api_key').attr('disabled', true); }" %></p>
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831
<p><%= setting_text_field :sys_api_key,
:size => 30,
:id => 'settings_sys_api_key',
Jean-Philippe Lang
Harmonize setting labels (#21421)....
r14764 :disabled => !Setting.sys_api_enabled? %>
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 <%= link_to_function l(:label_generate_key),
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 "if (!$('#settings_sys_api_key').attr('disabled')) { $('#settings_sys_api_key').val(randomKey(20)) }" %>
Jean-Philippe Lang
Adds on optional API key to repositories management controller and reposman.rb....
r3087 </p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084
<p><%= setting_text_field :repository_log_display_limit, :size => 6 %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 <fieldset class="box tabular settings">
<legend><%= l(:text_issues_ref_in_commit_messages) %></legend>
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <p><%= setting_text_field :commit_ref_keywords, :size => 30 %>
<em class="info"><%= l(:text_comma_separated) %></em></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033
Jean-Philippe Lang
Adds a setting that allows to reference/fix issues of all projects (#3087)....
r8630 <p><%= setting_check_box :commit_cross_project_ref %></p>
Jean-Philippe Lang
Automatic spent time logging from commit messages (#4155)....
r4356 <p><%= setting_check_box :commit_logtime_enabled,
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 :onclick =>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 "if (this.checked) { $('#settings_commit_logtime_activity_id').removeAttr('disabled'); } else { $('#settings_commit_logtime_activity_id').attr('disabled', true); }"%></p>
Jean-Philippe Lang
Automatic spent time logging from commit messages (#4155)....
r4356
Toshi MARUYAMA
scm: remove trailing white-spaces from app/views/settings/_repositories.rhtml....
r5766 <p><%= setting_select :commit_logtime_activity_id,
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 [[l(:label_default), 0]] +
Jean-Baptiste Barth
Do not show inactive time entry activities in repository settings (#8573)....
r5952 TimeEntryActivity.shared.active.collect{|activity| [activity.name, activity.id.to_s]},
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 :disabled => !Setting.commit_logtime_enabled?%></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </fieldset>
Jean-Philippe Lang
Support for multiple issue update keywords/rules in commit messages (#4911)....
r11967 <table class="list" id="commit-keywords">
<thead>
<tr>
Jean-Philippe Lang
Ability to define commit keywords per tracker (#7590)....
r11978 <th><%= l(:label_tracker) %></th>
Jean-Philippe Lang
Support for multiple issue update keywords/rules in commit messages (#4911)....
r11967 <th><%= l(:setting_commit_fix_keywords) %></th>
<th><%= l(:label_applied_status) %></th>
<th><%= l(:field_done_ratio) %></th>
<th class="buttons"></th>
</tr>
</thead>
<tbody>
Jean-Philippe Lang
Ability to define commit keywords per tracker (#7590)....
r11978 <% @commit_update_keywords.each do |rule| %>
Jean-Philippe Lang
Support for multiple issue update keywords/rules in commit messages (#4911)....
r11967 <tr class="commit-keywords">
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 <td>
<%= select_tag(
"settings[commit_update_keywords][if_tracker_id][]",
options_for_select(
[[l(:label_all), ""]] +
Toshi MARUYAMA
remove unneeded Relation#all from app/views/settings/_repositories.html.erb...
r12338 Tracker.sorted.map {|t| [t.name, t.id.to_s]},
Jean-Philippe Lang
Removed duplicate element ids....
r13262 rule['if_tracker_id']),
:id => nil
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 ) %>
</td>
<td>
<%= text_field_tag("settings[commit_update_keywords][keywords][]",
Jean-Philippe Lang
Removed duplicate element ids....
r13262 rule['keywords'], :id => nil, :size => 30) %>
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 </td>
<td>
<%= select_tag("settings[commit_update_keywords][status_id][]",
options_for_select(
[["", 0]] +
Toshi MARUYAMA
remove unneeded Relation#all from app/views/settings/_repositories.html.erb...
r12338 IssueStatus.sorted.
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 collect{|status| [status.name, status.id.to_s]},
Jean-Philippe Lang
Removed duplicate element ids....
r13262 rule['status_id']),
:id => nil
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 ) %>
</td>
<td>
<%= select_tag("settings[commit_update_keywords][done_ratio][]",
options_for_select(
[["", ""]] +
(0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] },
Jean-Philippe Lang
Removed duplicate element ids....
r13262 rule['done_ratio']),
:id => nil
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 ) %>
</td>
<td class="buttons">
Jean-Philippe Lang
Improve accessibility for icon-only links by adding hidden text (#21805)....
r14889 <%= link_to(l(:button_delete), '#',
:class => 'delete-commit-keywords icon-only icon-del',
:title => l(:button_delete)) %>
Toshi MARUYAMA
code format cleanup app/views/settings/_repositories.html.erb...
r12334 </td>
Jean-Philippe Lang
Support for multiple issue update keywords/rules in commit messages (#4911)....
r11967 </tr>
<% end %>
<tr>
Jean-Philippe Lang
Ability to define commit keywords per tracker (#7590)....
r11978 <td></td>
Jean-Philippe Lang
Support for multiple issue update keywords/rules in commit messages (#4911)....
r11967 <td><em class="info"><%= l(:text_comma_separated) %></em></td>
<td></td>
<td></td>
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <td class="buttons">
Jean-Philippe Lang
Improve accessibility for icon-only links by adding hidden text (#21805)....
r14889 <%= link_to(l(:button_add), '#',
:class => 'add-commit-keywords icon-only icon-add',
:title => l(:button_add)) %>
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 </td>
Jean-Philippe Lang
Support for multiple issue update keywords/rules in commit messages (#4911)....
r11967 </tr>
</tbody>
</table>
<p><%= submit_tag l(:button_save) %></p>
<% end %>
<%= javascript_tag do %>
$('#commit-keywords').on('click', 'a.delete-commit-keywords', function(e){
e.preventDefault();
if ($('#commit-keywords tbody tr.commit-keywords').length > 1) {
$(this).parents('#commit-keywords tr').remove();
} else {
$('#commit-keywords tbody tr.commit-keywords').find('input, select').val('');
}
});
$('#commit-keywords').on('click', 'a.add-commit-keywords', function(e){
e.preventDefault();
var row = $('#commit-keywords tr.commit-keywords:last');
row.clone().insertAfter(row).find('input, select').val('');
});
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <% end %>