diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-12-04 00:12:00 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-12-04 00:12:00 +0000 |
commit | 2794f4164fcdba2cfc704851918c6c869215c045 (patch) | |
tree | 6a6e00c3b98813c42f21b8f5b03e37e4a31f28b0 /actionpack/CHANGELOG | |
parent | abe8fa73a91b72e79717673393a4f5bc5cd341f7 (diff) | |
download | rails-2794f4164fcdba2cfc704851918c6c869215c045.tar.gz rails-2794f4164fcdba2cfc704851918c6c869215c045.tar.bz2 rails-2794f4164fcdba2cfc704851918c6c869215c045.zip |
Dropped the idea of automatically routing :format for the vanilla routes -- that will be a treat for map.resources. Deprecated the name route root as it'll be used as a shortcut for map.connect '' in Rails 2.0 (Rails 1.2). Added map.root as an alias for map.connect '' (Rails 2.0)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5671 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 072ca4a865..2bf3bc9a75 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added map.root as an alias for map.connect '' [DHH] + * Added Request#format to return the format used for the request as a mime type. If no format is specified, the first Request#accepts type is used. This means you can stop using respond_to for anything else than responses [DHH]. Examples: GET /posts/5.xml | request.format => Mime::XML |