X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FLinker.php;h=b0ba43fe6836e3b5d0292f0c15fece2af334f228;hb=a7b8043cc3f762a5aae9113daeafccf43c3ccf0a;hp=0ee6c92f77b052a28f01b2e7c334cadbbbce32ce;hpb=f8c15e364e22e0581872a90cc012a0c708087d3c;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Linker.php b/includes/Linker.php index 0ee6c92f77..b0ba43fe68 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -289,6 +289,7 @@ class Linker { * link-title Title object to link to * link-target Value for the target attribute, only with link-url * no-link Boolean, suppress description link + * targetlang (optional) Target language code, see Parser::getTargetLanguage() * * @param array $handlerParams Associative array of media handler parameters, to be passed * to transform(). Typical keys are "width" and "page". @@ -1076,10 +1077,6 @@ class Linker { * @author Erik Moeller * @since 1.16.3. $wikiId added in 1.26 * - * Note: there's not always a title to pass to this function. - * Since you can't set a default parameter for a reference, I've turned it - * temporarily to a value pass. Should be adjusted further. --brion - * * @param string $comment * @param Title|null $title Title object (to generate link to the section in autocomment) * or null @@ -1087,7 +1084,7 @@ class Linker { * @param string|null $wikiId Id (as used by WikiMap) of the wiki to generate links to. * For use with external changes. * - * @return mixed|string + * @return string HTML */ public static function formatComment( $comment, $title = null, $local = false, $wikiId = null @@ -1221,6 +1218,7 @@ class Linker { return preg_replace_callback( '/ \[\[ + \s*+ # ignore leading whitespace, the *+ quantifier disallows backtracking :? # ignore optional leading colon ([^\]|]+) # 1. link target; page names cannot include ] or | (?:\| @@ -1442,7 +1440,7 @@ class Linker { * @return string */ public static function commentBlock( - $comment, $title = null, $local = false, $wikiId = null + $comment, $title = null, $local = false, $wikiId = null, $useParentheses = true ) { // '*' used to be the comment inserted by the software way back // in antiquity in case none was provided, here for backwards @@ -1451,7 +1449,9 @@ class Linker { return ''; } else { $formatted = self::formatComment( $comment, $title, $local, $wikiId ); - $formatted = wfMessage( 'parentheses' )->rawParams( $formatted )->escaped(); + if ( $useParentheses ) { + $formatted = wfMessage( 'parentheses' )->rawParams( $formatted )->escaped(); + } return " $formatted"; } } @@ -1464,9 +1464,12 @@ class Linker { * @param Revision $rev * @param bool $local Whether section links should refer to local page * @param bool $isPublic Show only if all users can see it + * @param bool $useParentheses (optional) Wrap comments in parentheses where needed * @return string HTML fragment */ - public static function revComment( Revision $rev, $local = false, $isPublic = false ) { + public static function revComment( Revision $rev, $local = false, $isPublic = false, + $useParentheses = true + ) { if ( $rev->getComment( Revision::RAW ) == "" ) { return ""; } @@ -1474,7 +1477,7 @@ class Linker { $block = " " . wfMessage( 'rev-deleted-comment' )->escaped() . ""; } elseif ( $rev->userCan( Revision::DELETED_COMMENT ) ) { $block = self::commentBlock( $rev->getComment( Revision::FOR_THIS_USER ), - $rev->getTitle(), $local ); + $rev->getTitle(), $local, null, $useParentheses ); } else { $block = " " . wfMessage( 'rev-deleted-comment' )->escaped() . ""; }