jquery.git
13 years agoMove jQuery(...) selector speed-up logic into Sizzle(...) qSA handling. Additionally...
jeresig [Thu, 20 Jan 2011 16:34:35 +0000 (11:34 -0500)]
Move jQuery(...) selector speed-up logic into Sizzle(...) qSA handling. Additionally add in a new catch for Sizzle('.class') (avoid using qSA and use getElementsByClassName instead, where applicable).

13 years agoRevises the way arguments are handled in ajax.
jaubourg [Thu, 20 Jan 2011 15:22:36 +0000 (16:22 +0100)]
Revises the way arguments are handled in ajax.

13 years agoMakes sure statusCode callbacks are ordered in the same way success and error callbac...
jaubourg [Thu, 20 Jan 2011 14:39:30 +0000 (15:39 +0100)]
Makes sure statusCode callbacks are ordered in the same way success and error callbacks are. Unit tests added.

13 years agoCleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. Removes...
jaubourg [Thu, 20 Jan 2011 03:12:15 +0000 (04:12 +0100)]
Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added).

13 years agoRework unit tests to check actual result elements.
Dave Methvin [Thu, 20 Jan 2011 02:02:46 +0000 (21:02 -0500)]
Rework unit tests to check actual result elements.

13 years agoMoves active counter test after all other ajax tests where it should be.
jaubourg [Wed, 19 Jan 2011 17:44:21 +0000 (18:44 +0100)]
Moves active counter test after all other ajax tests where it should be.

13 years agoRevised the Nokia support fallback. It turns out that Nokia supports the documentElem...
scottjehl [Wed, 19 Jan 2011 17:40:32 +0000 (12:40 -0500)]
Revised the Nokia support fallback. It turns out that Nokia supports the documentElement property but does not define document.compatMode. Adding this third fallback allows Nokia to run jQuery error-free and return proper values for window width and height.

13 years agoMoves things around to make jsLint happier.
jaubourg [Wed, 19 Jan 2011 17:36:42 +0000 (18:36 +0100)]
Moves things around to make jsLint happier.

13 years agoFixes crossDomain test so that it assumes port to be 80 for http and 443 for https...
jaubourg [Wed, 19 Jan 2011 17:35:40 +0000 (18:35 +0100)]
Fixes crossDomain test so that it assumes port to be 80 for http and 443 for https when it is not provided.

13 years agoMerge remote branch 'upstream/master'
scottjehl [Wed, 19 Jan 2011 17:32:57 +0000 (12:32 -0500)]
Merge remote branch 'upstream/master'

13 years agoMoves determineDataType into ajaxSettings so that it is accessible to transports...
jaubourg [Wed, 19 Jan 2011 17:16:29 +0000 (18:16 +0100)]
Moves determineDataType into ajaxSettings so that it is accessible to transports without the need for a second argument and so that we can now pass the original options to the transport instead. Also ensures the original options are actually propagated to prefilters (they were not).

13 years agoRe-adds hastily removed variable and simplifies statusCode based callbacks handling.
jaubourg [Wed, 19 Jan 2011 16:51:33 +0000 (17:51 +0100)]
Re-adds hastily removed variable and simplifies statusCode based callbacks handling.

13 years agoUse undefined instead of 0 to deference transport for clarity.
jaubourg [Wed, 19 Jan 2011 16:24:56 +0000 (17:24 +0100)]
Use undefined instead of 0 to deference transport for clarity.

13 years agoRemoves unnecessary test and ensures getResponseHeader returns null if the header...
jaubourg [Wed, 19 Jan 2011 16:21:51 +0000 (17:21 +0100)]
Removes unnecessary test and ensures getResponseHeader returns null if the header does not exist.

13 years agoRevised how context is determined and removed unnecessary "parameter as variable...
jaubourg [Wed, 19 Jan 2011 16:06:33 +0000 (17:06 +0100)]
Revised how context is determined and removed unnecessary "parameter as variable" trick.

