aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
Commit message (Expand)AuthorAgeFilesLines
* Makes sure no unload handler is bound when not in IE. Also simplifies the who...jaubourg2011-04-211-30/+26
* (Re) Fixes #8884 in a way that keeps the format of the headers map sent to tr...jaubourg2011-04-191-1/+1
* Removes now unnecessary regexp and companion function. Fixes some spacing iss...jaubourg2011-04-151-1/+1
* Continuing to map request headers using their name in uppercase for the index...Sam Bisbee2011-04-151-1/+1
* Ensures callback placeholders are tested for and eventually replaced in data ...jaubourg2011-04-131-16/+14
* Applies exception in Style Guidelines regarding objects and functions when th...jaubourg2011-04-082-3/+3
* Fixes #8744. Makes sure script transport abort method actually removes the sc...jaubourg2011-04-041-1/+1
* Fixes #8423. Never set X-Requested-With header automagically for cross-domain...jaubourg2011-03-071-5/+6
* Removes unnecessary parenthesis from regular expression.jaubourg2011-02-241-1/+1
* Minor changes to enforce JQuery Core Style Guidelines.jaubourg2011-02-121-9/+11
* Adds missing crossDomain test.jaubourg2011-02-111-1/+1
* Fixes #8245. Ajax now ensures header names are capitalized so that non-compli...jaubourg2011-02-111-2/+2
* Simplifies status normalization in xhr transport. Local file test modified fo...jaubourg2011-02-111-29/+8
* Replaces jQuery.each loop for headers with a foreach loop.jaubourg2011-02-091-3/+3
* Fixes #8219. Introduces the mimeType option to override content-type header i...jaubourg2011-02-091-0/+5
* Makes sure xhrs are actually aborted on unload in IE. Simplifies active xhrs ...jaubourg2011-02-071-34/+26
* Fixes #8177. XHR transport now considers 304 Not Modified responses as 200 OK...jaubourg2011-02-051-0/+6
* Don't use a local copy of jQuery.ajaxSettings.isLocal anymore but use the cur...jaubourg2011-02-031-12/+5
* Stores jQuery.ajaxSettings.isLocal locally at load time so that any change to...jaubourg2011-02-031-23/+30
* Fixes #8146. Custom fields in xhrFields are now set after the XMLHttpRequest ...jaubourg2011-02-031-7/+7
* Fixes #8152 by applying the same special cases for protocol "chrome-extension...jaubourg2011-02-031-25/+23
* Fixes #8146 by introducing the xhrFields option with is a map of fieldName/fi...jaubourg2011-02-021-1/+9
* Fixes #8135. Makes sure any exception thrown by Firefox when trying to access...jaubourg2011-02-021-65/+82
* Fixes #8098. Use the fast document.head when available. Don't set unneeded "s...Mathias Bynens2011-02-021-1/+1
* Fixes #8125. Status is set to 200 for requests with status 0 when location.pr...jaubourg2011-02-011-4/+6
* Fixes #8115. Renames all references to jXHR with jqXHR in the code (like was ...jaubourg2011-02-011-2/+2
* Script dataType now supports ecmascript mimetypes.jaubourg2011-01-311-2/+2
* Makes sure jsonp callback is not left in the global namespace in case of an e...jaubourg2011-01-311-22/+15
* Fixes #8082. Text to script converter now returns text. Unit test added.jaubourg2011-01-291-1/+4
* Fixes potential collisions between jsonp requests from different jQuery insta...jaubourg2011-01-291-1/+1
* Fixes #8054 by reverting feature enhancement 5812 (4920). Regexps no longer s...jaubourg2011-01-261-1/+1
* Reworks how values of parameters passed to error callbacks are determined. Fi...jaubourg2011-01-251-6/+3
* More code style fixes.jaubourg2011-01-232-4/+3
* Apply JQuery Core Style Guidelines to ajax.js and ajax/*.js,jaubourg2011-01-233-78/+65
* Moves determineResponse logic into main ajax callback. Puts responseXXX field...jaubourg2011-01-201-8/+7
* Removes misleading comment.jaubourg2011-01-201-1/+0
* Renames determineDataType as determineResponse. Makes it more generic as a fi...jaubourg2011-01-201-11/+12
* Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. Remo...jaubourg2011-01-202-3/+6
* Moves determineDataType into ajaxSettings so that it is accessible to transpo...jaubourg2011-01-191-3/+2
* Moved ajaxSettings.xhr definition together with support.ajax and support.cors...jaubourg2011-01-191-129/+173
* Setting the jsonp option to false now inhibits any url manipulation regarding...jaubourg2011-01-161-11/+23
* The script prefilter now forces cross-domain requests type to GET.jaubourg2011-01-161-0/+1
* Fixes #2994. Not finding a transport now fires the error callbacks and doesn'...jaubourg2011-01-162-46/+41
* Moved jQuery.ajax.prefilter and jQuery.ajax.transport to jQuery.ajaxPrefilter...jaubourg2011-01-133-6/+4
* Removed xhr pooling since failing cross-domain requests leaves the xhr object...jaubourg2011-01-131-18/+9
* Reworked script and xhr abort logic to take advantage of the fact jXHR.abort ...jaubourg2011-01-132-42/+36
* Script transport now uses ajaxSetup to define script dataType.jaubourg2011-01-121-3/+3
* Fixes #4897. Added ?? as a context-insensitive placeholder for the callback n...jaubourg2011-01-121-3/+3
* Moved unload abort code so that the event is only bound if the xhr transport ...jaubourg2011-01-091-16/+21
* Fixes #5812. =? will be detected even when it has been escaped during data se...jaubourg2011-01-091-1/+1