From da257eb81ba1eab76ef2c1a256916193858418d4 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 30 Apr 2007 01:17:56 +0000 Subject: Added the first part of Simply Helpful to core. The rest is pending a clean integartion of polymorphic urls [DHH] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6633 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/CHANGELOG | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'actionpack/CHANGELOG') diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 9a676d5d8b..6142b42c0d 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,20 @@ *SVN* +* Added RecordTagHelper for using RecordIdentifier conventions on divs and other container elements [DHH]. Example: + + <% div_for(post) do %>
+ <%= post.body %> What a wonderful world! + <% end %>
+ +* Added page[record] accessor to JavaScriptGenerator that relies on RecordIdentifier to find the right dom id [DHH]. Example: + + format.js do + # Calls: new Effect.fade('post_45'); + render(:update) { |page| page[post].visual_effect(:fade) } + end + +* Added RecordIdentifier to enforce view conventions on records for dom ids, classes, and partial paths [DHH] + * Added map.namespace to deal with the common situation of admin sections and the like [DHH] Before: -- cgit v1.2.3