rails--rails/actionpack/test/controller
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
..
action_pack_assertions_test.rb Major components cleanup and speedup. Closes #3527. 2006-02-09 20:05:11 +00:00
addresses_render_test.rb Made pagination faster #1334 [Stefan Kaes] 2005-07-14 08:02:01 +00:00
base_test.rb Remove ::Controllers related cruft; fix AP tests 2006-02-26 17:49:09 +00:00
benchmark_test.rb Remove ::Controllers related cruft; fix AP tests 2006-02-26 17:49:09 +00:00
caching_filestore.rb Testing should also use a default REQUEST_METHOD 2005-09-29 08:43:17 +00:00
capture_test.rb Added .rxml (and any non-rhtml template, really) supportfor CaptureHelper#content_for and CaptureHelper#capture #3287 [Brian Takita] 2006-02-26 19:47:50 +00:00
cgi_test.rb Add support for multiple proxy servers in HTTP_X_FORWARDED_HOST. Closes #3397 2006-01-13 08:31:16 +00:00
components_test.rb Fix problem where redirecting components can cause an 2005-10-30 13:13:02 +00:00
cookie_test.rb Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existing cookies #979 [bitsweat] 2005-04-02 08:54:25 +00:00
custom_handler_test.rb Streamline render process, code cleaning. Closes #2294. 2005-09-27 16:45:39 +00:00
fake_controllers.rb Don't let arbitrary classes match as controllers 2006-02-04 23:59:37 +00:00
filters_test.rb Stopped the massive bleeding of concerns into ActionController::Base. Base no longer knows about flash, filters, or components. This may well have introduced some instability, please do test with apps, especially the ones using components. [DHH] 2006-02-12 05:51:02 +00:00
flash_test.rb Modernize flash tests 2006-02-12 16:29:21 +00:00
fragment_store_setting_test.rb MemCache store may be given multiple addresses. Closes #2869. 2005-11-16 08:35:31 +00:00
helper_test.rb Controllers with acronyms in their names (e.g. PDFController) require the correct default helper (PDFHelper in file pdf_helper.rb). Closes #2262. Do not raise an exception when default helper is missing; log a debug message instead. It's nice to delete empty helpers. 2005-11-08 08:23:13 +00:00
layout_test.rb Automatically discover layouts when a controller is namespaced. Closes #2199, #3424. 2006-01-15 11:28:55 +00:00
new_render_test.rb Fixed tests (closes #4087) [Rick Olson] 2006-03-05 16:35:27 +00:00
raw_post_test.rb A few missing files 2005-01-20 14:55:13 +00:00
redirect_test.rb Raise a RedirectBackError if redirect_to :back is called when theres no HTTP_REFERER defined (closes #3049) [kevin.clark@gmail.com] 2006-01-22 01:52:23 +00:00
render_test.rb Ensure backwards compatibility with symbolized action names for render_action (closes #3869) [anna@wota.jp] 2006-02-19 00:46:34 +00:00
request_test.rb Fixed that SSL would not correctly be detected when running lighttpd/fcgi behind lighttpd w/mod_proxy (closes #3548) [stephen_purcell@yahoo.com] 2006-01-23 05:32:59 +00:00
routing_test.rb Don't let arbitrary classes match as controllers 2006-02-04 23:59:37 +00:00
send_file_test.rb Fix open/save dialog in IE not opening files send with send_file/send_data, #2279 2005-09-25 06:53:42 +00:00
session_management_test.rb Added easy assignment of fragment cache store through use of symbols for included stores (old way still works too) 2005-09-13 08:31:32 +00:00
test_test.rb Fixed that the request method would be sticky in tests (closes #3849) [lars@pinds.com] 2006-02-20 23:49:43 +00:00
url_rewriter_test.rb Included UrlRewriter tests in rake run and made them not depend on Hash order 2005-09-15 05:24:29 +00:00
verification_test.rb Major components cleanup and speedup. Closes #3527. 2006-02-09 20:05:11 +00:00
webservice_test.rb Added new infrastructure support for REST webservices. 2006-03-05 18:59:58 +00:00