aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | Simplify the check for isDefaultPrevented.Dave Methvin2010-12-241-4/+2
| | | | | | | |
| * | | | | | | When a native browser event is bubbling up the DOM, make sure that the ↵Dave Methvin2010-12-231-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | correct isDefaultPrevented value is reflected by jQuery's Event object. Fixes #7793.
* | | | | | | | Put the split to get the list of promise methods out of the promise method ↵jaubourg2011-01-161-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | Implements joined jQuery.when statements. Makes it so calling jQuery.when ↵jaubourg2011-01-161-11/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | Setting the jsonp option to false now inhibits any url manipulation ↵jaubourg2011-01-161-11/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | regarding the callback.
* | | | | | | | The script prefilter now forces cross-domain requests type to GET.jaubourg2011-01-161-0/+1
| | | | | | | |
* | | | | | | | Makes it so a prefilter can change the type of a request.jaubourg2011-01-161-7/+7
| | | | | | | |
* | | | | | | | Removed internal dataTypes option and added headers & crossDomain options ↵jaubourg2011-01-161-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into commented out options of ajaxSettings.
* | | | | | | | Fixes #2994. Not finding a transport now fires the error callbacks and ↵jaubourg2011-01-163-111/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | Revert "Revert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer ↵jeresig2011-01-141-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | Merge branch 'master' of https://github.com/scottgonzalez/jqueryjeresig2011-01-141-2/+9
|\ \ \ \ \ \ \ \
| * | | | | | | | Avoid running jQuery.unique() for methods that are guaranteed to produce a ↵Scott González2011-01-141-2/+9
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | unique result set. Fixes #7964 - Some traversal methods perform an unnecessary uniqueness check.
* | | | | | | | Fix a strange Chrome issuewycats2011-01-141-2/+3
| | | | | | | |
* | | | | | | | added jQuery.subclassJared Grippe2011-01-141-5/+26
|/ / / / / / /
* | | | | | | Moved jQuery.ajax.prefilter and jQuery.ajax.transport to ↵jaubourg2011-01-134-12/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(...).
* | | | | | | Fixes #4964. Adds a statusCode object together with a new statusCode method ↵jaubourg2011-01-131-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | Removed xhr pooling since failing cross-domain requests leaves the xhr ↵jaubourg2011-01-131-18/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | object in an undefined state in Firefox. Also rewrote comments related to the active xhr list so that they make sense.
* | | | | | | Reworked script and xhr abort logic to take advantage of the fact jXHR.abort ↵jaubourg2011-01-132-42/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | will complete the request itself if not done already.
* | | | | | | Cleans up statusText handling and simplifies 304 notmodified logic.jaubourg2011-01-131-13/+17
| | | | | | |
* | | | | | | Removes unnecessary variables and adds much needed comments into the data ↵jaubourg2011-01-131-6/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | conversion logic in ajax.
* | | | | | | Fixes a regression by calling dataFilter with the second argument set as the ↵jaubourg2011-01-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | dataType.
* | | | | | | Gets rid of a var statement by moving variable declarations up.jaubourg2011-01-131-3/+4
| | | | | | |
* | | | | | | Script transport now uses ajaxSetup to define script dataType.jaubourg2011-01-121-3/+3
| | | | | | |
* | | | | | | AjaxSetup now uses deep extend internally to accomodate map structured options.jaubourg2011-01-121-1/+1
| | | | | | |
* | | | | | | Fixes #4897. Added ?? as a context-insensitive placeholder for the callback ↵jaubourg2011-01-121-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | name of a JSONP request. Unit tests provided.
* | | | | | | Fixes 4825. jQuery.fn.load: use the jXHR's Promise interface to get the ↵jaubourg2011-01-111-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | actual response in case ajaxSettings contains a dataFilter. Unit test added.
* | | | | | | Ensure that buildFragment clones elements properly in all browsers. Fixes ↵Colin Snover2011-01-092-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | #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.
* | | | | | | Revert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer necessary ↵Colin Snover2011-01-091-14/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | with the release of Opera 11. Fixes #7608.
* | | | | | | Ensure that the DOM element ref in an event handler is removed by cleanData ↵Dave Methvin2011-01-091-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | to avoid an IE6/7/8 memory leak. Fixes #7054.
* | | | | | | Change embedded regexp to a variable (for #6876).Dave Methvin2011-01-091-2/+3
| |_|/ / / / |/| | | | |
* | | | | | Moved unload abort code so that the event is only bound if the xhr transport ↵jaubourg2011-01-091-16/+21
| | | | | | | | | | | | | | | | | | | | | | | | is used. Fixes #5280.
* | | | | | Fixes #5812. =? will be detected even when it has been escaped during data ↵jaubourg2011-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | serialization.
* | | | | | Fixes #5803. Reworked jsonp prefilter so that it sets the dataType as jsonp ↵jaubourg2011-01-091-53/+52
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | Make it so prefilters get access to the original settings.jaubourg2011-01-091-1/+1
| | | | | |
* | | | | | Fixes #5955. Option crossDomain now forces ajax to consider a request as ↵jaubourg2011-01-091-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | cross-domain even when it is not. Useful for when servers issue redirects to cross-domain urls. Unit test added.
* | | | | | Make sure prefilters have been called and transport has been selected before ↵jaubourg2011-01-091-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | sending any global event (in case the "global" option has been changed).
* | | | | | Fixes #7465. Reworked the regexp and associated test for cross-domain ↵jaubourg2011-01-091-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | detection so that it now includes ports. Added cross-domain detection tests for protocol, hostname and port.
* | | | | | Fixes #7868. ResponseText is now properly propagated for error callbacks.jaubourg2011-01-092-9/+12
| | | | | |
* | | | | | Fixes #7881. Setting contentType to false will prevent the Content-Type ↵jaubourg2011-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | header from being sent. Unit test added.
* | | | | | Added a simple cache for xhr objects in the xhr transport.jaubourg2011-01-091-1/+8
| | | | | |
* | | | | | Renamed "complete" to "done" in order to avoid conflicts with jXHR.complete.jaubourg2011-01-062-10/+10
| | | | | |
* | | | | | Fixed mixing of tabs & spaces to make JSLint happier.jaubourg2011-01-061-4/+4
| | | | | |
* | | | | | Renamed src/transports to src/ajax (in case we need prefilters in the future ↵jaubourg2011-01-063-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | and to avoid a separate prefilters directory).
* | | | | | Cleaning up trailing whitespace again.Colin Snover2011-01-055-226/+226
| | | | | |
* | | | | | Revert "Register as a CommonJS async module if in that kind of environment. ↵wycats2011-01-051-5/+0
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #7102." This reverts commit 6ffa730721a8ebcd128f3dc202706e46d9cfe249. Conflicts: src/core.js
* | | | | "then" renamed "complete" and new "then" method defined using "complete" and ↵jaubourg2011-01-052-22/+26
| | | | | | | | | | | | | | | | | | | | "fail" internally. The API is still symetrical (complete/fail), still promotes AOP but is also now Promise/A compliant. Changed unit tests and ajax module accordingly.
* | | | | When serializing text, encode all line breaks as CRLF pairs per the ↵Dave Methvin2010-12-311-2/+2
| | | | | | | | | | | | | | | | | | | | application/x-www-form-urlencoded specification. Fixes #6876.
* | | | | Simplified the way a Promise is tested for (removed promiseMarker). Removed ↵jaubourg2010-12-311-29/+19
| | | | | | | | | | | | | | | | | | | | isCancelled helper method from _Deferred, wasn't used nor tested. Reworked jQuery.Deferred and removed unnecessary variables. Also ensured a Promise will return itself when asked for a Promise. Finally, the jQuery.when tests have been revamped.
* | | | | Revised conversion logic to handle converter equal to true properly.jaubourg2010-12-311-14/+19
| | | | |
* | | | | Introduced a new promise method on deferreds that returns an immutable ↵jaubourg2010-12-312-17/+20
| | | | | | | | | | | | | | | | | | | | object (exposing then, fail, isResolved, isRejected and promise itself only). Remove $.isDeferred and moved logic directly into $.when. Made sure $.when returns a promise by using promise(). Used promise() in ajax code too.