aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-04-02 00:02:11 +0000
committerRick Olson <technoweenie@gmail.com>2007-04-02 00:02:11 +0000
commitda6f5a1cb4ccabef8c5ae0cb56495c198844c4f8 (patch)
tree9fe9d53b953f7307e8d1840ad10b7aa738dd2688 /actionpack/CHANGELOG
parentcf865196fec17d337640b4bca5cb16ca7c67f62f (diff)
downloadrails-da6f5a1cb4ccabef8c5ae0cb56495c198844c4f8.tar.gz
rails-da6f5a1cb4ccabef8c5ae0cb56495c198844c4f8.tar.bz2
rails-da6f5a1cb4ccabef8c5ae0cb56495c198844c4f8.zip
Change ActionView template defaults. Look for templates using the request format first, such as show.html.erb or show.xml.builder, before looking for the old defaults like show.erb or show.builder [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6499 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 f68c081e51..bd60b3e265 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Change ActionView template defaults. Look for templates using the request format first, such as "show.html.erb" or "show.xml.builder", before looking for the old defaults like "show.erb" or "show.builder" [Rick]
+
* 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]