mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
My beautiful eyes [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3993 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
6f8c99fa34
commit
faecde0ec8
5 changed files with 8 additions and 12 deletions
|
@ -99,8 +99,8 @@ module ActionController
|
|||
|
||||
module_eval <<-"end_eval", __FILE__, __LINE__
|
||||
|
||||
verify :method=>:post, :only=>[:destroy#{suffix}, :create#{suffix}, :update#{suffix}],
|
||||
:redirect_to=>{:action=>:list#{suffix}}
|
||||
verify :method => :post, :only => [ :destroy#{suffix}, :create#{suffix}, :update#{suffix} ],
|
||||
:redirect_to => { :action => :list#{suffix} }
|
||||
|
||||
|
||||
def list#{suffix}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<% end %>
|
||||
<td><%= link_to "Show", :action => "show#{@scaffold_suffix}", :id => entry %></td>
|
||||
<td><%= link_to "Edit", :action => "edit#{@scaffold_suffix}", :id => entry %></td>
|
||||
<td><%= link_to "Destroy", {:action => "destroy#{@scaffold_suffix}", :id => entry}, {:confirm => "Are you sure?", :post=>true} %></td>
|
||||
<td><%= link_to "Destroy", {:action => "destroy#{@scaffold_suffix}", :id => entry}, { :confirm => "Are you sure?", :post => true} %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</table>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<body>
|
||||
<h1>Application error (Apache)</h1>
|
||||
<h1>Application error</h1>
|
||||
<p>Change this error message for exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code) in public/500.html</p>
|
||||
</body>
|
||||
</html>
|
|
@ -11,13 +11,9 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|||
end
|
||||
|
||||
<% end -%>
|
||||
|
||||
# GET should only be used for operations which are 'safe', or read-only. So require
|
||||
# post for all actions which change state.
|
||||
#
|
||||
# http://www.w3.org/2001/tag/doc/whenToUseGet.html
|
||||
verify :method=>:post, :only=>[:destroy<%= suffix %>, :create<%= suffix %>, :update<%= suffix %>],
|
||||
:redirect_to=> {:action=>:list<%= suffix %>}
|
||||
# GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html)
|
||||
verify :method => :post, :only => [ :destroy<%= suffix %>, :create<%= suffix %>, :update<%= suffix %> ],
|
||||
:redirect_to => { :action => :list<%= suffix %> }
|
||||
|
||||
def list<%= suffix %>
|
||||
@<%= singular_name %>_pages, @<%= plural_name %> = paginate :<%= plural_name %>, :per_page => 10
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<%% end %>
|
||||
<td><%%= link_to 'Show', :action => 'show<%= suffix %>', :id => <%= singular_name %> %></td>
|
||||
<td><%%= link_to 'Edit', :action => 'edit<%= suffix %>', :id => <%= singular_name %> %></td>
|
||||
<td><%%= link_to 'Destroy', { :action => 'destroy<%= suffix %>', :id => <%= singular_name %> }, :confirm => 'Are you sure?', :post=>true %></td>
|
||||
<td><%%= link_to 'Destroy', { :action => 'destroy<%= suffix %>', :id => <%= singular_name %> }, :confirm => 'Are you sure?', :post => true %></td>
|
||||
</tr>
|
||||
<%% end %>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue