aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorTobias Lütke <tobias.luetke@gmail.com>2006-12-07 22:12:48 +0000
committerTobias Lütke <tobias.luetke@gmail.com>2006-12-07 22:12:48 +0000
commit2f9d44e50beb7c51fd26bf900c4d18986c9ab754 (patch)
tree39cefc61f319902a016056620cee88bbfe67daf7 /actionpack/CHANGELOG
parent90179a9ba5622075d150b4decfe9716e0424d380 (diff)
downloadrails-2f9d44e50beb7c51fd26bf900c4d18986c9ab754.tar.gz
rails-2f9d44e50beb7c51fd26bf900c4d18986c9ab754.tar.bz2
rails-2f9d44e50beb7c51fd26bf900c4d18986c9ab754.zip
Improved auto_link to match more valid urls correctly
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5704 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index a72715e0e5..d9ba19526b 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Improved auto_link to match more valid urls correctly [Tobias Luetke]
+
* Add singleton resources. [Rick Olson]
map.resource :account
@@ -7,7 +9,7 @@
GET /account
GET /account;edit
UPDATE /account
- DELEE /account
+ DELETE /account
* respond_to recognizes JSON. render :json => @person.to_json automatically sets the content type and takes a :callback option to specify a client-side function to call using the rendered JSON as an argument. #4185 [Scott Raymond, eventualbuddha]
# application/json response with body 'Element.show({:name: "David"})'