aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware
Commit message (Expand)AuthorAgeFilesLines
* Move Flash into middlewareJoshua Peek2010-01-151-0/+174
* Make HEAD method masquerade as GET so requests are routed correctlyJoshua Peek2010-01-151-0/+18
* Ensure log is flushed and tailed on failures.José Valim2010-01-151-4/+3
* Move Dispatcher setup to Railties and add instrumentation hook.José Valim2010-01-151-7/+10
* Trash string coercion rack hacksJoshua Peek2010-01-041-29/+0
* @_formats initialization should be AbstractController::Base.José Valim2010-01-041-1/+1
* Add notifications to ActionDispatch::ShowExceptions, this can be used as hook...José Valim2010-01-031-2/+22
* fixed missing or incorrect session data error messageStefan Penner2010-01-021-1/+1
* Complain if there's no such middlewareJeremy Kemper2009-12-281-2/+3
* AD::Cascade that supports X-CascadeJoshua Peek2009-12-261-0/+29
* All AD modules are "deferrable"Joshua Peek2009-12-224-5/+9
* AD::StatusCodes support is now part of rackJoshua Peek2009-12-221-1/+1
* Just a little tidyingDavid Heinemeier Hansson2009-12-201-24/+22
* Use AbstractController error constantsJoshua Peek2009-12-161-3/+2
* Reduce usage of interpret_status. It should also return a integerJoshua Peek2009-12-101-3/+1
* Reorganize autoloads:Carlhuda2009-12-021-2/+2
* Update reference to deprecated constant to avoid warningsBryan Helmkamp2009-11-281-1/+1
* Break up inflector to reduce the dependency burden on dependency-les methods ...Yehuda Katz2009-11-071-2/+4
* Callbacks, DeprecatedCallbacks = NewCallbacks, CallbacksJoshua Peek2009-10-121-1/+1
* Use "run_callbacks :foo" since it is the public api for callbacks [#3329Joshua Peek2009-10-121-3/+3
* Coerce all out going body parts to StringsJoshua Peek2009-10-051-0/+29
* Move Rails::Static into ActionDispatchJoshua Peek2009-09-261-0/+44
* SessionRestoreError belongs in ADJoshua Peek2009-09-231-3/+6
* Fixes Sam Ruby tests suite.José Valim2009-09-211-6/+1
* Use NewCallbacks on ActionDispatch::Callbacks.José Valim2009-09-201-23/+38
* 1.9 fix for changes to #to_s. By Sam Ruby. [#3228 state:resolved]Yehuda Katz2009-09-181-2/+2
* Beef up AD::Rescue to replace global exception handling lost in ApplicationCo...Joshua Peek2009-09-151-4/+16
* Lazy require memcache for session middlewareJoshua Peek2009-09-131-40/+35
* CookieStore should not be derived from Hash - reverting [#2268 state:resolved]Jay Pignata2009-09-031-1/+1
* If session_options[:id] is requested when using CookieStore, unmarshal the se...Jay Pignata2009-09-031-3/+14
* SessionHash#update and SessionHash#delete are missing a call to load! [#3056 ...Joshua Peek2009-08-311-0/+2
* Require necessary active_support files in cookie storeCarl Lerche2009-08-261-0/+2
* Rework Middleware stack to match the Rack middleware protocol more closelyYehuda Katz + Carl Lerche2009-08-251-3/+3
* Move legacy param_parsers config onto AD::ParamsParserJoshua Peek2009-08-211-5/+7
* Adding a call to logger from params_parser to give detailed debug information...Jay Pignata2009-08-151-0/+6
* ActionPack components should no longer have undeclared dependencies.Yehuda Katz + Carl Lerche2009-06-082-0/+3
* Revert "Only save the session if we're actually writing to it [#2703 state:re...Joshua Peek2009-05-301-10/+1
* Only save the session if we're actually writing to it [#2703 state:resolved]Johan Sörensen2009-05-281-1/+10
* Make the default 500 Internal Server Error page more friendly. Many people do...Hongli Lai (Phusion)2009-05-271-1/+4
* Got all the dispatch tests running on new baseCarl Lerche2009-05-261-5/+6
* Wrap string body in an arrayJeremy Kemper2009-05-201-1/+1
* Allow ParamsParser to parse YAML from the request body IO directlyBrian Lopez2009-05-171-1/+1
* Extract generic callbacks middleware from dispatcherJoshua Peek2009-05-171-0/+40
* Merge Failsafe middleware into ShowExceptionsJoshua Peek2009-05-172-98/+40
* Add support for parsing XML and JSON from an IO as well as a string [#2659 st...Brian Lopez2009-05-171-5/+3
* Instead of checking Rails.env.test? in Failsafe middleware, check env["rails....Bryan Helmkamp2009-05-161-3/+2
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-1112-16/+283
|\
| * Wrap dispatcher callbacks around the whole middleware chain. Kill unnecessary...Joshua Peek2009-05-031-14/+0
| * Show lazy middleware args in pretty printJoshua Peek2009-05-031-2/+1
| * Extract ActionController rescue templates into Rescue and ShowExceptions midd...Joshua Peek2009-05-0210-0/+280