Generate aliases for case-mismatched page titles.

If a page title does has a different case than an occurrence of the same
word(s) on the page that is being edited, the extension will now
automatically generate 'piped' links such as [[Linking titles|Linking
Titles]].
This commit is contained in:
Daniel Kraus
2013-01-26 18:22:27 +01:00
parent 455f333c28
commit a448b8632b
4 changed files with 25 additions and 8 deletions

View File

@ -25,10 +25,12 @@
}
function dump($var) {
error_log(print_r($var, TRUE), 3, 'php://stderr');
error_log(print_r($var, TRUE) . "\n", 3, 'php://stderr');
};
class LinkTitles {
static $st;
/// Setup function, hooks the extension's functions to MediaWiki events.
public static function setup() {
global $wgLinkTitlesParseOnEdit;
@ -79,11 +81,11 @@
global $wgLinkTitlesFirstOnly;
global $wgLinkTitlesWordStartOnly;
global $wgLinkTitlesWordEndOnly;
global $wgLinkTitlesIgnoreCase;
// global $wgLinkTitlesIgnoreCase;
( $wgLinkTitlesWordStartOnly ) ? $wordStartDelim = '\b' : $wordStartDelim = '';
( $wgLinkTitlesWordEndOnly ) ? $wordEndDelim = '\b' : $wordEndDelim = '';
( $wgLinkTitlesIgnoreCase ) ? $regexModifier = 'i' : $regexModifier = '';
// ( $wgLinkTitlesIgnoreCase ) ? $regexModifier = 'i' : $regexModifier = '';
// To prevent adding self-references, we now
// extract the current page's title.
@ -146,11 +148,13 @@
$arr = preg_split( $delimiter, $text, -1, PREG_SPLIT_DELIM_CAPTURE );
// dump( $arr );
$safeTitle = str_replace( '/', '\/', $title );
LinkTitles::$st = $safeTitle;
for ( $i = 0; $i < count( $arr ); $i+=2 ) {
// even indexes will point to text that is not enclosed by brackets
$arr[$i] = preg_replace( '/(?<![\:\.\@\/\?\&])' .
$arr[$i] = preg_replace_callback( '/(?<![\:\.\@\/\?\&])' .
$wordStartDelim . '(' . $safeTitle . ')' .
$wordEndDelim . '/' . $regexModifier , '[[$1]]', $arr[$i], $limit, $count );
$wordEndDelim . '/i',
"LinkTitles::CallBack", $arr[$i], $limit, $count );
if (( $limit >= 0 ) && ( $count > 0 )) {
break;
};
@ -160,6 +164,14 @@
}; // foreach $res as $row
return true;
}
static function CallBack($matches) {
if ( strcmp(substr(LinkTitles::$st, 1), substr($matches[0], 1)) == 0 ) {
return '[[' . $matches[0] . ']]';
} else {
return '[[' . LinkTitles::$st . '|' . $matches[0] . ']]';
}
}
}
// vim: ts=2:sw=2:noet