Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up the config object in ActionPack. Create config_accessor which just ↵ | José Valim | 2010-04-22 | 1 | -39/+9 |
| | | | | delegates to the config object, reducing the number of deprecations and add specific tests. | ||||
* | Revert "Avoid deprecation warnings and potential TypeErrors [#4404 ↵ | Carl Lerche | 2010-04-16 | 1 | -1/+0 |
| | | | | | | | state:resolved]" Revert "protected instance variables added to the deprecated config accessor This reverts commit 4bce5ba600596b5e7afec9b097866ac259c5940a and 0ee2d3c89a893f0c53924cbb756c7e9be616eb8f. | ||||
* | page_cache_extension is delegating to config so no need to deprecate | Santiago Pastorino | 2010-04-16 | 1 | -1/+0 |
| | |||||
* | Make perform_caching work again, with the tests passing and backward compatible | Santiago Pastorino and Carl Lerche | 2010-04-15 | 1 | -1/+0 |
| | |||||
* | Revert "logger added to the deprecated config accessor" we need a major ↵ | Santiago Pastorino and Carl Lerche | 2010-04-15 | 1 | -1/+0 |
| | | | | | | refactor to get this working This reverts commit 68f4e046a7f5db3f7c48a3721bead73a625b6f6e. | ||||
* | logger added to the deprecated config accessor | Santiago Pastorino | 2010-04-14 | 1 | -0/+1 |
| | |||||
* | protected instance variables added to the deprecated config accessor | Santiago Pastorino | 2010-04-14 | 1 | -0/+1 |
| | |||||
* | asset and helper path added to the deprecated config accessor | Santiago Pastorino | 2010-04-14 | 1 | -0/+2 |
| | |||||
* | page_cache added to the deprecated config accessor | Santiago Pastorino | 2010-04-14 | 1 | -3/+6 |
| | |||||
* | config.perform_caching added to the deprecated config accessor [#4383 ↵ | Santiago Pastorino | 2010-04-13 | 1 | -1/+2 |
| | | | | | | state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Move verification to a plugin as well: http://github.com/rails/verification.git | José Valim | 2010-04-10 | 1 | -9/+19 |
| | |||||
* | Rename config.cookie_secret to config.secret_token and pass it as ↵ | José Valim | 2010-04-05 | 1 | -5/+2 |
| | | | | configuration in request.env. This is another step forward removing global configuration. | ||||
* | Move filter_parameter_logger to deprecated.rb | wycats | 2010-04-04 | 1 | -0/+9 |
| | |||||
* | Deprecate cookie_verifier_secret in favor of config.cookie_secret allowing ↵ | José Valim | 2010-03-31 | 1 | -0/+12 |
| | | | | signed cookies to work again. | ||||
* | Fixes typo (ht: Claudio Poli) [#4107 state:closed] | wycats | 2010-03-26 | 1 | -1/+1 |
| | |||||
* | Typo in config.action_dispatch | wycats | 2010-03-07 | 1 | -1/+1 |
| | |||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 1 | -2/+15 |
| | | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings. | ||||
* | Move stuff from compatibility.rb to deprecated.rb | Carlhuda | 2010-03-04 | 1 | -0/+118 |
| | |||||
* | Cleanup deprecation notices. | Joshua Peek | 2010-01-18 | 1 | -1/+1 |
| | |||||
* | Get rid of prepare_each_request, since now it's a middleware initialization ↵ | José Valim | 2010-01-17 | 1 | -3/+0 |
| | | | | parameter. | ||||
* | Move Dispatcher setup to Railties and add instrumentation hook. | José Valim | 2010-01-15 | 1 | -0/+31 |
| | |||||
* | Allow autoloads to opt out of eager loading | Joshua Peek | 2009-12-12 | 1 | -2/+0 |
| | |||||
* | Reorganize autoloads: | Carlhuda | 2009-12-02 | 1 | -0/+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. | ||||
* | Move integration test runner into ActionDispatch | Joshua Peek | 2009-09-23 | 2 | -0/+3 |