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

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

diff --git a/app/views/my/_block.html.erb b/app/views/my/_block.html.erb
new file mode 100644 (file)
index 0000000..b8e7192
--- /dev/null
@@ -0,0 +1,14 @@
+<div id="block_<%= block_name.dasherize %>" class="mypage-box">
+
+    <div style="float:right;margin-right:16px;z-index:500;">
+    <%= link_to_remote "", {
+        :url => { :action => "remove_block", :block => block_name },
+        :complete => "removeBlock('block_#{block_name.dasherize}')" },
+        :class => "close-icon"
+         %>        
+    </div>
+     
+    <div class="handle">
+       <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
+       </div>
+</div>
\ No newline at end of file
diff --git a/app/views/my/_block.rhtml b/app/views/my/_block.rhtml
deleted file mode 100644 (file)
index b8e7192..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<div id="block_<%= block_name.dasherize %>" class="mypage-box">
-
-    <div style="float:right;margin-right:16px;z-index:500;">
-    <%= link_to_remote "", {
-        :url => { :action => "remove_block", :block => block_name },
-        :complete => "removeBlock('block_#{block_name.dasherize}')" },
-        :class => "close-icon"
-         %>        
-    </div>
-     
-    <div class="handle">
-       <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
-       </div>
-</div>
\ No newline at end of file