diff .svn/pristine/77/77b55aa2ab6262dc6263d530143719a7ea37b5bb.svn-base @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.svn/pristine/77/77b55aa2ab6262dc6263d530143719a7ea37b5bb.svn-base	Tue Jan 14 14:37:42 2014 +0000
@@ -0,0 +1,31 @@
+<%= error_messages_for 'repository' %>
+
+<div class="box tabular">
+<p>
+<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
+<% if @repository && ! @repository.class.scm_available %>
+  <em class="info error"><%= l(:text_scm_command_not_available) %></em>
+<% end %>
+</p>
+
+<p><%= f.check_box :is_default, :label => :field_repository_is_default %></p>
+<p>
+<%= f.text_field :identifier, :disabled => @repository.identifier_frozen? %>
+<% unless @repository.identifier_frozen? %>
+  <em class="info">
+    <%= l(:text_length_between, :min => 1, :max => Repository::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_repository_identifier_info).html_safe %>
+  </em>
+<% end %>
+</p>
+
+<% button_disabled = true %>
+<% if @repository %>
+  <%  button_disabled = ! @repository.class.scm_available %>
+  <%= repository_field_tags(f, @repository) %>
+<% end %>
+</div>
+
+<p>
+  <%= submit_tag(@repository.new_record? ? l(:button_create) : l(:button_save), :disabled => button_disabled) %>
+  <%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'repositories') %>
+</p>