aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_tag_helper_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Start adding configuration to ActionView instead of using constants.Yehuda Katz2009-10-141-0/+3
* Add :include_blank option for select_tag [#1987 status:resolved]rizwanreza2009-08-081-0/+12
* Fixes a number of tests that inexplicably didn't fail when we committed the o...Yehuda Katz + Carl Lerche2009-07-021-3/+3
* Make text_area_tag escape contents by default.Chris Mear2009-06-271-0/+12
* Sanitized the id generated by text_area_tag helper method. text_area_tag('ite...Stephen Anderson2009-06-091-0/+5
* fix for IE incompatibility of :disable_with in submit_tagHan Kessels2009-06-011-3/+3
* Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-131-2/+9
|\
| * submit_tag with confirmation and disable_with [#660 state:resolved]Lawrence Pit2009-03-071-2/+9
* | Temporarily modifies setup to call super directly. This can support more T::U...Yehuda Katz and Carl Lerche2009-04-081-0/+1
|/
* Register 'checked' as an HTML boolean attribute.Hongli Lai (Phusion)2008-11-181-0/+1
* Tag helper should output an attribute with the value 'false' instead of omitt...Hongli Lai (Phusion)2008-11-131-1/+1
* Fixed that FormTagHelper generates illegal html if name contains e.g. square ...Vladimir Dobriakov2008-11-041-1/+34
* Ensure select_tag#name attribute uses [] when :multiple is true. [#1146 state...Andrew Kaspick2008-10-071-1/+2
* Add options to field_set_tagAndrew Kaspick2008-09-291-0/+6
* Added image_submit_tag confirm option [status:committed #784]Alastair Brunton2008-09-101-0/+7
* The FormTagHelper#submit_tag helper will now pass along the original value of...Jose Fernandez2008-09-101-2/+2
* Fix that label_tag doesn't take a symbol for a name. [#719 state:resolved]Jan De Poorter2008-07-291-0/+6
* Ensure proper output when submit_tag is used with :disabled_with. [#388 state...Scott Stewart2008-07-021-0/+7
* Check whether blocks are called from erb using a special __in_erb_template va...Jeremy Kemper2008-06-191-15/+18
* Use output_buffer reader and writer methods exclusively instead of hitting th...Jeremy Kemper2008-06-081-16/+13
* Work with @output_buffer instead of _erboutJeremy Kemper2008-06-021-15/+15
* Introduce ActionView::TestCase for testing view helpers.Joshua Peek2008-04-191-6/+2
* Added :confirm option to submit_tag (closes #11415) [miloops]David Heinemeier Hansson2008-03-241-1/+8
* Add label_tag helper for generating elements. Closes #10802 [DefV]Michael Koziarski2008-01-211-0/+18
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-051-1/+1
* Expand form helper test coverage. Closes #9950 [robinjfisher]Jeremy Kemper2007-10-221-1/+55
* Allow ability to disable request forgery protection, disable it in test mode ...Rick Olson2007-09-281-4/+3
* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha...Rick Olson2007-09-231-0/+5
* Rename fieldset_tag to field_set_tag to follow the conventions from text_area...David Heinemeier Hansson2007-09-091-4/+4
* Add fieldset_tag for generating fieldsets, closes #9477. [djanowski]Michael Koziarski2007-09-061-0/+20
* Fixed that radio_button_tag should generate unique ids (closes #3353) [BobSil...David Heinemeier Hansson2007-06-231-0/+3
* Improve helper test coverage. Closes #7215, #7233, #7234, #7235, #7236, #7237...Jeremy Kemper2007-06-131-0/+8
* Removed deprecated parameters_for_method_reference concept (legacy from befor...David Heinemeier Hansson2007-05-121-3/+3
* Added that FormTagHelper#submit_tag will return to its original state if the ...David Heinemeier Hansson2007-03-271-1/+1
* Deprecation: remove deprecated update_element_function, start_form_tag, and e...Jeremy Kemper2007-03-131-29/+0
* Fixed that FormTagHelper#text_area_tag should disregard :size option if it's ...David Heinemeier Hansson2007-03-031-0/+6
* Set the original button value in an attribute of the button when using the :d...Jamis Buck2007-02-281-1/+1
* Add Mime::Type convenience methods to check the current mime type. [Rick]Rick Olson2007-02-151-1/+1
* Fix that FormTagHelper#submit_tag using :disable_with should trigger the onsu...David Heinemeier Hansson2007-02-061-1/+1
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-1/+1
* Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now...Rick Olson2006-10-241-0/+28
* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of...Rick Olson2006-10-241-2/+2
* Made FormTagHelper#form_tag work with blocks, rendering start/end_form_tag de...David Heinemeier Hansson2006-10-231-1/+18
* radio_button_tag generates unique id attributes. Closes #3353.Jeremy Kemper2006-09-031-1/+14
* Expanded :method option in FormHelper#form_tag to allow for verbs other than ...David Heinemeier Hansson2006-05-281-0/+6
* Added :disable_with option to FormTagHelper#submit_tag to allow for easily di...David Heinemeier Hansson2005-12-301-0/+7
* Added FormHelper#form_for and FormHelper#fields_for that makes it easier to w...David Heinemeier Hansson2005-11-131-0/+4
* Make xyz_tag(..., :id => "foo") work againJamis Buck2005-10-121-0/+6
* Optimized tag_options to not sort keys, which is no longer necessary when ass...David Heinemeier Hansson2005-09-201-15/+15
* Added that nil options are not included in tags, so tag("p", :ignore => nil) ...David Heinemeier Hansson2005-07-091-2/+2