jeresig
9d306bd73b
Tagging the 1.5rc1 release.
2011-01-24 17:14:04 -05:00
jeresig
9604a0321a
Bring back in #main prefix on adjacent selectors.
2011-01-24 17:01:31 -05:00
jeresig
98234b0f93
Backing out disconnected + and ~ tests as they're not something that we actively support.
2011-01-24 16:58:56 -05:00
jeresig
6fb3998681
Updating the year in the header.
2011-01-24 16:45:29 -05:00
Timmy Willison
ed48787ec5
Fix bug #2773 , jQuery.fn.is to accept JQuery and node objects, and a small fix for winnow getting an undefined selector
2011-01-24 16:18:19 -05:00
jeresig
6c18a1becb
Revert "Fix Makefile to use plain sed. Remove unicode trickery"
...
This reverts commit 6d358c0cdd
.
2011-01-24 14:14:55 -05:00
Anton M
6d358c0cdd
Fix Makefile to use plain sed. Remove unicode trickery
2011-01-24 20:01:25 +01:00
jaubourg
33de9c5597
Makes prefilters and transport inspection more robust and uses better variable names for readability.
2011-01-24 04:22:46 +01:00
Alex Sexton
c50b74372c
Moved jQuery global leak to end of file so accidental gEBCN overrides in prototype don't get caught up in confusion. Fixed tests to reference jQuery variable instead of $ (best practice). Fixes #8033
2011-01-23 21:19:33 -06:00
jaubourg
02ca45573b
Revised internal implementation of ajaxPrefilter() and ajaxTransport(). Everything is shorter and more efficient now. Also fixes a couple spacing issues that remained.
2011-01-23 22:03:24 +01:00
jaubourg
ee22c8b34b
More code style fixes.
2011-01-23 20:46:09 +01:00
jaubourg
dd5bf42122
Apply JQuery Core Style Guidelines to ajax.js and ajax/*.js,
2011-01-23 05:51:41 +01:00
jaubourg
30082d9eba
Fixes some coding style issues in core.js. In jQuery.fn.ready(), simplifies the whole code (for better backward compatibility) and removes redefinition of the function itself (in order not to clash with proxying). Also, in jQuery.when(), removes unnecessary closure and early rejection test and makes use of then instead of done/fail (better interoperability).
2011-01-23 05:01:36 +01:00
jaubourg
bea4815294
Re-organizes ajax.js: prefilters and transports are no longer stored in ajaxSettings (their structure is not handled correctly by extend() and was causing some overhead when constructing the final options map in ajax()); base function for ajaxPrefilter and ajaxTransport has been renamed and split in two (one for inspection, one for addition); response/dataType determination and data conversion logics have been externalized from the ajax() internal callback; data conversion no longer sets responseXXX fields; some minor re-formatting and simplifications.
2011-01-22 04:45:20 +01:00
Anton M
4413c2fd93
Fix selector scope on some tests, so they don't fail on testswarm.
2011-01-22 01:12:18 +01:00
rwldrn
f1bd0cfc4d
Merge branch '8017lint' of https://github.com/rwldrn/jquery into 8017lint
2011-01-22 00:41:42 +01:00
jeresig
1922f311a3
Merge branch 'fix-7398-frameset-docs' of https://github.com/dmethvin/jquery into dmethvin-fix-7398-frameset-docs
2011-01-21 11:22:55 -05:00
jeresig
61e80c55df
Merge branch '8013p' of https://github.com/rwldrn/jquery into rwldrn-8013p
2011-01-21 11:20:05 -05:00
rwldrn
33a67ffa9d
Basic unit tests; This patch relies on the 51 existing clone() tests
2011-01-21 11:08:15 -05:00
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
Dave Methvin
ad0ebf00ab
Don't do body-related feature tests on frameset docs that have no body. Fixes #7398 .
2011-01-21 09:51:30 -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
rwldrn
6458885881
Cleaned up; fixes per review
2011-01-20 15:25:04 -05: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
John Resig
35875acd03
Merge branch 'make_fix' of https://github.com/danheberden/jquery into danheberden-make_fix
2011-01-20 14:39:28 -05:00
rwldrn
49cd9c66bf
cloneCopyEvent; jQuery.clone() review
2011-01-20 14:27:02 -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
Dave Methvin
948c0dfffc
Rework unit tests to check actual result elements.
2011-01-19 21:02:46 -05:00
jaubourg
96b00a4935
Moves active counter test after all other ajax tests where it should be.
2011-01-19 18:44:21 +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