rails--rails/actionpack/test
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
..
activerecord Added :count option to pagination that'll make it possible for the ActiveRecord::Base.count call to using something else than * for the count. Especially important for count queries using DISTINCT #3839 [skaes]. Added :select option to Base.count that'll allow you to select something else than * to be counted on. Especially important for count queries using DISTINCT (closes #3839) [skaes]. 2006-02-20 03:15:22 +00:00
controller Added new infrastructure support for REST webservices. 2006-03-05 18:59:58 +00:00
fixtures Fixed tests (closes #4087) [Rick Olson] 2006-03-05 16:41:04 +00:00
template Fixed tests (closes #4087) [Rick Olson] 2006-03-05 16:35:27 +00:00
abstract_unit.rb Added new infrastructure support for REST webservices. 2006-03-05 18:59:58 +00:00
active_record_unit.rb * Fix pagination problems when using include 2006-02-09 09:17:40 +00:00
testing_sandbox.rb Make the truncate() helper multi-byte safe (assuming $KCODE has been set to something other than "NONE") #2103 2005-09-19 21:36:36 +00:00