aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/url_helper_test.rb
Commit message (Expand)AuthorAgeFilesLines
* ActionView.url_for doesn't escape by defaultPhil Darnowsky2009-10-151-3/+13
* Start adding configuration to ActionView instead of using constants.Yehuda Katz2009-10-141-0/+3
* Switch to on-by-default XSS escaping for rails.Michael Koziarski2009-10-081-1/+1
* Move helpers specific to functional tests out of TestProcess into AC::TestCaseJoshua Peek2009-09-231-11/+3
* Define weblog controller for url helper testJoshua Peek2009-09-131-0/+1
* Cleanup hacky routing with controller_path in url helper tests. This doesn't ...Joshua Peek2009-09-061-62/+56
* Make sure link_to generates the form with the specified :href if any [#2254 s...Max Lapshin2009-08-101-0/+8
* AMo conversion helperJoshua Peek2009-07-211-2/+4
* Define ActiveModel API ComplianceYehuda Katz2009-07-201-2/+2
* Move model naming into ActiveModelJoshua Peek2009-06-171-0/+2
* Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-131-2/+35
|\
| * Ruby 1.9 compat: rename deprecated assert_raises to assert_raise.Jeremy Kemper2009-03-081-1/+1
| * Added tests from Andrew Whites fix [#1385 state:committed]David Heinemeier Hansson2009-02-051-0/+21
| * Fix a syntax error in current_page?() that was prevent matches against URL's ...chris finne2009-02-051-1/+13
* | Temporarily modifies setup to call super directly. This can support more T::U...Yehuda Katz and Carl Lerche2009-04-081-0/+4
|/
* Cleaned up route optimisation guard condition generation code as it was getti...Tom Lea2008-11-011-0/+13
* modified current_page? to ignore extra parameters unless specified in optionsErik Andrejko2008-10-261-0/+10
* Ruby 1.9 compat: set source encodingJeremy Kemper2008-08-231-0/+1
* mail_to should use decodeURIcomponent instead of unescape to be utf friendly.miloops2008-08-081-3/+7
* Removed handling of string parameter in link_to to have all URL generation do...Clemens Kofler2008-07-191-1/+10
* Set global ActionController::Base.view_paths for test casesJoshua Peek2008-07-121-8/+0
* Ensure mail_to label is obfuscated for javascript encoding. [#294 state:resol...Johan Sørensen2008-07-121-0/+1
* Ensure url_for(nil) falls back to url_for({}). [#472 state:resolved]Cheah Chu Yeow2008-07-091-1/+10
* Set precompiled fixture load path constant to speed up testsJoshua Peek2008-06-251-4/+4
* Check whether blocks are called from erb using a special __in_erb_template va...Jeremy Kemper2008-06-191-8/+8
* Added block-call style to link_to [Sam Stephenson/DHH]David Heinemeier Hansson2008-06-171-0/+8
* Introduce ActionView::TestCase for testing view helpers.Joshua Peek2008-04-191-10/+8
* Ruby 1.9 compat: text helperJeremy Kemper2007-12-211-1/+1
* Test link_to 'back', :backJeremy Kemper2007-10-161-0/+10
* Add link_to :back which uses your referrer with a fallback to a javascript li...Michael Koziarski2007-10-081-1/+11
* Allow ability to disable request forgery protection, disable it in test mode ...Rick Olson2007-09-281-2/+2
* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha...Rick Olson2007-09-231-0/+4
* Roll back #7578, tests failedDavid Heinemeier Hansson2007-09-221-10/+0
* Improve the error message for assert_redirected_to (closes #7337) [sandofsky]David Heinemeier Hansson2007-09-221-0/+10
* Fixed that setting the :host option in url_for would automatically turn off :...David Heinemeier Hansson2007-09-221-1/+19
* Fixed that link_to with an href of # when using :method will not allow for cl...David Heinemeier Hansson2007-06-231-0/+7
* Resources: url_for([parent, child]) generates /parents/1/children/2 for the n...Jeremy Kemper2007-06-051-3/+62
* Don't double-escape url_for in views. Closes #8144.Jeremy Kemper2007-06-051-0/+5
* Removed deprecated parameters_for_method_reference concept (legacy from befor...David Heinemeier Hansson2007-05-121-2/+71
* Deprecation: remove deprecated link_to_image and link_image_to methods. Use l...Jeremy Kemper2007-03-131-33/+24
* Allow Controllers to have multiple view_paths instead of a single template_ro...Rick Olson2007-02-041-2/+2
* mail_to :encode => 'hex' also encodes the mailto: part of the href attribute ...Jeremy Kemper2007-01-281-4/+5
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-5/+1
* link_to_unless_current works with full URLs as well as paths. Closes #6891.Jeremy Kemper2007-01-121-3/+66
* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true (close...David Heinemeier Hansson2006-10-221-11/+20
* Force *_url named routes to show the host in ActionView [Rick]Rick Olson2006-10-201-1/+56
* Add <%= escape_once html %> to escape html while leaving any currently escape...Rick Olson2006-10-181-0/+4
* button_to accepts :method so you can PUT and DELETE with it. Closes #6005.Jeremy Kemper2006-09-031-0/+14
* Added :method option to UrlHelper#link_to, which allows for using other verbs...David Heinemeier Hansson2006-05-281-2/+9
* Fix double url escaping of remote_function. Add :escape => false option to Ac...Nicholas Seckar2006-03-221-0/+2