add tip on keeping backwards compatibility

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6508 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Rick Olson
2007-04-08 17:18:10 +00:00
parent e0f8342676
commit da336c1cad

View File

@@ -4,6 +4,14 @@
* Default xml template goes from #{action_name}.rxml => #{action_name}.xml.builder.
* Default rjs template goes from #{action_name}.rjs => #{action_name}.js.rjs.
You can still specify your old templates:
respond_to do |format|
format.xml do
render :action => "#{action_name}.rxml"
end
end
* Fix WSOD due to modification of a formatted template extension so that requests to templates like 'foo.html.erb' fail on the second hit. [Rick]