aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
Commit message (Collapse)AuthorAgeFilesLines
* RouteSet#rewrite => url_forJoshua Peek2010-03-092-3/+3
|
* Move AC::UrlRewriter onto route setJoshua Peek2010-03-092-7/+3
|
* Reinstate dom_id in controllers.Justin Ko2010-03-091-0/+8
| | | | | | | [#3040 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Get rid of the instance-level URL rewriterwycats2010-03-093-32/+16
|
* Reinstate default_url_options and remove url_options= writerJeremy Kemper2010-03-082-24/+20
|
* Clean LookupContext API.José Valim2010-03-081-3/+3
|
* Add support for mount RackApp, :at => "/sprockets" with a shorthand of mount ↵Carlhuda2010-03-081-0/+36
| | | | | | | | | | Sprockets => "/sprockets". This is different from the match syntax in that it cannot be used for controller/action and it does not assume an anchor at the end of the match. For instance, in the above example, if the client asked for "/sprockets/foo.js", the Sprockets app would have a SCRIPT_NAME of "/sprockets" and PATH_INFO of "/foo.js".
* Merge master.José Valim2010-03-082-1/+10
|\
| * Make sure nested singular resources get the correct nameJan De Poorter2010-03-071-0/+10
| | | | | | | | | | | | [#3911 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook
* | Move details to lookup_context and make resolvers use the cache key.José Valim2010-03-081-41/+1
| |
* | Speed up performance in resolvers by adding fallbacks just when required.José Valim2010-03-082-4/+4
| |
* | More refactoring on the views side of rendering.José Valim2010-03-082-51/+84
| |
* | Finally moved the find template logic to the views.José Valim2010-03-081-2/+2
| |
* | Move layout lookup to views.José Valim2010-03-081-1/+1
| |
* | Added template lookup responsible to hold all information used in template ↵José Valim2010-03-073-61/+4
| | | | | | | | lookup.
* | First take on ViewPaths clean up.José Valim2010-03-071-2/+2
|/
* Adds disable option to date_helpers generated hidden fields when ↵Santiago Pastorino2010-03-051-0/+55
| | | | | | | | html_options specifies it. ht by Marc Schütz [#3807 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Solved a problem that prevented render :file => work in layoutsJose Fernandez2010-03-052-0/+7
| | | | Signed-off-by: wycats <wycats@gmail.com>
* Remove the ability to set the mountpoint when initializing a route set.Carl Lerche2010-03-041-24/+4
|
* Tweak out url_for uses :script_name and add some testsCarl Lerche2010-03-041-0/+58
|
* Get rid of relative_url_path in favor of respecting SCRIPT_NAME. Also added ↵Carlhuda2010-03-041-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 configCarlhuda2010-03-042-9/+15
|
* remove_method is privateCarlhuda2010-03-041-2/+2
|
* Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-042-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.rbCarlhuda2010-03-041-1/+0
|
* Clarify cookie jar testJeremy Kemper2010-03-041-6/+1
|
* Safely cleans up a test to avoid relying on a particular test orderwycats2010-03-041-10/+23
|
* Fixes test ordering bug (ht: evan)wycats2010-03-041-0/+3
|
* Fix a bunch of failing AP / AM specs created from the previous ↵Carl Lerche2010-03-041-27/+15
| | | | AbstractController configuration refactor.
* Merge branch 'configuration_refactor'Carl Lerche2010-03-0312-224/+129
|\
| * Move the original config method onto AbstractControllerCarl Lerche2010-03-032-2/+2
| |
| * Start refactoring the method of configuring ActionViewCarlhuda2010-03-034-24/+23
| |
| * Deprecate IP spoofing settings that are directly on the controller in favor ↵Carlhuda2010-03-031-2/+0
| | | | | | | | of configuring a middleware
| * Move remote_ip to a middleware:Carlhuda2010-03-031-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 Lerche2010-03-034-26/+0
| | | | | | | | let's deprecate it.
| * ActionDispatch::Request deprecates #request_uriCarl Lerche2010-03-033-17/+17
| | | | | | | | * Refactored ActionPatch to use fullpath instead
| * Fix tests for the request refactorCarl Lerche2010-03-033-21/+40
| |
| * Tweak the semantic of various URL related methods of ActionDispatch::RequestCarlhuda2010-03-034-87/+16
| |
| * Work on deprecating ActionController::Base.relative_url_rootCarlhuda2010-03-033-39/+22
| |
| * Move session_store and session_options to the AC configuration objectCarlhuda2010-03-031-2/+3
| |
* | don't depend on the order of cookies (Hash ordering bug)Yehuda Katz2010-03-031-1/+1
|/
* Fix failing Action Pack testsCarlhuda2010-03-024-3/+14
|
* No longer add missing leading / on path args to assert_redirected_to. ↵Jeremy Kemper2010-03-021-2/+4
| | | | Deprecated in 2.3.6.
* Fix some tests that relied on hardcoded Exception information (ht: evan)Yehuda Katz2010-03-021-2/+2
|
* Action Mailer setup obviated by test bundleJeremy Kemper2010-03-021-12/+1
|
* Change AV formats so they can delegate to the controller. Now users (or ↵Carlhuda2010-03-012-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 testsJoshua Peek2010-02-281-0/+6
|
* Remove implicit controller namespacing from new dslJoshua Peek2010-02-283-7/+13
|
* 1.9 seems to have a bug involving cloned classes and super. Fix it by not ↵Carlhuda2010-02-261-8/+12
| | | | cloning (and instead creating classes on demand). The 1.9 bug should be investigated.