Changeset 9242 for trunk/actionpack/CHANGELOG
- Timestamp:
- 04/08/08 05:05:54 (5 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r9241 r9242 1 1 *SVN* 2 3 * Automatically parse posted JSON content for Mime::JSON requests. [rick] 4 5 POST /posts 6 {"post": {"title": "Breaking News"}} 7 8 def create 9 @post = Post.create params[:post] 10 # ... 11 end 2 12 3 13 * add json_escape ERB util to escape html entities in json strings that are output in HTML pages. [rick]