]> source.dussan.org Git - redmine.git/commitdiff
rename .rhtml to .html.erb of app/views/issues/_changesets.rhtml.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 13:48:17 +0000 (13:48 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 13:48:17 +0000 (13:48 +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@7005 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

diff --git a/app/views/issues/_changesets.html.erb b/app/views/issues/_changesets.html.erb
new file mode 100644 (file)
index 0000000..76e9a28
--- /dev/null
@@ -0,0 +1,10 @@
+<% changesets.each do |changeset| %>
+    <div class="changeset <%= cycle('odd', 'even') %>">
+    <p><%= link_to_revision(changeset, changeset.project,
+                            :text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
+        <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
+    <div class="wiki">
+        <%= textilizable(changeset, :comments) %>
+    </div>
+    </div>
+<% end %>
diff --git a/app/views/issues/_changesets.rhtml b/app/views/issues/_changesets.rhtml
deleted file mode 100644 (file)
index 76e9a28..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-<% changesets.each do |changeset| %>
-    <div class="changeset <%= cycle('odd', 'even') %>">
-    <p><%= link_to_revision(changeset, changeset.project,
-                            :text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
-        <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
-    <div class="wiki">
-        <%= textilizable(changeset, :comments) %>
-    </div>
-    </div>
-<% end %>