Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | As first step setup the load path and lazy compare middlewares. | José Valim | 2010-01-25 | 1 | -1/+13 |
| | |||||
* | Extract routes reloading responsibilities from application and load them ↵ | José Valim | 2010-01-23 | 1 | -1/+1 |
| | | | | just upon a request. | ||||
* | Default to sync instrumentation. | José Valim | 2010-01-21 | 1 | -32/+0 |
| | |||||
* | Move filter_parameter_logging logic out of the controller and create ↵ | Prem Sichanugrist | 2010-01-21 | 1 | -1/+1 |
| | | | | | | ActionDispatch::ParametersFilter to handle parameter filteration instead. This will make filteration not depending on controller anymore. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Only send filtered_env for notifications | Joshua Peek | 2010-01-20 | 1 | -8/+9 |
| | |||||
* | Revert streaming params parser support. | Joshua Peek | 2010-01-19 | 1 | -3/+3 |
| | | | | | | | | | | AS Xml and Json parsers expect the request body to be a real IO object supporting methods like getc or ungetc which are not specified by the Rack spec and aren't supported by Passenger or the Rewindable input wrapper. We can restore functionality if the AS parsers are rewritten to support Racks subset of supported IO methods. | ||||
* | Cleanup middleware introspection output | Joshua Peek | 2010-01-19 | 1 | -3/+1 |
| | |||||
* | Do not send rack.input or any other rack information to AD listeners. | José Valim | 2010-01-19 | 1 | -6/+13 |
| | |||||
* | Prettier hash dump | Joshua Peek | 2010-01-18 | 1 | -3/+7 |
| | |||||
* | Show Rack env dump on exception page | Joshua Peek | 2010-01-18 | 1 | -1/+4 |
| | |||||
* | Accessing nonexistant cookies through the signed jar should not raise an | Joshua Peek | 2010-01-17 | 1 | -1/+3 |
| | | | | exception | ||||
* | Make local_request? to returns true when facing ::1 IPv6 address [#3257 ↵ | Prem Sichanugrist | 2010-01-17 | 1 | -2/+2 |
| | | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Add ActionDispatch::Notifications middleware. | José Valim | 2010-01-17 | 3 | -7/+26 |
| | |||||
* | Use backtrace cleaner for dev mode exception page | Joshua Peek | 2010-01-16 | 3 | -7/+22 |
| | |||||
* | Cookies middleware | Joshua Peek | 2010-01-16 | 1 | -0/+214 |
| | |||||
* | Fix const reference for SessionRestoreError | Joshua Peek | 2010-01-15 | 1 | -1/+1 |
| | |||||
* | Move Flash into middleware | Joshua Peek | 2010-01-15 | 1 | -0/+174 |
| | |||||
* | Make HEAD method masquerade as GET so requests are routed correctly | Joshua Peek | 2010-01-15 | 1 | -0/+18 |
| | |||||
* | Ensure log is flushed and tailed on failures. | José Valim | 2010-01-15 | 1 | -4/+3 |
| | |||||
* | Move Dispatcher setup to Railties and add instrumentation hook. | José Valim | 2010-01-15 | 1 | -7/+10 |
| | |||||
* | Trash string coercion rack hacks | Joshua Peek | 2010-01-04 | 1 | -29/+0 |
| | |||||
* | @_formats initialization should be AbstractController::Base. | José Valim | 2010-01-04 | 1 | -1/+1 |
| | |||||
* | Add notifications to ActionDispatch::ShowExceptions, this can be used as ↵ | José Valim | 2010-01-03 | 1 | -2/+22 |
| | | | | hooks for plugins like ExceptionNotifier. | ||||
* | fixed missing or incorrect session data error message | Stefan Penner | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | Complain if there's no such middleware | Jeremy Kemper | 2009-12-28 | 1 | -2/+3 |
| | |||||
* | AD::Cascade that supports X-Cascade | Joshua Peek | 2009-12-26 | 1 | -0/+29 |
| | |||||
* | All AD modules are "deferrable" | Joshua Peek | 2009-12-22 | 4 | -5/+9 |
| | |||||
* | 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 |
| |