aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/renderer.rb
Commit message (Collapse)AuthorAgeFilesLines
* AS::Concern redefines "include" to lazy include modules as dependenciesJoshua Peek2009-05-291-1/+1
|
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵Joshua Peek2009-05-281-1/+1
| | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* Revert "Revert "Whitespace!""Joshua Peek2009-05-281-43/+42
| | | This reverts commit 0cac68d3bed3e6bf8ec2eb994858e4a179046941.
* Reduce the cost of using ActionController::Http significantly by:Yehuda Katz2009-05-271-9/+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.
* Cleaned up the #render_to_body chain by extracting determining the templates ↵Yehuda Katz + Carl Lerche2009-05-221-9/+15
| | | | to render to a separate hook point.
* Move Safari response-padding fix to Rails2Compatibility. Should be a Rack ↵Jeremy Kemper2009-05-211-11/+2
| | | | concern.
* Dead localJeremy Kemper2009-05-211-1/+0
|
* Add HTTP Authentication to the new basePratik Naik2009-05-221-1/+1
|
* Added the :xml render optionYehuda Katz + Carl Lerche2009-05-211-1/+2
|
* Remove some response content type concepts from ActionViewYehuda Katz + Carl Lerche2009-05-211-9/+11
|
* Make controller/content_type_test.rb pass on new baseYehuda Katz + Carl Lerche2009-05-201-1/+5
|
* Fixed new_base tests on ruby 1.9Yehuda Katz + Carl Lerche2009-05-201-2/+2
|
* Added responds_to to new base.Yehuda Katz + Carl Lerche2009-05-201-1/+1
|
* Modified caching implementation to work with NewBaseYehuda Katz + Carl Lerche2009-05-191-0/+5
|
* Implemented redirects and partial rendering in new base.Yehuda Katz + Carl Lerche2009-05-121-5/+22
|
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-111-0/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: actionpack/lib/action_controller/abstract/callbacks.rb actionpack/lib/action_controller/abstract/renderer.rb actionpack/lib/action_controller/base/base.rb actionpack/lib/action_controller/dispatch/dispatcher.rb actionpack/lib/action_controller/routing/route_set.rb actionpack/lib/action_controller/testing/process.rb actionpack/test/abstract_controller/layouts_test.rb actionpack/test/controller/filters_test.rb actionpack/test/controller/helper_test.rb actionpack/test/controller/render_test.rb actionpack/test/new_base/test_helper.rb
| * Revert "Whitespace!"Yehuda Katz + Carl Lerche2009-05-111-11/+12
| | | | | | | | This reverts commit a747ab5b20b9d543e9d311070e3b720c761ae716.
| * Whitespace!Joshua Peek2009-05-071-12/+11
| |
| * Make module dependency DSL opt inJoshua Peek2009-05-071-0/+2
| |
* | Fixed a bug with handling render optionsYehuda Katz + Carl Lerche2009-05-111-2/+2
| |
* | Get render :inline workingYehuda Katz + Carl Lerche2009-05-011-0/+4
| |
* | Move ContentType inline for now. Yehuda Katz + Carl Lerche2009-05-011-4/+6
| | | | | | | | Trying to avoid premature proliferation of modules.
* | Support implicit render and blank renderYehuda Katz + Carl Lerche2009-05-011-8/+1
| |
* | Ported over render :template testsYehuda Katz + Carl Lerche2009-05-011-4/+0
| |
* | Finished implementing render :text in Base2Yehuda Katz + Carl Lerche2009-05-011-1/+1
|/
* Rename render_to_string to render_to_body since it may return any ↵Jeremy Kemper2009-04-171-4/+4
| | | | Rack-compatible body, not just strings
* Add depends_on, use, and setup to abstract up ideas about module inheritance.Yehuda Katz and Carl Lerche2009-04-071-10/+1
|
* Finished implementing layout for render :textCarl Lerche2009-03-231-5/+5
|
* Working on being able to render :text with layoutsCarl Lerche2009-03-231-6/+7
|
* Get very basic layouts working.Yehuda Katz2009-03-191-6/+10
| | | * Required small architecture change
* Started implementing render :actionYehuda Katz2009-03-191-10/+42
|
* Implemented basic template rendering in AC::Base2:Yehuda Katz2009-03-181-2/+25
| | | | | | | * Created several macros for writing simpler specs * Finished making Rack::Test work right * Implemented render_to_string * Status Codes * render :text => nil
* Working toward getting a basic AbstractController frameworkYehuda Katz2009-03-171-0/+11