]> source.dussan.org Git - redmine.git/commitdiff
rename .rhtml to .html.erb of app/views/repositories/_dir_list.rhtml.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 23 Aug 2011 08:36:23 +0000 (08:36 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 23 Aug 2011 08:36:23 +0000 (08:36 +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@6532 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

diff --git a/app/views/repositories/_dir_list.html.erb b/app/views/repositories/_dir_list.html.erb
new file mode 100644 (file)
index 0000000..84efcfc
--- /dev/null
@@ -0,0 +1,17 @@
+<table class="list entries" id="browser">
+<thead>
+<tr id="root">
+<th><%= l(:field_name) %></th>
+<th><%= l(:field_filesize) %></th>
+<% if @repository.report_last_commit %>
+<th><%= l(:label_revision)  %></th>
+<th><%= l(:label_age)       %></th>
+<th><%= l(:field_author)    %></th>
+<th><%= l(:field_comments)  %></th>
+<% end %>
+</tr>
+</thead>
+<tbody>
+<%= render :partial => 'dir_list_content' %>
+</tbody>
+</table>
diff --git a/app/views/repositories/_dir_list.rhtml b/app/views/repositories/_dir_list.rhtml
deleted file mode 100644 (file)
index 84efcfc..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<table class="list entries" id="browser">
-<thead>
-<tr id="root">
-<th><%= l(:field_name) %></th>
-<th><%= l(:field_filesize) %></th>
-<% if @repository.report_last_commit %>
-<th><%= l(:label_revision)  %></th>
-<th><%= l(:label_age)       %></th>
-<th><%= l(:field_author)    %></th>
-<th><%= l(:field_comments)  %></th>
-<% end %>
-</tr>
-</thead>
-<tbody>
-<%= render :partial => 'dir_list_content' %>
-</tbody>
-</table>