aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-12-25 23:01:17 +0000
committerPratik Naik <pratiknaik@gmail.com>2008-12-25 23:05:34 +0000
commitcd1d6e8768ae13b11bc343701037b20ad35e6f1e (patch)
treeb400f930c3ca31a26c41ab0d30c4283dc17b2d79 /actionpack/CHANGELOG
parentd67e03871eabb912434dafac3eeb8e6ea7c5585f (diff)
downloadrails-cd1d6e8768ae13b11bc343701037b20ad35e6f1e.tar.gz
rails-cd1d6e8768ae13b11bc343701037b20ad35e6f1e.tar.bz2
rails-cd1d6e8768ae13b11bc343701037b20ad35e6f1e.zip
Make ActionController#render(string) work as a shortcut for render :action => string. [#1435]
Examples: # Instead of render(:action => 'other_action') render('other_action') Note : Argument must not have any '/'
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG9
1 files changed, 6 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 6badb412f8..51afa508df 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,13 +1,16 @@
*2.3.0 [Edge]*
-* Make ActionController#render(string) work as a shortcut for render :file/:template => string. [#1435] [Pratik Naik] Examples:
+* Make ActionController#render(string) work as a shortcut for render :file/:template/:action => string. [#1435] [Pratik Naik] Examples:
- # Instead of render(:file => '/Users/lifo/home.html.erb')
- render('/Users/lifo/home.html.erb') # argument must begin with a '/'
+ # Instead of render(:action => 'other_action')
+ render('other_action') # argument has no '/'
# Instead of render(:template => 'controller/action')
render('controller/action') # argument must not begin with a '/', but contain a '/'
+ # Instead of render(:file => '/Users/lifo/home.html.erb')
+ render('/Users/lifo/home.html.erb') # argument must begin with a '/'
+
* Add :prompt option to date/time select helpers. #561 [Sam Oliver]
* Fixed that send_file shouldn't set an etag #1578 [Hongli Lai]