From: Toshi MARUYAMA Date: Wed, 24 Aug 2011 01:32:05 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/admin/info.rhtml. X-Git-Tag: 1.3.0~1407 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d7e2b3251a6ea2b3bce309b3d2b61aacb914fdce;p=redmine.git rename .rhtml to .html.erb of app/views/admin/info.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@6554 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/admin/info.html.erb b/app/views/admin/info.html.erb new file mode 100644 index 000000000..7b6843039 --- /dev/null +++ b/app/views/admin/info.html.erb @@ -0,0 +1,15 @@ +

<%=l(:label_information_plural)%>

+ +

<%= Redmine::Info.versioned_name %> (<%= @db_adapter_name %>)

+ + +<% @checklist.each do |label, result| %> + + + + +<% end %> +
<%= l(label) %><%= image_tag((result ? 'true.png' : 'exclamation.png'), + :style => "vertical-align:bottom;") %>
+ +<% html_title(l(:label_information_plural)) -%> diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml deleted file mode 100644 index 7b6843039..000000000 --- a/app/views/admin/info.rhtml +++ /dev/null @@ -1,15 +0,0 @@ -

<%=l(:label_information_plural)%>

- -

<%= Redmine::Info.versioned_name %> (<%= @db_adapter_name %>)

- - -<% @checklist.each do |label, result| %> - - - - -<% end %> -
<%= l(label) %><%= image_tag((result ? 'true.png' : 'exclamation.png'), - :style => "vertical-align:bottom;") %>
- -<% html_title(l(:label_information_plural)) -%>