aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/text_helper.rb
Commit message (Expand)AuthorAgeFilesLines
* Extracted sanitization methods from TextHelper to SanitizeHelper [DHH] Change...David Heinemeier Hansson2007-10-101-308/+1
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-1/+1
* Fixed that strip_tags blows up with invalid html (closes #9730) [lifo]David Heinemeier Hansson2007-09-291-4/+6
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-281-1/+1
* move TextHelper#sanitize config options to the TextHelper module so it can be...Rick Olson2007-09-231-1/+146
* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha...Rick Olson2007-09-231-19/+19
* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. ...Rick Olson2007-09-231-38/+98
* Fixed TextHelper#word_wrap for multiline strings with extra carrier returns (...David Heinemeier Hansson2007-09-221-1/+3
* Autolink behaves well with emails embedded in URLs. Closes #7313.Jeremy Kemper2007-09-201-5/+11
* Revert [7397]. Reopens #7313.Jeremy Kemper2007-09-201-11/+5
* Avoid RDoc warningDavid Heinemeier Hansson2007-09-151-1/+1
* Fix misleading documentation for truncate. [esad] Closes #9104Michael Koziarski2007-09-051-1/+1
* Make auto link behave well with URLs containing email addresses. Closes #7313...Michael Koziarski2007-09-021-5/+11
* Massive documentation update for all helpers (closes #8223, #8177, #8175, #81...David Heinemeier Hansson2007-06-231-48/+218
* Highlight helper highlights one or many terms in a single pass.Jeremy Kemper2007-03-301-5/+12
* Make sure that the string returned by TextHelper#truncate is actually a strin...David Heinemeier Hansson2007-01-311-1/+1
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-14/+2
* Autolinking recognizes trailing and embedded . , : ; Closes #7354.Jeremy Kemper2007-01-241-1/+1
* Make TextHelper::auto_link recognize URLs with colons in path correctly, fixe...Thomas Fuchs2007-01-211-14/+14
* Improved auto_link to match more valid urls correctlyTobias Lütke2006-12-071-13/+13
* strip_tags passes through blank args such as nil or "". Closes #6702, refere...Jeremy Kemper2006-11-261-1/+1
* simple_format helper doesn't choke on nil. Closes #6644.Jeremy Kemper2006-11-191-6/+4
* ActionView::Base.erb_variable accessor names the buffer variable used to rend...Jeremy Kemper2006-11-171-1/+1
* pluralize helper interprets nil as zero. Closes #6474.Jeremy Kemper2006-11-051-1/+1
* Docfix (closes #6393)David Heinemeier Hansson2006-10-221-76/+117
* Replace KCODE checks with String#chars for truncate. Closes #6385 [Manfred S...Michael Koziarski2006-10-141-7/+2
* Use String#chars in TextHelper::excerpt. Closes #6386 [Manfred Stienstra]Michael Koziarski2006-10-121-4/+4
* strip_links is case-insensitive. Closes #6285.Jeremy Kemper2006-09-261-1/+1
* Fixed TextHelper#simple_format to deal with multiple single returns within a ...David Heinemeier Hansson2006-09-041-1/+1
* Fixed TextHelper#pluralize to handle 1 as a string (closes #5905) [rails@benc...David Heinemeier Hansson2006-09-041-1/+1
* strip_tags returns nil for a blank arg such as nil or "". Closes #2229.Jeremy Kemper2006-09-031-1/+2
* Update sanitize text helper to strip plaintext tags, and <img src=javascript:...Rick Olson2006-09-031-3/+3
* Make auto_link parse a greater subset of valid url formats.Jamis Buck2006-09-021-13/+16
* r4487@asus: jeremy | 2006-04-29 12:21:39 -0700Jeremy Kemper2006-07-081-4/+3
* Fix strip_links so that it doesn't hang on multi-line acronym tagsJamis Buck2006-06-081-1/+1
* Fix text_helper.rb documentation rendering. Closes #4725. [Frederick Ros]Marcel Molina2006-04-271-20/+20
* only require redcloth/bluecloth if they are not already loaded [Rick]Rick Olson2006-04-231-2/+2
* Fixed require of bluecloth and redcloth when gems haven't been loaded (closes...David Heinemeier Hansson2006-03-271-2/+2
* Make auto_link handle nil by returning quickly if blank?Scott Barron2005-12-301-0/+1
* Make auto_link match urls with a port number specified.Marcel Molina2005-12-261-1/+1
* Correct length for the truncate text helper. Closes #2913.Jeremy Kemper2005-11-181-3/+3
* The auto_link text helper accepts an optional block to format the link text f...Jeremy Kemper2005-11-101-9/+30
* Added TextHelper#strip_tags for removing HTML tags from a string (using HTMLT...David Heinemeier Hansson2005-10-261-0/+22
* Update/clean up AP documentation (rdoc)Jamis Buck2005-10-161-1/+1
* Misc doc fixes (typos/grammar/etc). Closes #2445.Marcel Molina2005-10-121-3/+3
* Forced newer versions of RedCloth to use hard breaks [DHH]David Heinemeier Hansson2005-10-021-0/+1
* Forced newer versions of RedCloth to use hard breaks [DHH]David Heinemeier Hansson2005-10-021-1/+6
* Not the avenue we want to go downDavid Heinemeier Hansson2005-09-301-4/+0
* Testing should also use a default REQUEST_METHODDavid Heinemeier Hansson2005-09-291-1/+4
* Have text helpers use built in Regexp.escape rather than home grown alternativeMarcel Molina2005-09-261-7/+2