aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/deprecated
Commit message (Collapse)AuthorAgeFilesLines
* Clean up the config object in ActionPack. Create config_accessor which just ↵José Valim2010-04-221-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 Lerche2010-04-161-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 deprecateSantiago Pastorino2010-04-161-1/+0
|
* Make perform_caching work again, with the tests passing and backward compatibleSantiago Pastorino and Carl Lerche2010-04-151-1/+0
|
* Revert "logger added to the deprecated config accessor" we need a major ↵Santiago Pastorino and Carl Lerche2010-04-151-1/+0
| | | | | | refactor to get this working This reverts commit 68f4e046a7f5db3f7c48a3721bead73a625b6f6e.
* logger added to the deprecated config accessorSantiago Pastorino2010-04-141-0/+1
|
* protected instance variables added to the deprecated config accessorSantiago Pastorino2010-04-141-0/+1
|
* asset and helper path added to the deprecated config accessorSantiago Pastorino2010-04-141-0/+2
|
* page_cache added to the deprecated config accessorSantiago Pastorino2010-04-141-3/+6
|
* config.perform_caching added to the deprecated config accessor [#4383 ↵Santiago Pastorino2010-04-131-1/+2
| | | | | | state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Move verification to a plugin as well: http://github.com/rails/verification.gitJosé Valim2010-04-101-9/+19
|
* Rename config.cookie_secret to config.secret_token and pass it as ↵José Valim2010-04-051-5/+2
| | | | configuration in request.env. This is another step forward removing global configuration.
* Move filter_parameter_logger to deprecated.rbwycats2010-04-041-0/+9
|
* Deprecate cookie_verifier_secret in favor of config.cookie_secret allowing ↵José Valim2010-03-311-0/+12
| | | | signed cookies to work again.
* Fixes typo (ht: Claudio Poli) [#4107 state:closed]wycats2010-03-261-1/+1
|
* Typo in config.action_dispatchwycats2010-03-071-1/+1
|
* Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-041-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.rbCarlhuda2010-03-041-0/+118
|
* Cleanup deprecation notices.Joshua Peek2010-01-181-1/+1
|
* Get rid of prepare_each_request, since now it's a middleware initialization ↵José Valim2010-01-171-3/+0
| | | | parameter.
* Move Dispatcher setup to Railties and add instrumentation hook.José Valim2010-01-151-0/+31
|
* Allow autoloads to opt out of eager loadingJoshua Peek2009-12-121-2/+0
|
* Reorganize autoloads:Carlhuda2009-12-021-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 ActionDispatchJoshua Peek2009-09-232-0/+3