##// END OF EJS Templates
Perf: don't load preferences for the anonymous user....
Perf: don't load preferences for the anonymous user. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9917 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r9734:bd927eea88a6
Show More
_repositories.html.erb
97 lines | 4.0 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">
Jean-Philippe Lang
Fixed that SCM selection is not saved when all SCM are disabled (#9937)....
r8448 <%= hidden_field_tag 'settings[enabled_scm][]', '' %>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <legend><%= l(:setting_enabled_scm) %></legend>
<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 %>
Jean-Philippe Lang
Do not show warnings for disabled scm....
r7911 <% 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">
Toshi MARUYAMA
remove trailing white-spaces from app/views/settings/_repositories.html.erb...
r7165 <%=
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 check_box_tag(
"settings[#{setting}][]",
value,
Jean-Philippe Lang
Do not show warnings for disabled scm....
r7911 enabled)
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 %>
<%= text.to_s %>
</td>
<td>
Jean-Philippe Lang
Do not show warnings for disabled scm....
r7911 <% if enabled %>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 <%=
image_tag(
(scm_class.scm_available ? 'true.png' : 'exclamation.png'),
:style => "vertical-align:bottom;"
)
%>
<%= scm_class.scm_command %>
Jean-Philippe Lang
Do not show warnings for disabled scm....
r7911 <% end %>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 </td>
<td>
Jean-Philippe Lang
Do not show warnings for disabled scm....
r7911 <%= scm_class.scm_version_string if enabled %>
Toshi MARUYAMA
scm: show scm commands and versions on administration panel (#4273)....
r5832 </td>
</tr>
<% 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 =>
"if (this.checked) { Form.Element.enable('settings_sys_api_key'); } else { Form.Element.disable('settings_sys_api_key'); }" %></p>
<p><%= setting_text_field :sys_api_key,
:size => 30,
:id => 'settings_sys_api_key',
:disabled => !Setting.sys_api_enabled?,
:label => :setting_mail_handler_api_key %>
<%= link_to_function l(:label_generate_key),
"if ($('settings_sys_api_key').disabled == false) { $('settings_sys_api_key').value = 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 helpers for setting field tags....
r3084 <p><%= setting_text_field :commit_fix_keywords, :size => 30 %>
Toshi MARUYAMA
scm: code clean up app/views/settings/_repositories.rhtml....
r5831 &nbsp;<%= l(:label_applied_status) %>: <%= setting_select :commit_fix_status_id,
[["", 0]] +
IssueStatus.find(:all).collect{
|status| [status.name, status.id.to_s]
},
:label => false %>
&nbsp;<%= l(:field_done_ratio) %>: <%= setting_select :commit_fix_done_ratio,
(0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] },
:blank => :label_no_change_option,
:label => false %>
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <em class="info"><%= l(:text_comma_separated) %></em></p>
Jean-Philippe Lang
Automatic spent time logging from commit messages (#4155)....
r4356
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 =>
"if (this.checked) { Form.Element.enable('settings_commit_logtime_activity_id'); } else { Form.Element.disable('settings_commit_logtime_activity_id'); }"%></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>
<%= submit_tag l(:button_save) %>
<% end %>