aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
Commit message (Expand)AuthorAgeFilesLines
* Makes prefilters and transport inspection more robust and uses better variabl...jaubourg2011-01-241-19/+23
* Revised internal implementation of ajaxPrefilter() and ajaxTransport(). Every...jaubourg2011-01-231-103/+80
* More code style fixes.jaubourg2011-01-231-7/+7
* Apply JQuery Core Style Guidelines to ajax.js and ajax/*.js,jaubourg2011-01-231-121/+117
* Re-organizes ajax.js: prefilters and transports are no longer stored in ajaxS...jaubourg2011-01-221-314/+261
* Replaces "text in-between" technique with a full-fledged one-level transitive...jaubourg2011-01-211-40/+65
* Moves determineResponse logic into main ajax callback. Puts responseXXX field...jaubourg2011-01-201-76/+72
* Renames Deferred's fire and fireReject methods as resolveWith and rejectWith ...jaubourg2011-01-201-3/+3
* Renames determineDataType as determineResponse. Makes it more generic as a fi...jaubourg2011-01-201-16/+15
* Revises the way arguments are handled in ajax.jaubourg2011-01-201-7/+6
* Makes sure statusCode callbacks are ordered in the same way success and error...jaubourg2011-01-201-4/+4
* Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. Remo...jaubourg2011-01-201-110/+91
* Moves things around to make jsLint happier.jaubourg2011-01-191-2/+2
* Fixes crossDomain test so that it assumes port to be 80 for http and 443 for ...jaubourg2011-01-191-2/+4
* Moves determineDataType into ajaxSettings so that it is accessible to transpo...jaubourg2011-01-191-48/+50
* Re-adds hastily removed variable and simplifies statusCode based callbacks ha...jaubourg2011-01-191-15/+16
* Use undefined instead of 0 to deference transport for clarity.jaubourg2011-01-191-1/+1
* Removes unnecessary test and ensures getResponseHeader returns null if the he...jaubourg2011-01-191-12/+7
* Revised how context is determined and removed unnecessary "parameter as varia...jaubourg2011-01-191-12/+10
* Moved ajaxSettings.xhr definition together with support.ajax and support.cors...jaubourg2011-01-191-32/+0
* 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 int...jaubourg2011-01-161-1/+2
* Fixes #2994. Not finding a transport now fires the error callbacks and doesn'...jaubourg2011-01-161-65/+77
* Moved jQuery.ajax.prefilter and jQuery.ajax.transport to jQuery.ajaxPrefilter...jaubourg2011-01-131-6/+7
* Fixes #4964. Adds a statusCode object together with a new statusCode method o...jaubourg2011-01-131-0/+27
* 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 con...jaubourg2011-01-131-6/+28
* Fixes a regression by calling dataFilter with the second argument set as the ...jaubourg2011-01-131-1/+1
* Gets rid of a var statement by moving variable declarations up.jaubourg2011-01-131-3/+4
* AjaxSetup now uses deep extend internally to accomodate map structured options.jaubourg2011-01-121-1/+1
* Fixes 4825. jQuery.fn.load: use the jXHR's Promise interface to get the actua...jaubourg2011-01-111-5/+13
* Change embedded regexp to a variable (for #6876).Dave Methvin2011-01-091-2/+3
* 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 cros...jaubourg2011-01-091-6/+9
* Make sure prefilters have been called and transport has been selected before ...jaubourg2011-01-091-3/+3
* Fixes #7465. Reworked the regexp and associated test for cross-domain detecti...jaubourg2011-01-091-2/+7
* Fixes #7868. ResponseText is now properly propagated for error callbacks.jaubourg2011-01-091-0/+5
* Fixes #7881. Setting contentType to false will prevent the Content-Type heade...jaubourg2011-01-091-1/+1
* Renamed "complete" to "done" in order to avoid conflicts with jXHR.complete.jaubourg2011-01-061-2/+2
* Cleaning up trailing whitespace again.Colin Snover2011-01-051-122/+122
* "then" renamed "complete" and new "then" method defined using "complete" and ...jaubourg2011-01-051-2/+2
* When serializing text, encode all line breaks as CRLF pairs per the applicati...Dave Methvin2010-12-311-2/+2
* 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 object...jaubourg2010-12-311-3/+4
* Renamed several ajaxSettings options. Removed cors test, fixed failing cors t...jaubourg2010-12-311-11/+11
* Revised logic in data conversion to account for when dataFilter modifies the ...jaubourg2010-12-311-2/+2
* Removed re-usability from jXHR object (no more open, send & onreadystatechang...jaubourg2010-12-311-10/+576
* Removed dataCheckers, added true as possible value for dataConverters indicat...jaubourg2010-12-311-27/+2
* Changed dataConverters key format.unknown2010-12-311-20/+5
* Rewrote the data conversion logic in ajax. Should be cleaner and faster.jaubourg2010-12-311-2/+2