aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Add deprecation notices for <% %>.Carlhuda2010-03-157-23/+35
| | | | | | | | | | | | | | | | * 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.
* with_output_buffer cannot assume there's an output_bufferXavier Noria2010-03-151-0/+6
| | | | | | [#4182 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* 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
|
* There's a Ruby issue with File.basename different versions returns different ↵Santiago Pastorino2010-03-141-1/+0
| | | | things, so we shouldn't test that
* Ensure controller filters are executed before stuff starts to happen.José Valim2010-03-131-0/+14
|
* Made asset_tag_helper use config.perform_caching instead of ↵Denis Odorcic2010-03-121-18/+18
| | | | | | ActionController::Base.perform_caching Signed-off-by: José Valim <jose.valim@gmail.com>
* Allow anything that responds to render to be given as :template and use ↵José Valim2010-03-121-104/+52
| | | | find_template instead of find in views.
* %= works for content_tag and does not require parenthesis on method callJosé Valim2010-03-121-2/+2
|
* Make all AP tests pass for Ruby 1.9.1.José Valim2010-03-123-9/+8
|
* Fix testJeremy Kemper2010-03-111-1/+1
|
* simplify alt tag generation for imagesEaden McKee2010-03-111-1/+4
| | | | | | [#2837 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Add tests for lookup context.José Valim2010-03-113-1/+170
|
* Merge branch 'master' of github.com:rails/railswycats2010-03-103-10/+9
|\
| * Merge branch 'master' of gitproxy:rails/railsJosé Valim2010-03-103-8/+8
| |\
| * | Optimize and clean up how details key get expired.José Valim2010-03-102-7/+4
| | |
| * | Merge branch 'master' of gitproxy:rails/railsJosé Valim2010-03-094-32/+24
| |\ \
| * | | Clean up the API required from ActionView::Template.José Valim2010-03-091-3/+5
| | | |
* | | | Make form helpers work with <%= wycats2010-03-095-112/+132
| | | |
* | | | Deprecate block_called_from_erb? pending a solution for getting it into appsCarlhuda2010-03-093-21/+67
| |_|/ |/| |
* | | skip_relative_url_root url_for option is deadJoshua Peek2010-03-091-1/+1
| | |
* | | Allow default_url_options to be set on route setJoshua Peek2010-03-091-0/+4
| | |
* | | 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
|