Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/trunk/railties/lib/dispatcher.rb


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @7640 [7640] 09/26/07 01:24:07 bitsweat Move Railties' Dispatcher to ActionController::Dispatcher, introduce …
(edit) @7626 [7626] 09/25/07 03:47:37 david Added ActiveSupport::BufferedLogger as a duck-typing alternative (albeit …
(edit) @7475 [7475] 09/14/07 01:00:32 bitsweat Missed Reloadable bits and pieces
(edit) @7425 [7425] 09/09/07 17:57:16 david Update copyright span
(edit) @7033 [7033] 06/15/07 23:28:51 rick Fixed that dispatcher preparation callbacks only run once in production …
(edit) @7006 [7006] 06/12/07 16:46:25 bitsweat Fix precedence error in failsafe rescue. Closes #8625.
(edit) @7002 [7002] 06/11/07 18:05:02 bitsweat Fix syntax error in dispatcher than wrecked failsafe responses. Closes …
(edit) @6611 [6611] 04/28/07 15:57:29 david Removed breakpointer and Binding.of_caller in favor of relying on …
(edit) @6307 [6307] 03/04/07 12:31:21 bitsweat Improve dispatcher failsafe responses. Beef up compatibility with …
(edit) @5794 [5794] 12/27/06 00:43:27 david Attempt at fixing the preparation_callbacks, nzkoz will double check
(edit) @5792 [5792] 12/26/06 23:56:00 nzkoz Allow config.to_prepare to work, make the dispatcher safe to 're require'. …
(edit) @5658 [5658] 12/01/06 05:56:51 david If only life was that simple (it didnt help)
(edit) @5656 [5656] 12/01/06 05:37:56 david Replace the elaborate reloading connection checking scheme, just fix the …
(edit) @5637 [5637] 11/26/06 22:10:55 david Only reload connections in development mode that supports (and requires …
(edit) @5627 [5627] 11/25/06 19:59:00 david Tried delaying database disconnect until after dependency resolution …
(edit) @5618 [5618] 11/23/06 05:16:46 david Added ActiveRecord::Base.clear_active_connections! in development mode so …
(edit) @5516 [5516] 11/13/06 20:23:00 xal Make sure that exceptions which are thrown outside of the user code try …
(edit) @5471 [5471] 11/09/06 18:22:44 ulysses Alter prior change to use require_dependency instead of require_or_load. …
(edit) @5454 [5454] 11/07/06 19:52:27 ulysses Remove temporary crutch to help ApplicationController be unloaded. Closes …
(edit) @4922 [4922] 09/03/06 18:53:05 david Update copyright times
(edit) @4885 [4885] 08/31/06 03:16:28 bitsweat Tighten rescue clauses. Closes #5985.
(edit) @4760 [4760] 08/14/06 18:15:44 ulysses Add silencing to deprecations; avoid self-scolding.
(edit) @4742 [4742] 08/09/06 16:52:42 rick Rearrange application resetting and preparation, fix bug with leaking …
(edit) @4741 [4741] 08/09/06 16:50:27 david Cause ApplicationController to be reloaded
(edit) @4716 [4716] 08/07/06 17:00:03 rick Fix Dispatcher.reset_application! so that AR subclasses are removed and …
(edit) @4686 [4686] 08/06/06 02:51:53 ulysses Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request …
(edit) @4684 [4684] 08/06/06 02:12:53 rick Tweak the Rails load order so observers are loaded after plugins, and …
(edit) @4629 [4629] 07/28/06 23:09:29 rick Fixed the failsafe response so it uses either the current recognized …
(edit) @4589 [4589] 07/08/06 01:34:22 bitsweat Dispatcher processes rescued actions with the same controller that …
(edit) @4394 [4394] 06/01/06 15:42:08 minam New routes implementation. Simpler, faster, easier to understand. The …
(edit) @4168 [4168] 04/05/06 04:52:31 david Added that Dispatcher exceptions should not be shown to the user unless a …
(edit) @4145 [4145] 04/03/06 22:39:36 david Fixed that rails --version should have the return code of 0 (success) …
(edit) @3815 [3815] 03/08/06 14:33:07 rick Make the 3rd arg optional for #failsafe_response
(edit) @3809 [3809] 03/07/06 07:27:54 rick Added a backtrace to the evil WSOD (White Screen of Death). Closes #4073. …
(edit) @3730 [3730] 03/01/06 22:08:00 bitsweat Clear stale, cached connections left behind by defunct threads. Eliminate …
(edit) @3693 [3693] 02/27/06 21:37:30 bitsweat Speed up class -> connection caching and stale connection verification. …
(edit) @3526 [3526] 02/03/06 20:29:39 ulysses Remove LoadingModule
(edit) @3524 [3524] 02/02/06 16:56:15 ulysses Add LoadingModule.clear! back temporarily
(edit) @3520 [3520] 02/02/06 05:08:42 ulysses Pluralization bites again
(edit) @3519 [3519] 02/02/06 04:54:07 ulysses Further improvements to reloading code
(edit) @3493 [3493] 01/29/06 00:37:39 david Added reusable reloading support through the inclusion of the Relodable …
(edit) @3218 [3218] 12/04/05 05:56:49 bitsweat Connection cache to speed up retrieve_connection and get rid of dirty …
(edit) @3096 [3096] 11/19/05 10:55:11 bitsweat r3181@asus: jeremy | 2005-11-19 02:52:24 -0800 Mark connections for …
(edit) @2841 [2841] 11/02/05 01:20:36 bitsweat Failsafe response handler for dispatcher.
(edit) @2839 [2839] 11/01/05 18:29:41 bitsweat Move Dispatcher.dispatch CGI.new out of default args and into rescuable …
(edit) @2637 [2637] 10/16/05 03:00:44 minam Documentation updates/fixes for railties
(edit) @2276 [2276] 09/20/05 11:23:13 david Fixed memory leak with Active Record classes when Dependencies.mechanism = …
(edit) @2079 [2079] 08/31/05 00:47:51 ulysses Only load breakpoint in development mode and when BREAKPOINT_SERVER_PORT …
(edit) @1565 [1565] 06/29/05 11:07:20 minam Use SIGHUP to dynamically reload an fcgi process without restarting it. …
(edit) @1492 [1492] 06/24/05 11:57:40 minam ActionMailer::Base subclasses are reloaded with other rails components …
(edit) @1482 [1482] 06/22/05 12:59:36 david Removed the mutex from the WEBrick adapter under the production …
(edit) @1278 [1278] 05/02/05 17:26:29 david Dont activate the query cache just yet
(edit) @1268 [1268] 05/02/05 07:04:59 david Started work on a per-request query cache
(edit) @864 [864] 03/06/05 17:37:49 david Added exception shallowing if the DRb server can't be started (not worth …
(edit) @716 [716] 02/20/05 17:20:10 david Help against errors in ApplicationController
(edit) @712 [712] 02/20/05 13:47:57 david Updated dependency loading to consider non-standard class/file name …
(edit) @711 [711] 02/20/05 11:06:14 david Allows a loading module to load from multiple load paths #675
(edit) @625 [625] 02/15/05 16:15:02 david All libraries should link against the independent active support
(edit) @617 [617] 02/15/05 01:45:35 david A hopefully more successful attempt at the Routing branch merge
(edit) @616 [616] 02/15/05 01:24:55 david Backed out of routing merge.. investigating missing patches
(edit) @614 [614] 02/15/05 00:51:02 david Merged back the Routing branch
(edit) @509 [509] 01/25/05 18:20:23 david Moved subclass reloading responsibilities to Dependencies
(edit) @507 [507] 01/25/05 18:00:15 david New approach to reloading that uses remove_const on ARs and AOs as well as …
(edit) @500 [500] 01/24/05 16:19:29 david Fixed that /Recipe/new and /recipe/new points to the same thing [Lyle …
(edit) @482 [482] 01/24/05 10:58:17 david Fixed handling of syntax errors in models that had already been …
(edit) @479 [479] 01/24/05 00:26:44 david Another swing at reloading
(edit) @478 [478] 01/23/05 19:42:40 david Brought back reloading of models
(edit) @471 [471] 01/20/05 15:35:20 david Flipped reloads around
(edit) @470 [470] 01/20/05 15:29:11 david Fixed that FCGI can also display SyntaxErrors
(edit) @430 [430] 01/16/05 17:56:42 david New adventures in dependency reloading
(edit) @429 [429] 01/16/05 17:50:36 david New adventures in dependency reloading
(edit) @408 [408] 01/15/05 13:26:48 david Fixed that auto reloading would some times not work or would reload the …
(edit) @323 [323] 01/02/05 23:42:21 david Nuke the controllers after the dispatcher reload to avoid the superclass …
(edit) @317 [317] 01/02/05 18:32:56 david Fixed problems with dependency caching and controller hierarchies on Ruby …
(edit) @280 [280] 12/29/04 21:26:20 david Switch dispatcher to use the new shared Dependencies approach
(edit) @243 [243] 12/22/04 02:00:41 david The dispatcher should reload the associations AFTER clearing the …
(edit) @233 [233] 12/20/04 13:21:01 david Added a require_association hook on const_missing that makes it possible …
(edit) @199 [199] 12/16/04 20:43:31 david Fixed a small bug in the new referencing of DEFAULT_SESSION_OPTIONS
(edit) @197 [197] 12/16/04 19:43:27 david Made the last tweaks before 0.9
(edit) @159 [159] 12/15/04 11:30:09 david Renamed AbstractApplicationController and abstract_application.rb to …
(edit) @138 [138] 12/12/04 20:49:20 david Cleaner deactivation of the breakpoint server
(edit) @136 [136] 12/12/04 20:29:52 david Breakpointing that works much better with CGI and FCGI
(edit) @131 [131] 12/12/04 17:53:42 david Reload the cached column information between requests when the …
(edit) @125 [125] 12/12/04 16:14:20 david Moved require_association to associations.rb and added methods for …
(edit) @79 [79] 12/08/04 10:41:14 david Only nuke the AbstractApplicationController if its available
(edit) @51 [51] 12/06/04 18:25:01 david Syntax errors and other exceptions thrown outside of an action are now …
(edit) @32 [32] 11/30/04 18:52:20 david Abolished ActionController::Base.require_or_load in favor of …
(edit) @31 [31] 11/30/04 17:19:01 david AbstractApplicationController and the individual controllers are now …
(add) @4 [4] 11/24/04 01:04:44 david Initial
Note: See TracRevisionLog for help on using the revision log.