aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tag_helper.rb
Commit message (Expand)AuthorAgeFilesLines
* content_tag_string shouldn't escape_html if escape param is falseSantiago Pastorino2010-06-071-1/+1
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-281-0/+1
* Merge remote branch 'mainstream/master'Pratik Naik2010-03-151-1/+1
|\
| * Making escaped things more readableSantiago Pastorino2010-03-141-1/+1
* | Merge remote branch 'mainstream/master'Pratik Naik2010-03-121-23/+5
|\|
| * Deprecate block_called_from_erb? pending a solution for getting it into appsCarlhuda2010-03-091-22/+4
| * Explicit html_escape removed when not neededSantiago Pastorino and José Ignacio Costa2010-02-141-1/+1
| * content_tag should escape its inputBruno Michel2010-02-141-1/+1
* | Updated documentation for block helpers in tag_helper.rbJeroen van Dijk2010-03-121-1/+1
|/
* More html_safe strings now use the safe_concat methodSantiago Pastorino and José Ignacio Costa2010-02-051-1/+1
* action_view is requiring the deleted action_view/erb/util.rb fileSantiago Pastorino2010-01-311-1/+0
* For performance reasons, you can no longer call html_safe! on Strings. Instea...Yehuda Katz2010-01-311-4/+4
* Switch to on-by-default XSS escaping for rails.Michael Koziarski2009-10-081-4/+4
* Clean tag attributes before passing through the escape_once logic.Michael Koziarski2009-09-041-1/+1
* Allow content_tag options to take an array [#1741 state:resolved] [rizwanreza...rizwanreza2009-08-081-9/+7
* Fix tag helpers so that all HTML element boolean attributes render according ...Marc Love2009-07-301-1/+4
* Adds a audio_tag helper for the HTML5 audio tag. Fixed video_path docs. HTML ...Emilio Tagua2009-07-071-2/+1
* Adds a video_tag helper for the HTML5 video tag (similar to how the image_tag...Tieg Zaharia2009-07-021-1/+2
* Cleaning up more render testsYehuda Katz + Carl Lerche2009-05-141-1/+1
* Explicitly require ERB Utils extensions from TagHelperJoshua Peek2008-12-091-1/+1
* Merge with docrailsPratik Naik2008-12-071-1/+1
* Unnecessary CGI requireJeremy Kemper2008-12-031-1/+0
* Register 'checked' as an HTML boolean attribute.Hongli Lai (Phusion)2008-11-181-1/+1
* Tag helper should output an attribute with the value 'false' instead of omitt...Hongli Lai (Phusion)2008-11-131-4/+6
* Merge with docrails.Pratik Naik2008-07-161-1/+1
* Ruby 1.9 compat: only eval with block.binding in 1.9, uses more memory than e...Jeremy Kemper2008-07-151-6/+12
* Ruby 1.9 compat: call Proc#binding explicitly. [#623 state:resolved]松田 明2008-07-151-1/+1
* Performance: javascript helper tweaks to speed up escaping and reduce object ...Jeremy Kemper2008-06-211-1/+1
* Check whether blocks are called from erb using a special __in_erb_template va...Jeremy Kemper2008-06-191-8/+24
* Use output_buffer reader and writer methods exclusively instead of hitting th...Jeremy Kemper2008-06-081-4/+0
* Merge branch 'master' into erboutJeremy Kemper2008-06-061-3/+4
|\
| * Drop a string conversion from the often-called tag_options helperJeremy Kemper2008-06-061-3/+4
* | Don't pass block binding to concatJeremy Kemper2008-06-021-5/+2
* | Try replacing _erbout with @output_bufferJeremy Kemper2008-06-021-1/+1
|/
* The tag helper may bypass escaping.Jeremy Kemper2007-09-241-17/+26
* escape_once uses negative lookahead to avoid double-escaping instead of a sec...Jeremy Kemper2007-09-241-6/+1
* tag_options creates fewer objectsJeremy Kemper2007-09-181-14/+15
* Massive documentation update for all helpers (closes #8223, #8177, #8175, #81...David Heinemeier Hansson2007-06-231-15/+35
* Fixed that content_tag with a block will just return the result instead of co...David Heinemeier Hansson2007-05-021-1/+6
* Clean up multiple calls to #stringify_keys in TagHelper, add better documenta...Rick Olson2007-01-051-23/+42
* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of...Rick Olson2006-10-241-2/+2
* Added block-usage to TagHelper#content_tag [DHH]David Heinemeier Hansson2006-10-231-4/+24
* Add <%= escape_once html %> to escape html while leaving any currently escape...Rick Olson2006-10-181-1/+10
* Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc. [Rick]Rick Olson2006-10-181-1/+6
* Wrap javascript_tag contents in a CDATA section and add a cdata_section metho...Sam Stephenson2005-10-121-0/+9
* Convert boolean form options form the tag_helper. Recloses #809.Marcel Molina2005-10-101-5/+11
* Optimized tag_options to not sort keys, which is no longer necessary when ass...David Heinemeier Hansson2005-09-201-10/+9
* Added that nil options are not included in tags, so tag("p", :ignore => nil) ...David Heinemeier Hansson2005-07-091-2/+3
* Fixed TagHelper such that :name and 'name' keys in the options doesn't result...David Heinemeier Hansson2005-06-161-2/+1
* Moved image_tag to AssetTagHelperDavid Heinemeier Hansson2005-03-141-26/+0