aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-05-17 20:48:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-05-17 20:48:47 +0000
commitebee0a742d40f87bb9b78d5d88393c341761cfad (patch)
tree2b1361a3fee810e80ee735bf4dfb7b62bb11ab1e /actionpack/CHANGELOG
parent4d2b2971583f86e2e2a2c7e9c917292bcdd87e6b (diff)
downloadrails-ebee0a742d40f87bb9b78d5d88393c341761cfad.tar.gz
rails-ebee0a742d40f87bb9b78d5d88393c341761cfad.tar.bz2
rails-ebee0a742d40f87bb9b78d5d88393c341761cfad.zip
Added url_for usage on render :location, which allows for record identification [DHH] (still need to figure out why that test doesnt pass, seems like a test issue)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6750 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 90e5b6e975..7d7ba465f1 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,11 @@
*SVN*
+* Added url_for usage on render :location, which allows for record identification [DHH]. Example:
+
+ render :xml => person, :status => :created, :location => person
+
+ ...expands the location to person_url(person).
+
* Introduce the request.body stream. Lazy-read to parse parameters rather than always setting RAW_POST_DATA. Reduces the memory footprint of large binary PUT requests. [Jeremy Kemper]
* Add some performance enhancements to ActionView.