aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-05-09 11:24:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-05-09 11:24:18 +0000
commit45780be2a7d6ddb5851e04279728c817c941c31c (patch)
tree142055ea22c6e5caca67108b59b4087f3053e3ff /actionpack/CHANGELOG
parentb167248b21a8da63be871ec6815d117a8efa25f3 (diff)
downloadrails-45780be2a7d6ddb5851e04279728c817c941c31c.tar.gz
rails-45780be2a7d6ddb5851e04279728c817c941c31c.tar.bz2
rails-45780be2a7d6ddb5851e04279728c817c941c31c.zip
Added TextHelper#sanitize that can will remove any Javascript handlers, blocks, and forms from an input of HTML. This allows for use of HTML on public sites, but still be free of XSS issues. #1277 [Jamis Buck]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1298 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 0751b162df..8c20ac3606 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added TextHelper#sanitize that can will remove any Javascript handlers, blocks, and forms from an input of HTML. This allows for use of HTML on public sites, but still be free of XSS issues. #1277 [Jamis Buck]
+
* Fixed the HTML scanner used by assert_tag where a infinite loop could be caused by a stray less-than sign in the input #1270 [Jamis Buck]
* Added functionality to assert_tag, so you can now do tests on the siblings of a node, to assert that some element comes before or after the element in question, or just to assert that some element exists as a sibling #1226 [Jamis Buck]