aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-03-30 01:19:01 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-03-30 01:19:01 +0000
commit67d5a1abedaae4c2ccc5057bb6780708f04b5f10 (patch)
tree78f884ea378f691f8827b314540324df6f15a86e /actionpack/CHANGELOG
parent29d63a04acabf398aa161857b603d99a2bf8e51b (diff)
downloadrails-67d5a1abedaae4c2ccc5057bb6780708f04b5f10.tar.gz
rails-67d5a1abedaae4c2ccc5057bb6780708f04b5f10.tar.bz2
rails-67d5a1abedaae4c2ccc5057bb6780708f04b5f10.zip
Highlight helper highlights one or many terms in a single pass.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6493 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 e90e390397..f68c081e51 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Highlight helper highlights one or many terms in a single pass. [Jeremy Kemper]
+
* Dropped the use of ; as a separator of non-crud actions on resources and went back to the vanilla slash. It was a neat idea, but lots of the non-crud actions turned out not to be RPC (as the ; was primarily intended to discourage), but legitimate sub-resources, like /parties/recent, which didn't deserve the uglification of /parties;recent. Further more, the semicolon caused issues with caching and HTTP authentication in Safari. Just Not Worth It [DHH]
* Added that FormTagHelper#submit_tag will return to its original state if the submit fails and you're using :disable_with [DHH]