diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-03-08 05:21:27 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-03-08 05:21:27 +0000 |
commit | 043bee3338c83b0c409b5217d2f83aa732c0871a (patch) | |
tree | 6695d3bb45f03fc78ddb3dd2cf973824641035de /actionpack/CHANGELOG | |
parent | 3c78d0b1ebfa87dfb80b8ac005554ece49cf2e34 (diff) | |
download | rails-043bee3338c83b0c409b5217d2f83aa732c0871a.tar.gz rails-043bee3338c83b0c409b5217d2f83aa732c0871a.tar.bz2 rails-043bee3338c83b0c409b5217d2f83aa732c0871a.zip |
Re-added mixed-in helper methods for the JavascriptGenerator. Moved JavascriptGenerators methods to a module that is mixed in after the helpers are added. Also fixed that variables set in the enumeration methods like #collect are set correctly. Documentation added for the enumeration methods [Rick Olson].
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3814 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 7ebfb81a1a..ac34e2ef21 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,12 @@ *SVN* +* Re-added mixed-in helper methods for the JavascriptGenerator. Moved JavascriptGenerators methods to a module that is mixed in after the helpers are added. Also fixed that variables set in the enumeration methods like #collect are set correctly. Documentation added for the enumeration methods [Rick Olson]. Examples: + + page.select('#items li').collect('items') do |element| + element.hide + end + # => var items = $$('#items li').collect(function(value, index) { return value.hide(); }); + * Added plugin support for parameter parsers, which allows for better support for REST web services. By default, posts submitted with the application/xml content type is handled by creating a XmlSimple hash with the same name as the root element of the submitted xml. More handlers can easily be registered like this: # Assign a new param parser to a new content type |