aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/base.rb
Commit message (Collapse)AuthorAgeFilesLines
* Get tests to run (with failures) without old base aroundYehuda Katz + Carl Lerche2009-06-151-173/+0
|
* Writing comments to AbstractControllerYehuda Katz + Carl Lerche2009-06-081-1/+1
|
* Revert "Revert "Whitespace!""Joshua Peek2009-05-281-9/+9
| | | This reverts commit 0cac68d3bed3e6bf8ec2eb994858e4a179046941.
* Added hook point in new base #send_action which does the actual action ↵Yehuda Katz + Carl Lerche2009-05-271-1/+1
| | | | method dispatching
* Reduce the cost of using ActionController::Http significantly by:Yehuda Katz2009-05-271-0/+1
| | | | | | | | | | * 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.
* Get all template tests passing on new baseCarl Lerche2009-05-261-1/+1
|
* Created an ActionController::Renderers::All that includes all the default ↵Yehuda Katz + Carl Lerche2009-05-221-4/+1
| | | | render options (:json, :js, :rjs, :xml)
* Got controller/render_js_test.rb to pass on new baseYehuda Katz + Carl Lerche2009-05-221-0/+1
|
* Port cookies to new baseJeremy Kemper2009-05-221-0/+1
|
* Add Translation to the new basePratik Naik2009-05-231-0/+1
|
* Add all the existing helpers related features to the new basePratik Naik2009-05-231-2/+2
|
* Move FilterParameterLogging to a stand alone module and make it work on new basePratik Naik2009-05-221-0/+1
|
* Move Safari response-padding fix to Rails2Compatibility. Should be a Rack ↵Jeremy Kemper2009-05-211-6/+2
| | | | concern.
* Added the :rjs render optionYehuda Katz + Carl Lerche2009-05-211-6/+8
|
* Renamed #implicit_render to #default_render in new base to support the ↵Yehuda Katz + Carl Lerche2009-05-211-3/+3
| | | | default_render API
* Add HTTP Authentication to the new basePratik Naik2009-05-221-0/+7
|
* Added the :xml render optionYehuda Katz + Carl Lerche2009-05-211-1/+1
|
* Added the ability to register methods to handle specific render option keys ↵Yehuda Katz + Carl Lerche2009-05-211-0/+2
| | | | and render :json
* Remove some response content type concepts from ActionViewYehuda Katz + Carl Lerche2009-05-211-4/+16
|
* Add Streaming to new basePratik Naik2009-05-211-0/+1
|
* RequestForgeryProtection now works with the new basePratik Naik2009-05-211-4/+5
|
* Made ActionController::Verification work with new_basePratik Naik2009-05-211-0/+1
|
* Make ActionController::Flash work with new_basePratik Naik2009-05-211-0/+3
|
* Added responds_to to new base.Yehuda Katz + Carl Lerche2009-05-201-0/+1
|
* Include caching module into new baseYehuda Katz + Carl Lerche2009-05-191-0/+1
|
* Ported simple benchmarking in new baseYehuda Katz + Carl Lerche2009-05-181-0/+1
|
* Ported Rescuable to new baseYehuda Katz + Carl Lerche2009-05-151-21/+29
|
* Refactored AbstractController to provide better hook points for overriding ↵Yehuda Katz + Carl Lerche2009-05-151-4/+12
| | | | aspects of action dispatching
* Implemented redirects and partial rendering in new base.Yehuda Katz + Carl Lerche2009-05-121-7/+72
|
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-111-10/+10
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-13/+14
| | | | | | | | This reverts commit a747ab5b20b9d543e9d311070e3b720c761ae716.
| * Whitespace!Joshua Peek2009-05-071-14/+13
| |
* | Ported ConditionalGet to new BaseYehuda Katz + Carl Lerche2009-05-111-0/+1
| |
* | Ported fresh_when into a ConditionalGet moduleYehuda Katz + Carl Lerche2009-05-111-0/+1
| |
* | Renamed Base2 to Base and don't require old action_controller for new BaseYehuda Katz + Carl Lerche2009-05-011-43/+44
| |
* | Starting to get new_base to run on old testsYehuda Katz + Carl Lerche2009-05-011-0/+3
| |
* | 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
* | Finished implementing render :text in Base2Yehuda Katz + Carl Lerche2009-05-011-6/+2
| |
* | Renamed ActionController::AbstractBase to ActionController::HttpYehuda Katz + Carl Lerche2009-05-011-1/+1
| |
* | OMG, a lot of workYehuda Katz + Carl Lerche2009-05-011-0/+2
|/
* 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-171-1/+1
| | | | Rack-compatible body, not just strings
* Working toward getting a basic AbstractController frameworkYehuda Katz2009-03-171-1/+36
|
* Try to build a new AC::Base on top of AbstractControllerYehuda Katz2009-03-121-0/+26