2012-04-25 21:17:49 +04:00
|
|
|
<%= form_tag({:action => 'edit', :tab => 'repositories'}) do %>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2011-11-26 17:57:22 +04:00
|
|
|
<fieldset class="box settings enabled_scm">
|
2011-05-29 14:54:45 +04:00
|
|
|
<legend><%= l(:setting_enabled_scm) %></legend>
|
2012-07-29 16:13:47 +04:00
|
|
|
<%= hidden_field_tag 'settings[enabled_scm][]', '' %>
|
2011-05-29 14:54:45 +04:00
|
|
|
<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 %>
|
2013-03-15 14:51:24 +04:00
|
|
|
<% enabled = Setting.send(setting).include?(value) %>
|
2011-05-29 14:54:45 +04:00
|
|
|
<tr>
|
2011-05-29 15:59:16 +04:00
|
|
|
<td class="scm_name">
|
2012-07-29 16:04:49 +04:00
|
|
|
<label>
|
2013-03-15 14:51:24 +04:00
|
|
|
<%= check_box_tag("settings[#{setting}][]", value, enabled, :id => nil) %>
|
|
|
|
<%= text.to_s %>
|
2012-07-29 16:04:49 +04:00
|
|
|
</label>
|
2011-05-29 14:54:45 +04:00
|
|
|
</td>
|
|
|
|
<td>
|
2013-03-15 14:51:24 +04:00
|
|
|
<% if enabled %>
|
|
|
|
<%=
|
|
|
|
image_tag(
|
2011-05-29 14:54:45 +04:00
|
|
|
(scm_class.scm_available ? 'true.png' : 'exclamation.png'),
|
|
|
|
:style => "vertical-align:bottom;"
|
2013-03-15 14:51:24 +04:00
|
|
|
)
|
2011-05-29 14:54:45 +04:00
|
|
|
%>
|
|
|
|
<%= scm_class.scm_command %>
|
2013-03-15 14:51:24 +04:00
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<%= scm_class.scm_version_string if enabled %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2011-05-29 14:54:45 +04:00
|
|
|
<% end %>
|
|
|
|
</table>
|
2012-02-03 00:07:37 +04:00
|
|
|
<p><em class="info"><%= l(:text_scm_config) %></em></p>
|
2011-05-29 14:54:45 +04:00
|
|
|
</fieldset>
|
|
|
|
|
2008-01-06 23:24:26 +03:00
|
|
|
<div class="box tabular settings">
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_check_box :autofetch_changesets %></p>
|
|
|
|
|
2011-05-25 02:38:57 +04:00
|
|
|
<p><%= setting_check_box :sys_api_enabled,
|
2011-05-29 14:54:02 +04:00
|
|
|
:onclick =>
|
2012-07-22 17:29:26 +04:00
|
|
|
"if (this.checked) { $('#settings_sys_api_key').removeAttr('disabled'); } else { $('#settings_sys_api_key').attr('disabled', true); }" %></p>
|
2011-05-29 14:54:02 +04:00
|
|
|
|
|
|
|
<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),
|
2012-07-22 17:29:26 +04:00
|
|
|
"if (!$('#settings_sys_api_key').attr('disabled')) { $('#settings_sys_api_key').val(randomKey(20)) }" %>
|
2009-12-20 12:44:28 +03:00
|
|
|
</p>
|
2009-12-19 23:07:09 +03:00
|
|
|
|
|
|
|
<p><%= setting_text_field :repository_log_display_limit, :size => 6 %></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
</div>
|
|
|
|
|
2011-05-29 14:54:02 +04:00
|
|
|
<fieldset class="box tabular settings">
|
|
|
|
<legend><%= l(:text_issues_ref_in_commit_messages) %></legend>
|
2012-02-03 00:07:37 +04:00
|
|
|
<p><%= setting_text_field :commit_ref_keywords, :size => 30 %>
|
|
|
|
<em class="info"><%= l(:text_comma_separated) %></em></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
|
2009-12-19 23:07:09 +03:00
|
|
|
<p><%= setting_text_field :commit_fix_keywords, :size => 30 %>
|
2011-05-29 14:54:02 +04:00
|
|
|
<%= l(:label_applied_status) %>: <%= setting_select :commit_fix_status_id,
|
|
|
|
[["", 0]] +
|
2012-12-03 00:23:48 +04:00
|
|
|
IssueStatus.sorted.all.collect{
|
2011-05-29 14:54:02 +04:00
|
|
|
|status| [status.name, status.id.to_s]
|
|
|
|
},
|
|
|
|
:label => false %>
|
|
|
|
<%= 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 %>
|
2012-02-03 00:07:37 +04:00
|
|
|
<em class="info"><%= l(:text_comma_separated) %></em></p>
|
2010-12-05 14:45:09 +03:00
|
|
|
|
2012-02-02 22:09:37 +04:00
|
|
|
<p><%= setting_check_box :commit_cross_project_ref %></p>
|
|
|
|
|
2010-12-05 14:45:09 +03:00
|
|
|
<p><%= setting_check_box :commit_logtime_enabled,
|
2011-05-29 14:54:02 +04:00
|
|
|
:onclick =>
|
2012-07-22 17:29:26 +04:00
|
|
|
"if (this.checked) { $('#settings_commit_logtime_activity_id').removeAttr('disabled'); } else { $('#settings_commit_logtime_activity_id').attr('disabled', true); }"%></p>
|
2010-12-05 14:45:09 +03:00
|
|
|
|
2011-05-25 02:38:57 +04:00
|
|
|
<p><%= setting_select :commit_logtime_activity_id,
|
2011-05-29 14:54:02 +04:00
|
|
|
[[l(:label_default), 0]] +
|
2011-06-14 00:33:26 +04:00
|
|
|
TimeEntryActivity.shared.active.collect{|activity| [activity.name, activity.id.to_s]},
|
2011-05-29 14:54:02 +04:00
|
|
|
:disabled => !Setting.commit_logtime_enabled?%></p>
|
2008-01-06 23:24:26 +03:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<%= submit_tag l(:button_save) %>
|
|
|
|
<% end %>
|