diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-19 16:34:44 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-19 16:34:44 +0000 |
commit | 77af61be40256d1e9e238d093bbd1ffb95263c67 (patch) | |
tree | 391d30dbf5998f9948db6b686bad1683e977a710 /actionpack/CHANGELOG | |
parent | 6f34400086857bf1ed790e8a46f10be5debe5d53 (diff) | |
download | rails-77af61be40256d1e9e238d093bbd1ffb95263c67.tar.gz rails-77af61be40256d1e9e238d093bbd1ffb95263c67.tar.bz2 rails-77af61be40256d1e9e238d093bbd1ffb95263c67.zip |
Added xml_http_request/xhr method for simulating XMLHttpRequest in functional tests #1151 [Sam Stephenson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1230 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index c263f0700d..ae5750f6d5 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,10 @@ -*SVN* +*1.8.1* (20th April, 2005) + +* Added xml_http_request/xhr method for simulating XMLHttpRequest in functional tests #1151 [Sam Stephenson]. Example: + + xhr :post, :index + +* Fixed that Ajax.Base.options.asynchronous wasn't being respected in Ajax.Request (thanks Jon Casey) * Fixed that :get, :post, and the others should take a flash array as the third argument just like process #1144 [rails@cogentdude.com] @@ -47,7 +53,7 @@ * Fixed that you can now pass an alternative :href option to link_to_function/remote in order to point to somewhere other than # if the javascript fails or is turned off. You can do the same with form_remote_tag by passing in :action. #1113 [Sam Stephenson] -* Fixed DateHelper to return values on the option tags such that they'll work properly in IE with form_remote_tag #1024 [rscottmace@gmail.com] +* Fixed DateHelper to return values on the option tags such that they'll work properly in IE with form_remote_tag #1024 [Scott Raymond] * Fixed FormTagHelper#check_box to respect checked #1049 [DelynnB] |