aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-115-14/+25
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-115-38/+43
| | | | | | | | This reverts commit a747ab5b20b9d543e9d311070e3b720c761ae716.
| * Whitespace!Joshua Peek2009-05-075-43/+38
| |
| * Prefer "included" language over "setup"Joshua Peek2009-05-071-3/+3
| |
| * Make module dependency DSL opt inJoshua Peek2009-05-072-0/+4
| |
* | Fixed a bug with handling render optionsYehuda Katz + Carl Lerche2009-05-112-2/+11
| |
* | Aliased AbstractController::ActionNotFound to ActionController::UnknownActionYehuda Katz + Carl Lerche2009-05-111-5/+8
| |
* | Ported ConditionalGet to new BaseYehuda Katz + Carl Lerche2009-05-115-1/+96
| |
* | Ported fresh_when into a ConditionalGet moduleYehuda Katz + Carl Lerche2009-05-113-0/+44
| |
* | Implement FooController.action(:name)Yehuda Katz2009-05-021-3/+10
| | | | | | | | | | | | * Rails actions are now Rack endpoints, and can be retrieved via FooController.action(name) and called with an env * Updated some tests that relied on the old internal #process/#call implementation
* | Get render :inline workingYehuda Katz + Carl Lerche2009-05-012-1/+5
| |
* | Renamed Base2 to Base and don't require old action_controller for new BaseYehuda Katz + Carl Lerche2009-05-013-43/+121
| |
* | Starting to get new_base to run on old testsYehuda Katz + Carl Lerche2009-05-012-0/+26
| |
* | Add support for stripping "layouts/" from the layout name Yehuda Katz + Carl Lerche2009-05-011-0/+5
| |
* | Modify new_base to use String action_names for back-compatYehuda Katz + Carl Lerche2009-05-011-1/+1
| |
* | Ported over the concept of public instance methods on controller child ↵Yehuda Katz + Carl Lerche2009-05-011-8/+6
| | | | | | | | classes as callable action methods
* | Move ContentType inline for now. Yehuda Katz + Carl Lerche2009-05-012-19/+6
| | | | | | | | Trying to avoid premature proliferation of modules.
* | Support implicit and explicit content typesYehuda Katz + Carl Lerche2009-05-011-0/+15
| |
* | 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-012-7/+3
| |
* | Renamed ActionController::AbstractBase to ActionController::HttpYehuda Katz + Carl Lerche2009-05-011-1/+1
| |
* | OMG, a lot of workYehuda Katz + Carl Lerche2009-05-012-0/+14
|/
* Don't set Content-Length in Base#response_body= since body may be any ↵Jeremy Kemper2009-04-171-1/+0
| | | | Rack-compatible body. Leave it up to the content length middleware.
* Rename render_to_string to render_to_body since it may return any ↵Jeremy Kemper2009-04-173-7/+7
| | | | Rack-compatible body, not just strings
* Get Base2 layouts to work :)Yehuda Katz and Carl Lerche2009-04-071-0/+23
|
* Add depends_on, use, and setup to abstract up ideas about module inheritance.Yehuda Katz and Carl Lerche2009-04-073-16/+7
|
* CheckpointYehuda Katz and Carl Lerche2009-03-231-26/+0
|
* Add a bunch of tests for various render :action, layout combinationsYehuda Katz2009-03-231-4/+5
|
* Finished implementing layout for render :textCarl Lerche2009-03-232-8/+25
|
* Working on being able to render :text with layoutsCarl Lerche2009-03-231-6/+7
|
* Get very basic layouts working.Yehuda Katz2009-03-192-6/+29
| | | * 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-173-1/+53
|
* Try to build a new AC::Base on top of AbstractControllerYehuda Katz2009-03-123-0/+94