From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 11:50:50 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/projects/settings/_repository.rhtml. X-Git-Tag: 1.3.0~977 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b5b16b09dedcfa83e37f74bf9f2499e0a4eb5ed2;p=redmine.git rename .rhtml to .html.erb of app/views/projects/settings/_repository.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6986 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/projects/settings/_repository.html.erb b/app/views/projects/settings/_repository.html.erb new file mode 100644 index 000000000..3bd3b4338 --- /dev/null +++ b/app/views/projects/settings/_repository.html.erb @@ -0,0 +1,41 @@ +<% remote_form_for :repository, @repository, + :url => { :controller => 'repositories', :action => 'edit', :id => @project }, + :builder => TabularFormBuilder, + :lang => current_language do |f| %> + +<%= error_messages_for 'repository' %> + +
+

+<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %> +<% if @repository && ! @repository.class.scm_available %> +
+ <%= content_tag 'span', l(:text_scm_command_not_available), :class => 'error' %> +<% end %> +

+<% button_disabled = true %> +<% if @repository %> +<% button_disabled = ! @repository.class.scm_available %> +<%= repository_field_tags(f, @repository)%> +<% end %> +
+ +
+<% if @repository && !@repository.new_record? %> +<%= link_to(l(:label_user_plural), + { + :controller => 'repositories', + :action => 'committers', + :id => @project + }, + :class => 'icon icon-user') %> +<%= link_to(l(:button_delete), {:controller => 'repositories', :action => 'destroy', :id => @project}, + :confirm => l(:text_are_you_sure), + :method => :post, + :class => 'icon icon-del') %> +<% end %> +
+ +<%= submit_tag((@repository.nil? || @repository.new_record?) ? l(:button_create) : l(:button_save), + :disabled => button_disabled) %> +<% end %> diff --git a/app/views/projects/settings/_repository.rhtml b/app/views/projects/settings/_repository.rhtml deleted file mode 100644 index 3bd3b4338..000000000 --- a/app/views/projects/settings/_repository.rhtml +++ /dev/null @@ -1,41 +0,0 @@ -<% remote_form_for :repository, @repository, - :url => { :controller => 'repositories', :action => 'edit', :id => @project }, - :builder => TabularFormBuilder, - :lang => current_language do |f| %> - -<%= error_messages_for 'repository' %> - -
-

-<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %> -<% if @repository && ! @repository.class.scm_available %> -
- <%= content_tag 'span', l(:text_scm_command_not_available), :class => 'error' %> -<% end %> -

-<% button_disabled = true %> -<% if @repository %> -<% button_disabled = ! @repository.class.scm_available %> -<%= repository_field_tags(f, @repository)%> -<% end %> -
- -
-<% if @repository && !@repository.new_record? %> -<%= link_to(l(:label_user_plural), - { - :controller => 'repositories', - :action => 'committers', - :id => @project - }, - :class => 'icon icon-user') %> -<%= link_to(l(:button_delete), {:controller => 'repositories', :action => 'destroy', :id => @project}, - :confirm => l(:text_are_you_sure), - :method => :post, - :class => 'icon icon-del') %> -<% end %> -
- -<%= submit_tag((@repository.nil? || @repository.new_record?) ? l(:button_create) : l(:button_save), - :disabled => button_disabled) %> -<% end %>