]> source.dussan.org Git - redmine.git/commitdiff
rename .rhtml to .html.erb of app/views/queries/index.rhtml.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 2 Sep 2011 04:51:40 +0000 (04:51 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 2 Sep 2011 04:51:40 +0000 (04:51 +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@7058 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

diff --git a/app/views/queries/index.html.erb b/app/views/queries/index.html.erb
new file mode 100644 (file)
index 0000000..aa2a94a
--- /dev/null
@@ -0,0 +1,27 @@
+<div class="contextual">
+<%= link_to_if_authorized l(:label_query_new), {:controller => 'queries', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %>
+</div>
+
+<h2><%= l(:label_query_plural) %></h2>
+
+<% if @queries.empty? %>
+  <p><i><%=l(:label_no_data)%></i></p>
+<% else %>
+  <table class="list">
+  <% @queries.each do |query| %>
+    <tr class="<%= cycle('odd', 'even') %>">
+      <td>
+        <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
+      </td>
+      <td align="right">
+        <small>
+        <% if query.editable_by?(User.current) %>    
+        <%= link_to l(:button_edit), {:controller => 'queries', :action => 'edit', :id => query}, :class => 'icon icon-edit' %>
+        <%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => query}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
+        </small>
+      <% end %>
+      </td>
+    </tr>
+  <% end %>
+  </table>
+<% end %>
diff --git a/app/views/queries/index.rhtml b/app/views/queries/index.rhtml
deleted file mode 100644 (file)
index aa2a94a..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<div class="contextual">
-<%= link_to_if_authorized l(:label_query_new), {:controller => 'queries', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %>
-</div>
-
-<h2><%= l(:label_query_plural) %></h2>
-
-<% if @queries.empty? %>
-  <p><i><%=l(:label_no_data)%></i></p>
-<% else %>
-  <table class="list">
-  <% @queries.each do |query| %>
-    <tr class="<%= cycle('odd', 'even') %>">
-      <td>
-        <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
-      </td>
-      <td align="right">
-        <small>
-        <% if query.editable_by?(User.current) %>    
-        <%= link_to l(:button_edit), {:controller => 'queries', :action => 'edit', :id => query}, :class => 'icon icon-edit' %>
-        <%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => query}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
-        </small>
-      <% end %>
-      </td>
-    </tr>
-  <% end %>
-  </table>
-<% end %>