aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-10-13 19:52:37 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-10-13 19:52:37 +0200
commit1abdc8752d7fbc0733da763e751a2671db42961a (patch)
treea5d14b25fde2500f79326579d82708e9224e20b8 /actionpack/CHANGELOG
parent691aa20280456c332bfaaf69b58adc86fd86a2b8 (diff)
downloadrails-1abdc8752d7fbc0733da763e751a2671db42961a.tar.gz
rails-1abdc8752d7fbc0733da763e751a2671db42961a.tar.bz2
rails-1abdc8752d7fbc0733da763e751a2671db42961a.zip
Added inline builder yield to atom_feed_helper tags where appropriate (Sam Ruby) [#8994 status:committed]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG8
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 4de93a10c4..c68bfc753c 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,13 @@
*Edge*
+* Added inline builder yield to atom_feed_helper tags where appropriate [Sam Ruby]. Example:
+
+ entry.summary :type => 'xhtml' do |xhtml|
+ xhtml.p pluralize(order.line_items.count, "line item")
+ xhtml.p "Shipped to #{order.address}"
+ xhtml.p "Paid by #{order.pay_type}"
+ end
+
* Make PrototypeHelper#submit_to_remote a wrapper around PrototypeHelper#button_to_remote. [Tarmo Tänav]
* Set HttpOnly for the cookie session store's cookie. #1046