mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Resource scaffolding returns the created entity.to_xml.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6580 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
9ff19d89b9
commit
baba45d689
2 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Resource scaffolding returns the created entity.to_xml. [Jeremy Kemper]
|
||||
|
||||
* Resource scaffolding responds to new.xml. #8185 [Eric Mill]
|
||||
|
||||
* Include Active Resource in rails:freeze:edge rake task. [Thomas Fuchs]
|
||||
|
|
|
@ -6,7 +6,7 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|||
|
||||
respond_to do |format|
|
||||
format.html # index.erb
|
||||
format.xml { render :xml => @<%= table_name %>.to_xml }
|
||||
format.xml { render :xml => @<%= table_name %> }
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -17,7 +17,7 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|||
|
||||
respond_to do |format|
|
||||
format.html # show.erb
|
||||
format.xml { render :xml => @<%= file_name %>.to_xml }
|
||||
format.xml { render :xml => @<%= file_name %> }
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -28,7 +28,7 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|||
|
||||
respond_to do |format|
|
||||
format.html # new.erb
|
||||
format.xml { render :xml => @<%= file_name %>.to_xml }
|
||||
format.xml { render :xml => @<%= file_name %> }
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -46,10 +46,10 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|||
if @<%= file_name %>.save
|
||||
flash[:notice] = '<%= class_name %> was successfully created.'
|
||||
format.html { redirect_to <%= file_name %>_url(@<%= file_name %>) }
|
||||
format.xml { head :created, :location => <%= file_name %>_url(@<%= file_name %>) }
|
||||
format.xml { render :xml => @<%= file_name %>, :status => :created, :location => <%= file_name %>_url(@<%= file_name %>) }
|
||||
else
|
||||
format.html { render :action => "new" }
|
||||
format.xml { render :xml => @<%= file_name %>.errors.to_xml }
|
||||
format.xml { render :xml => @<%= file_name %>.errors }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -66,7 +66,7 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|||
format.xml { head :ok }
|
||||
else
|
||||
format.html { render :action => "edit" }
|
||||
format.xml { render :xml => @<%= file_name %>.errors.to_xml }
|
||||
format.xml { render :xml => @<%= file_name %>.errors }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue