##// END OF EJS Templates
scm: cvs: fix loss non ASCII paths if path_encoding is '' (#3462)....
scm: cvs: fix loss non ASCII paths if path_encoding is '' (#3462). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5630 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5506:ff77ecee86b7
r5510:956e8af591f1
Show More
_repository.rhtml
31 lines | 1.2 KiB | text/html+ruby | RhtmlLexer
Toshi MARUYAMA
scm: code clean up app/views/projects/settings/_repository.rhtml....
r5499 <% remote_form_for :repository, @repository,
Jean-Philippe Lang
Added project module concept....
r714 :url => { :controller => 'repositories', :action => 'edit', :id => @project },
Jean-Philippe Lang
Translation for various hard-coded strings (#577)....
r1129 :builder => TabularFormBuilder,
:lang => current_language do |f| %>
Jean-Philippe Lang
Added project module concept....
r714
<%= error_messages_for 'repository' %>
<div class="box tabular">
Eric Davis
Fixed some labels to be more accessible....
r3222 <p><%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %></p>
Jean-Philippe Lang
Added project module concept....
r714 <%= repository_field_tags(f, @repository) if @repository %>
</div>
<div class="contextual">
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 <% if @repository && !@repository.new_record? %>
Toshi MARUYAMA
scm: code clean up projects/settings/_repository.rhtml....
r5506 <%= link_to(l(:label_user_plural),
{
:controller => 'repositories',
:action => 'committers',
:id => @project
},
:class => 'icon icon-user') %>
Jean-Philippe Lang
Added project module concept....
r714 <%= link_to(l(:button_delete), {:controller => 'repositories', :action => 'destroy', :id => @project},
:confirm => l(:text_are_you_sure),
Toshi MARUYAMA
scm: code clean up projects/settings/_repository.rhtml....
r5506 :method => :post,
:class => 'icon icon-del') %>
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 <% end %>
Jean-Philippe Lang
Added project module concept....
r714 </div>
Toshi MARUYAMA
scm: code clean up projects/settings/_repository.rhtml....
r5506 <%= submit_tag((@repository.nil? || @repository.new_record?) ? l(:button_create) : l(:button_save),
:disabled => @repository.nil?) %>
Jean-Philippe Lang
Added project module concept....
r714 <% end %>