aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2006-10-12 23:29:04 +0000
committerMarcel Molina <marcel@vernix.org>2006-10-12 23:29:04 +0000
commit065908a4c59f949c49abb97a9483ef16d02ec329 (patch)
tree45517cfa078f558ecb2abc819b02d5a60e74cf20 /actionpack/CHANGELOG
parent41c362352433f265a95c00d8e7b5c1f1299e9011 (diff)
downloadrails-065908a4c59f949c49abb97a9483ef16d02ec329.tar.gz
rails-065908a4c59f949c49abb97a9483ef16d02ec329.tar.bz2
rails-065908a4c59f949c49abb97a9483ef16d02ec329.zip
Make page caching respect the format of the resource that is being requested even if the current route is the default route so that, e.g. posts.rss is not transformed by url_for to '/' and subsequently cached as '/index.html' when it should be cached as '/posts.rss'.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5289 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 190a5578c8..f099513766 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Make page caching respect the format of the resource that is being requested even if the current route is the default route so that, e.g. posts.rss is not transformed by url_for to '/' and subsequently cached as '/index.html' when it should be cached as '/posts.rss'. [Marcel Molina Jr.]
+
* Use String#chars in TextHelper::excerpt. Closes #6386 [Manfred Stienstra]
* Install named routes into ActionView::Base instead of proxying them to the view via helper_method. Closes #5932. [Nicholas Seckar]