]> source.dussan.org Git - redmine.git/commitdiff
deprecated ":post => true" replaced
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 26 Jan 2007 21:09:27 +0000 (21:09 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 26 Jan 2007 21:09:27 +0000 (21:09 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@191 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/documents/show.rhtml
app/views/issues/show.rhtml
app/views/news/show.rhtml
app/views/projects/list_files.rhtml
app/views/projects/list_issues.rhtml
app/views/projects/settings.rhtml
app/views/users/_memberships.rhtml

index 27ddb8a0c696b3769536f6f3f170f6a7aee53dd3..31595ab0f7b230a067994c06a138d615b2315f30 100644 (file)
@@ -1,6 +1,6 @@
 <div class="contextual">\r
 <%= link_to_if_authorized l(:button_edit), {:controller => 'documents', :action => 'edit', :id => @document}, :class => 'icon icon-edit' %>\r
-<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
 </div>\r
 \r
 <h2><%= @document.title %></h2>\r
@@ -15,7 +15,7 @@
 <% for attachment in @attachments %>
     <li>\r
         <div class="contextual">\r
-        <%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy_attachment', :id => @document, :attachment_id => attachment}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+        <%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy_attachment', :id => @document, :attachment_id => attachment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
         </div>\r
         <%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>\r
         (<%= number_to_human_size attachment.filesize %>)<br />\r
index 07ece8660b884ccb38b0403a43d9948641a82576..0be9f907ba790c4861b8b6bbec77b1e9d5eeb919 100644 (file)
@@ -52,7 +52,7 @@ end %>
 <div class="contextual">\r
 <%= link_to_if_authorized l(:button_edit), {:controller => 'issues', :action => 'edit', :id => @issue}, :class => 'icon icon-edit' %>\r
 <%= link_to_if_authorized l(:button_move), {:controller => 'projects', :action => 'move_issues', :id => @project, "issue_ids[]" => @issue.id }, :class => 'icon icon-move' %>\r
-<%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+<%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
 </div>\r
 \r
 <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>\r
@@ -84,7 +84,7 @@ end %>
 <td><%= link_to attachment.filename, { :action => 'download', :id => @issue, :attachment_id => attachment }, :class => 'icon icon-attachment' %> (<%= number_to_human_size(attachment.filesize) %>)</td>\r
 <td><%= format_date(attachment.created_on) %></td>\r
 <td><%= attachment.author.display_name %></td>\r
-<td><div class="contextual"><%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy_attachment', :id => @issue, :attachment_id => attachment }, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %></div></td>\r
+<td><div class="contextual"><%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy_attachment', :id => @issue, :attachment_id => attachment }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></div></td>\r
 </tr>\r
 <% end %>
 </table>\r
index 3d4d0a4a13c14c8d01ca7f81a5c5daad88e33293..cf283aae0c52561fc5614fc0e47c039f41fa05b1 100644 (file)
@@ -1,6 +1,6 @@
 <div class="contextual">\r
 <%= link_to_if_authorized l(:button_edit), {:controller => 'news', :action => 'edit', :id => @news}, :class => 'icon icon-edit' %>\r
-<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
 </div>\r
 \r
 <h2><%=h @news.title %></h2>\r
@@ -17,7 +17,7 @@
     <% next if comment.new_record? %>\r
     <h4><%= format_time(comment.created_on) %> - <%= comment.author.name %></h4>\r
     <div class="contextual">\r
-        <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+        <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
     </div>\r
     <%= simple_format(auto_link(h comment.comment))%>\r
 <% end if @news.comments_count > 0 %>\r
index a3c312f56422663cc84a69126e566057abe7fdb9..0236b2ea1a4ff5756b18f4d1a62ac96205db35e9 100644 (file)
@@ -31,7 +31,7 @@
     <% if delete_allowed %>\r
     <td align="center">\r
         <div class="contextual">\r
-        <%= link_to_if_authorized '', {:controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+        <%= link_to_if_authorized '', {:controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
         </div>\r
     </td>\r
     <% end %>
index 3f8451ece25131b9b13d9023f50102c9730a56de..322004ea437cf6dc7205118de348d1e86c5d236c 100644 (file)
@@ -31,7 +31,7 @@
         <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %>\r
         <% if authorize_for('projects', 'add_query') %>\r
             <%= link_to l(:button_edit), {:controller => 'queries', :action => 'edit', :id => @query}, :class => 'icon icon-edit' %>\r
-            <%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => @query}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+            <%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => @query}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
         <% end %>\r
     </div>    \r
     <h2><%= @query.name %></h2>\r
index 8b645320adc58450f1cf10cc8c33667c8490b989..9299ce49cf71d72ab70c6e9910575c969ecdc5c1 100644 (file)
@@ -38,7 +38,7 @@
         <% end %>
     </td>\r
     <td align="center">
-        <%= link_to_if_authorized l(:button_delete), {:controller => 'members', :action => 'destroy', :id => member}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>
+        <%= link_to_if_authorized l(:button_delete), {:controller => 'members', :action => 'destroy', :id => member}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
     </td>\r
        </tr>   \r
        <% end %>
@@ -69,7 +69,7 @@
     <td align="center"><%= format_date(version.effective_date) %></td>\r
     <td><%=h version.description %></td>
     <td align="center"><%= link_to_if_authorized l(:button_edit), { :controller => 'versions', :action => 'edit', :id => version }, :class => 'icon icon-edit' %></td>
-    <td align="center"><%= link_to_if_authorized l(:button_delete), {:controller => 'versions', :action => 'destroy', :id => version}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %></td>
+    <td align="center"><%= link_to_if_authorized l(:button_delete), {:controller => 'versions', :action => 'destroy', :id => version}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></td>
     </td>\r
     </tr>\r
 <% end; reset_cycle %>
@@ -94,7 +94,7 @@
         <% end %>\r
     </td>\r
     <td align="center">
-        <%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => @category}, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>
+        <%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => @category}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
     </td>\r
        </tr>\r
        <% end %>\r
index c3d1fd79e9672df9d828149f5e2ffb5e889a7a10..098ba83b1a169971f29a4c9ca0267e96bf4811e1 100644 (file)
@@ -9,7 +9,7 @@
     <%= options_from_collection_for_select @roles, "id", "name", membership.role_id %>\r
     </select>\r
     <%= submit_tag l(:button_change), :class => "button-small" %>\r
-    <%= link_to l(:button_delete), {:action => 'destroy_membership', :id => @user, :membership_id => membership }, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>\r
+    <%= link_to l(:button_delete), {:action => 'destroy_membership', :id => @user, :membership_id => membership }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>\r
 </p>\r
 <% end %>\r
 <% end %>\r