Ensure svn:eol-style is consistently set for all files.

See #42594.

git-svn-id: https://develop.svn.wordpress.org/trunk@46586 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2019-10-25 16:36:41 +00:00
parent 3646ed75c1
commit d376fedd89
5 changed files with 12452 additions and 12452 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,33 +1,33 @@
# Generates urlencoded.txt from utf-8.txt # Generates urlencoded.txt from utf-8.txt
# #
# urlencoded.txt is used by Tests_Formatting_Utf8UriEncode # urlencoded.txt is used by Tests_Formatting_Utf8UriEncode
import urllib, codecs, re import urllib, codecs, re
import sys import sys
# uncapitalize pct-encoded values, leave the rest alone # uncapitalize pct-encoded values, leave the rest alone
capfix = re.compile("%([0-9A-Z]{2})"); capfix = re.compile("%([0-9A-Z]{2})");
def fix(match): def fix(match):
octet = match.group(1) octet = match.group(1)
intval = int(octet, 16) intval = int(octet, 16)
if intval < 128: if intval < 128:
return chr(intval).lower() return chr(intval).lower()
return '%' + octet.lower() return '%' + octet.lower()
def urlencode(line): def urlencode(line):
"""Percent-encode each byte of non-ASCII unicode characters.""" """Percent-encode each byte of non-ASCII unicode characters."""
line = urllib.quote(line.strip().encode("utf-8")) line = urllib.quote(line.strip().encode("utf-8"))
line = capfix.sub(fix, line) line = capfix.sub(fix, line)
return line return line
if __name__ == "__main__": if __name__ == "__main__":
args = sys.argv[1:] args = sys.argv[1:]
if args and args[0] in ("-h", "--help"): if args and args[0] in ("-h", "--help"):
print "Usage: python urlencode.py < utf-8.txt > urlencoded.txt" print "Usage: python urlencode.py < utf-8.txt > urlencoded.txt"
sys.exit(2) sys.exit(2)
sys.stdin = codecs.getreader("utf-8")(sys.stdin) sys.stdin = codecs.getreader("utf-8")(sys.stdin)
sys.stdout = codecs.getwriter("ascii")(sys.stdout) sys.stdout = codecs.getwriter("ascii")(sys.stdout)
lines = sys.stdin.readlines() lines = sys.stdin.readlines()
sys.stdout.write( "\n".join(map(urlencode, lines)) ) sys.stdout.write( "\n".join(map(urlencode, lines)) )

View File

@ -1,27 +1,27 @@
# Generates test data for functions converting between # Generates test data for functions converting between
# dodgy windows-1252-only values and their unicode counterparts # dodgy windows-1252-only values and their unicode counterparts
unichars = ["201A", "0192", "201E", "2026", "2020", "2021", unichars = ["201A", "0192", "201E", "2026", "2020", "2021",
"02C6", "2030", "0160", "2039", "0152", "2018", "02C6", "2030", "0160", "2039", "0152", "2018",
"2019", "201C", "201D", "2022", "2013", "2014", "2019", "201C", "201D", "2022", "2013", "2014",
"02DC", "2122", "0161", "203A", "0153", "0178"]; "02DC", "2122", "0161", "203A", "0153", "0178"];
winpoints = [] winpoints = []
unipoints = [] unipoints = []
for char in unichars: for char in unichars:
char = unichr(int(char, 16)) char = unichr(int(char, 16))
dec = ord(char) dec = ord(char)
win = ord(char.encode("windows-1252")) win = ord(char.encode("windows-1252"))
unipoints.append(dec) unipoints.append(dec)
winpoints.append(win) winpoints.append(win)
def entitize(s): def entitize(s):
return "&#%s;" % s return "&#%s;" % s
winpoints = map(entitize, winpoints) winpoints = map(entitize, winpoints)
unipoints = map(entitize, unipoints) unipoints = map(entitize, unipoints)
print "".join(winpoints), "".join(unipoints) print "".join(winpoints), "".join(unipoints)

View File

