diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-05-19 16:00:04 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-05-19 16:00:04 +0000 |
commit | aa20834222e829406bf45b133e6413bedf702229 (patch) | |
tree | e3b8cc49aad05a23675f53e892405b3c23dd8ec9 /actionpack/CHANGELOG | |
parent | 68cdcf5ed34b317ae170a3a2b8d479c6e7fe0a5b (diff) | |
download | rails-aa20834222e829406bf45b133e6413bedf702229.tar.gz rails-aa20834222e829406bf45b133e6413bedf702229.tar.bz2 rails-aa20834222e829406bf45b133e6413bedf702229.zip |
Added accessors to logger, params, response, session, and headers from the view, so you can write <% logger.info "stuff" %> instead of <% @logger.info "others" %> -- more consistent with the preferred way of accessing these attributes and collections from the controller
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1307 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 0c24bf93e0..01f3f700c9 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added accessors to logger, params, response, session, and headers from the view, so you can write <% logger.info "stuff" %> instead of <% @logger.info "others" %> -- more consistent with the preferred way of accessing these attributes and collections from the controller + * Added support for POST data in form of YAML or XML, which is controller through the X-POST_DATA_MARSHAL header. Example request: X-POST_DATA_MARSHAL: xml |