Changeset 37674 for trunk/src/wp-includes/Requests/IDNAEncoder.php
- Timestamp:
- 06/10/2016 04:49:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/Requests/IDNAEncoder.php
r37428 r37674 8 8 * @package Requests 9 9 * @subpackage Utilities 10 * @see http ://tools.ietf.org/html/rfc3490 IDNA specification11 * @see http ://tools.ietf.org/html/rfc3492 Punycode/Bootstrap specification10 * @see https://tools.ietf.org/html/rfc3490 IDNA specification 11 * @see https://tools.ietf.org/html/rfc3492 Punycode/Bootstrap specification 12 12 */ 13 13 class Requests_IDNAEncoder { … … 15 15 * ACE prefix used for IDNA 16 16 * 17 * @see http ://tools.ietf.org/html/rfc3490#section-517 * @see https://tools.ietf.org/html/rfc3490#section-5 18 18 * @var string 19 19 */ … … 23 23 * Bootstrap constant for Punycode 24 24 * 25 * @see http ://tools.ietf.org/html/rfc3492#section-525 * @see https://tools.ietf.org/html/rfc3492#section-5 26 26 * @var int 27 27 */ … … 334 334 * Convert a digit to its respective character 335 335 * 336 * @see http ://tools.ietf.org/html/rfc3492#section-5336 * @see https://tools.ietf.org/html/rfc3492#section-5 337 337 * @throws Requests_Exception On invalid digit (`idna.invalid_digit`) 338 338 * … … 354 354 * Adapt the bias 355 355 * 356 * @see http ://tools.ietf.org/html/rfc3492#section-6.1356 * @see https://tools.ietf.org/html/rfc3492#section-6.1 357 357 * @param int $delta 358 358 * @param int $numpoints
Note: See TracChangeset
for help on using the changeset viewer.