Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix #10466. jQuery.param() should treat object-wrapped primitives as primitives. | Rick Waldron | 2011-12-06 | 1 | -1/+1 |
| | |||||
* | Landing pull request 604. Updates bind to on in src/ajax.js. Fixes #10817. | Rick Waldron | 2011-11-17 | 1 | -1/+1 |
| | | | | | | More Details: - https://github.com/jquery/jquery/pull/604 - http://bugs.jquery.com/ticket/10817 | ||||
* | Take 2 on "Fix ajax to always expect an Error object, per #10646." | Dave Methvin | 2011-11-08 | 1 | -2/+2 |
| | | | | | | We can't use jQuery.error to rethrow anymore since it constructs a new Error from its supposedly-string arg. Also, older IE stringifies Error objects into "[object Error]" so I've loosened the unit test criteria. This reverts commit 586fb059190ecacd89e3cd211c78e776792d2f2b. | ||||
* | Revert "Catch one more place where a plain-text error was thrown." | Dave Methvin | 2011-11-08 | 1 | -1/+1 |
| | | | | This reverts commit cc4a999648d2623972e6dabad0e6c4b1bb60458a. | ||||
* | Catch one more place where a plain-text error was thrown. | Dave Methvin | 2011-11-08 | 1 | -1/+1 |
| | |||||
* | Fix ajax to always expect an Error object, per #10646. | Dave Methvin | 2011-11-08 | 1 | -2/+2 |
| | |||||
* | Cleanup spacing in ajax.js. Fixes #10601 | Rick Waldron | 2011-10-27 | 1 | -1/+1 |
| | |||||
* | Core styleguide cleanup. Fixes #10586 | Rick Waldron | 2011-10-26 | 1 | -11/+11 |
| | |||||
* | $.Callbacks, $.Topic and notify/progress on $.Deferred. | jaubourg | 2011-09-19 | 1 | -4/+4 |
| | |||||
* | Use jdalton's shorter sequence for the chars. | Dave Methvin | 2011-08-23 | 1 | -1/+1 |
| | |||||
* | Use a semantic name for the variable. | Dave Methvin | 2011-08-23 | 1 | -3/+3 |
| | |||||
* | Fixes #10098. Avoid a slashy-starry char sequence in literal strings to ↵ | Dave Methvin | 2011-08-22 | 1 | -3/+6 |
| | | | | evade faulty script compressors. | ||||
* | Merge pull request #431 from DenisKnauf/master | Dave Methvin | 2011-08-04 | 1 | -1/+1 |
|\ | | | | | input type=datetime-local (ajax doesn't support it, yet) | ||||
| * | input type=datetime-local support for ajax. | Denis Knauf | 2011-07-07 | 1 | -1/+1 |
| | | |||||
* | | Fixes #9854: propagates native statusText onto jqXHR.statusText. statusText ↵ | jaubourg | 2011-07-23 | 1 | -2/+3 |
| | | | | | | | | in callbacks is still normalized. Unit test added. | ||||
* | | Makes sure that status -1 (used when an internal error occured) will not tag ↵ | jaubourg | 2011-07-23 | 1 | -1/+1 |
| | | | | | | | | jqXHR.readyState as complete (4). | ||||
* | | Fixes #9887: ajax now supports circular references into objects passed as ↵ | jaubourg | 2011-07-23 | 1 | -16/+34 |
|/ | | | | context. Prefilter and transport developpers should add their own custom option into flatOptions when needed. Unit test added. | ||||
* | Fixes #9632. Adds res:// protocol to the list of local protocols. | jaubourg | 2011-07-01 | 1 | -1/+1 |
| | |||||
* | Fixes #9682. Removes data from the options for request with no content so ↵ | jaubourg | 2011-07-01 | 1 | -0/+2 |
| | | | | that it is not used again in case of a retry. Unit test added. | ||||
* | Replaces typo (status instead of state) as observed in #9585. | jaubourg | 2011-07-01 | 1 | -1/+1 |
| | |||||
* | Restores var names to satisfy the crock-machine. Supplements #9008 | Rick Waldron | 2011-04-28 | 1 | -3/+3 |
| | |||||
* | Make cached rspaces regex definitions consistent. Fixes #9008 | rwldrn | 2011-04-28 | 1 | -3/+3 |
| | |||||
* | (Re) Fixes #8884 in a way that keeps the format of the headers map sent to ↵ | jaubourg | 2011-04-19 | 1 | -2/+5 |
| | | | | transports natural. | ||||
* | Cache references to navigator and location. Fixes #6690. | John Resig | 2011-04-16 | 1 | -2/+2 |
| | |||||
* | Backing out fix for #6481. | John Resig | 2011-04-16 | 1 | -10/+3 |
| | |||||
* | Removes now unnecessary regexp and companion function. Fixes some spacing ↵ | jaubourg | 2011-04-15 | 1 | -11/+7 |
| | | | | issues. Shortens field names. | ||||
* | Fixing code styling typo. | Sam Bisbee | 2011-04-15 | 1 | -1/+1 |
| | |||||
* | Continuing to map request headers using their name in uppercase for the ↵ | Sam Bisbee | 2011-04-15 | 1 | -7/+10 |
| | | | | index, but we now map to an object with an unmodified name and value: { name: "", value: "" }. This prevents overwriting of the user's supplied headers, which many applications parse with case sensitivity, because we no longer use the modified, uppercase index when building the request. | ||||
* | Applies exception in Style Guidelines regarding objects and functions when ↵ | jaubourg | 2011-04-08 | 1 | -3/+3 |
| | | | | they are the last argument of a function call. | ||||
* | Remove crossDomain:null comment, it's not needed since undefined==null below. | Dave Methvin | 2011-03-30 | 1 | -1/+0 |
| | |||||
* | Merge branch 'crossDomain' of https://github.com/JessThrysoee/jquery into ↵ | Dave Methvin | 2011-03-30 | 1 | -1/+1 |
|\ | | | | | | | JessThrysoee-crossDomain | ||||
| * | no need to specifically initialize crossDomain to null | JessThrysoee | 2011-03-11 | 1 | -1/+1 |
| | | |||||
| * | Make it possible to force the Ajax crossDomain option to false. | JessThrysoee | 2011-03-11 | 1 | -2/+2 |
| | | |||||
* | | Fixes #8509. Makes URL regexp less overzealous and ensures it recognizes URL ↵ | jaubourg | 2011-03-15 | 1 | -3/+3 |
|/ | | | | schemes which do not contain a conformant hierarchical structure ( as per section 2.1.2 of http://www.ietf.org/rfc/rfc2718.txt ). Also adds about: and adobe air's app: and app-storage: to the list of local protocols and provides a failover in case document.location is illformed. Unit test added. | ||||
* | A quick change to detect AIR urls | gnarf | 2011-02-24 | 1 | -1/+1 |
| | |||||
* | Fixes #8297. Makes sure response headers with empty values are handled ↵ | jaubourg | 2011-02-17 | 1 | -2/+2 |
| | | | | properly and do not prevent proper parsing of the entire response headers string. Unit test amended. | ||||
* | Fixes #8277. Sets data to undefined rather than null when it is not provided ↵ | jaubourg | 2011-02-15 | 1 | -3/+3 |
| | | | | in ajax helpers so that it won't revent data set in ajaxSettings from being used. Unit test added. | ||||
* | Enhances ajaxSetup so that it can take an optional target option, in which ↵ | jaubourg | 2011-02-12 | 1 | -11/+23 |
| | | | | case target will be updated instead of ajaxSettings. That way, fields that shouldn't be deep extended can be listed and dealt with in one place. jQuery.ajax now makes use of ajaxSetup with target to create its internal settings object. Fixes #7531 in IE9RC. | ||||
* | Pulls out the callback function in setRequestHeader. Also renames the regexp ↵ | jaubourg | 2011-02-12 | 1 | -4/+5 |
| | | | | so that what it's meant to do is a bit more obvious. | ||||
* | Minor changes to enforce JQuery Core Style Guidelines. | jaubourg | 2011-02-12 | 1 | -1/+1 |
| | |||||
* | Fixes #8245. Ajax now ensures header names are capitalized so that ↵ | jaubourg | 2011-02-11 | 1 | -8/+11 |
| | | | | non-compliant xhr implementations don't override them. | ||||
* | Fixes #8219. Introduces the mimeType option to override content-type header ↵ | jaubourg | 2011-02-09 | 1 | -1/+9 |
| | | | | in conversion (and in native xhr when possible). Adds companion overrideMimeType method on jqXHR object (it simply sets the option). Unit test added. | ||||
* | Makes sure statusText always defaults to "error". | jaubourg | 2011-02-09 | 1 | -1/+1 |
| | |||||
* | Adds jQuery collection to objects that will be used as global events context ↵ | jaubourg | 2011-02-07 | 1 | -3/+4 |
| | | | | if provided in the ajax options. | ||||
* | Fixes a bug that prevented headers from being set in an ajaxSend callback. ↵ | jaubourg | 2011-02-07 | 1 | -2/+2 |
| | | | | Unit test modified. | ||||
* | Reformats logic for early abort in beforeSend to limit block imbrication. | jaubourg | 2011-02-04 | 1 | -36/+35 |
| | |||||
* | Fixes abort in prefilter. No global event will be fired in that case even if ↵ | jaubourg | 2011-02-04 | 1 | -4/+14 |
| | | | | the global option is set to true. Unit test added. | ||||
* | Disables dataType redirection while selecting transport. | jaubourg | 2011-02-04 | 1 | -2/+2 |
| | |||||
* | Adds widget as the list of local protocols. | jaubourg | 2011-02-03 | 1 | -1/+1 |
| | |||||
* | Adds support for more complex protocol by having the url regexp closer to ↵ | jaubourg | 2011-02-03 | 1 | -1/+1 |
| | | | | rfc1738. |