Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | AD::StatusCodes support is now part of rack | Joshua Peek | 2009-12-22 | 1 | -1/+1 | |
| | ||||||
* | Just a little tidying | David Heinemeier Hansson | 2009-12-20 | 1 | -24/+22 | |
| | ||||||
* | Use AbstractController error constants | Joshua Peek | 2009-12-16 | 1 | -3/+2 | |
| | ||||||
* | Reduce usage of interpret_status. It should also return a integer | Joshua Peek | 2009-12-10 | 1 | -3/+1 | |
| | | | | not a string. | |||||
* | Reorganize autoloads: | Carlhuda | 2009-12-02 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | * A new module (ActiveSupport::Autoload) is provide that extends autoloading with new behavior. * All autoloads in modules that have extended ActiveSupport::Autoload will be eagerly required in threadsafe environments * Autoloads can optionally leave off the path if the path is the same as full_constant_name.underscore * It is possible to specify that a group of autoloads live under an additional path. For instance, all of ActionDispatch's middlewares are ActionDispatch::MiddlewareName, but they live under "action_dispatch/middlewares/middleware_name" * It is possible to specify that a group of autoloads are all found at the same path. For instance, a number of exceptions might all be declared there. * One consequence of this is that testing-related constants are not autoloaded. To get the testing helpers for a given component, require "component_name/test_case". For instance, "action_controller/test_case". * test_help.rb, which is automatically required by a Rails application's test helper, requires the test_case.rb for all active components, so this change will not be disruptive in existing or new applications. | |||||
* | Update reference to deprecated constant to avoid warnings | Bryan Helmkamp | 2009-11-28 | 1 | -1/+1 | |
| | ||||||
* | Break up inflector to reduce the dependency burden on dependency-les methods ↵ | Yehuda Katz | 2009-11-07 | 1 | -2/+4 | |
| | | | | like constantize. | |||||
* | Callbacks, DeprecatedCallbacks = NewCallbacks, Callbacks | Joshua Peek | 2009-10-12 | 1 | -1/+1 | |
| | ||||||
* | Use "run_callbacks :foo" since it is the public api for callbacks [#3329 | Joshua Peek | 2009-10-12 | 1 | -3/+3 | |
| | | | | state:resolved] | |||||
* | Coerce all out going body parts to Strings | Joshua Peek | 2009-10-05 | 1 | -0/+29 | |
| | ||||||
* | Move Rails::Static into ActionDispatch | Joshua Peek | 2009-09-26 | 1 | -0/+44 | |
| | ||||||
* | SessionRestoreError belongs in AD | Joshua Peek | 2009-09-23 | 1 | -3/+6 | |
| | ||||||
* | Fixes Sam Ruby tests suite. | José Valim | 2009-09-21 | 1 | -6/+1 | |
| | | | | Signed-off-by: Yehuda Katz <wycats@gmail.com> | |||||
* | Use NewCallbacks on ActionDispatch::Callbacks. | José Valim | 2009-09-20 | 1 | -23/+38 | |
| | ||||||
* | 1.9 fix for changes to #to_s. By Sam Ruby. [#3228 state:resolved] | Yehuda Katz | 2009-09-18 | 1 | -2/+2 | |
| | ||||||
* | Beef up AD::Rescue to replace global exception handling lost in ↵ | Joshua Peek | 2009-09-15 | 1 | -4/+16 | |
| | | | | ApplicationController | |||||
* | Lazy require memcache for session middleware | Joshua Peek | 2009-09-13 | 1 | -40/+35 | |
| | ||||||
* | CookieStore should not be derived from Hash - reverting [#2268 state:resolved] | Jay Pignata | 2009-09-03 | 1 | -1/+1 | |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | If session_options[:id] is requested when using CookieStore, unmarshal the ↵ | Jay Pignata | 2009-09-03 | 1 | -3/+14 | |
| | | | | | | session to access it [#2268 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | SessionHash#update and SessionHash#delete are missing a call to load! [#3056 ↵ | Joshua Peek | 2009-08-31 | 1 | -0/+2 | |
| | | | | state:resolved] | |||||
* | Require necessary active_support files in cookie store | Carl Lerche | 2009-08-26 | 1 | -0/+2 | |
| | ||||||
* | Rework Middleware stack to match the Rack middleware protocol more closely | Yehuda Katz + Carl Lerche | 2009-08-25 | 1 | -3/+3 | |
| | ||||||
* | Move legacy param_parsers config onto AD::ParamsParser | Joshua Peek | 2009-08-21 | 1 | -5/+7 | |
| | ||||||
* | Adding a call to logger from params_parser to give detailed debug ↵ | Jay Pignata | 2009-08-15 | 1 | -0/+6 | |
| | | | | | | | | information when invalid xml or json is posted [#2481 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | ActionPack components should no longer have undeclared dependencies. | Yehuda Katz + Carl Lerche | 2009-06-08 | 2 | -0/+3 | |
| | | | | | | | * Tests can be run in isolation * Dependencies added * A few tests modified to avoid depending on AS deps not depended on my files they were testing | |||||
* | Revert "Only save the session if we're actually writing to it [#2703 ↵ | Joshua Peek | 2009-05-30 | 1 | -10/+1 | |
| | | | | | | state:resolved]" This reverts commit dd98280e38d640f5724887cf8a715b79f0439d2d. | |||||
* | Only save the session if we're actually writing to it [#2703 state:resolved] | Johan Sörensen | 2009-05-28 | 1 | -1/+10 | |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | Make the default 500 Internal Server Error page more friendly. Many people ↵ | Hongli Lai (Phusion) | 2009-05-27 | 1 | -1/+4 | |
| | | | | | | don't know they're supposed to look in the log files. [#2716 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | Got all the dispatch tests running on new base | Carl Lerche | 2009-05-26 | 1 | -5/+6 | |
| | ||||||
* | Wrap string body in an array | Jeremy Kemper | 2009-05-20 | 1 | -1/+1 | |
| | ||||||
* | Allow ParamsParser to parse YAML from the request body IO directly | Brian Lopez | 2009-05-17 | 1 | -1/+1 | |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | Extract generic callbacks middleware from dispatcher | Joshua Peek | 2009-05-17 | 1 | -0/+40 | |
| | ||||||
* | Merge Failsafe middleware into ShowExceptions | Joshua Peek | 2009-05-17 | 2 | -98/+40 | |
| | ||||||
* | Add support for parsing XML and JSON from an IO as well as a string [#2659 ↵ | Brian Lopez | 2009-05-17 | 1 | -5/+3 | |
| | | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | Instead of checking Rails.env.test? in Failsafe middleware, check ↵ | Bryan Helmkamp | 2009-05-16 | 1 | -3/+2 | |
| | | | | env["rails.raise_exceptions"] | |||||
* | Merge branch 'master' into wip_abstract_controller | Yehuda Katz + Carl Lerche | 2009-05-11 | 12 | -16/+283 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | |||||
| * | Wrap dispatcher callbacks around the whole middleware chain. Kill ↵ | Joshua Peek | 2009-05-03 | 1 | -14/+0 | |
| | | | | | | | | unnecessary Reloader middleware. | |||||
| * | Show lazy middleware args in pretty print | Joshua Peek | 2009-05-03 | 1 | -2/+1 | |
| | | ||||||
| * | Extract ActionController rescue templates into Rescue and ShowExceptions ↵ | Joshua Peek | 2009-05-02 | 10 | -0/+280 | |
| | | | | | | | | | | middleware. This commit breaks all exception catching plugins like ExceptionNotifier. These plugins should be rewritten as middleware instead overriding Controller#rescue_action_in_public. | |||||
* | | Renamed Base2 to Base and don't require old action_controller for new Base | Yehuda Katz + Carl Lerche | 2009-05-01 | 1 | -2/+0 | |
|/ | ||||||
* | Switch to action_dispatch rack namespace | Joshua Peek | 2009-04-30 | 1 | -1/+1 | |
| | ||||||
* | Don't return bare string as rack body | Jeremy Kemper | 2009-04-27 | 1 | -2/+2 | |
| | ||||||
* | Inherit TestSession from Session::AbstractStore and add indifferent access ↵ | Joshua Peek | 2009-04-26 | 2 | -6/+29 | |
| | | | | to Session::AbstractStore. | |||||
* | Fix environment variable testing code in failsafe.rb. | Hongli Lai (Phusion) | 2009-04-26 | 1 | -1/+1 | |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | Fix typo in stale session check [#2404 state:resolved] | Joshua Peek | 2009-04-26 | 1 | -1/+1 | |
| | ||||||
* | Remove RewindableInput middleware since all input MUST be rewindable ↵ | Joshua Peek | 2009-04-25 | 1 | -19/+0 | |
| | | | | according to a recent change in the Rack 1.0 SPEC | |||||
* | Remove pending rack specifications until they are official | Joshua Peek | 2009-04-25 | 1 | -1/+1 | |
| | ||||||
* | Opt in to JSON | Jeremy Kemper | 2009-04-22 | 1 | -0/+2 | |
| | ||||||
* | Always buffer rack.input if it is not rewindable | Mislav Marohnić | 2009-04-17 | 1 | -17/+8 | |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | Move reloader middleware in ActionDispatch | Joshua Peek | 2009-04-14 | 1 | -0/+14 | |
| |