@ -1,90 +1,90 @@
<?php <?php
/** /**
* The base configuration for WordPress * The base configuration for WordPress
* *
* The wp-config.php creation script uses this file during the * The wp-config.php creation script uses this file during the
* installation. You don't have to use the web site, you can * installation. You don't have to use the web site, you can
* copy this file to "wp-config.php" and fill in the values. * copy this file to "wp-config.php" and fill in the values.
* *
* This file contains the following configurations: * This file contains the following configurations:
* *
* * MySQL settings * * MySQL settings
* * Secret keys * * Secret keys
* * Database table prefix * * Database table prefix
* * ABSPATH * * ABSPATH
* *
* @link https://codex.wordpress.org/Editing_wp-config.php * @link https://codex.wordpress.org/Editing_wp-config.php
* *
* @package WordPress * @package WordPress
*/ */
// ** MySQL settings - You can get this info from your web host ** // // ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */ /** The name of the database for WordPress */
define( 'DB_NAME', 'database_name_here' ); define( 'DB_NAME', 'database_name_here' );
/** MySQL database username */ /** MySQL database username */
define( 'DB_USER', 'username_here' ); define( 'DB_USER', 'username_here' );
/** MySQL database password */ /** MySQL database password */
define( 'DB_PASSWORD', 'password_here' ); define( 'DB_PASSWORD', 'password_here' );
/** MySQL hostname */ /** MySQL hostname */
define( 'DB_HOST', 'localhost' ); define( 'DB_HOST', 'localhost' );
/** Database Charset to use in creating database tables. */ /** Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' ); define( 'DB_CHARSET', 'utf8' );
/** The Database Collate type. Don't change this if in doubt. */ /** The Database Collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' ); define( 'DB_COLLATE', '' );
/**#@+ /**#@+
* Authentication Unique Keys and Salts. * Authentication Unique Keys and Salts.
* *
* Change these to different unique phrases! * Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
* *
* @since 2.6.0 * @since 2.6.0
*/ */
define( 'AUTH_KEY', 'put your unique phrase here' ); define( 'AUTH_KEY', 'put your unique phrase here' );
define( 'SECURE_AUTH_KEY', 'put your unique phrase here' ); define( 'SECURE_AUTH_KEY', 'put your unique phrase here' );
define( 'LOGGED_IN_KEY', 'put your unique phrase here' ); define( 'LOGGED_IN_KEY', 'put your unique phrase here' );
define( 'NONCE_KEY', 'put your unique phrase here' ); define( 'NONCE_KEY', 'put your unique phrase here' );
define( 'AUTH_SALT', 'put your unique phrase here' ); define( 'AUTH_SALT', 'put your unique phrase here' );
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' ); define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
define( 'LOGGED_IN_SALT', 'put your unique phrase here' ); define( 'LOGGED_IN_SALT', 'put your unique phrase here' );
define( 'NONCE_SALT', 'put your unique phrase here' ); define( 'NONCE_SALT', 'put your unique phrase here' );
/**#@-*/ /**#@-*/
/** /**
* WordPress Database Table prefix. * WordPress Database Table prefix.
* *
* You can have multiple installations in one database if you give each * You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please! * a unique prefix. Only numbers, letters, and underscores please!
*/ */
$table_prefix = 'wp_'; $table_prefix = 'wp_';
/** /**
* For developers: WordPress debugging mode. * For developers: WordPress debugging mode.
* *
* Change this to true to enable the display of notices during development. * Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG * It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments. * in their development environments.
* *
* For information on other constants that can be used for debugging, * For information on other constants that can be used for debugging,
* visit the Codex. * visit the Codex.
* *
* @link https://codex.wordpress.org/Debugging_in_WordPress * @link https://codex.wordpress.org/Debugging_in_WordPress
*/ */
define( 'WP_DEBUG', false ); define( 'WP_DEBUG', false );
/* That's all, stop editing! Happy publishing. */ /* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */ /** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', dirname( __FILE__ ) . '/' ); define( 'ABSPATH', dirname( __FILE__ ) . '/' );
} }
/** Sets up WordPress vars and included files. */ /** Sets up WordPress vars and included files. */
require_once( ABSPATH . 'wp-settings.php' ); require_once( ABSPATH . 'wp-settings.php' );