aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base
Commit message (Collapse)AuthorAgeFilesLines
* Remove Mime::ALL from Mime::SET.José Valim2009-07-291-0/+1
| | | | Signed-off-by: Yehuda Katz <wycats@gmail.com>
* Refactor even more Responder. Move mime negotiation to request and added ↵José Valim2009-07-291-51/+99
| | | | | | respond_to class method. Signed-off-by: Yehuda Katz <wycats@gmail.com>
* Refactor Responder to only calculate available mime types. Those are sent to ↵José Valim2009-07-291-58/+71
| | | | | | the controller that knows what to do with it (render a block or call default render). Signed-off-by: Yehuda Katz <wycats@gmail.com>
* Merge docrailsPratik Naik2009-07-252-3/+2
|
* Centralize commonly used parts of AS in ActionController into ↵Yehuda Katz2009-07-152-3/+0
| | | | action_controller.rb
* Rename method to a more obvious nameYehuda Katz2009-07-111-2/+2
|
* Make filter_parameters work correctly with array parameters.Vicente Mundim2009-06-271-0/+4
|
* send_data should set Content-Length as a stringJoshua Peek2009-06-251-1/+1
|
* Small changes to get 1.9 passing (for the most part)Yehuda Katz2009-06-231-1/+1
|
* Remove one more note about deprecated behaviorYehuda Katz + Carl Lerche2009-06-171-3/+0
|
* Cleaning up if defined?(ActionController::Http) blocks from the pre new base ↵Yehuda Katz + Carl Lerche2009-06-173-36/+23
| | | | era.
* Remove some defined?(Http) checksYehuda Katz + Carl Lerche2009-06-175-47/+12
|
* RJS doesn't render with an HTML layout by defaultYehuda Katz + Carl Lerche2009-06-171-0/+1
|
* Move the exceptions for missing template into Compatibility in prep for ↵Yehuda Katz + Carl Lerche2009-06-161-0/+7
| | | | moving it into a "not-production" module
* An exception is raised if a layout is missing only if the layout is missing ↵Yehuda Katz + Carl Lerche2009-06-162-3/+3
| | | | for all mimes
* Exceptions now in an exceptions moduleYehuda Katz + Carl Lerche2009-06-161-0/+58
|
* Whoops, I guess we broke layouts ;)Yehuda Katz + Carl Lerche2009-06-151-6/+0
|
* rm -r controller/base!Yehuda Katz + Carl Lerche2009-06-159-0/+1380
|
* Get tests to run (with failures) without old base aroundYehuda Katz + Carl Lerche2009-06-1530-3980/+1223
|
* Finish making things pass with updated internal content_type semanticsYehuda Katz + Carl Lerche2009-06-152-5/+6
|
* A test to show that http_authentication needs to fail authentication if the ↵nate2009-06-091-1/+3
| | | | | | password procedure returns nil. Also includes a fix to validate_digest_response to fail validation if the password procedure returns nil. Signed-off-by: Michael Koziarski <michael@koziarski.com>
* AS::Concern redefines "include" to lazy include modules as dependenciesJoshua Peek2009-05-295-8/+6
|
* AS::Concern includes InstanceMethods module if it existsJoshua Peek2009-05-291-6/+1
|
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵Joshua Peek2009-05-286-6/+6
| | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* The FlashHash and friends causes a lot of needless session storing, when we ↵Johan Sörensen2009-05-281-33/+37
| | | | | | know for a fact that there's no content in the flash. By not storing the empty hash in the session we save a lot of communication with the various session backends, while still keeping the same interface to the flash. [#2703 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Memoize cookies so that updates to cookies are available in the current ↵Olly Legg2009-05-281-1/+1
| | | | | | request. [#2733 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* ActionController::Flash::FlashHash.use now returns either the value ↵Niels Ganser2009-05-271-6/+5
| | | | | | corresponding to the passed key or itself when no key is passed [#1792 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Remove unnecessary asset_host initializationPratik Naik2009-05-231-1/+0
|
* Make logging_test pass with the new basePratik Naik2009-05-231-1/+1
|
* Add all the existing helpers related features to the new basePratik Naik2009-05-231-13/+9
|
* Move FilterParameterLogging to a stand alone module and make it work on new basePratik Naik2009-05-222-57/+98
|
* Add missing dependency in StreamingPratik Naik2009-05-221-0/+7
|
* Remove some response content type concepts from ActionViewYehuda Katz + Carl Lerche2009-05-211-4/+3
|
* Add Streaming to new basePratik Naik2009-05-211-0/+1
|
* RequestForgeryProtection now works with the new basePratik Naik2009-05-211-5/+19
|
* Allow Module#depends_on to accept multiple modulesPratik Naik2009-05-211-4/+1
|
* Made ActionController::Verification work with new_basePratik Naik2009-05-211-3/+9
|
* Make ActionController::Flash work with new_basePratik Naik2009-05-211-22/+52
|
* Added responds_to to new base.Yehuda Katz + Carl Lerche2009-05-201-108/+107
|
* Ported simple benchmarking in new baseYehuda Katz + Carl Lerche2009-05-181-1/+1
|
* Ensure HTTP Digest auth uses appropriate HTTP method [#2490 state:resolved] ↵Pratik Naik2009-05-181-1/+2
| | | | [Steve Madsen]
* Rescue hack was supposed to be removed. Some how it crept back in.Joshua Peek2009-05-171-3/+2
|
* Simplify filter_chain method implementation [#2327 state:resolved]Thomas E. Glasgow2009-05-171-6/+1
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Ported Rescuable to new baseYehuda Katz + Carl Lerche2009-05-151-1/+1
|
* Cherry-pick core extensionsJeremy Kemper2009-05-134-3/+11
|
* Implemented redirects and partial rendering in new base.Yehuda Katz + Carl Lerche2009-05-121-1/+3
|
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-113-16/+67
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Extract ActionController rescue templates into Rescue and ShowExceptions ↵Joshua Peek2009-05-022-7/+52
| | | | | | | | | | middleware. This commit breaks all exception catching plugins like ExceptionNotifier. These plugins should be rewritten as middleware instead overriding Controller#rescue_action_in_public.
| * Deprecate Controller.process interfaceJoshua Peek2009-05-021-0/+1
| |
| * Switch functional tests to run through the rack interface instead of processJoshua Peek2009-05-021-4/+8
| |