aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/render_options.rb
Commit message (Collapse)AuthorAgeFilesLines
* Get tests to run (with failures) without old base aroundYehuda Katz + Carl Lerche2009-06-151-103/+0
|
* AS::Concern redefines "include" to lazy include modules as dependenciesJoshua Peek2009-05-291-5/+5
|
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵Joshua Peek2009-05-281-20/+16
| | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* Revert "Revert "Whitespace!""Joshua Peek2009-05-281-8/+8
| | | This reverts commit 0cac68d3bed3e6bf8ec2eb994858e4a179046941.
* Reduce the cost of using ActionController::Http significantly by:Yehuda Katz2009-05-271-4/+4
| | | | | | | | | | * Removing the dependency on AD::Request and AD::Response * Moving the logic for the request and response object into a new module that is included by default. * Changing Renderer and Redirector to use self.headers, self.content_type, and self.status, which have very basic default implementations on AC::Http. When RackConvenience is included (which it is by default on AC::Base), the full Request/Response logic is used instead of the simple logic.
* Created an ActionController::Renderers::All that includes all the default ↵Yehuda Katz + Carl Lerche2009-05-221-0/+11
| | | | render options (:json, :js, :rjs, :xml)
* Got controller/render_js_test.rb to pass on new baseYehuda Katz + Carl Lerche2009-05-221-0/+10
|
* Ruby 1.9 compat: don't rely on lexical scoping since the included block is ↵Jeremy Kemper2009-05-211-2/+2
| | | | called from dependency_module
* Added the :rjs render optionYehuda Katz + Carl Lerche2009-05-211-0/+11
|
* Update render options to remove performance implications of many render ↵Yehuda Katz + Carl Lerche2009-05-211-7/+25
| | | | options types
* Added the :xml render optionYehuda Katz + Carl Lerche2009-05-211-6/+24
|
* Added the ability to register methods to handle specific render option keys ↵Yehuda Katz + Carl Lerche2009-05-211-0/+39
and render :json