mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-24 16:25:00 +00:00
29eb0f4ea6
The following are now correctly escaped: * Space at the start of a line * Start-of-line characters after \r * Magic links such as "RFC 123" with non-space whitespace * URIs that don't use "://", such as "urn:foo" * Double-underscore magic words Bug: 53658 Change-Id: I824417e2937dd27cd1e69bd4e74ab7d21a978c75
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
class Scribunto_LuaTextLibrary extends Scribunto_LuaLibraryBase {
|
|
function register() {
|
|
global $wgUrlProtocols;
|
|
|
|
$lib = array(
|
|
'unstrip' => array( $this, 'textUnstrip' ),
|
|
'getEntityTable' => array( $this, 'getEntityTable' ),
|
|
);
|
|
$opts = array(
|
|
'comma' => wfMessage( 'comma-separator' )->inContentLanguage()->text(),
|
|
'and' => wfMessage( 'and' )->inContentLanguage()->text() .
|
|
wfMessage( 'word-separator' )->inContentLanguage()->text(),
|
|
'ellipsis' => wfMessage( 'ellipsis' )->inContentLanguage()->text(),
|
|
'nowiki_protocols' => array(),
|
|
);
|
|
|
|
foreach ( $wgUrlProtocols as $prot ) {
|
|
if ( substr( $prot, -1 ) === ':' ) {
|
|
// To convert the protocol into a case-insensitive Lua pattern,
|
|
// we need to replace letters with a character class like [Xx]
|
|
// and insert a '%' before various punctuation.
|
|
$prot = preg_replace_callback( '/([a-zA-Z])|([()^$%.\[\]*+?-])/', function ( $m ) {
|
|
if ( $m[1] ) {
|
|
return '[' . strtoupper( $m[1] ) . strtolower( $m[1] ) . ']';
|
|
} else {
|
|
return '%' . $m[2];
|
|
}
|
|
}, substr( $prot, 0, -1 ) );
|
|
$opts['nowiki_protocols']["($prot):"] = '%1:';
|
|
}
|
|
}
|
|
|
|
$this->getEngine()->registerInterface( 'mw.text.lua', $lib, $opts );
|
|
}
|
|
|
|
function textUnstrip( $s ) {
|
|
$this->checkType( 'unstrip', 1, $s, 'string' );
|
|
return array( $this->getParser()->mStripState->unstripBoth( $s ) );
|
|
}
|
|
|
|
function getEntityTable() {
|
|
$flags = ENT_QUOTES;
|
|
// PHP 5.3 compat
|
|
if ( defined( "ENT_HTML5" ) ) {
|
|
$flags |= constant( "ENT_HTML5" );
|
|
}
|
|
$table = array_flip( get_html_translation_table( HTML_ENTITIES, $flags, "UTF-8" ) );
|
|
return array( $table );
|
|
}
|
|
}
|