diff options
Diffstat (limited to 'actionpack/lib')
-rwxr-xr-x | actionpack/lib/action_controller/base.rb | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 9d03a70588..751f364aa8 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -265,11 +265,9 @@ module ActionController #:nodoc: # The param_parsers hash lets you register handlers wich will process the http body and add parameters to the # @params hash. These handlers are invoked for post and put requests. # - # By default application/xml and application/x-yaml are enabled. For application/xml, a XmlSimple class with - # the same param name as the root will be instanciated in the @params. This allows XML requests to mask themselves - # as regular form submissions, so you can have one action serve both regular forms and web service requests. For - # application/x-yaml, the YAML document is merged into the parameters and appears to the application as if the - # YAML elements were simply form submissions. + # By default application/xml is enabled. A XmlSimple class with the same param name as the root will be instanciated + # in the @params. This allows XML requests to mask themselves as regular form submissions, so you can have one + # action serve both regular forms and web service requests. # # Example of doing your own parser for a custom content type: # @@ -283,9 +281,13 @@ module ActionController #:nodoc: # in params[:r][:name] for "David" instead of params[:name]. To get the old behavior, you can # re-register XmlSimple as application/xml handler ike this: # - # ActionController::Base.param_parsers[Mime::XML] = + # ActionController::Base.param_parsers[Mime::XML] = # Proc.new { |data| XmlSimple.xml_in(data, 'ForceArray' => false) } - @@param_parsers = { Mime::XML => :xml_simple, Mime::YAML => :yaml } + # + # A YAML parser is also available and can be turned on with: + # + # ActionController::Base.param_parsers[Mime::YAML] = :yaml + @@param_parsers = { Mime::XML => :xml_simple } cattr_accessor :param_parsers # Template root determines the base from which template references will be made. So a call to render("test/template") |