13 years agoMoved ajaxSettings.xhr definition together with support.ajax and support.cors determi...
jaubourg [Wed, 19 Jan 2011 15:55:26 +0000 (16:55 +0100)]
Moved ajaxSettings.xhr definition together with support.ajax and support.cors determination into ajax/xhr.js.

13 years agoRevert uglify.js to original and handle build changes in make file
Dan Heberden [Wed, 19 Jan 2011 10:11:43 +0000 (02:11 -0800)]
Revert uglify.js to original and handle build changes in make file

13 years agoRemove an unused regex and optimize character escape regex usage.
Anton M [Tue, 18 Jan 2011 23:15:28 +0000 (00:15 +0100)]
Remove an unused regex and optimize character escape regex usage.

13 years agoMerge branch 'master' of https://github.com/mathiasbynens/jquery into mathiasbynens...
John Resig [Tue, 18 Jan 2011 23:11:54 +0000 (18:11 -0500)]
Merge branch 'master' of https://github.com/mathiasbynens/jquery into mathiasbynens-master

13 years agoMerge branch 'chrome-slice-comment' of https://github.com/ajpiano/jquery into ajpiano...
John Resig [Tue, 18 Jan 2011 23:07:37 +0000 (18:07 -0500)]
Merge branch 'chrome-slice-comment' of https://github.com/ajpiano/jquery into ajpiano-chrome-slice-comment

13 years agoWeird, not sure why I got an exec error before - doesn't seem to be needed.
John Resig [Tue, 18 Jan 2011 23:06:44 +0000 (18:06 -0500)]
Weird, not sure why I got an exec error before - doesn't seem to be needed.

13 years agoAdd missing line break after copyright header and trailing semicolon at the end of...
Mathias Bynens [Tue, 18 Jan 2011 22:14:32 +0000 (23:14 +0100)]
Add missing line break after copyright header and trailing semicolon at the end of the minified version.

13 years agoMake sure that the UglifyJS file is executable.
John Resig [Tue, 18 Jan 2011 21:40:42 +0000 (16:40 -0500)]
Make sure that the UglifyJS file is executable.

13 years agoAdd another tweak for handling CSP - we need to make sure that we don't trigger any...
John Resig [Tue, 18 Jan 2011 20:13:09 +0000 (15:13 -0500)]
Add another tweak for handling CSP - we need to make sure that we don't trigger any eval on load (not sure if it's the best tweak, definitely not ideal). Add a test page as well so that it's easier to catch problem.

13 years agoMerge branch 'master' of https://github.com/russtacular/jquery into russtacular-master
John Resig [Tue, 18 Jan 2011 19:20:05 +0000 (14:20 -0500)]
Merge branch 'master' of https://github.com/russtacular/jquery into russtacular-master

13 years agoClarify cygwin instructions slightly and swap the order of arguments to which in...
Colin Snover [Tue, 18 Jan 2011 03:06:57 +0000 (21:06 -0600)]
Clarify cygwin instructions slightly and swap the order of arguments to which in Makefile because of a bug in current versions of MSYS that causes only the first argument to /bin/which to be searched.

13 years agoUpdate Makefile to use either nodejs or node, whichever exists (Debian uses nodejs).
Colin Snover [Tue, 18 Jan 2011 01:04:32 +0000 (19:04 -0600)]
Update Makefile to use either nodejs or node, whichever exists (Debian uses nodejs).

13 years agoUpdate unit test for #7608 which was leaking timers.
rwldrn [Tue, 18 Jan 2011 00:55:40 +0000 (18:55 -0600)]
Update unit test for #7608 which was leaking timers.

13 years agoReplace build system with a faster new one that uses Node and UglifyJS and generates...
Colin Snover [Tue, 18 Jan 2011 00:49:24 +0000 (18:49 -0600)]
Replace build system with a faster new one that uses Node and UglifyJS and generates smaller minified files. Also removes builds through rake/ant since having 3 different build systems was too much to maintain (make was the only one consistently kept up-to-date). Fixes #7973.

