diff options
author | John Resig <jeresig@gmail.com> | 2007-08-24 01:28:07 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-08-24 01:28:07 +0000 |
commit | 257eaf7ee32df66ddd0a3333a5b6a829b9d388ef (patch) | |
tree | e83ca5be7d2fd12b5227659bddc8d477755fa132 /src/selector/selector.js | |
parent | 4df20c0c1b8506981087dd8702f3a076bd57d017 (diff) | |
download | jquery-257eaf7ee32df66ddd0a3333a5b6a829b9d388ef.tar.gz jquery-257eaf7ee32df66ddd0a3333a5b6a829b9d388ef.zip |
Marked all the appropriate methods as being deprecated for the 1.1.4 release (in preparation for 1.2).
Diffstat (limited to 'src/selector/selector.js')
-rw-r--r-- | src/selector/selector.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/selector/selector.js b/src/selector/selector.js index bd8c7912d..b15ee7cde 100644 --- a/src/selector/selector.js +++ b/src/selector/selector.js @@ -58,6 +58,7 @@ jQuery.extend({ // :has() has: "jQuery.find(m[3],a).length" }, + // DEPRECATED "[": "jQuery.find(m[2],a).length" }, @@ -66,6 +67,7 @@ jQuery.extend({ // Match: [@value='test'], [@foo] /^\[ *(@)([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/, + // DEPRECATED // Match: [div], [div p] /^(\[)\s*(.*?(\[.*?\])?[^[]*?)\s*\]/, @@ -107,11 +109,13 @@ jQuery.extend({ // Set the correct context (if none is provided) context = context || document; + // DEPRECATED // Handle the common XPath // expression if ( !t.indexOf("//") ) { //context = context.documentElement; t = t.substr(2,t.length); + // DEPRECATED // And the / root expression } else if ( !t.indexOf("/") && !context.ownerDocument ) { context = context.documentElement; @@ -129,6 +133,7 @@ jQuery.extend({ var r = []; last = t; + // DEPRECATED t = jQuery.trim(t).replace( /^\/\//, "" ); var foundToken = false; @@ -152,6 +157,7 @@ jQuery.extend({ if ( t.indexOf(" ") == 0 ) continue; foundToken = true; } else { + // (.. and /) DEPRECATED re = /^((\/?\.\.)|([>\/+~]))\s*(\w*)/i; if ( (m = re.exec(t)) != null ) { @@ -174,6 +180,7 @@ jQuery.extend({ if ( m == "+" ) break; } + // DEPRECATED } else r.push( ret[j].parentNode ); |