Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tweak out url_for uses :script_name and add some tests | Carl Lerche | 2010-03-04 | 1 | -0/+58 |
| | |||||
* | Get rid of relative_url_path in favor of respecting SCRIPT_NAME. Also added ↵ | Carlhuda | 2010-03-04 | 1 | -2/+2 |
| | | | | a way to specify a default SCRIPT_NAME when generating URLs out of the context of a request. | ||||
* | Refactor cache_store to use ActionController config | Carlhuda | 2010-03-04 | 2 | -9/+15 |
| | |||||
* | remove_method is private | Carlhuda | 2010-03-04 | 1 | -2/+2 |
| | |||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 2 | -4/+4 |
| | | | | 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 | -1/+0 |
| | |||||
* | Clarify cookie jar test | Jeremy Kemper | 2010-03-04 | 1 | -6/+1 |
| | |||||
* | Safely cleans up a test to avoid relying on a particular test order | wycats | 2010-03-04 | 1 | -10/+23 |
| | |||||
* | Fixes test ordering bug (ht: evan) | wycats | 2010-03-04 | 1 | -0/+3 |
| | |||||
* | Fix a bunch of failing AP / AM specs created from the previous ↵ | Carl Lerche | 2010-03-04 | 1 | -27/+15 |
| | | | | AbstractController configuration refactor. | ||||
* | Merge branch 'configuration_refactor' | Carl Lerche | 2010-03-03 | 12 | -224/+129 |
|\ | |||||
| * | Move the original config method onto AbstractController | Carl Lerche | 2010-03-03 | 2 | -2/+2 |
| | | |||||
| * | Start refactoring the method of configuring ActionView | Carlhuda | 2010-03-03 | 4 | -24/+23 |
| | | |||||
| * | Deprecate IP spoofing settings that are directly on the controller in favor ↵ | Carlhuda | 2010-03-03 | 1 | -2/+0 |
| | | | | | | | | of configuring a middleware | ||||
| * | Move remote_ip to a middleware: | Carlhuda | 2010-03-03 | 1 | -5/+7 |
| | | | | | | | | | | * ActionController::Base.ip_spoofing_check deprecated => config.action_dispatch.ip_spoofing_check * ActionController::Base.trusted_proxies deprecated => config.action_dispatch.trusted_proxies | ||||
| * | ActionController::Base.use_accept_header is not actually used anymore, so ↵ | Carl Lerche | 2010-03-03 | 4 | -26/+0 |
| | | | | | | | | let's deprecate it. | ||||
| * | ActionDispatch::Request deprecates #request_uri | Carl Lerche | 2010-03-03 | 3 | -17/+17 |
| | | | | | | | | * Refactored ActionPatch to use fullpath instead | ||||
| * | Fix tests for the request refactor | Carl Lerche | 2010-03-03 | 3 | -21/+40 |
| | | |||||
| * | Tweak the semantic of various URL related methods of ActionDispatch::Request | Carlhuda | 2010-03-03 | 4 | -87/+16 |
| | | |||||
| * | Work on deprecating ActionController::Base.relative_url_root | Carlhuda | 2010-03-03 | 3 | -39/+22 |
| | | |||||
| * | Move session_store and session_options to the AC configuration object | Carlhuda | 2010-03-03 | 1 | -2/+3 |
| | | |||||
* | | don't depend on the order of cookies (Hash ordering bug) | Yehuda Katz | 2010-03-03 | 1 | -1/+1 |
|/ | |||||
* | Fix failing Action Pack tests | Carlhuda | 2010-03-02 | 4 | -3/+14 |
| | |||||
* | No longer add missing leading / on path args to assert_redirected_to. ↵ | Jeremy Kemper | 2010-03-02 | 1 | -2/+4 |
| | | | | Deprecated in 2.3.6. | ||||
* | Fix some tests that relied on hardcoded Exception information (ht: evan) | Yehuda Katz | 2010-03-02 | 1 | -2/+2 |
| | |||||
* | Action Mailer setup obviated by test bundle | Jeremy Kemper | 2010-03-02 | 1 | -12/+1 |
| | |||||
* | Change AV formats so they can delegate to the controller. Now users (or ↵ | Carlhuda | 2010-03-01 | 2 | -0/+2 |
| | | | | plugins) can override details_for_render in their controllers and add appropriate additional details. Now if only they could *do* something with those details... | ||||
* | add activesupport and activemodel load paths to actionpack tests | Joshua Peek | 2010-02-28 | 1 | -0/+6 |
| | |||||
* | Remove implicit controller namespacing from new dsl | Joshua Peek | 2010-02-28 | 3 | -7/+13 |
| | |||||
* | 1.9 seems to have a bug involving cloned classes and super. Fix it by not ↵ | Carlhuda | 2010-02-26 | 1 | -8/+12 |
| | | | | cloning (and instead creating classes on demand). The 1.9 bug should be investigated. | ||||
* | If IntegrationSession is initialized with an objects that responds to ↵ | Carlhuda | 2010-02-26 | 4 | -6/+3 |
| | | | | #routes, automatically extend the URL helpers from the RouteSet onto it | ||||
* | Upon further reflection, we realized that SharedTestRoutes is not really a ↵ | Carlhuda | 2010-02-26 | 1 | -1/+0 |
| | | | | | | | | hack, but is instead a standin (in the Rails tests) for Rails.application.routes. * In a real application, action_controller/railties.rb does AC::Base.include(app.routes.url_helpers) * ActionController itself does not know about Rails.application, but instead can have named routes for any router * SharedTestRoutes are created in abstract_unit to stand in for Rails.application.routes, and is used in internal functional tests | ||||
* | Relatively speaking, it's not actually that bad... | Carlhuda | 2010-02-26 | 1 | -2/+0 |
| | |||||
* | Setting UrlFor in with_routing is no longer needed now that it's not global | Carlhuda | 2010-02-26 | 1 | -4/+5 |
| | |||||
* | Remove traces of SharedTestRoutes from user code; leave it as a standin for ↵ | Carlhuda | 2010-02-26 | 1 | -1/+0 |
| | | | | Rails.application.routes in Rails internal tests | ||||
* | Stop setting UrlFor using SharedTestHelpers | Carlhuda | 2010-02-26 | 2 | -4/+4 |
| | |||||
* | Silence test deprecation warnings | Carlhuda | 2010-02-26 | 2 | -17/+56 |
| | |||||
* | Rename named_url_helpers to url_helpers and url_helpers to url_for | Carlhuda | 2010-02-26 | 7 | -14/+14 |
| | |||||
* | Fix controller_path returnsing an empty string in Ruby 1.8.7 [#4036 ↵ | José Valim | 2010-02-26 | 1 | -0/+9 |
| | | | | status:resolved] | ||||
* | Rename metaclass to singleton_class | Carlhuda | 2010-02-25 | 3 | -4/+4 |
| | |||||
* | Get URL helpers working again in integration tests. | Carlhuda | 2010-02-25 | 1 | -17/+7 |
| | |||||
* | Continued effort to deglobalize the router | Carlhuda | 2010-02-25 | 2 | -27/+8 |
| | |||||
* | Fix all of AP's tests with the non global router | Carlhuda | 2010-02-25 | 2 | -5/+7 |
| | |||||
* | Merge branch 'master' of github.com:rails/rails | Carlhuda | 2010-02-25 | 1 | -1/+1 |
| | |||||
* | WIP: Remove the global router | Carlhuda | 2010-02-25 | 11 | -65/+101 |
| | |||||
* | add time_separator for minutes only if minutes aren't hidden | Santiago Pastorino | 2010-02-25 | 1 | -0/+41 |
| | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | ||||
* | Renamed LocalizedCache to DetailsCache. | José Valim | 2010-02-24 | 1 | -1/+1 |
| | |||||
* | Cleanup render callstack and make render(:json => {}, :status => 401) work ↵ | José Valim | 2010-02-24 | 1 | -0/+10 |
| | | | | again. | ||||
* | Remove ActionController::Base.resources_path_names | Carl Lerche | 2010-02-24 | 1 | -9/+10 |
| | |||||
* | Fix render :file => "#{Rails.root}/public/404.html", :status => :not_found. ↵ | Yehuda Katz | 2010-02-23 | 2 | -0/+10 |
| | | | | Closes #8994 |