13 years agoDisabled a broken test for now, until WebKit browsers become more current.
jeresig [Mon, 17 Jan 2011 23:12:42 +0000 (18:12 -0500)]
Disabled a broken test for now, until WebKit browsers become more current.

13 years agoAccidentally removed the module teardown code.
jeresig [Mon, 17 Jan 2011 23:08:51 +0000 (18:08 -0500)]
Accidentally removed the module teardown code.

13 years agoOpera was falling back to undefined, which it didn't appreciate.
jeresig [Mon, 17 Jan 2011 23:07:52 +0000 (18:07 -0500)]
Opera was falling back to undefined, which it didn't appreciate.

13 years agoMerge branch 'master' of github.com:jquery/jquery
jeresig [Mon, 17 Jan 2011 22:44:54 +0000 (17:44 -0500)]
Merge branch 'master' of github.com:jquery/jquery

13 years agoFixed a couple issues with escaping of attribute values in selectors. Fixes #6093.
jeresig [Mon, 17 Jan 2011 22:44:42 +0000 (17:44 -0500)]
Fixed a couple issues with escaping of attribute values in selectors. Fixes #6093.

13 years agoFix tabs vs spaces in initial workaround commit
adam j. sontag [Mon, 17 Jan 2011 22:20:37 +0000 (17:20 -0500)]
Fix tabs vs spaces in initial workaround commit

13 years agoshorten the SHA
adam j. sontag [Mon, 17 Jan 2011 22:08:44 +0000 (17:08 -0500)]
shorten the SHA

13 years agoAdd link to chrome issue ticket
adam j. sontag [Mon, 17 Jan 2011 22:03:45 +0000 (17:03 -0500)]
Add link to chrome issue ticket

13 years agoMerge branch 'master' of github.com:jquery/jquery into jquery-master
Colin Snover [Mon, 17 Jan 2011 21:32:57 +0000 (15:32 -0600)]
Merge branch 'master' of github.com:jquery/jquery into jquery-master

13 years agoMerge in data_nocollide branch. Fixes #6968, improves unit testing framework checks...
Colin Snover [Mon, 17 Jan 2011 21:31:43 +0000 (15:31 -0600)]
Merge in data_nocollide branch. Fixes #6968, improves unit testing framework checks for leaky stuff.

13 years agoDefer scriptEval test until first use to prevent Content Security Policy inline-scrip...
Brandon Sterne [Mon, 17 Jan 2011 21:31:12 +0000 (16:31 -0500)]
Defer scriptEval test until first use to prevent Content Security Policy inline-script violations from occuring. Fixes #7371.

13 years agoIntroduce a temporary hack to allow jQuery.fn.data("events") to continue to work...
Colin Snover [Mon, 17 Jan 2011 21:22:49 +0000 (15:22 -0600)]
Introduce a temporary hack to allow jQuery.fn.data("events") to continue to work. This will be going away in 1.6. More information will be available in the 1.5 release notes.

13 years agoAdd a comment to explain (and enforce the temporary-ness of) an extra line of code...
adam j. sontag [Mon, 17 Jan 2011 21:10:14 +0000 (16:10 -0500)]
Add a comment to explain (and enforce the temporary-ness of) an extra line of code added to workaround a Chrome 10 bug

13 years agoMerge branch '7608' of https://github.com/rwldrn/jquery into rwldrn-7608
jeresig [Mon, 17 Jan 2011 20:50:20 +0000 (15:50 -0500)]
Merge branch '7608' of https://github.com/rwldrn/jquery into rwldrn-7608

13 years agoMerging pull request 183 for #7793.
jeresig [Mon, 17 Jan 2011 20:45:07 +0000 (15:45 -0500)]
Merging pull request 183 for #7793.

