Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make filter_parameters work correctly with array parameters. | Vicente Mundim | 2009-06-27 | 1 | -0/+4 |
| | |||||
* | send_data should set Content-Length as a string | Joshua Peek | 2009-06-25 | 1 | -1/+1 |
| | |||||
* | Small changes to get 1.9 passing (for the most part) | Yehuda Katz | 2009-06-23 | 1 | -1/+1 |
| | |||||
* | Remove one more note about deprecated behavior | Yehuda Katz + Carl Lerche | 2009-06-17 | 1 | -3/+0 |
| | |||||
* | Cleaning up if defined?(ActionController::Http) blocks from the pre new base ↵ | Yehuda Katz + Carl Lerche | 2009-06-17 | 3 | -36/+23 |
| | | | | era. | ||||
* | Remove some defined?(Http) checks | Yehuda Katz + Carl Lerche | 2009-06-17 | 5 | -47/+12 |
| | |||||
* | RJS doesn't render with an HTML layout by default | Yehuda Katz + Carl Lerche | 2009-06-17 | 1 | -0/+1 |
| | |||||
* | Move the exceptions for missing template into Compatibility in prep for ↵ | Yehuda Katz + Carl Lerche | 2009-06-16 | 1 | -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 Lerche | 2009-06-16 | 2 | -3/+3 |
| | | | | for all mimes | ||||
* | Exceptions now in an exceptions module | Yehuda Katz + Carl Lerche | 2009-06-16 | 1 | -0/+58 |
| | |||||
* | Whoops, I guess we broke layouts ;) | Yehuda Katz + Carl Lerche | 2009-06-15 | 1 | -6/+0 |
| | |||||
* | rm -r controller/base! | Yehuda Katz + Carl Lerche | 2009-06-15 | 9 | -0/+1380 |
| | |||||
* | Get tests to run (with failures) without old base around | Yehuda Katz + Carl Lerche | 2009-06-15 | 30 | -3980/+1223 |
| | |||||
* | Finish making things pass with updated internal content_type semantics | Yehuda Katz + Carl Lerche | 2009-06-15 | 2 | -5/+6 |
| | |||||
* | A test to show that http_authentication needs to fail authentication if the ↵ | nate | 2009-06-09 | 1 | -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 dependencies | Joshua Peek | 2009-05-29 | 5 | -8/+6 |
| | |||||
* | AS::Concern includes InstanceMethods module if it exists | Joshua Peek | 2009-05-29 | 1 | -6/+1 |
| | |||||
* | Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵ | Joshua Peek | 2009-05-28 | 6 | -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örensen | 2009-05-28 | 1 | -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 Legg | 2009-05-28 | 1 | -1/+1 |
| | | | | | | request. [#2733 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | ActionController::Flash::FlashHash.use now returns either the value ↵ | Niels Ganser | 2009-05-27 | 1 | -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 initialization | Pratik Naik | 2009-05-23 | 1 | -1/+0 |
| | |||||
* | Make logging_test pass with the new base | Pratik Naik | 2009-05-23 | 1 | -1/+1 |
| | |||||
* | Add all the existing helpers related features to the new base | Pratik Naik | 2009-05-23 | 1 | -13/+9 |
| | |||||
* | Move FilterParameterLogging to a stand alone module and make it work on new base | Pratik Naik | 2009-05-22 | 2 | -57/+98 |
| | |||||
* | Add missing dependency in Streaming | Pratik Naik | 2009-05-22 | 1 | -0/+7 |
| | |||||
* | Remove some response content type concepts from ActionView | Yehuda Katz + Carl Lerche | 2009-05-21 | 1 | -4/+3 |
| | |||||
* | Add Streaming to new base | Pratik Naik | 2009-05-21 | 1 | -0/+1 |
| | |||||
* | RequestForgeryProtection now works with the new base | Pratik Naik | 2009-05-21 | 1 | -5/+19 |
| | |||||
* | Allow Module#depends_on to accept multiple modules | Pratik Naik | 2009-05-21 | 1 | -4/+1 |
| | |||||
* | Made ActionController::Verification work with new_base | Pratik Naik | 2009-05-21 | 1 | -3/+9 |
| | |||||
* | Make ActionController::Flash work with new_base | Pratik Naik | 2009-05-21 | 1 | -22/+52 |
| | |||||
* | Added responds_to to new base. | Yehuda Katz + Carl Lerche | 2009-05-20 | 1 | -108/+107 |
| | |||||
* | Ported simple benchmarking in new base | Yehuda Katz + Carl Lerche | 2009-05-18 | 1 | -1/+1 |
| | |||||
* | Ensure HTTP Digest auth uses appropriate HTTP method [#2490 state:resolved] ↵ | Pratik Naik | 2009-05-18 | 1 | -1/+2 |
| | | | | [Steve Madsen] | ||||
* | Rescue hack was supposed to be removed. Some how it crept back in. | Joshua Peek | 2009-05-17 | 1 | -3/+2 |
| | |||||
* | Simplify filter_chain method implementation [#2327 state:resolved] | Thomas E. Glasgow | 2009-05-17 | 1 | -6/+1 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Ported Rescuable to new base | Yehuda Katz + Carl Lerche | 2009-05-15 | 1 | -1/+1 |
| | |||||
* | Cherry-pick core extensions | Jeremy Kemper | 2009-05-13 | 4 | -3/+11 |
| | |||||
* | Implemented redirects and partial rendering in new base. | Yehuda Katz + Carl Lerche | 2009-05-12 | 1 | -1/+3 |
| | |||||
* | Merge branch 'master' into wip_abstract_controller | Yehuda Katz + Carl Lerche | 2009-05-11 | 3 | -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 Peek | 2009-05-02 | 2 | -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 interface | Joshua Peek | 2009-05-02 | 1 | -0/+1 |
| | | |||||
| * | Switch functional tests to run through the rack interface instead of process | Joshua Peek | 2009-05-02 | 1 | -4/+8 |
| | | |||||
| * | Deprecate assert_redirect_to's partial hash matching | Joshua Peek | 2009-05-02 | 2 | -5/+0 |
| | | |||||
* | | Implement FooController.action(:name) | Yehuda Katz | 2009-05-02 | 1 | -16/+11 |
|/ | | | | | | * 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 | ||||
* | Fix render :json => nil [#2589 state:resolved] | Jeremy Kemper | 2009-04-30 | 1 | -1/+2 |
| | |||||
* | Start moving TestRequest and TestResponse into ActionDispatch | Joshua Peek | 2009-04-30 | 1 | -1/+2 |
| | |||||
* | Deprecate template, session, assigns, and layout accessors on response ↵ | Joshua Peek | 2009-04-28 | 2 | -2/+4 |
| | | | | object. Instead access them through the controller instance. This mainly affects functional test assertions. | ||||
* | Refactor ActionView::Template | Yehuda Katz + Carl Lerche | 2009-04-27 | 2 | -8/+19 |
| | | | | | | | | 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. |