diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-14 11:14:30 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-05-14 11:14:30 +0000 |
commit | 50253edec97429ea92621bce6578cdedfcc19b62 (patch) | |
tree | f8ad7df07169dc42900c75ec6291feff0275cd79 /actionpack/CHANGELOG | |
parent | c769ad85336713b7e5bdadd57d92a007783f8208 (diff) | |
download | rails-50253edec97429ea92621bce6578cdedfcc19b62.tar.gz rails-50253edec97429ea92621bce6578cdedfcc19b62.tar.bz2 rails-50253edec97429ea92621bce6578cdedfcc19b62.zip |
Rationalize route path escaping according to RFC 2396 section 3.3. Closes #7544, #8307.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6730 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index b6907d831e..25210bb34f 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Rationalize route path escaping according to RFC 2396 section 3.3. #7544, #8307. [Jeremy Kemper, chrisroos, begemot, jugend] + * Added record identification with polymorphic routes for ActionController::Base#url_for and ActionView::Base#url_for [DHH]. Examples: redirect_to(post) # => redirect_to(posts_url(post)) => Location: http://example.com/posts/1 |