Gianni Chiappetta
574ae3b1be
added: Backcompatibility with old proxy syntax.
2011-01-21 10:33:50 -05:00
Gianni Chiappetta
a03f040dbf
Merge branch 'master' into proxy-native-bind
...
* master: (194 commits)
Revert "Make sure that focusin/focusout bubbles in non-IE browsers." This was causing problems with the focusin event, see: #7340 .
Replaces "text in-between" technique with a full-fledged one-level transitive search for converters (unit tests added). Also cleans up auto dataType determination and adds converter checks in order to guess the best dataType possible.
Moves determineResponse logic into main ajax callback. Puts responseXXX fields definitions into ajaxSettings.
Removes misleading comment.
Bring jQuery('#id') and jQuery('body') logic back into core (while leaving it in Sizzle at the same time). Was causing too much of a performance hit to leave it all to Sizzle.
Renames Deferred's fire and fireReject methods as resolveWith and rejectWith respectively.
Fix typo in regex tweak from previous commit.
Renames determineDataType as determineResponse. Makes it more generic as a first step into integrating the logic into the main ajax done callback. Also fixes some comments in ajax/xhr.js.
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).
Revises the way arguments are handled in ajax.
Makes sure statusCode callbacks are ordered in the same way success and error callbacks are. Unit tests added.
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).
Rework unit tests to check actual result elements.
Moves active counter test after all other ajax tests where it should be.
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.
Moves things around to make jsLint happier.
Fixes crossDomain test so that it assumes port to be 80 for http and 443 for https when it is not provided.
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).
Re-adds hastily removed variable and simplifies statusCode based callbacks handling.
Use undefined instead of 0 to deference transport for clarity.
...
Conflicts:
src/event.js
2011-01-21 09:58:55 -05:00
jeresig
328a86f9a0
Revert "Make sure that focusin/focusout bubbles in non-IE browsers." This was causing problems with the focusin event, see: #7340 .
...
This reverts commit 88068f82c1
.
Conflicts:
src/event.js
test/unit/event.js
2011-01-21 09:24:09 -05:00
jaubourg
dc2e7317a9
Replaces "text in-between" technique with a full-fledged one-level transitive search for converters (unit tests added). Also cleans up auto dataType determination and adds converter checks in order to guess the best dataType possible.
2011-01-21 03:58:28 +01:00
John Resig
2e2d5e9db5
Merge branch 'fix-7853-add-context' of https://github.com/dmethvin/jquery into dmethvin-fix-7853-add-context
2011-01-20 14:51:30 -05:00
John Resig
c97b6ee36a
Merge branch 'master' of https://github.com/scottjehl/jquery into scottjehl-master
2011-01-20 14:39:57 -05:00
jaubourg
3dbd600e19
Moves determineResponse logic into main ajax callback. Puts responseXXX fields definitions into ajaxSettings.
2011-01-20 19:40:51 +01:00
jaubourg
8ad2b31ff6
Removes misleading comment.
2011-01-20 18:50:47 +01:00
jeresig
ea5ce8c2a9
Merge branch 'master' of github.com:jquery/jquery
2011-01-20 11:58:52 -05:00
jeresig
e4d0168893
Bring jQuery('#id') and jQuery('body') logic back into core (while leaving it in Sizzle at the same time). Was causing too much of a performance hit to leave it all to Sizzle.
2011-01-20 11:58:44 -05:00
jaubourg
f2b0c77dc8
Merge branch 'master' of github.com:jquery/jquery
2011-01-20 17:52:10 +01:00
jaubourg
a7cb93bee5
Renames Deferred's fire and fireReject methods as resolveWith and rejectWith respectively.
2011-01-20 17:51:57 +01:00
jeresig
0f6c7830ce
Fix typo in regex tweak from previous commit.
2011-01-20 11:46:50 -05:00
jaubourg
ef86694ada
Renames determineDataType as determineResponse. Makes it more generic as a first step into integrating the logic into the main ajax done callback. Also fixes some comments in ajax/xhr.js.
2011-01-20 17:38:21 +01:00
jeresig
c475222bfb
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).
2011-01-20 11:34:35 -05:00
jaubourg
3e1d3d0f21
Revises the way arguments are handled in ajax.
2011-01-20 16:22:36 +01:00
jaubourg
9ab00a712f
Makes sure statusCode callbacks are ordered in the same way success and error callbacks are. Unit tests added.
2011-01-20 15:39:30 +01:00
jaubourg
64e1cdbb95
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).
2011-01-20 04:12:15 +01:00
scottjehl
2b64b1db68
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.
2011-01-19 12:40:32 -05:00
jaubourg
44f3a1b405
Moves things around to make jsLint happier.
2011-01-19 18:36:42 +01:00
jaubourg
7d89d3c072
Fixes crossDomain test so that it assumes port to be 80 for http and 443 for https when it is not provided.
2011-01-19 18:35:40 +01:00
scottjehl
cb1f7eeac5
Merge remote branch 'upstream/master'
2011-01-19 12:32:57 -05:00
jaubourg
1cecfa1ece
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).
2011-01-19 18:16:29 +01:00
jaubourg
3ea366401f
Re-adds hastily removed variable and simplifies statusCode based callbacks handling.
2011-01-19 17:51:33 +01:00
jaubourg
7947cd77e4
Use undefined instead of 0 to deference transport for clarity.
2011-01-19 17:24:56 +01:00
jaubourg
d343bfe528
Removes unnecessary test and ensures getResponseHeader returns null if the header does not exist.
2011-01-19 17:21:51 +01:00
jaubourg
bd6eb849ee
Revised how context is determined and removed unnecessary "parameter as variable" trick.
2011-01-19 17:06:33 +01:00
jaubourg
92c3d87a9c
Moved ajaxSettings.xhr definition together with support.ajax and support.cors determination into ajax/xhr.js.
2011-01-19 16:55:26 +01:00
Anton M
265cf0efa7
Remove an unused regex and optimize character escape regex usage.
2011-01-19 00:15:28 +01:00
John Resig
40f48ef6be
Merge branch 'chrome-slice-comment' of https://github.com/ajpiano/jquery into ajpiano-chrome-slice-comment
2011-01-18 18:07:37 -05:00
John Resig
9c763ad39d
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.
2011-01-18 15:13:09 -05:00
John Resig
c1d719b580
Merge branch 'master' of https://github.com/russtacular/jquery into russtacular-master
2011-01-18 14:20:05 -05:00
adam j. sontag
d9660e1bf4
Fix tabs vs spaces in initial workaround commit
2011-01-17 17:20:37 -05:00
adam j. sontag
78be517727
shorten the SHA
2011-01-17 17:08:44 -05:00
adam j. sontag
4058881784
Add link to chrome issue ticket
2011-01-17 17:03:45 -05:00
Colin Snover
0cbe4cb8bd
Merge branch 'master' of github.com:jquery/jquery into jquery-master
2011-01-17 15:32:57 -06:00
Colin Snover
e78d3a7e2d
Merge in data_nocollide branch. Fixes #6968 , improves unit testing framework checks for leaky stuff.
2011-01-17 15:31:43 -06:00
Brandon Sterne
220a0ce162
Defer scriptEval test until first use to prevent Content Security Policy inline-script violations from occuring. Fixes #7371 .
2011-01-17 16:31:12 -05:00
Colin Snover
57cc182a40
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.
2011-01-17 15:22:49 -06:00
adam j. sontag
28a1bad7b1
Add a comment to explain (and enforce the temporary-ness of) an extra line of code added to workaround a Chrome 10 bug
2011-01-17 16:10:14 -05:00
jeresig
f01ef93aab
Merge branch '7608' of https://github.com/rwldrn/jquery into rwldrn-7608
2011-01-17 15:50:20 -05:00
jeresig
987c44bee4
Merging pull request 183 for #7793 .
2011-01-17 15:45:07 -05:00
jaubourg
5798446b98
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.
2011-01-16 18:33:32 +01:00
jaubourg
c272f5f7da
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.
2011-01-16 17:41:39 +01:00
jaubourg
158fa822de
Setting the jsonp option to false now inhibits any url manipulation regarding the callback.
2011-01-16 05:26:46 +01:00
jaubourg
f74b844989
The script prefilter now forces cross-domain requests type to GET.
2011-01-16 05:25:45 +01:00
jaubourg
914aa3d66b
Makes it so a prefilter can change the type of a request.
2011-01-16 05:24:14 +01:00
jaubourg
21143c3b21
Removed internal dataTypes option and added headers & crossDomain options into commented out options of ajaxSettings.
2011-01-16 03:05:03 +01:00
jaubourg
8ab23aec2c
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.
2011-01-16 02:57:39 +01:00
jeresig
cf7ddcf79a
Revert "Revert fb4445070c
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 012f0c3b4b
.
2011-01-14 14:12:29 -05:00