aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate cookie_verifier_secret in favor of config.cookie_secret allowing ↵José Valim2010-03-311-1/+1
| | | | signed cookies to work again.
* Consistent routing languageJoshua Peek2010-03-305-29/+29
|
* Fix stack overflow bug in integration test router helpersJoshua Peek2010-03-301-0/+47
|
* Tests method_missing to raise NameError. [#2522 state:resolved]Rizwan Reza2010-03-271-0/+16
| | | Signed-off-by: wycats <wycats@gmail.com>
* open_session can just return the a dup of the current context.wycats2010-03-221-5/+3
| | | | | At this point, its entire purpose in the open_session {} case was to delegate back to the IntegrationTest anyway.
* Current url helpers become actions in controller. Added a failing test case ↵José Valim2010-03-221-6/+17
| | | | for it.
* Fixed a bunch of tests that failed in 1.9 because they assumed that a Rack ↵wycats2010-03-194-7/+12
| | | | response was a String.
* Improve performance of the rendering stack by freezing formats as a sign ↵José Valim2010-03-191-2/+13
| | | | that they shouldn't be further modified.
* remove duplicated self.view_paths assingment on controller tests [#4206 ↵Santiago Pastorino2010-03-181-2/+2
| | | | | | state:commited] Signed-off-by: wycats <wycats@gmail.com>
* Return a valid Rack response from bare ActionController::MetalCarlhuda2010-03-181-0/+27
|
* Make render :partial, :layout consistent between AC and AVCarlhuda2010-03-181-11/+1
|
* All tests pass without memoizing view_contextCarlhuda2010-03-182-3/+13
|
* Deleting and setting a cookie in the same request was brokenMathias Biilmann Christensen2010-03-171-0/+11
| | | | | | | | Made sure to remove a cookie from @deleted_cookies when set [#4211 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Modify assert_template to use notifications. Also, remove ↵Carlhuda2010-03-174-16/+18
| | | | ActionController::Base#template since it is no longer needed.
* Remove unneeded AV::Base and AV::Template monkey-patchesCarlhuda2010-03-171-3/+2
|
* Fix rendering of HTML partials inside JS templates [#4197 status:resolved]José Valim2010-03-161-0/+7
|
* Some more tweaks on <% %>.Carlhuda2010-03-161-4/+4
| | | | * The cache helper is now semantically "mark this region for caching" * As a result, <% x = cache do %> no longer works
* Break a window :/Jeremy Kemper2010-03-151-1/+1
|
* Add deprecation notices for <% %>.Carlhuda2010-03-151-13/+2
| | | | | | | | | | | | | | | | * The approach is to compile <% %> into a method call that checks whether the value returned from a block is a String. If it is, it concats to the buffer and prints a deprecation warning. * <%= %> uses exactly the same logic to compile the template, which first checks to see whether it's compiling a block. * This should have no impact on other uses of block in templates. For instance, in <% [1,2,3].each do |i| %><%= i %><% end %>, the call to each returns an Array, not a String, so the result is not concatenated * In two cases (#capture and #cache), a String can be returned that should *never* be concatenated. We have temporarily created a String subclass called NonConcattingString which behaves (and is serialized) identically to String, but is not concatenated by the code that handles deprecated <% %> block helpers. Once we remove support for <% %> block helpers, we can remove NonConcattingString.
* Don't force singularization of singleton resource names, e.g. /preferences ↵Andrew White2010-03-151-0/+7
| | | | | | [#4089 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* read_ and write_fragment cache preserve html safety yet cache strings onlyJeremy Kemper2010-03-141-0/+13
|
* Ensure controller filters are executed before stuff starts to happen.José Valim2010-03-131-0/+14
|
* Add tests for lookup context.José Valim2010-03-111-1/+1
|
* skip_relative_url_root url_for option is deadJoshua Peek2010-03-091-1/+1
|
* 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-092-30/+16
|
* Reinstate default_url_options and remove url_options= writerJeremy Kemper2010-03-081-23/+19
|
* Clean LookupContext API.José Valim2010-03-081-3/+3
|
* 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
|
* Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-041-2/+3
| | | | 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.
* Clarify cookie jar testJeremy Kemper2010-03-041-6/+1
|
* Fixes test ordering bug (ht: evan)wycats2010-03-041-0/+3
|
* Merge branch 'configuration_refactor'Carl Lerche2010-03-037-43/+23
|\
| * ActionController::Base.use_accept_header is not actually used anymore, so ↵Carl Lerche2010-03-033-19/+0
| | | | | | | | let's deprecate it.
| * ActionDispatch::Request deprecates #request_uriCarl Lerche2010-03-032-2/+2
| | | | | | | | * Refactored ActionPatch to use fullpath instead
| * Fix tests for the request refactorCarl Lerche2010-03-032-3/+6
| |
| * Tweak the semantic of various URL related methods of ActionDispatch::RequestCarlhuda2010-03-032-6/+8
| |
| * Work on deprecating ActionController::Base.relative_url_rootCarlhuda2010-03-031-11/+4
| |
| * 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-021-1/+2
|
* No longer add missing leading / on path args to assert_redirected_to. ↵Jeremy Kemper2010-03-021-2/+4
| | | | Deprecated in 2.3.6.
* Action Mailer setup obviated by test bundleJeremy Kemper2010-03-021-12/+1
|
* Remove implicit controller namespacing from new dslJoshua Peek2010-02-282-4/+8
|
* 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.
* If IntegrationSession is initialized with an objects that responds to ↵Carlhuda2010-02-263-6/+2
| | | | #routes, automatically extend the URL helpers from the RouteSet onto it
* Setting UrlFor in with_routing is no longer needed now that it's not globalCarlhuda2010-02-261-4/+5
|