| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Check whether blocks are called from erb using a special __in_erb_template va... | Jeremy Kemper | 2008-06-19 | 1 | -8/+8 |
* | Added block-call style to link_to [Sam Stephenson/DHH] | David Heinemeier Hansson | 2008-06-17 | 1 | -0/+8 |
* | Introduce ActionView::TestCase for testing view helpers. | Joshua Peek | 2008-04-19 | 1 | -10/+8 |
* | Ruby 1.9 compat: text helper | Jeremy Kemper | 2007-12-21 | 1 | -1/+1 |
* | Test link_to 'back', :back | Jeremy Kemper | 2007-10-16 | 1 | -0/+10 |
* | Add link_to :back which uses your referrer with a fallback to a javascript li... | Michael Koziarski | 2007-10-08 | 1 | -1/+11 |
* | Allow ability to disable request forgery protection, disable it in test mode ... | Rick Olson | 2007-09-28 | 1 | -2/+2 |
* | Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha... | Rick Olson | 2007-09-23 | 1 | -0/+4 |
* | Roll back #7578, tests failed | David Heinemeier Hansson | 2007-09-22 | 1 | -10/+0 |
* | Improve the error message for assert_redirected_to (closes #7337) [sandofsky] | David Heinemeier Hansson | 2007-09-22 | 1 | -0/+10 |
* | Fixed that setting the :host option in url_for would automatically turn off :... | David Heinemeier Hansson | 2007-09-22 | 1 | -1/+19 |
* | Fixed that link_to with an href of # when using :method will not allow for cl... | David Heinemeier Hansson | 2007-06-23 | 1 | -0/+7 |
* | Resources: url_for([parent, child]) generates /parents/1/children/2 for the n... | Jeremy Kemper | 2007-06-05 | 1 | -3/+62 |
* | Don't double-escape url_for in views. Closes #8144. | Jeremy Kemper | 2007-06-05 | 1 | -0/+5 |
* | Removed deprecated parameters_for_method_reference concept (legacy from befor... | David Heinemeier Hansson | 2007-05-12 | 1 | -2/+71 |
* | Deprecation: remove deprecated link_to_image and link_image_to methods. Use l... | Jeremy Kemper | 2007-03-13 | 1 | -33/+24 |
* | Allow Controllers to have multiple view_paths instead of a single template_ro... | Rick Olson | 2007-02-04 | 1 | -2/+2 |
* | mail_to :encode => 'hex' also encodes the mailto: part of the href attribute ... | Jeremy Kemper | 2007-01-28 | 1 | -4/+5 |
* | Use a consistent load path to avoid double requires. Fix some scattered Ruby ... | Jeremy Kemper | 2007-01-28 | 1 | -5/+1 |
* | link_to_unless_current works with full URLs as well as paths. Closes #6891. | Jeremy Kemper | 2007-01-12 | 1 | -3/+66 |
* | Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true (close... | David Heinemeier Hansson | 2006-10-22 | 1 | -11/+20 |
* | Force *_url named routes to show the host in ActionView [Rick] | Rick Olson | 2006-10-20 | 1 | -1/+56 |
* | Add <%= escape_once html %> to escape html while leaving any currently escape... | Rick Olson | 2006-10-18 | 1 | -0/+4 |
* | button_to accepts :method so you can PUT and DELETE with it. Closes #6005. | Jeremy Kemper | 2006-09-03 | 1 | -0/+14 |
* | Added :method option to UrlHelper#link_to, which allows for using other verbs... | David Heinemeier Hansson | 2006-05-28 | 1 | -2/+9 |
* | Fix double url escaping of remote_function. Add :escape => false option to Ac... | Nicholas Seckar | 2006-03-22 | 1 | -0/+2 |
* | Undo accidental escaping for mail_to; add regression test. Fix incorrect cred... | Nicholas Seckar | 2006-03-19 | 1 | -0/+4 |
* | Change url_for to escape the resulting URLs when called from a view. Closes #... | Nicholas Seckar | 2006-03-18 | 1 | -11/+21 |
* | Fixed link_to "somewhere", :post => true to produce valid XHTML by using the ... | David Heinemeier Hansson | 2006-03-18 | 1 | -2/+2 |
* | Fixed tests | David Heinemeier Hansson | 2006-02-26 | 1 | -2/+2 |
* | Raise a RedirectBackError if redirect_to :back is called when theres no HTTP_... | David Heinemeier Hansson | 2006-01-22 | 1 | -2/+2 |
* | Escape query strings in the href attribute of URLs created by url_helper. #2333 | Jeremy Kemper | 2005-10-13 | 1 | -0/+16 |
* | Optimized tag_options to not sort keys, which is no longer necessary when ass... | David Heinemeier Hansson | 2005-09-20 | 1 | -31/+31 |
* | Fixed that onclick would be overridden even when special features werent used | David Heinemeier Hansson | 2005-09-08 | 1 | -0/+4 |
* | Fixed a broken test | David Heinemeier Hansson | 2005-09-08 | 1 | -1/+1 |
* | Use this.href, not unexisting url | David Heinemeier Hansson | 2005-09-07 | 1 | -1/+1 |
* | Added :post option to UrlHelper#link_to that makes it possible to do POST req... | David Heinemeier Hansson | 2005-09-07 | 1 | -0/+18 |
* | Added :popup option to UrlHelper#link_to #1996 [gabriel.gironda@gmail.com] | David Heinemeier Hansson | 2005-09-04 | 1 | -0/+26 |
* | Make link_to escape the javascript in the confirm option #1964 [nicolas.pouil... | Jamis Buck | 2005-08-14 | 1 | -0/+4 |
* | Added that UrlHelper#mail_to will now also encode the default link title #749... | David Heinemeier Hansson | 2005-07-02 | 1 | -0/+8 |
* | Added button_to as a form-based solution to deal with harmful actions that sh... | David Heinemeier Hansson | 2005-06-16 | 1 | -0/+22 |
* | Added options to set cc, bcc, subject, and body for UrlHelper#mail_to #966 [D... | David Heinemeier Hansson | 2005-04-02 | 1 | -1/+7 |
* | Changed .htaccess to allow dispatch.* to be called from a sub-directory as pa... | David Heinemeier Hansson | 2005-03-20 | 1 | -22/+0 |
* | Moved image_tag to AssetTagHelper | David Heinemeier Hansson | 2005-03-14 | 1 | -0/+2 |
* | Added TagHelper#image_tag and deprecated UrlHelper#link_image_to (recommended... | David Heinemeier Hansson | 2005-03-09 | 1 | -1/+16 |
* | Added UrlHelper#link_to_if/link_to_unless to enable other conditions that jus... | David Heinemeier Hansson | 2005-03-06 | 1 | -0/+22 |
* | Use example.com domains to make rails RFC2606 compliant #708 | David Heinemeier Hansson | 2005-03-06 | 1 | -19/+19 |
* | Fixed that single quote was not escaped in a UrlHelper#link_to javascript con... | David Heinemeier Hansson | 2005-03-06 | 1 | -0/+4 |
* | Removed the default border on link_image_to (it broke xhtml strict) -- can be... | David Heinemeier Hansson | 2005-03-06 | 1 | -8/+8 |
* | Fixed that form helpers would treat string and symbol keys differently in htm... | David Heinemeier Hansson | 2005-03-06 | 1 | -8/+15 |