OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
11 // with the distribution. | 11 // with the distribution. |
12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
15 // | 15 // |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
| 28 // This file relies on the fact that the following declaration has been made |
| 29 // in runtime.js: |
| 30 // var $Object = global.Object; |
| 31 |
| 32 // ------------------------------------------------------------------- |
| 33 |
28 // This file contains support for URI manipulations written in | 34 // This file contains support for URI manipulations written in |
29 // JavaScript. | 35 // JavaScript. |
30 | 36 |
31 // Expect $String = global.String; | |
32 | |
33 // Lazily initialized. | 37 // Lazily initialized. |
34 var hexCharArray = 0; | 38 var hexCharArray = 0; |
35 var hexCharCodeArray = 0; | 39 var hexCharCodeArray = 0; |
36 | 40 |
37 | 41 |
38 function URIAddEncodedOctetToBuffer(octet, result, index) { | 42 function URIAddEncodedOctetToBuffer(octet, result, index) { |
39 result[index++] = 37; // Char code of '%'. | 43 result[index++] = 37; // Char code of '%'. |
40 result[index++] = hexCharCodeArray[octet >> 4]; | 44 result[index++] = hexCharCodeArray[octet >> 4]; |
41 result[index++] = hexCharCodeArray[octet & 0x0F]; | 45 result[index++] = hexCharCodeArray[octet & 0x0F]; |
42 return index; | 46 return index; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 function URIUnescape(str) { | 434 function URIUnescape(str) { |
431 var s = ToString(str); | 435 var s = ToString(str); |
432 return %URIUnescape(s); | 436 return %URIUnescape(s); |
433 } | 437 } |
434 | 438 |
435 | 439 |
436 // ------------------------------------------------------------------- | 440 // ------------------------------------------------------------------- |
437 | 441 |
438 function SetUpUri() { | 442 function SetUpUri() { |
439 %CheckIsBootstrapping(); | 443 %CheckIsBootstrapping(); |
| 444 |
440 // Set up non-enumerable URI functions on the global object and set | 445 // Set up non-enumerable URI functions on the global object and set |
441 // their names. | 446 // their names. |
442 InstallFunctions(global, DONT_ENUM, $Array( | 447 InstallFunctions(global, DONT_ENUM, $Array( |
443 "escape", URIEscape, | 448 "escape", URIEscape, |
444 "unescape", URIUnescape, | 449 "unescape", URIUnescape, |
445 "decodeURI", URIDecode, | 450 "decodeURI", URIDecode, |
446 "decodeURIComponent", URIDecodeComponent, | 451 "decodeURIComponent", URIDecodeComponent, |
447 "encodeURI", URIEncode, | 452 "encodeURI", URIEncode, |
448 "encodeURIComponent", URIEncodeComponent | 453 "encodeURIComponent", URIEncodeComponent |
449 )); | 454 )); |
450 } | 455 } |
451 | 456 |
452 SetUpUri(); | 457 SetUpUri(); |
OLD | NEW |