index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
actionpack
/
lib
/
action_controller
/
dispatcher.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move development mode reloading up the stack to avoid issues with class reloa...
Joshua Peek
2009-02-20
1
-14
/
+27
*
Move cleanup before prepare_dispatch so that constants are not loaded twice [...
Andrew White
2009-02-07
1
-6
/
+5
*
Restore stale session check and move after dispatch development cleanups befo...
Joshua Peek
2009-02-05
1
-5
/
+2
*
Cache AssetTag timestamps
Joshua Peek
2009-01-04
1
-0
/
+2
*
Revert to the good old days when AssetTag didn't cause anyone problems
Joshua Peek
2009-01-02
1
-1
/
+0
*
Make router and controller classes better rack citizens
Joshua Peek
2008-12-28
1
-7
/
+4
*
Rename RackRequest to Request
Pratik Naik
2008-12-23
1
-1
/
+1
*
Move default middleware stack to middlewares.rb
Joshua Peek
2008-12-22
1
-17
/
+2
*
ActiveRecord::QueryCache middleware
Joshua Peek
2008-12-22
1
-0
/
+1
*
Rename AbstractResponse to Response and inheirt from Rack::Response
Joshua Peek
2008-12-19
1
-1
/
+1
*
Cleanup dispatch path
Joshua Peek
2008-12-18
1
-18
/
+9
*
Use more generic test env flag
Joshua Peek
2008-12-18
1
-1
/
+1
*
Conditionally inject session middleware instead of using session management
Joshua Peek
2008-12-18
1
-2
/
+15
*
Move gaint lock into middleware
Joshua Peek
2008-12-18
1
-13
/
+2
*
Switch to Rack based session stores.
Joshua Peek
2008-12-15
1
-3
/
+5
*
Boot out CGI Processor.
Joshua Peek
2008-12-04
1
-74
/
+9
*
Ensure each rack request has its own dispatcher instance
Joshua Peek
2008-12-04
1
-1
/
+1
*
Refactor SessionFixationTest and WebServiceTest with IntegrationTest so they ...
Joshua Peek
2008-12-04
1
-5
/
+13
*
Merge branch 'master' of git@github.com:rails/rails
Jeremy Kemper
2008-12-03
1
-0
/
+8
|
\
|
*
Add internal middleware stack to Dispatcher
Joshua Peek
2008-12-01
1
-0
/
+8
*
|
Fix failsafe response path. [#1504 state:committed]
Jeremy Kemper
2008-12-03
1
-1
/
+1
|
/
*
Reinstate "Super lazy load view paths in development mode (no indexing or cac...
Joshua Peek
2008-11-28
1
-1
/
+0
*
Revert "Super lazy load view paths in development mode (no indexing or cachin...
David Heinemeier Hansson
2008-11-27
1
-0
/
+1
*
Super lazy load view paths in development mode (no indexing or caching at all...
Joshua Peek
2008-11-26
1
-1
/
+0
*
Let ApplicationController stay unloaded for as long as possible
David Heinemeier Hansson
2008-11-22
1
-3
/
+1
*
BACKWARDS INCOMPATIBLE: Renamed application.rb to application_controller.rb a...
David Heinemeier Hansson
2008-11-17
1
-8
/
+1
*
Simplify dispatcher callbacks to eliminate unnecessary stale thread purging. ...
Nick Sieger
2008-11-08
1
-1
/
+0
*
Proper API for reloading translations
David Heinemeier Hansson
2008-10-29
1
-0
/
+4
*
Ensure ActionView::Helpers::AssetTagHelper::AssetTag::Cache is cleared before...
Tim Harper
2008-10-20
1
-1
/
+2
*
Return processing lock to dispatcher, the finer grained lock was incompatible...
Aliaksey Kandratsenka
2008-10-04
1
-1
/
+13
*
call clear_active_connections! in :after_dispatch to give pooled connections ...
Aliaksey Kandratsenka
2008-10-04
1
-0
/
+16
*
Simplified and renamed CallbackChain union method to replace_or_append!
Joshua Peek
2008-08-21
1
-1
/
+1
*
Consistently use the framework's configured logger and avoid reverting to RAI...
Joshua Peek
2008-08-18
1
-2
/
+2
*
Added back ActionController::Base.allow_concurrency flag and moved lock down ...
Joshua Peek
2008-07-28
1
-11
/
+7
*
Replaced TemplateFinder abstraction with ViewLoadPaths
Joshua Peek
2008-06-17
1
-1
/
+1
*
Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...
Joshua Peek
2008-06-03
1
-1
/
+1
*
Ensure Rack processor reads CGI output_cookies for the session cookie.
Joshua Peek
2008-06-02
1
-1
/
+1
*
Added Rack processor
Ezra Zygmuntowicz
2008-06-01
1
-1
/
+7
*
Refactor Dispatcher callbacks to remove unnecessary Dependencies checks in pr...
Pratik Naik
2008-04-18
1
-40
/
+33
*
Tidy up ActiveSupport::Callbacks::CallbackChain instance API.
Joshua Peek
2008-04-17
1
-1
/
+1
*
Added Rails.public_path to control where HTML and assets are expected to be l...
David Heinemeier Hansson
2008-04-13
1
-1
/
+1
*
Refactor filters to use Active Support callbacks. Closes #11235.
Jeremy Kemper
2008-03-18
1
-10
/
+2
*
Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. C...
Michael Koziarski
2008-01-21
1
-0
/
+1
*
Revert r8669 for now, breaks Action Mailer. Reopens #10800.
Jeremy Kemper
2008-01-19
1
-1
/
+0
*
Introduce TemplateFinder to handle view paths and lookups. Closes #10800.
Jeremy Kemper
2008-01-19
1
-0
/
+1
*
Extract ActiveSupport::Callbacks from Active Record, test case setup and tear...
Jeremy Kemper
2008-01-19
1
-38
/
+13
*
Introduce native mongrel handler and push mutex into dispatcher.
Jeremy Kemper
2007-12-27
1
-6
/
+12
*
Fix doc typo on Dispatcher.dispatch. Closes #10434 [fxn]
Jeremy Kemper
2007-12-10
1
-1
/
+1
*
Dispatcher: fix that to_prepare should only run once in production. Closes #9...
Jeremy Kemper
2007-10-16
1
-1
/
+2
*
Ruby 1.9 compat, consistent load paths
Jeremy Kemper
2007-10-02
1
-4
/
+9
[next]