13 years agoAdded unit tests to check and demonstrate new jQuery.Deferred() works.
jaubourg [Mon, 17 Jan 2011 16:52:30 +0000 (17:52 +0100)]
Added unit tests to check and demonstrate new jQuery.Deferred() works.

13 years agoPut the split to get the list of promise methods out of the promise method itself...
jaubourg [Sun, 16 Jan 2011 17:33:32 +0000 (18:33 +0100)]
Put the split to get the list of promise methods out of the promise method itself and also switched from jQuery.each to a while loop to remove as much overhead as possible. Thanks go to scott_gonzalez for reminding me of this.

13 years agoImplements joined jQuery.when statements. Makes it so calling jQuery.when with no...
jaubourg [Sun, 16 Jan 2011 16:41:39 +0000 (17:41 +0100)]
Implements joined jQuery.when statements. Makes it so calling jQuery.when with no parameter returns a resolved promise. Ensures promise method on promises supports the promise(obj) signature. Ensures a deferred and its promise always return the same promise (itself for the promise). Unit tests provided.

13 years agoFixed the ajax test regarding the jsonp option set to false and added a test to contr...
jaubourg [Sun, 16 Jan 2011 04:36:20 +0000 (05:36 +0100)]
Fixed the ajax test regarding the jsonp option set to false and added a test to control the prefilter actually does not tamper with the url.

13 years agoRevised jsonp unit tests and added a test for when the jsonp option is set to false.
jaubourg [Sun, 16 Jan 2011 04:27:16 +0000 (05:27 +0100)]
Revised jsonp unit tests and added a test for when the jsonp option is set to false.

13 years agoSetting the jsonp option to false now inhibits any url manipulation regarding the...
jaubourg [Sun, 16 Jan 2011 04:26:46 +0000 (05:26 +0100)]
Setting the jsonp option to false now inhibits any url manipulation regarding the callback.

13 years agoThe script prefilter now forces cross-domain requests type to GET.
jaubourg [Sun, 16 Jan 2011 04:25:45 +0000 (05:25 +0100)]
The script prefilter now forces cross-domain requests type to GET.

13 years agoMakes it so a prefilter can change the type of a request.
jaubourg [Sun, 16 Jan 2011 04:24:14 +0000 (05:24 +0100)]
Makes it so a prefilter can change the type of a request.

13 years agoRemoved internal dataTypes option and added headers & crossDomain options into commen...
jaubourg [Sun, 16 Jan 2011 02:05:03 +0000 (03:05 +0100)]
Removed internal dataTypes option and added headers & crossDomain options into commented out options of ajaxSettings.

13 years agoFixes #2994. Not finding a transport now fires the error callbacks and doesn't make...
jaubourg [Sun, 16 Jan 2011 01:57:39 +0000 (02:57 +0100)]
Fixes #2994. Not finding a transport now fires the error callbacks and doesn't make ajax return false. Had to revise how jsonp and script prefilters & transports work (better separation of concerns). Also took the opportunity to revise jXHR getRequestHeader and abort methods and enabled early transport garbage collection when the request completes.

13 years agoUpdate test case to feature-detect Opera's lack of defaultPrevented and skip the...
Dave Methvin [Sat, 15 Jan 2011 15:24:13 +0000 (10:24 -0500)]
Update test case to feature-detect Opera's lack of defaultPrevented and skip the test for it.

13 years agoUpdating the source version to 1.5pre.
jeresig [Fri, 14 Jan 2011 19:56:37 +0000 (14:56 -0500)]
Updating the source version to 1.5pre.

13 years agoTagging the 1.5b1 release.
jeresig [Fri, 14 Jan 2011 19:56:21 +0000 (14:56 -0500)]
Tagging the 1.5b1 release.

13 years agoRevert "Revert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer necessary...
jeresig [Fri, 14 Jan 2011 19:12:29 +0000 (14:12 -0500)]
Revert "Revert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer necessary with the release of Opera 11. Fixes #7608." We will be continuing to support Opera 10.6 in jQuery 1.5.

