Ruby on Rails
Go to file
Tobias Lütke 03d37a2d68 Added new infrastructure support for REST webservices.
By default application/xml posts are handled by creating a XmlNode object with the same name as the root element of the submitted xml. M$

 ActionController::Base.param_parsers['application/atom+xml'] = Proc.new do |data|
    node = REXML::Document.new(post)
   { node.root.name => node.root }
 end

 XmlSimple and Yaml web services were retired, ActionController::Base.param_parsers carries an example which shows how to get this functio$
 request.[formatted_post?, xml_post?, yaml_post? and post_format] were all deprecated in favor of request.content_type [Tobias Luetke]

Closes #4081


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3777 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2006-03-05 18:59:58 +00:00
actionmailer Fixed rdoc.options use all over (closes #3639) [andy@tinnedfruit.org] 2006-02-26 00:04:04 +00:00
actionpack Added new infrastructure support for REST webservices. 2006-03-05 18:59:58 +00:00
actionwebservice Fixed test 2006-03-03 05:59:04 +00:00
activerecord Fixed eager loading problems with single-table inheritance [Rick Olson] Added smarter table aliasing for eager associations for multiple self joins [Rick Olson] (closes #3580) 2006-03-05 18:43:56 +00:00
activesupport Added socket cleanup for lighttpd, both before and after [DHH] Added automatic creation of tmp/ when running script/server [DHH] Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [DHH] 2006-03-04 19:39:26 +00:00
railties Dont generate migration when doing scaffolding 2006-03-05 17:17:27 +00:00
cleanlogs.sh Logs in GEMs is bad style 2005-03-06 22:14:57 +00:00
pushgems.rb Get rid of that silly lock 2005-09-04 00:28:28 +00:00
release.rb Post release minor fixes 2005-07-07 06:39:48 +00:00