aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tag_helper.rb
Commit message (Expand)AuthorAgeFilesLines
* Added time_tag helper to AP for HTML5 time tag [#5919 state:resolved]Sjoerd Andringa2011-02-121-1/+1
* rewords a little the RDoc of the tag helperXavier Noria2010-10-191-4/+5
* Additional documentation for data-* attributes.Stephen Celis & Xavier Noria2010-10-191-10/+17
* Call html_escape in ERB::Util module and don't mix it in in the helpersSantiago Pastorino2010-10-181-4/+3
* Rejig the html5 data helper codeMichael Koziarski2010-10-181-3/+5
* HTML5 data attribute helpers [#5825 state:resolved].Stephen Celis2010-10-181-4/+17
* Prevent any warnings from being printed during RDoc generationJoost Baaij2010-08-261-1/+1
* s/escape_once/html_escape/, since html safety is the contract that now says w...Xavier Noria2010-06-301-1/+1
* Added titles and description.Rizwan Reza2010-06-161-0/+1
* 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