aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Ported fresh_when into a ConditionalGet moduleYehuda Katz + Carl Lerche2009-05-114-0/+45
| | |
| * | More community code review :)Yehuda Katz2009-05-113-12/+4
| | |
| * | Implement FooController.action(:name)Yehuda Katz2009-05-024-20/+26
| | | | | | | | | | | | | | | | | | * 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-013-2/+6
| | |
| * | A few more tweaks to get new Base running old render tests againYehuda Katz + Carl Lerche2009-05-012-4/+8
| | |
| * | Renamed Base2 to Base and don't require old action_controller for new BaseYehuda Katz + Carl Lerche2009-05-014-45/+136
| | |
| * | Starting to get new_base to run on old testsYehuda Katz + Carl Lerche2009-05-014-0/+95
| | |
| * | Add support for stripping "layouts/" from the layout name Yehuda Katz + Carl Lerche2009-05-012-0/+8
| | |
| * | Modify new_base to use String action_names for back-compatYehuda Katz + Carl Lerche2009-05-013-7/+7
| | |
| * | Ported over the concept of public instance methods on controller child ↵Yehuda Katz + Carl Lerche2009-05-012-15/+47
| | | | | | | | | | | | classes as callable action methods
| * | Move ContentType inline for now. Yehuda Katz + Carl Lerche2009-05-013-20/+6
| | | | | | | | | | | | Trying to avoid premature proliferation of modules.
| * | Support implicit and explicit content typesYehuda Katz + Carl Lerche2009-05-012-0/+16
| | |
| * | Support implicit render and blank renderYehuda Katz + Carl Lerche2009-05-013-11/+15
| | |
| * | Ported over render :template testsYehuda Katz + Carl Lerche2009-05-013-7/+1
| | |
| * | Finished implementing render :text in Base2Yehuda Katz + Carl Lerche2009-05-013-7/+16
| | |
| * | Renamed ActionController::AbstractBase to ActionController::HttpYehuda Katz + Carl Lerche2009-05-012-2/+2
| | |
| * | OMG, a lot of workYehuda Katz + Carl Lerche2009-05-017-9/+27
| |/
| * alias method chain process with testJoshua Peek2009-04-301-3/+6
| |
| * Move TestRequest#query_parameters into AD TestRequestJoshua Peek2009-04-301-12/+2
| |
| * Set rack.input instead of RAW_POST_DATA in TestRequestJoshua Peek2009-04-301-28/+11
| |
| * Missed stray @request_uriJoshua Peek2009-04-301-2/+0
| |
| * Move TestRequest cookies accessor into AD TestRequestJoshua Peek2009-04-301-2/+0
| |
| * Merge branch 'master' of git@github.com:rails/railsJeremy Kemper2009-04-301-1/+2
| |\
| | * Fix render :json => nil [#2589 state:resolved]Jeremy Kemper2009-04-301-1/+2
| | |
| * | Fix action-cached exception responses.John F. Douthat2009-04-301-1/+9
| |/ | | | | | | | | | | | | | | Methods raising ActiveRecord::RecordNotFound were returning 404 on first request and 200 OK with blank body on subsequent requests. [#2533 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * Start moving TestRequest and TestResponse into ActionDispatchJoshua Peek2009-04-303-165/+19
| |
| * Vendor new Rack::Mock changesJoshua Peek2009-04-302-2/+2
| |
| * Group integration test helpers and delegate other helpers to request and ↵Joshua Peek2009-04-301-147/+126
| | | | | | | | response objects
| * Switch to action_dispatch rack namespace Joshua Peek2009-04-301-1/+1
| |
| * Move generic assertions into ActionDispatchJoshua Peek2009-04-308-1114/+2
| |
| * Test::Unit work arounds are handled by ActiveSupportJoshua Peek2009-04-301-49/+0
| |
| * Framework backtrace cleaning is handled by ActiveSupport nowJoshua Peek2009-04-306-113/+85
| |
* | Some spelling changes.Evan Farrar2009-05-075-6/+6
| |
* | bugfix for with_options routing documentationSimon Tokumine2009-05-011-1/+1
| |
* | Merge commit 'mainstream/master'Pratik Naik2009-04-308-358/+104
|\|
| * Deprecate template, session, assigns, and layout accessors on response ↵Joshua Peek2009-04-285-13/+18
| | | | | | | | object. Instead access them through the controller instance. This mainly affects functional test assertions.
| * Move header injection back into integration testsJoshua Peek2009-04-281-1/+6
| |
| * Fix validate_request method nameJoshua Peek2009-04-281-4/+4
| |
| * Refactor ActionView::TemplateYehuda Katz + Carl Lerche2009-04-273-13/+24
| | | | | | | | | | | | | | | | ActionView::Template is now completely independent from template storage, which allows different back ends such as the database. ActionView::Template's only responsibility is to take in the template source (passed in from ActionView::Path), compile it, and render it.
| * Delegate controller.session to request.session and deprecate response session Joshua Peek2009-04-272-10/+6
| |
| * Check for to_str rather than StringJeremy Kemper2009-04-261-1/+1
| |
| * Use session= writer methodsJeremy Kemper2009-04-261-2/+2
| |
| * Inherit TestSession from Session::AbstractStore and add indifferent access ↵Joshua Peek2009-04-262-76/+12
| | | | | | | | to Session::AbstractStore.
| * Require an ActionDispatch::Request to use response assertionsJoshua Peek2009-04-261-6/+18
| |
| * Unify functional and integration tests cookie helpersJoshua Peek2009-04-261-21/+12
| |
| * Deprecate response.redirect_url_match?, use assert_match instead.Joshua Peek2009-04-261-0/+1
| |
| * Move useful response test helpers into requestJoshua Peek2009-04-262-62/+6
| |
| * Remove RewindableInput middleware since all input MUST be rewindable ↵Joshua Peek2009-04-251-1/+0
| | | | | | | | according to a recent change in the Rack 1.0 SPEC
| * Remove pending rack specifications until they are officialJoshua Peek2009-04-251-3/+1
| |
| * Start to integrate some of the features in Rack::Test.Joshua Peek2009-04-242-178/+26
| | | | | | | | Eventually commit ActionDispatch::Test::MockRequest and ActionDispatch::Test:: UploadedFile upstream.