]> source.dussan.org Git - redmine.git/commitdiff
rename .rhtml to .html.erb of app/views/admin/info.rhtml.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 24 Aug 2011 01:32:05 +0000 (01:32 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 24 Aug 2011 01:32:05 +0000 (01:32 +0000)
: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

app/views/admin/info.html.erb [new file with mode: 0644]
app/views/admin/info.rhtml [deleted file]

diff --git a/app/views/admin/info.html.erb b/app/views/admin/info.html.erb
new file mode 100644 (file)
index 0000000..7b68430
--- /dev/null
@@ -0,0 +1,15 @@
+<h2><%=l(:label_information_plural)%></h2>
+
+<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
+
+<table class="list">
+<% @checklist.each do |label, result| %>
+  <tr class="<%= cycle 'odd', 'even' %>">
+    <td><%= l(label) %></td>
+    <td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
+                                    :style => "vertical-align:bottom;") %></td>
+  </tr>
+<% end %>
+</table>
+
+<% html_title(l(:label_information_plural)) -%>
diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml
deleted file mode 100644 (file)
index 7b68430..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<h2><%=l(:label_information_plural)%></h2>
-
-<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
-
-<table class="list">
-<% @checklist.each do |label, result| %>
-  <tr class="<%= cycle 'odd', 'even' %>">
-    <td><%= l(label) %></td>
-    <td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
-                                    :style => "vertical-align:bottom;") %></td>
-  </tr>
-<% end %>
-</table>
-
-<% html_title(l(:label_information_plural)) -%>