2013-08-12 16:22:38 +08:00
|
|
|
<!-- #changed by xianbo tan -->
|
|
|
|
<style type="text/css">
|
|
|
|
.textbg{
|
|
|
|
background-color:gray;
|
|
|
|
border:none
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<%= error_messages_for 'repository' %>
|
|
|
|
|
|
|
|
<div class="box tabular">
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= label_tag('repository_scm', l(:label_scm)) %>
|
|
|
|
<!--Modified by tanxianbo-->
|
|
|
|
<%= select_tag('repository_scm',
|
|
|
|
options_for_select(["Git"],@repository.class.name.demodulize),
|
|
|
|
:data => {:remote => true, :method => 'get'})%>
|
|
|
|
<!--Ended by tanxianbo-->
|
|
|
|
<% 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>
|
2013-08-15 10:52:11 +08:00
|
|
|
<p><%= f.text_field :identifier, :required=>true, :disabled => @repository.identifier_frozen?, :label => l(:label_repository_name) %>
|
2013-08-12 16:22:38 +08:00
|
|
|
<% 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>
|
|
|
|
<!-- <p><%= f.text_field :url, :size => 60, :required => true,:readonly=>true, :class=>'textbg'%></p> -->
|
2013-08-16 22:43:44 +08:00
|
|
|
<p><%= f.password_field :upassword, :required =>true, :label=> :field_password %>
|
|
|
|
<em class="info"><%= l(:label_upassword_info)%></em></p>
|
2013-08-12 16:22:38 +08:00
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
<%= submit_tag(@repository.new_record? ? l(:button_create) : l(:button_save)) %>
|
|
|
|
<%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'repositories') %>
|
|
|
|
</p>
|