This reverts commit 012f0c3b4bd3d04c2f3e1ea80fc1230901d607d9.

13 years agoSo embarrassing :(
wycats [Fri, 14 Jan 2011 17:46:14 +0000 (12:46 -0500)]
So embarrassing :(

13 years agoMerge branch 'master' of https://github.com/scottgonzalez/jquery
jeresig [Fri, 14 Jan 2011 16:23:05 +0000 (11:23 -0500)]
Merge branch 'master' of https://github.com/scottgonzalez/jquery

13 years agoFix a strange Chrome issue
wycats [Fri, 14 Jan 2011 16:21:45 +0000 (11:21 -0500)]
Fix a strange Chrome issue

13 years agoFix a failing subclass test due to a change in master
wycats [Fri, 14 Jan 2011 16:17:32 +0000 (11:17 -0500)]
Fix a failing subclass test due to a change in master

13 years agoOverwrite CRLF with LF
wycats [Fri, 14 Jan 2011 15:36:45 +0000 (10:36 -0500)]
Overwrite CRLF with LF

13 years agoadded jQuery.subclass
Jared Grippe [Sun, 10 Oct 2010 00:32:54 +0000 (17:32 -0700)]
added jQuery.subclass

13 years agoAvoid running jQuery.unique() for methods that are guaranteed to produce a unique...
Scott González [Fri, 14 Jan 2011 14:55:40 +0000 (09:55 -0500)]
Avoid running jQuery.unique() for methods that are guaranteed to produce a unique result set. Fixes #7964 - Some traversal methods perform an unnecessary uniqueness check.

13 years agoset name to lowercase, since it's passed as initial caps
scottjehl [Thu, 13 Jan 2011 19:20:00 +0000 (14:20 -0500)]
set name to lowercase, since it's passed as initial caps

13 years agoMerge branch 'master' of https://github.com/jquery/jquery
scottjehl [Thu, 13 Jan 2011 19:14:04 +0000 (14:14 -0500)]
Merge branch 'master' of https://github.com/jquery/jquery

13 years agoMoved jQuery.ajax.prefilter and jQuery.ajax.transport to jQuery.ajaxPrefilter and...
jaubourg [Thu, 13 Jan 2011 17:33:24 +0000 (18:33 +0100)]
Moved jQuery.ajax.prefilter and jQuery.ajax.transport to jQuery.ajaxPrefilter and jQuery.ajaxTransport so that proxying the ajax method doesn't turn into a nightmare. Thanks go to scott_gonzalez and DaveMethvin for pointing out the issue. Also made ajaxSetup return "this" to enable chainable definitions -- jQuery.ajaxSetup(...).ajaxPrefilter(...).ajaxTransport(...).

13 years agoFixes #4964. Adds a statusCode object together with a new statusCode method on the...
jaubourg [Thu, 13 Jan 2011 16:01:25 +0000 (17:01 +0100)]
Fixes #4964. Adds a statusCode object together with a new statusCode method on the jXHR object (deferred behaviour). They accept a map of statusCode/callback(s). Callbacks are fired when the status code of the response correponds to the key (as a success or an error callback depending on how the request completed). Unit tests added.

13 years agoRemoved xhr pooling since failing cross-domain requests leaves the xhr object in...
jaubourg [Thu, 13 Jan 2011 15:58:16 +0000 (16:58 +0100)]
Removed xhr pooling since failing cross-domain requests leaves the xhr object in an undefined state in Firefox. Also rewrote comments related to the active xhr list so that they make sense.

13 years agoReworked script and xhr abort logic to take advantage of the fact jXHR.abort will...
jaubourg [Thu, 13 Jan 2011 01:05:39 +0000 (02:05 +0100)]
Reworked script and xhr abort logic to take advantage of the fact jXHR.abort will complete the request itself if not done already.

13 years agoCleans up statusText handling and simplifies 304 notmodified logic.
jaubourg [Thu, 13 Jan 2011 00:43:42 +0000 (01:43 +0100)]
Cleans up statusText handling and simplifies 304 notmodified logic.

13 years agoRemoves unnecessary variables and adds much needed comments into the data conversion...
jaubourg [Thu, 13 Jan 2011 00:18:46 +0000 (01:18 +0100)]
Removes unnecessary variables and adds much needed comments into the data conversion logic in ajax.

13 years agoFixes a regression by calling dataFilter with the second argument set as the dataType.
jaubourg [Wed, 12 Jan 2011 23:49:58 +0000 (00:49 +0100)]
Fixes a regression by calling dataFilter with the second argument set as the dataType.

13 years agoGets rid of a var statement by moving variable declarations up.
jaubourg [Wed, 12 Jan 2011 23:41:10 +0000 (00:41 +0100)]
Gets rid of a var statement by moving variable declarations up.

13 years agoScript transport now uses ajaxSetup to define script dataType.
jaubourg [Wed, 12 Jan 2011 17:54:15 +0000 (18:54 +0100)]
Script transport now uses ajaxSetup to define script dataType.

13 years agoAjaxSetup now uses deep extend internally to accomodate map structured options.
jaubourg [Wed, 12 Jan 2011 17:53:00 +0000 (18:53 +0100)]
AjaxSetup now uses deep extend internally to accomodate map structured options.

13 years agoFixes #4897. Added ?? as a context-insensitive placeholder for the callback name...
jaubourg [Wed, 12 Jan 2011 17:36:00 +0000 (18:36 +0100)]
Fixes #4897. Added ?? as a context-insensitive placeholder for the callback name of a JSONP request. Unit tests provided.

13 years agoYet another missing semicolon!
jaubourg [Tue, 11 Jan 2011 22:43:02 +0000 (23:43 +0100)]
Yet another missing semicolon!

13 years agoFixes #6230. Added a unit test to control that, since the ajax rewrite, setting the...
jaubourg [Tue, 11 Jan 2011 22:01:18 +0000 (23:01 +0100)]
Fixes #6230. Added a unit test to control that, since the ajax rewrite, setting the Accept header actually replaced the previous value and didn't append to it (tested in Safari 4.0.4 for which the problem was specifically reported).

13 years agoFixes 4825. jQuery.fn.load: use the jXHR's Promise interface to get the actual respon...
jaubourg [Tue, 11 Jan 2011 19:02:33 +0000 (20:02 +0100)]
Fixes 4825. jQuery.fn.load: use the jXHR's Promise interface to get the actual response in case ajaxSettings contains a dataFilter. Unit test added.

13 years agowhitespace fixes in unit tests
rwldrn [Mon, 10 Jan 2011 18:17:08 +0000 (13:17 -0500)]
whitespace fixes in unit tests

13 years agoMerge branch 'master' of github.com:jquery/jquery into jquery-master
Colin Snover [Mon, 10 Jan 2011 00:41:15 +0000 (18:41 -0600)]
Merge branch 'master' of github.com:jquery/jquery into jquery-master

13 years agoEnsure that buildFragment clones elements properly in all browsers. Fixes #3879,...
Colin Snover [Mon, 10 Jan 2011 00:38:44 +0000 (18:38 -0600)]
Ensure that buildFragment clones elements properly in all browsers. Fixes #3879, #6655. Also improves form element clone tests and fixes bugs in $.fn.clone exposed by these new test cases related to the values of checkboxes and radio buttons in IE.

13 years agoFixes a race condition in JSONP Local test.
jaubourg [Sun, 9 Jan 2011 23:52:20 +0000 (00:52 +0100)]
Fixes a race condition in JSONP Local test.

13 years agoRevert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer necessary with...
Colin Snover [Sun, 9 Jan 2011 23:34:58 +0000 (17:34 -0600)]
Revert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer necessary with the release of Opera 11. Fixes #7608.

13 years agoEnsure that the DOM element ref in an event handler is removed by cleanData to avoid...
Dave Methvin [Sun, 9 Jan 2011 22:25:44 +0000 (16:25 -0600)]
Ensure that the DOM element ref in an event handler is removed by cleanData to avoid an IE6/7/8 memory leak. Fixes #7054.

13 years agoChange embedded regexp to a variable (for #6876).
Dave Methvin [Sun, 9 Jan 2011 22:22:11 +0000 (16:22 -0600)]
Change embedded regexp to a variable (for #6876).

13 years agoUpdate unit tests with a leak detection mechanism for the various jQuery globals...
Colin Snover [Sun, 9 Jan 2011 21:58:47 +0000 (15:58 -0600)]
Update unit tests with a leak detection mechanism for the various jQuery globals and fix all leaks in the tests.

13 years agoFix jQuery.queue leaks empty queues.
Colin Snover [Sun, 9 Jan 2011 21:58:23 +0000 (15:58 -0600)]
Fix jQuery.queue leaks empty queues.

13 years agoFix domManip leaks the first element when appending elements to multiple other elements.
Colin Snover [Sun, 9 Jan 2011 21:56:40 +0000 (15:56 -0600)]
Fix domManip leaks the first element when appending elements to multiple other elements.

13 years agoChange the way jQuery.data works so that there is no longer a chance of collision...
Colin Snover [Sun, 9 Jan 2011 21:52:33 +0000 (15:52 -0600)]
Change the way jQuery.data works so that there is no longer a chance of collision between user data and internal data. Fixes #6968.

13 years agoMoved unload abort code so that the event is only bound if the xhr transport is used...
jaubourg [Sun, 9 Jan 2011 21:20:58 +0000 (22:20 +0100)]
Moved unload abort code so that the event is only bound if the xhr transport is used. Fixes #5280.

13 years agoFixes #5812. =? will be detected even when it has been escaped during data serialization.
jaubourg [Sun, 9 Jan 2011 20:48:52 +0000 (21:48 +0100)]
Fixes #5812. =? will be detected even when it has been escaped during data serialization.

13 years agoFixes #5803. Reworked jsonp prefilter so that it sets the dataType as jsonp and recog...
jaubourg [Sun, 9 Jan 2011 20:19:27 +0000 (21:19 +0100)]
Fixes #5803. Reworked jsonp prefilter so that it sets the dataType as jsonp and recognizes requests with originalSettings having jsonp or jsonpCallback to be jsonp. Moved default jsonp option value into ajaxSettings. Attached the transport to "jsonp" which avoids unnecessary testing. Transport factory sets dataType back to json for proper data conversion.

13 years agoMake it so prefilters get access to the original settings.
jaubourg [Sun, 9 Jan 2011 19:31:15 +0000 (20:31 +0100)]
Make it so prefilters get access to the original settings.

13 years agoSimplified cross-domain detection tests.
jaubourg [Sun, 9 Jan 2011 16:27:29 +0000 (17:27 +0100)]
Simplified cross-domain detection tests.

13 years agoFixes #5955. Option crossDomain now forces ajax to consider a request as cross-domain...
jaubourg [Sun, 9 Jan 2011 15:50:13 +0000 (16:50 +0100)]
Fixes #5955. Option crossDomain now forces ajax to consider a request as cross-domain even when it is not. Useful for when servers issue redirects to cross-domain urls. Unit test added.

13 years agoMake sure prefilters have been called and transport has been selected before sending...
jaubourg [Sun, 9 Jan 2011 15:32:51 +0000 (16:32 +0100)]
Make sure prefilters have been called and transport has been selected before sending any global event (in case the "global" option has been changed).

13 years agoAdded a test for retrying a request on error using jQuery.ajax(this). Works as intend...
jaubourg [Sun, 9 Jan 2011 05:19:27 +0000 (06:19 +0100)]
Added a test for retrying a request on error using jQuery.ajax(this). Works as intended. Fixes #7461.