3 * PHP parser that converts wiki markup to HTML.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * @defgroup Parser Parser
29 * PHP Parser - Processes wiki markup (which uses a more user-friendly
30 * syntax, such as "[[link]]" for making links), and provides a one-way
31 * transformation of that wiki markup it into (X)HTML output / markup
32 * (which in turn the browser understands, and can display).
34 * There are seven main entry points into the Parser class:
37 * produces HTML output
38 * - Parser::preSaveTransform().
39 * produces altered wiki markup.
40 * - Parser::preprocess()
41 * removes HTML comments and expands templates
42 * - Parser::cleanSig() and Parser::cleanSigInSig()
43 * Cleans a signature before saving it to preferences
44 * - Parser::getSection()
45 * Return the content of a section from an article for section editing
46 * - Parser::replaceSection()
47 * Replaces a section by number inside an article
48 * - Parser::getPreloadText()
49 * Removes <noinclude> sections, and <includeonly> tags.
54 * @warning $wgUser or $wgTitle or $wgRequest or $wgLang. Keep them away!
57 * $wgNamespacesWithSubpages
59 * @par Settings only within ParserOptions:
60 * $wgAllowExternalImages
61 * $wgAllowSpecialInclusion
69 * Update this version number when the ParserOutput format
70 * changes in an incompatible way, so the parser cache
71 * can automatically discard old data.
73 const VERSION
= '1.6.4';
76 * Update this version number when the output of serialiseHalfParsedText()
77 * changes in an incompatible way
79 const HALF_PARSED_VERSION
= 2;
81 # Flags for Parser::setFunctionHook
82 # Also available as global constants from Defines.php
83 const SFH_NO_HASH
= 1;
84 const SFH_OBJECT_ARGS
= 2;
86 # Constants needed for external link processing
87 # Everything except bracket, space, or control characters
88 # \p{Zs} is unicode 'separator, space' category. It covers the space 0x20
89 # as well as U+3000 is IDEOGRAPHIC SPACE for bug 19052
90 const EXT_LINK_URL_CLASS
= '[^][<>"\\x00-\\x20\\x7F\p{Zs}]';
91 const EXT_IMAGE_REGEX
= '/^(http:\/\/|https:\/\/)([^][<>"\\x00-\\x20\\x7F\p{Zs}]+)
92 \\/([A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]+)\\.((?i)gif|png|jpg|jpeg)$/Sxu';
94 # State constants for the definition list colon extraction
95 const COLON_STATE_TEXT
= 0;
96 const COLON_STATE_TAG
= 1;
97 const COLON_STATE_TAGSTART
= 2;
98 const COLON_STATE_CLOSETAG
= 3;
99 const COLON_STATE_TAGSLASH
= 4;
100 const COLON_STATE_COMMENT
= 5;
101 const COLON_STATE_COMMENTDASH
= 6;
102 const COLON_STATE_COMMENTDASHDASH
= 7;
104 # Flags for preprocessToDom
105 const PTD_FOR_INCLUSION
= 1;
107 # Allowed values for $this->mOutputType
108 # Parameter to startExternalParse().
109 const OT_HTML
= 1; # like parse()
110 const OT_WIKI
= 2; # like preSaveTransform()
111 const OT_PREPROCESS
= 3; # like preprocess()
113 const OT_PLAIN
= 4; # like extractSections() - portions of the original are returned unchanged.
115 # Marker Suffix needs to be accessible staticly.
116 const MARKER_SUFFIX
= "-QINU\x7f";
118 # Markers used for wrapping the table of contents
119 const TOC_START
= '<mw:toc>';
120 const TOC_END
= '</mw:toc>';
123 var $mTagHooks = array();
124 var $mTransparentTagHooks = array();
125 var $mFunctionHooks = array();
126 var $mFunctionSynonyms = array( 0 => array(), 1 => array() );
127 var $mFunctionTagHooks = array();
128 var $mStripList = array();
129 var $mDefaultStripList = array();
130 var $mVarCache = array();
131 var $mImageParams = array();
132 var $mImageParamsMagicArray = array();
133 var $mMarkerIndex = 0;
134 var $mFirstCall = true;
136 # Initialised by initialiseVariables()
139 * @var MagicWordArray
144 * @var MagicWordArray
147 var $mConf, $mPreprocessor, $mExtLinkBracketedRegex, $mUrlProtocols; # Initialised in constructor
149 # Cleared with clearState():
154 var $mAutonumber, $mDTopen;
161 var $mIncludeCount, $mArgStack, $mLastSection, $mInPre;
163 * @var LinkHolderArray
168 var $mIncludeSizes, $mPPNodeCount, $mGeneratedPPNodeCount, $mHighestExpansionDepth;
170 var $mTplExpandCache; # empty-frame expansion cache
171 var $mTplRedirCache, $mTplDomCache, $mHeadings, $mDoubleUnderscores;
172 var $mExpensiveFunctionCount; # number of expensive parser function calls
173 var $mShowToc, $mForceTocPosition;
178 var $mUser; # User object; only used when doing pre-save transform
181 # These are variables reset at least once per parse regardless of $clearState
191 var $mTitle; # Title context, used for self-link rendering and similar things
192 var $mOutputType; # Output type, one of the OT_xxx constants
193 var $ot; # Shortcut alias, see setOutputType()
194 var $mRevisionObject; # The revision object of the specified revision ID
195 var $mRevisionId; # ID to display in {{REVISIONID}} tags
196 var $mRevisionTimestamp; # The timestamp of the specified revision ID
197 var $mRevisionUser; # User to display in {{REVISIONUSER}} tag
198 var $mRevisionSize; # Size to display in {{REVISIONSIZE}} variable
199 var $mRevIdForTs; # The revision ID which was used to fetch the timestamp
200 var $mInputSize = false; # For {{PAGESIZE}} on current page.
208 * @var array Array with the language name of each language link (i.e. the
209 * interwiki prefix) in the key, value arbitrary. Used to avoid sending
210 * duplicate language links to the ParserOutput.
212 var $mLangLinkLanguages;
215 * @var boolean Recursive call protection.
216 * This variable should be treated as if it were private.
218 public $mInParse = false;
223 public function __construct( $conf = array() ) {
224 $this->mConf
= $conf;
225 $this->mUrlProtocols
= wfUrlProtocols();
226 $this->mExtLinkBracketedRegex
= '/\[(((?i)' . $this->mUrlProtocols
. ')' .
227 self
::EXT_LINK_URL_CLASS
. '+)\p{Zs}*([^\]\\x00-\\x08\\x0a-\\x1F]*?)\]/Su';
228 if ( isset( $conf['preprocessorClass'] ) ) {
229 $this->mPreprocessorClass
= $conf['preprocessorClass'];
230 } elseif ( defined( 'HPHP_VERSION' ) ) {
231 # Preprocessor_Hash is much faster than Preprocessor_DOM under HipHop
232 $this->mPreprocessorClass
= 'Preprocessor_Hash';
233 } elseif ( extension_loaded( 'domxml' ) ) {
234 # PECL extension that conflicts with the core DOM extension (bug 13770)
235 wfDebug( "Warning: you have the obsolete domxml extension for PHP. Please remove it!\n" );
236 $this->mPreprocessorClass
= 'Preprocessor_Hash';
237 } elseif ( extension_loaded( 'dom' ) ) {
238 $this->mPreprocessorClass
= 'Preprocessor_DOM';
240 $this->mPreprocessorClass
= 'Preprocessor_Hash';
242 wfDebug( __CLASS__
. ": using preprocessor: {$this->mPreprocessorClass}\n" );
246 * Reduce memory usage to reduce the impact of circular references
248 function __destruct() {
249 if ( isset( $this->mLinkHolders
) ) {
250 unset( $this->mLinkHolders
);
252 foreach ( $this as $name => $value ) {
253 unset( $this->$name );
258 * Allow extensions to clean up when the parser is cloned
261 $this->mInParse
= false;
262 wfRunHooks( 'ParserCloned', array( $this ) );
266 * Do various kinds of initialisation on the first call of the parser
268 function firstCallInit() {
269 if ( !$this->mFirstCall
) {
272 $this->mFirstCall
= false;
274 wfProfileIn( __METHOD__
);
276 CoreParserFunctions
::register( $this );
277 CoreTagHooks
::register( $this );
278 $this->initialiseVariables();
280 wfRunHooks( 'ParserFirstCallInit', array( &$this ) );
281 wfProfileOut( __METHOD__
);
289 function clearState() {
290 wfProfileIn( __METHOD__
);
291 if ( $this->mFirstCall
) {
292 $this->firstCallInit();
294 $this->mOutput
= new ParserOutput
;
295 $this->mOptions
->registerWatcher( array( $this->mOutput
, 'recordOption' ) );
296 $this->mAutonumber
= 0;
297 $this->mLastSection
= '';
298 $this->mDTopen
= false;
299 $this->mIncludeCount
= array();
300 $this->mArgStack
= false;
301 $this->mInPre
= false;
302 $this->mLinkHolders
= new LinkHolderArray( $this );
304 $this->mRevisionObject
= $this->mRevisionTimestamp
=
305 $this->mRevisionId
= $this->mRevisionUser
= $this->mRevisionSize
= null;
306 $this->mVarCache
= array();
308 $this->mLangLinkLanguages
= array();
311 * Prefix for temporary replacement strings for the multipass parser.
312 * \x07 should never appear in input as it's disallowed in XML.
313 * Using it at the front also gives us a little extra robustness
314 * since it shouldn't match when butted up against identifier-like
317 * Must not consist of all title characters, or else it will change
318 * the behavior of <nowiki> in a link.
320 $this->mUniqPrefix
= "\x7fUNIQ" . self
::getRandomString();
321 $this->mStripState
= new StripState( $this->mUniqPrefix
);
323 # Clear these on every parse, bug 4549
324 $this->mTplExpandCache
= $this->mTplRedirCache
= $this->mTplDomCache
= array();
326 $this->mShowToc
= true;
327 $this->mForceTocPosition
= false;
328 $this->mIncludeSizes
= array(
332 $this->mPPNodeCount
= 0;
333 $this->mGeneratedPPNodeCount
= 0;
334 $this->mHighestExpansionDepth
= 0;
335 $this->mDefaultSort
= false;
336 $this->mHeadings
= array();
337 $this->mDoubleUnderscores
= array();
338 $this->mExpensiveFunctionCount
= 0;
341 if ( isset( $this->mPreprocessor
) && $this->mPreprocessor
->parser
!== $this ) {
342 $this->mPreprocessor
= null;
345 wfRunHooks( 'ParserClearState', array( &$this ) );
346 wfProfileOut( __METHOD__
);
350 * Convert wikitext to HTML
351 * Do not call this function recursively.
353 * @param string $text text we want to parse
354 * @param Title $title
355 * @param ParserOptions $options
356 * @param bool $linestart
357 * @param bool $clearState
358 * @param int $revid Number to pass in {{REVISIONID}}
359 * @return ParserOutput A ParserOutput
361 public function parse( $text, Title
$title, ParserOptions
$options,
362 $linestart = true, $clearState = true, $revid = null
365 * First pass--just handle <nowiki> sections, pass the rest off
366 * to internalParse() which does all the real work.
369 global $wgUseTidy, $wgAlwaysUseTidy, $wgShowHostnames;
370 $fname = __METHOD__
. '-' . wfGetCaller();
371 wfProfileIn( __METHOD__
);
372 wfProfileIn( $fname );
375 $magicScopeVariable = $this->lock();
378 $this->startParse( $title, $options, self
::OT_HTML
, $clearState );
380 $this->mInputSize
= strlen( $text );
381 if ( $this->mOptions
->getEnableLimitReport() ) {
382 $this->mOutput
->resetParseStartTime();
385 # Remove the strip marker tag prefix from the input, if present.
387 $text = str_replace( $this->mUniqPrefix
, '', $text );
390 $oldRevisionId = $this->mRevisionId
;
391 $oldRevisionObject = $this->mRevisionObject
;
392 $oldRevisionTimestamp = $this->mRevisionTimestamp
;
393 $oldRevisionUser = $this->mRevisionUser
;
394 $oldRevisionSize = $this->mRevisionSize
;
395 if ( $revid !== null ) {
396 $this->mRevisionId
= $revid;
397 $this->mRevisionObject
= null;
398 $this->mRevisionTimestamp
= null;
399 $this->mRevisionUser
= null;
400 $this->mRevisionSize
= null;
403 wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$this->mStripState
) );
405 wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$this->mStripState
) );
406 $text = $this->internalParse( $text );
407 wfRunHooks( 'ParserAfterParse', array( &$this, &$text, &$this->mStripState
) );
409 $text = $this->mStripState
->unstripGeneral( $text );
411 # Clean up special characters, only run once, next-to-last before doBlockLevels
413 # french spaces, last one Guillemet-left
414 # only if there is something before the space
415 '/(.) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1 ',
416 # french spaces, Guillemet-right
417 '/(\\302\\253) /' => '\\1 ',
418 '/ (!\s*important)/' => ' \\1', # Beware of CSS magic word !important, bug #11874.
420 $text = preg_replace( array_keys( $fixtags ), array_values( $fixtags ), $text );
422 $text = $this->doBlockLevels( $text, $linestart );
424 $this->replaceLinkHolders( $text );
427 * The input doesn't get language converted if
429 * b) Content isn't converted
430 * c) It's a conversion table
431 * d) it is an interface message (which is in the user language)
433 if ( !( $options->getDisableContentConversion()
434 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] ) )
436 if ( !$this->mOptions
->getInterfaceMessage() ) {
437 # The position of the convert() call should not be changed. it
438 # assumes that the links are all replaced and the only thing left
439 # is the <nowiki> mark.
440 $text = $this->getConverterLanguage()->convert( $text );
445 * A converted title will be provided in the output object if title and
446 * content conversion are enabled, the article text does not contain
447 * a conversion-suppressing double-underscore tag, and no
448 * {{DISPLAYTITLE:...}} is present. DISPLAYTITLE takes precedence over
449 * automatic link conversion.
451 if ( !( $options->getDisableTitleConversion()
452 ||
isset( $this->mDoubleUnderscores
['nocontentconvert'] )
453 ||
isset( $this->mDoubleUnderscores
['notitleconvert'] )
454 ||
$this->mOutput
->getDisplayTitle() !== false )
456 $convruletitle = $this->getConverterLanguage()->getConvRuleTitle();
457 if ( $convruletitle ) {
458 $this->mOutput
->setTitleText( $convruletitle );
460 $titleText = $this->getConverterLanguage()->convertTitle( $title );
461 $this->mOutput
->setTitleText( $titleText );
465 $text = $this->mStripState
->unstripNoWiki( $text );
467 wfRunHooks( 'ParserBeforeTidy', array( &$this, &$text ) );
469 $text = $this->replaceTransparentTags( $text );
470 $text = $this->mStripState
->unstripGeneral( $text );
472 $text = Sanitizer
::normalizeCharReferences( $text );
474 if ( ( $wgUseTidy && $this->mOptions
->getTidy() ) ||
$wgAlwaysUseTidy ) {
475 $text = MWTidy
::tidy( $text );
477 # attempt to sanitize at least some nesting problems
478 # (bug #2702 and quite a few others)
480 # ''Something [http://www.cool.com cool''] -->
481 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
482 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
483 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
484 # fix up an anchor inside another anchor, only
485 # at least for a single single nested link (bug 3695)
486 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
487 '\\1\\2</a>\\3</a>\\1\\4</a>',
488 # fix div inside inline elements- doBlockLevels won't wrap a line which
489 # contains a div, so fix it up here; replace
490 # div with escaped text
491 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
492 '\\1\\3<div\\5>\\6</div>\\8\\9',
493 # remove empty italic or bold tag pairs, some
494 # introduced by rules above
495 '/<([bi])><\/\\1>/' => '',
498 $text = preg_replace(
499 array_keys( $tidyregs ),
500 array_values( $tidyregs ),
504 if ( $this->mExpensiveFunctionCount
> $this->mOptions
->getExpensiveParserFunctionLimit() ) {
505 $this->limitationWarn( 'expensive-parserfunction',
506 $this->mExpensiveFunctionCount
,
507 $this->mOptions
->getExpensiveParserFunctionLimit()
511 wfRunHooks( 'ParserAfterTidy', array( &$this, &$text ) );
513 # Information on include size limits, for the benefit of users who try to skirt them
514 if ( $this->mOptions
->getEnableLimitReport() ) {
515 $max = $this->mOptions
->getMaxIncludeSize();
517 $cpuTime = $this->mOutput
->getTimeSinceStart( 'cpu' );
518 if ( $cpuTime !== null ) {
519 $this->mOutput
->setLimitReportData( 'limitreport-cputime',
520 sprintf( "%.3f", $cpuTime )
524 $wallTime = $this->mOutput
->getTimeSinceStart( 'wall' );
525 $this->mOutput
->setLimitReportData( 'limitreport-walltime',
526 sprintf( "%.3f", $wallTime )
529 $this->mOutput
->setLimitReportData( 'limitreport-ppvisitednodes',
530 array( $this->mPPNodeCount
, $this->mOptions
->getMaxPPNodeCount() )
532 $this->mOutput
->setLimitReportData( 'limitreport-ppgeneratednodes',
533 array( $this->mGeneratedPPNodeCount
, $this->mOptions
->getMaxGeneratedPPNodeCount() )
535 $this->mOutput
->setLimitReportData( 'limitreport-postexpandincludesize',
536 array( $this->mIncludeSizes
['post-expand'], $max )
538 $this->mOutput
->setLimitReportData( 'limitreport-templateargumentsize',
539 array( $this->mIncludeSizes
['arg'], $max )
541 $this->mOutput
->setLimitReportData( 'limitreport-expansiondepth',
542 array( $this->mHighestExpansionDepth
, $this->mOptions
->getMaxPPExpandDepth() )
544 $this->mOutput
->setLimitReportData( 'limitreport-expensivefunctioncount',
545 array( $this->mExpensiveFunctionCount
, $this->mOptions
->getExpensiveParserFunctionLimit() )
547 wfRunHooks( 'ParserLimitReportPrepare', array( $this, $this->mOutput
) );
549 $limitReport = "NewPP limit report\n";
550 if ( $wgShowHostnames ) {
551 $limitReport .= 'Parsed by ' . wfHostname() . "\n";
553 foreach ( $this->mOutput
->getLimitReportData() as $key => $value ) {
554 if ( wfRunHooks( 'ParserLimitReportFormat',
555 array( $key, &$value, &$limitReport, false, false )
557 $keyMsg = wfMessage( $key )->inLanguage( 'en' )->useDatabase( false );
558 $valueMsg = wfMessage( array( "$key-value-text", "$key-value" ) )
559 ->inLanguage( 'en' )->useDatabase( false );
560 if ( !$valueMsg->exists() ) {
561 $valueMsg = new RawMessage( '$1' );
563 if ( !$keyMsg->isDisabled() && !$valueMsg->isDisabled() ) {
564 $valueMsg->params( $value );
565 $limitReport .= "{$keyMsg->text()}: {$valueMsg->text()}\n";
569 // Since we're not really outputting HTML, decode the entities and
570 // then re-encode the things that need hiding inside HTML comments.
571 $limitReport = htmlspecialchars_decode( $limitReport );
572 wfRunHooks( 'ParserLimitReport', array( $this, &$limitReport ) );
574 // Sanitize for comment. Note '‐' in the replacement is U+2010,
575 // which looks much like the problematic '-'.
576 $limitReport = str_replace( array( '-', '&' ), array( '‐', '&' ), $limitReport );
577 $text .= "\n<!-- \n$limitReport-->\n";
579 if ( $this->mGeneratedPPNodeCount
> $this->mOptions
->getMaxGeneratedPPNodeCount() / 10 ) {
580 wfDebugLog( 'generated-pp-node-count', $this->mGeneratedPPNodeCount
. ' ' .
581 $this->mTitle
->getPrefixedDBkey() );
584 $this->mOutput
->setText( $text );
586 $this->mRevisionId
= $oldRevisionId;
587 $this->mRevisionObject
= $oldRevisionObject;
588 $this->mRevisionTimestamp
= $oldRevisionTimestamp;
589 $this->mRevisionUser
= $oldRevisionUser;
590 $this->mRevisionSize
= $oldRevisionSize;
591 $this->mInputSize
= false;
592 wfProfileOut( $fname );
593 wfProfileOut( __METHOD__
);
595 return $this->mOutput
;
599 * Recursive parser entry point that can be called from an extension tag
602 * If $frame is not provided, then template variables (e.g., {{{1}}}) within $text are not expanded
604 * @param string $text Text extension wants to have parsed
605 * @param bool|PPFrame $frame The frame to use for expanding any template variables
609 function recursiveTagParse( $text, $frame = false ) {
610 wfProfileIn( __METHOD__
);
611 wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$this->mStripState
) );
612 wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$this->mStripState
) );
613 $text = $this->internalParse( $text, false, $frame );
614 wfProfileOut( __METHOD__
);
619 * Expand templates and variables in the text, producing valid, static wikitext.
620 * Also removes comments.
621 * @param string $text
622 * @param Title $title
623 * @param ParserOptions $options
624 * @param int|null $revid
625 * @return mixed|string
627 function preprocess( $text, Title
$title = null, ParserOptions
$options, $revid = null ) {
628 wfProfileIn( __METHOD__
);
629 $magicScopeVariable = $this->lock();
630 $this->startParse( $title, $options, self
::OT_PREPROCESS
, true );
631 if ( $revid !== null ) {
632 $this->mRevisionId
= $revid;
634 wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$this->mStripState
) );
635 wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$this->mStripState
) );
636 $text = $this->replaceVariables( $text );
637 $text = $this->mStripState
->unstripBoth( $text );
638 wfProfileOut( __METHOD__
);
643 * Recursive parser entry point that can be called from an extension tag
646 * @param string $text Text to be expanded
647 * @param bool|PPFrame $frame The frame to use for expanding any template variables
651 public function recursivePreprocess( $text, $frame = false ) {
652 wfProfileIn( __METHOD__
);
653 $text = $this->replaceVariables( $text, $frame );
654 $text = $this->mStripState
->unstripBoth( $text );
655 wfProfileOut( __METHOD__
);
660 * Process the wikitext for the "?preload=" feature. (bug 5210)
662 * "<noinclude>", "<includeonly>" etc. are parsed as for template
663 * transclusion, comments, templates, arguments, tags hooks and parser
664 * functions are untouched.
666 * @param string $text
667 * @param Title $title
668 * @param ParserOptions $options
669 * @param array $params
672 public function getPreloadText( $text, Title
$title, ParserOptions
$options, $params = array() ) {
673 $msg = new RawMessage( $text );
674 $text = $msg->params( $params )->plain();
676 # Parser (re)initialisation
677 $magicScopeVariable = $this->lock();
678 $this->startParse( $title, $options, self
::OT_PLAIN
, true );
680 $flags = PPFrame
::NO_ARGS | PPFrame
::NO_TEMPLATES
;
681 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
682 $text = $this->getPreprocessor()->newFrame()->expand( $dom, $flags );
683 $text = $this->mStripState
->unstripBoth( $text );
688 * Get a random string
692 public static function getRandomString() {
693 return wfRandomString( 16 );
697 * Set the current user.
698 * Should only be used when doing pre-save transform.
700 * @param User|null $user User object or null (to reset)
702 function setUser( $user ) {
703 $this->mUser
= $user;
707 * Accessor for mUniqPrefix.
711 public function uniqPrefix() {
712 if ( !isset( $this->mUniqPrefix
) ) {
713 # @todo FIXME: This is probably *horribly wrong*
714 # LanguageConverter seems to want $wgParser's uniqPrefix, however
715 # if this is called for a parser cache hit, the parser may not
716 # have ever been initialized in the first place.
717 # Not really sure what the heck is supposed to be going on here.
719 # throw new MWException( "Accessing uninitialized mUniqPrefix" );
721 return $this->mUniqPrefix
;
725 * Set the context title
729 function setTitle( $t ) {
731 $t = Title
::newFromText( 'NO TITLE' );
734 if ( $t->hasFragment() ) {
735 # Strip the fragment to avoid various odd effects
736 $this->mTitle
= clone $t;
737 $this->mTitle
->setFragment( '' );
744 * Accessor for the Title object
748 function getTitle() {
749 return $this->mTitle
;
753 * Accessor/mutator for the Title object
755 * @param Title $x Title object or null to just get the current one
758 function Title( $x = null ) {
759 return wfSetVar( $this->mTitle
, $x );
763 * Set the output type
765 * @param int $ot New value
767 function setOutputType( $ot ) {
768 $this->mOutputType
= $ot;
771 'html' => $ot == self
::OT_HTML
,
772 'wiki' => $ot == self
::OT_WIKI
,
773 'pre' => $ot == self
::OT_PREPROCESS
,
774 'plain' => $ot == self
::OT_PLAIN
,
779 * Accessor/mutator for the output type
781 * @param int|null $x New value or null to just get the current one
784 function OutputType( $x = null ) {
785 return wfSetVar( $this->mOutputType
, $x );
789 * Get the ParserOutput object
791 * @return ParserOutput
793 function getOutput() {
794 return $this->mOutput
;
798 * Get the ParserOptions object
800 * @return ParserOptions object
802 function getOptions() {
803 return $this->mOptions
;
807 * Accessor/mutator for the ParserOptions object
809 * @param ParserOptions $x New value or null to just get the current one
810 * @return ParserOptions Current ParserOptions object
812 function Options( $x = null ) {
813 return wfSetVar( $this->mOptions
, $x );
819 function nextLinkID() {
820 return $this->mLinkID++
;
826 function setLinkID( $id ) {
827 $this->mLinkID
= $id;
831 * Get a language object for use in parser functions such as {{FORMATNUM:}}
834 function getFunctionLang() {
835 return $this->getTargetLanguage();
839 * Get the target language for the content being parsed. This is usually the
840 * language that the content is in.
844 * @throws MWException
845 * @return Language|null
847 public function getTargetLanguage() {
848 $target = $this->mOptions
->getTargetLanguage();
850 if ( $target !== null ) {
852 } elseif ( $this->mOptions
->getInterfaceMessage() ) {
853 return $this->mOptions
->getUserLangObj();
854 } elseif ( is_null( $this->mTitle
) ) {
855 throw new MWException( __METHOD__
. ': $this->mTitle is null' );
858 return $this->mTitle
->getPageLanguage();
862 * Get the language object for language conversion
863 * @return Language|null
865 function getConverterLanguage() {
866 return $this->getTargetLanguage();
870 * Get a User object either from $this->mUser, if set, or from the
871 * ParserOptions object otherwise
876 if ( !is_null( $this->mUser
) ) {
879 return $this->mOptions
->getUser();
883 * Get a preprocessor object
885 * @return Preprocessor
887 function getPreprocessor() {
888 if ( !isset( $this->mPreprocessor
) ) {
889 $class = $this->mPreprocessorClass
;
890 $this->mPreprocessor
= new $class( $this );
892 return $this->mPreprocessor
;
896 * Replaces all occurrences of HTML-style comments and the given tags
897 * in the text with a random marker and returns the next text. The output
898 * parameter $matches will be an associative array filled with data in
902 * 'UNIQ-xxxxx' => array(
905 * array( 'param' => 'x' ),
906 * '<element param="x">tag content</element>' ) )
909 * @param array $elements List of element names. Comments are always extracted.
910 * @param string $text Source text string.
911 * @param array $matches Out parameter, Array: extracted tags
912 * @param string $uniq_prefix
913 * @return string Stripped text
915 public static function extractTagsAndParams( $elements, $text, &$matches, $uniq_prefix = '' ) {
920 $taglist = implode( '|', $elements );
921 $start = "/<($taglist)(\\s+[^>]*?|\\s*?)(\/?" . ">)|<(!--)/i";
923 while ( $text != '' ) {
924 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE
);
926 if ( count( $p ) < 5 ) {
929 if ( count( $p ) > 5 ) {
943 $marker = "$uniq_prefix-$element-" . sprintf( '%08X', $n++
) . self
::MARKER_SUFFIX
;
944 $stripped .= $marker;
946 if ( $close === '/>' ) {
947 # Empty element tag, <tag />
952 if ( $element === '!--' ) {
955 $end = "/(<\\/$element\\s*>)/i";
957 $q = preg_split( $end, $inside, 2, PREG_SPLIT_DELIM_CAPTURE
);
959 if ( count( $q ) < 3 ) {
960 # No end tag -- let it run out to the end of the text.
969 $matches[$marker] = array( $element,
971 Sanitizer
::decodeTagAttributes( $attributes ),
972 "<$element$attributes$close$content$tail" );
978 * Get a list of strippable XML-like elements
982 function getStripList() {
983 return $this->mStripList
;
987 * Add an item to the strip state
988 * Returns the unique tag which must be inserted into the stripped text
989 * The tag will be replaced with the original text in unstrip()
991 * @param string $text
995 function insertStripItem( $text ) {
996 $rnd = "{$this->mUniqPrefix}-item-{$this->mMarkerIndex}-" . self
::MARKER_SUFFIX
;
997 $this->mMarkerIndex++
;
998 $this->mStripState
->addGeneral( $rnd, $text );
1003 * parse the wiki syntax used to render tables
1006 * @param string $text
1009 function doTableStuff( $text ) {
1010 wfProfileIn( __METHOD__
);
1012 $lines = StringUtils
::explode( "\n", $text );
1014 $td_history = array(); # Is currently a td tag open?
1015 $last_tag_history = array(); # Save history of last lag activated (td, th or caption)
1016 $tr_history = array(); # Is currently a tr tag open?
1017 $tr_attributes = array(); # history of tr attributes
1018 $has_opened_tr = array(); # Did this table open a <tr> element?
1019 $indent_level = 0; # indent level of the table
1021 foreach ( $lines as $outLine ) {
1022 $line = trim( $outLine );
1024 if ( $line === '' ) { # empty line, go to next line
1025 $out .= $outLine . "\n";
1029 $first_character = $line[0];
1032 if ( preg_match( '/^(:*)\{\|(.*)$/', $line, $matches ) ) {
1033 # First check if we are starting a new table
1034 $indent_level = strlen( $matches[1] );
1036 $attributes = $this->mStripState
->unstripBoth( $matches[2] );
1037 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'table' );
1039 $outLine = str_repeat( '<dl><dd>', $indent_level ) . "<table{$attributes}>";
1040 array_push( $td_history, false );
1041 array_push( $last_tag_history, '' );
1042 array_push( $tr_history, false );
1043 array_push( $tr_attributes, '' );
1044 array_push( $has_opened_tr, false );
1045 } elseif ( count( $td_history ) == 0 ) {
1046 # Don't do any of the following
1047 $out .= $outLine . "\n";
1049 } elseif ( substr( $line, 0, 2 ) === '|}' ) {
1050 # We are ending a table
1051 $line = '</table>' . substr( $line, 2 );
1052 $last_tag = array_pop( $last_tag_history );
1054 if ( !array_pop( $has_opened_tr ) ) {
1055 $line = "<tr><td></td></tr>{$line}";
1058 if ( array_pop( $tr_history ) ) {
1059 $line = "</tr>{$line}";
1062 if ( array_pop( $td_history ) ) {
1063 $line = "</{$last_tag}>{$line}";
1065 array_pop( $tr_attributes );
1066 $outLine = $line . str_repeat( '</dd></dl>', $indent_level );
1067 } elseif ( substr( $line, 0, 2 ) === '|-' ) {
1068 # Now we have a table row
1069 $line = preg_replace( '#^\|-+#', '', $line );
1071 # Whats after the tag is now only attributes
1072 $attributes = $this->mStripState
->unstripBoth( $line );
1073 $attributes = Sanitizer
::fixTagAttributes( $attributes, 'tr' );
1074 array_pop( $tr_attributes );
1075 array_push( $tr_attributes, $attributes );
1078 $last_tag = array_pop( $last_tag_history );
1079 array_pop( $has_opened_tr );
1080 array_push( $has_opened_tr, true );
1082 if ( array_pop( $tr_history ) ) {
1086 if ( array_pop( $td_history ) ) {
1087 $line = "</{$last_tag}>{$line}";
1091 array_push( $tr_history, false );
1092 array_push( $td_history, false );
1093 array_push( $last_tag_history, '' );
1094 } elseif ( $first_character === '|'
1095 ||
$first_character === '!'
1096 ||
substr( $line, 0, 2 ) === '|+'
1098 # This might be cell elements, td, th or captions
1099 if ( substr( $line, 0, 2 ) === '|+' ) {
1100 $first_character = '+';
1101 $line = substr( $line, 1 );
1104 $line = substr( $line, 1 );
1106 if ( $first_character === '!' ) {
1107 $line = str_replace( '!!', '||', $line );
1110 # Split up multiple cells on the same line.
1111 # FIXME : This can result in improper nesting of tags processed
1112 # by earlier parser steps, but should avoid splitting up eg
1113 # attribute values containing literal "||".
1114 $cells = StringUtils
::explodeMarkup( '||', $line );
1118 # Loop through each table cell
1119 foreach ( $cells as $cell ) {
1121 if ( $first_character !== '+' ) {
1122 $tr_after = array_pop( $tr_attributes );
1123 if ( !array_pop( $tr_history ) ) {
1124 $previous = "<tr{$tr_after}>\n";
1126 array_push( $tr_history, true );
1127 array_push( $tr_attributes, '' );
1128 array_pop( $has_opened_tr );
1129 array_push( $has_opened_tr, true );
1132 $last_tag = array_pop( $last_tag_history );
1134 if ( array_pop( $td_history ) ) {
1135 $previous = "</{$last_tag}>\n{$previous}";
1138 if ( $first_character === '|' ) {
1140 } elseif ( $first_character === '!' ) {
1142 } elseif ( $first_character === '+' ) {
1143 $last_tag = 'caption';
1148 array_push( $last_tag_history, $last_tag );
1150 # A cell could contain both parameters and data
1151 $cell_data = explode( '|', $cell, 2 );
1153 # Bug 553: Note that a '|' inside an invalid link should not
1154 # be mistaken as delimiting cell parameters
1155 if ( strpos( $cell_data[0], '[[' ) !== false ) {
1156 $cell = "{$previous}<{$last_tag}>{$cell}";
1157 } elseif ( count( $cell_data ) == 1 ) {
1158 $cell = "{$previous}<{$last_tag}>{$cell_data[0]}";
1160 $attributes = $this->mStripState
->unstripBoth( $cell_data[0] );
1161 $attributes = Sanitizer
::fixTagAttributes( $attributes, $last_tag );
1162 $cell = "{$previous}<{$last_tag}{$attributes}>{$cell_data[1]}";
1166 array_push( $td_history, true );
1169 $out .= $outLine . "\n";
1172 # Closing open td, tr && table
1173 while ( count( $td_history ) > 0 ) {
1174 if ( array_pop( $td_history ) ) {
1177 if ( array_pop( $tr_history ) ) {
1180 if ( !array_pop( $has_opened_tr ) ) {
1181 $out .= "<tr><td></td></tr>\n";
1184 $out .= "</table>\n";
1187 # Remove trailing line-ending (b/c)
1188 if ( substr( $out, -1 ) === "\n" ) {
1189 $out = substr( $out, 0, -1 );
1192 # special case: don't return empty table
1193 if ( $out === "<table>\n<tr><td></td></tr>\n</table>" ) {
1197 wfProfileOut( __METHOD__
);
1203 * Helper function for parse() that transforms wiki markup into
1204 * HTML. Only called for $mOutputType == self::OT_HTML.
1208 * @param string $text
1209 * @param bool $isMain
1210 * @param bool $frame
1214 function internalParse( $text, $isMain = true, $frame = false ) {
1215 wfProfileIn( __METHOD__
);
1219 # Hook to suspend the parser in this state
1220 if ( !wfRunHooks( 'ParserBeforeInternalParse', array( &$this, &$text, &$this->mStripState
) ) ) {
1221 wfProfileOut( __METHOD__
);
1225 # if $frame is provided, then use $frame for replacing any variables
1227 # use frame depth to infer how include/noinclude tags should be handled
1228 # depth=0 means this is the top-level document; otherwise it's an included document
1229 if ( !$frame->depth
) {
1232 $flag = Parser
::PTD_FOR_INCLUSION
;
1234 $dom = $this->preprocessToDom( $text, $flag );
1235 $text = $frame->expand( $dom );
1237 # if $frame is not provided, then use old-style replaceVariables
1238 $text = $this->replaceVariables( $text );
1241 wfRunHooks( 'InternalParseBeforeSanitize', array( &$this, &$text, &$this->mStripState
) );
1242 $text = Sanitizer
::removeHTMLtags(
1244 array( &$this, 'attributeStripCallback' ),
1246 array_keys( $this->mTransparentTagHooks
)
1248 wfRunHooks( 'InternalParseBeforeLinks', array( &$this, &$text, &$this->mStripState
) );
1250 # Tables need to come after variable replacement for things to work
1251 # properly; putting them before other transformations should keep
1252 # exciting things like link expansions from showing up in surprising
1254 $text = $this->doTableStuff( $text );
1256 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
1258 $text = $this->doDoubleUnderscore( $text );
1260 $text = $this->doHeadings( $text );
1261 $text = $this->replaceInternalLinks( $text );
1262 $text = $this->doAllQuotes( $text );
1263 $text = $this->replaceExternalLinks( $text );
1265 # replaceInternalLinks may sometimes leave behind
1266 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
1267 $text = str_replace( $this->mUniqPrefix
. 'NOPARSE', '', $text );
1269 $text = $this->doMagicLinks( $text );
1270 $text = $this->formatHeadings( $text, $origText, $isMain );
1272 wfProfileOut( __METHOD__
);
1277 * Replace special strings like "ISBN xxx" and "RFC xxx" with
1278 * magic external links.
1283 * @param string $text
1287 function doMagicLinks( $text ) {
1288 wfProfileIn( __METHOD__
);
1289 $prots = wfUrlProtocolsWithoutProtRel();
1290 $urlChar = self
::EXT_LINK_URL_CLASS
;
1291 $text = preg_replace_callback(
1293 (<a[ \t\r\n>].*?</a>) | # m[1]: Skip link text
1294 (<.*?>) | # m[2]: Skip stuff inside HTML elements' . "
1295 (\\b(?i:$prots)$urlChar+) | # m[3]: Free external links" . '
1296 (?:RFC|PMID)\s+([0-9]+) | # m[4]: RFC or PMID, capture number
1297 ISBN\s+(\b # m[5]: ISBN, capture number
1298 (?: 97[89] [\ \-]? )? # optional 13-digit ISBN prefix
1299 (?: [0-9] [\ \-]? ){9} # 9 digits with opt. delimiters
1300 [0-9Xx] # check digit
1302 )!xu', array( &$this, 'magicLinkCallback' ), $text );
1303 wfProfileOut( __METHOD__
);
1308 * @throws MWException
1310 * @return HTML|string
1312 function magicLinkCallback( $m ) {
1313 if ( isset( $m[1] ) && $m[1] !== '' ) {
1316 } elseif ( isset( $m[2] ) && $m[2] !== '' ) {
1319 } elseif ( isset( $m[3] ) && $m[3] !== '' ) {
1320 # Free external link
1321 return $this->makeFreeExternalLink( $m[0] );
1322 } elseif ( isset( $m[4] ) && $m[4] !== '' ) {
1324 if ( substr( $m[0], 0, 3 ) === 'RFC' ) {
1327 $cssClass = 'mw-magiclink-rfc';
1329 } elseif ( substr( $m[0], 0, 4 ) === 'PMID' ) {
1331 $urlmsg = 'pubmedurl';
1332 $cssClass = 'mw-magiclink-pmid';
1335 throw new MWException( __METHOD__
. ': unrecognised match type "' .
1336 substr( $m[0], 0, 20 ) . '"' );
1338 $url = wfMessage( $urlmsg, $id )->inContentLanguage()->text();
1339 return Linker
::makeExternalLink( $url, "{$keyword} {$id}", true, $cssClass );
1340 } elseif ( isset( $m[5] ) && $m[5] !== '' ) {
1343 $num = strtr( $isbn, array(
1348 $titleObj = SpecialPage
::getTitleFor( 'Booksources', $num );
1349 return '<a href="' .
1350 htmlspecialchars( $titleObj->getLocalURL() ) .
1351 "\" class=\"internal mw-magiclink-isbn\">ISBN $isbn</a>";
1358 * Make a free external link, given a user-supplied URL
1360 * @param string $url
1362 * @return string HTML
1365 function makeFreeExternalLink( $url ) {
1366 wfProfileIn( __METHOD__
);
1370 # The characters '<' and '>' (which were escaped by
1371 # removeHTMLtags()) should not be included in
1372 # URLs, per RFC 2396.
1374 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE
) ) {
1375 $trail = substr( $url, $m2[0][1] ) . $trail;
1376 $url = substr( $url, 0, $m2[0][1] );
1379 # Move trailing punctuation to $trail
1381 # If there is no left bracket, then consider right brackets fair game too
1382 if ( strpos( $url, '(' ) === false ) {
1386 $numSepChars = strspn( strrev( $url ), $sep );
1387 if ( $numSepChars ) {
1388 $trail = substr( $url, -$numSepChars ) . $trail;
1389 $url = substr( $url, 0, -$numSepChars );
1392 $url = Sanitizer
::cleanUrl( $url );
1394 # Is this an external image?
1395 $text = $this->maybeMakeExternalImage( $url );
1396 if ( $text === false ) {
1397 # Not an image, make a link
1398 $text = Linker
::makeExternalLink( $url,
1399 $this->getConverterLanguage()->markNoConversion( $url, true ),
1401 $this->getExternalLinkAttribs( $url ) );
1402 # Register it in the output object...
1403 # Replace unnecessary URL escape codes with their equivalent characters
1404 $pasteurized = self
::replaceUnusualEscapes( $url );
1405 $this->mOutput
->addExternalLink( $pasteurized );
1407 wfProfileOut( __METHOD__
);
1408 return $text . $trail;
1412 * Parse headers and return html
1416 * @param string $text
1420 function doHeadings( $text ) {
1421 wfProfileIn( __METHOD__
);
1422 for ( $i = 6; $i >= 1; --$i ) {
1423 $h = str_repeat( '=', $i );
1424 $text = preg_replace( "/^$h(.+)$h\\s*$/m", "<h$i>\\1</h$i>", $text );
1426 wfProfileOut( __METHOD__
);
1431 * Replace single quotes with HTML markup
1434 * @param string $text
1436 * @return string the altered text
1438 function doAllQuotes( $text ) {
1439 wfProfileIn( __METHOD__
);
1441 $lines = StringUtils
::explode( "\n", $text );
1442 foreach ( $lines as $line ) {
1443 $outtext .= $this->doQuotes( $line ) . "\n";
1445 $outtext = substr( $outtext, 0, -1 );
1446 wfProfileOut( __METHOD__
);
1451 * Helper function for doAllQuotes()
1453 * @param string $text
1457 public function doQuotes( $text ) {
1458 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1459 $countarr = count( $arr );
1460 if ( $countarr == 1 ) {
1464 // First, do some preliminary work. This may shift some apostrophes from
1465 // being mark-up to being text. It also counts the number of occurrences
1466 // of bold and italics mark-ups.
1469 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1470 $thislen = strlen( $arr[$i] );
1471 // If there are ever four apostrophes, assume the first is supposed to
1472 // be text, and the remaining three constitute mark-up for bold text.
1473 // (bug 13227: ''''foo'''' turns into ' ''' foo ' ''')
1474 if ( $thislen == 4 ) {
1475 $arr[$i - 1] .= "'";
1478 } elseif ( $thislen > 5 ) {
1479 // If there are more than 5 apostrophes in a row, assume they're all
1480 // text except for the last 5.
1481 // (bug 13227: ''''''foo'''''' turns into ' ''''' foo ' ''''')
1482 $arr[$i - 1] .= str_repeat( "'", $thislen - 5 );
1486 // Count the number of occurrences of bold and italics mark-ups.
1487 if ( $thislen == 2 ) {
1489 } elseif ( $thislen == 3 ) {
1491 } elseif ( $thislen == 5 ) {
1497 // If there is an odd number of both bold and italics, it is likely
1498 // that one of the bold ones was meant to be an apostrophe followed
1499 // by italics. Which one we cannot know for certain, but it is more
1500 // likely to be one that has a single-letter word before it.
1501 if ( ( $numbold %
2 == 1 ) && ( $numitalics %
2 == 1 ) ) {
1502 $firstsingleletterword = -1;
1503 $firstmultiletterword = -1;
1505 for ( $i = 1; $i < $countarr; $i +
= 2 ) {
1506 if ( strlen( $arr[$i] ) == 3 ) {
1507 $x1 = substr( $arr[$i - 1], -1 );
1508 $x2 = substr( $arr[$i - 1], -2, 1 );
1509 if ( $x1 === ' ' ) {
1510 if ( $firstspace == -1 ) {
1513 } elseif ( $x2 === ' ' ) {
1514 if ( $firstsingleletterword == -1 ) {
1515 $firstsingleletterword = $i;
1516 // if $firstsingleletterword is set, we don't
1517 // look at the other options, so we can bail early.
1521 if ( $firstmultiletterword == -1 ) {
1522 $firstmultiletterword = $i;
1528 // If there is a single-letter word, use it!
1529 if ( $firstsingleletterword > -1 ) {
1530 $arr[$firstsingleletterword] = "''";
1531 $arr[$firstsingleletterword - 1] .= "'";
1532 } elseif ( $firstmultiletterword > -1 ) {
1533 // If not, but there's a multi-letter word, use that one.
1534 $arr[$firstmultiletterword] = "''";
1535 $arr[$firstmultiletterword - 1] .= "'";
1536 } elseif ( $firstspace > -1 ) {
1537 // ... otherwise use the first one that has neither.
1538 // (notice that it is possible for all three to be -1 if, for example,
1539 // there is only one pentuple-apostrophe in the line)
1540 $arr[$firstspace] = "''";
1541 $arr[$firstspace - 1] .= "'";
1545 // Now let's actually convert our apostrophic mush to HTML!
1550 foreach ( $arr as $r ) {
1551 if ( ( $i %
2 ) == 0 ) {
1552 if ( $state === 'both' ) {
1558 $thislen = strlen( $r );
1559 if ( $thislen == 2 ) {
1560 if ( $state === 'i' ) {
1563 } elseif ( $state === 'bi' ) {
1566 } elseif ( $state === 'ib' ) {
1567 $output .= '</b></i><b>';
1569 } elseif ( $state === 'both' ) {
1570 $output .= '<b><i>' . $buffer . '</i>';
1572 } else { // $state can be 'b' or ''
1576 } elseif ( $thislen == 3 ) {
1577 if ( $state === 'b' ) {
1580 } elseif ( $state === 'bi' ) {
1581 $output .= '</i></b><i>';
1583 } elseif ( $state === 'ib' ) {
1586 } elseif ( $state === 'both' ) {
1587 $output .= '<i><b>' . $buffer . '</b>';
1589 } else { // $state can be 'i' or ''
1593 } elseif ( $thislen == 5 ) {
1594 if ( $state === 'b' ) {
1595 $output .= '</b><i>';
1597 } elseif ( $state === 'i' ) {
1598 $output .= '</i><b>';
1600 } elseif ( $state === 'bi' ) {
1601 $output .= '</i></b>';
1603 } elseif ( $state === 'ib' ) {
1604 $output .= '</b></i>';
1606 } elseif ( $state === 'both' ) {
1607 $output .= '<i><b>' . $buffer . '</b></i>';
1609 } else { // ($state == '')
1617 // Now close all remaining tags. Notice that the order is important.
1618 if ( $state === 'b' ||
$state === 'ib' ) {
1621 if ( $state === 'i' ||
$state === 'bi' ||
$state === 'ib' ) {
1624 if ( $state === 'bi' ) {
1627 // There might be lonely ''''', so make sure we have a buffer
1628 if ( $state === 'both' && $buffer ) {
1629 $output .= '<b><i>' . $buffer . '</i></b>';
1635 * Replace external links (REL)
1637 * Note: this is all very hackish and the order of execution matters a lot.
1638 * Make sure to run tests/parserTests.php if you change this code.
1642 * @param string $text
1644 * @throws MWException
1647 function replaceExternalLinks( $text ) {
1648 wfProfileIn( __METHOD__
);
1650 $bits = preg_split( $this->mExtLinkBracketedRegex
, $text, -1, PREG_SPLIT_DELIM_CAPTURE
);
1651 if ( $bits === false ) {
1652 wfProfileOut( __METHOD__
);
1653 throw new MWException( "PCRE needs to be compiled with "
1654 . "--enable-unicode-properties in order for MediaWiki to function" );
1656 $s = array_shift( $bits );
1659 while ( $i < count( $bits ) ) {
1662 $text = $bits[$i++
];
1663 $trail = $bits[$i++
];
1665 # The characters '<' and '>' (which were escaped by
1666 # removeHTMLtags()) should not be included in
1667 # URLs, per RFC 2396.
1669 if ( preg_match( '/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE
) ) {
1670 $text = substr( $url, $m2[0][1] ) . ' ' . $text;
1671 $url = substr( $url, 0, $m2[0][1] );
1674 # If the link text is an image URL, replace it with an <img> tag
1675 # This happened by accident in the original parser, but some people used it extensively
1676 $img = $this->maybeMakeExternalImage( $text );
1677 if ( $img !== false ) {
1683 # Set linktype for CSS - if URL==text, link is essentially free
1684 $linktype = ( $text === $url ) ?
'free' : 'text';
1686 # No link text, e.g. [http://domain.tld/some.link]
1687 if ( $text == '' ) {
1689 $langObj = $this->getTargetLanguage();
1690 $text = '[' . $langObj->formatNum( ++
$this->mAutonumber
) . ']';
1691 $linktype = 'autonumber';
1693 # Have link text, e.g. [http://domain.tld/some.link text]s
1695 list( $dtrail, $trail ) = Linker
::splitTrail( $trail );
1698 $text = $this->getConverterLanguage()->markNoConversion( $text );
1700 $url = Sanitizer
::cleanUrl( $url );
1702 # Use the encoded URL
1703 # This means that users can paste URLs directly into the text
1704 # Funny characters like ö aren't valid in URLs anyway
1705 # This was changed in August 2004
1706 $s .= Linker
::makeExternalLink( $url, $text, false, $linktype,
1707 $this->getExternalLinkAttribs( $url ) ) . $dtrail . $trail;
1709 # Register link in the output object.
1710 # Replace unnecessary URL escape codes with the referenced character
1711 # This prevents spammers from hiding links from the filters
1712 $pasteurized = self
::replaceUnusualEscapes( $url );
1713 $this->mOutput
->addExternalLink( $pasteurized );
1716 wfProfileOut( __METHOD__
);
1721 * Get the rel attribute for a particular external link.
1724 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1725 * nofollow if appropriate
1726 * @param Title $title Optional Title, for wgNoFollowNsExceptions lookups
1727 * @return string|null Rel attribute for $url
1729 public static function getExternalLinkRel( $url = false, $title = null ) {
1730 global $wgNoFollowLinks, $wgNoFollowNsExceptions, $wgNoFollowDomainExceptions;
1731 $ns = $title ?
$title->getNamespace() : false;
1732 if ( $wgNoFollowLinks && !in_array( $ns, $wgNoFollowNsExceptions )
1733 && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions )
1741 * Get an associative array of additional HTML attributes appropriate for a
1742 * particular external link. This currently may include rel => nofollow
1743 * (depending on configuration, namespace, and the URL's domain) and/or a
1744 * target attribute (depending on configuration).
1746 * @param string|bool $url Optional URL, to extract the domain from for rel =>
1747 * nofollow if appropriate
1748 * @return array Associative array of HTML attributes
1750 function getExternalLinkAttribs( $url = false ) {
1752 $attribs['rel'] = self
::getExternalLinkRel( $url, $this->mTitle
);
1754 if ( $this->mOptions
->getExternalLinkTarget() ) {
1755 $attribs['target'] = $this->mOptions
->getExternalLinkTarget();
1761 * Replace unusual URL escape codes with their equivalent characters
1763 * @param string $url
1766 * @todo This can merge genuinely required bits in the path or query string,
1767 * breaking legit URLs. A proper fix would treat the various parts of
1768 * the URL differently; as a workaround, just use the output for
1769 * statistical records, not for actual linking/output.
1771 static function replaceUnusualEscapes( $url ) {
1772 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/',
1773 array( __CLASS__
, 'replaceUnusualEscapesCallback' ), $url );
1777 * Callback function used in replaceUnusualEscapes().
1778 * Replaces unusual URL escape codes with their equivalent character
1780 * @param array $matches
1784 private static function replaceUnusualEscapesCallback( $matches ) {
1785 $char = urldecode( $matches[0] );
1786 $ord = ord( $char );
1787 # Is it an unsafe or HTTP reserved character according to RFC 1738?
1788 if ( $ord > 32 && $ord < 127 && strpos( '<>"#{}|\^~[]`;/?', $char ) === false ) {
1789 # No, shouldn't be escaped
1792 # Yes, leave it escaped
1798 * make an image if it's allowed, either through the global
1799 * option, through the exception, or through the on-wiki whitelist
1801 * @param string $url
1805 private function maybeMakeExternalImage( $url ) {
1806 $imagesfrom = $this->mOptions
->getAllowExternalImagesFrom();
1807 $imagesexception = !empty( $imagesfrom );
1809 # $imagesfrom could be either a single string or an array of strings, parse out the latter
1810 if ( $imagesexception && is_array( $imagesfrom ) ) {
1811 $imagematch = false;
1812 foreach ( $imagesfrom as $match ) {
1813 if ( strpos( $url, $match ) === 0 ) {
1818 } elseif ( $imagesexception ) {
1819 $imagematch = ( strpos( $url, $imagesfrom ) === 0 );
1821 $imagematch = false;
1824 if ( $this->mOptions
->getAllowExternalImages()
1825 ||
( $imagesexception && $imagematch )
1827 if ( preg_match( self
::EXT_IMAGE_REGEX
, $url ) ) {
1829 $text = Linker
::makeExternalImage( $url );
1832 if ( !$text && $this->mOptions
->getEnableImageWhitelist()
1833 && preg_match( self
::EXT_IMAGE_REGEX
, $url )
1835 $whitelist = explode(
1837 wfMessage( 'external_image_whitelist' )->inContentLanguage()->text()
1840 foreach ( $whitelist as $entry ) {
1841 # Sanitize the regex fragment, make it case-insensitive, ignore blank entries/comments
1842 if ( strpos( $entry, '#' ) === 0 ||
$entry === '' ) {
1845 if ( preg_match( '/' . str_replace( '/', '\\/', $entry ) . '/i', $url ) ) {
1846 # Image matches a whitelist entry
1847 $text = Linker
::makeExternalImage( $url );
1856 * Process [[ ]] wikilinks
1860 * @return string Processed text
1864 function replaceInternalLinks( $s ) {
1865 $this->mLinkHolders
->merge( $this->replaceInternalLinks2( $s ) );
1870 * Process [[ ]] wikilinks (RIL)
1872 * @throws MWException
1873 * @return LinkHolderArray
1877 function replaceInternalLinks2( &$s ) {
1878 wfProfileIn( __METHOD__
);
1880 wfProfileIn( __METHOD__
. '-setup' );
1881 static $tc = false, $e1, $e1_img;
1882 # the % is needed to support urlencoded titles as well
1884 $tc = Title
::legalChars() . '#%';
1885 # Match a link having the form [[namespace:link|alternate]]trail
1886 $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD";
1887 # Match cases where there is no "]]", which might still be images
1888 $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD";
1891 $holders = new LinkHolderArray( $this );
1893 # split the entire text string on occurrences of [[
1894 $a = StringUtils
::explode( '[[', ' ' . $s );
1895 # get the first element (all text up to first [[), and remove the space we added
1898 $line = $a->current(); # Workaround for broken ArrayIterator::next() that returns "void"
1899 $s = substr( $s, 1 );
1901 $useLinkPrefixExtension = $this->getTargetLanguage()->linkPrefixExtension();
1903 if ( $useLinkPrefixExtension ) {
1904 # Match the end of a line for a word that's not followed by whitespace,
1905 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
1907 $charset = $wgContLang->linkPrefixCharset();
1908 $e2 = "/^((?>.*[^$charset]|))(.+)$/sDu";
1911 if ( is_null( $this->mTitle
) ) {
1912 wfProfileOut( __METHOD__
. '-setup' );
1913 wfProfileOut( __METHOD__
);
1914 throw new MWException( __METHOD__
. ": \$this->mTitle is null\n" );
1916 $nottalk = !$this->mTitle
->isTalkPage();
1918 if ( $useLinkPrefixExtension ) {
1920 if ( preg_match( $e2, $s, $m ) ) {
1921 $first_prefix = $m[2];
1923 $first_prefix = false;
1929 $useSubpages = $this->areSubpagesAllowed();
1930 wfProfileOut( __METHOD__
. '-setup' );
1932 // @codingStandardsIgnoreStart Squiz.WhiteSpace.SemicolonSpacing.Incorrect
1933 # Loop for each link
1934 for ( ; $line !== false && $line !== null; $a->next(), $line = $a->current() ) {
1935 // @codingStandardsIgnoreStart
1937 # Check for excessive memory usage
1938 if ( $holders->isBig() ) {
1940 # Do the existence check, replace the link holders and clear the array
1941 $holders->replace( $s );
1945 if ( $useLinkPrefixExtension ) {
1946 wfProfileIn( __METHOD__
. '-prefixhandling' );
1947 if ( preg_match( $e2, $s, $m ) ) {
1954 if ( $first_prefix ) {
1955 $prefix = $first_prefix;
1956 $first_prefix = false;
1958 wfProfileOut( __METHOD__
. '-prefixhandling' );
1961 $might_be_img = false;
1963 wfProfileIn( __METHOD__
. "-e1" );
1964 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
1966 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
1967 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
1968 # the real problem is with the $e1 regex
1971 # Still some problems for cases where the ] is meant to be outside punctuation,
1972 # and no image is in sight. See bug 2095.
1975 && substr( $m[3], 0, 1 ) === ']'
1976 && strpos( $text, '[' ) !== false
1978 $text .= ']'; # so that replaceExternalLinks($text) works later
1979 $m[3] = substr( $m[3], 1 );
1981 # fix up urlencoded title texts
1982 if ( strpos( $m[1], '%' ) !== false ) {
1983 # Should anchors '#' also be rejected?
1984 $m[1] = str_replace( array( '<', '>' ), array( '<', '>' ), rawurldecode( $m[1] ) );
1987 } elseif ( preg_match( $e1_img, $line, $m ) ) {
1988 # Invalid, but might be an image with a link in its caption
1989 $might_be_img = true;
1991 if ( strpos( $m[1], '%' ) !== false ) {
1992 $m[1] = rawurldecode( $m[1] );
1995 } else { # Invalid form; output directly
1996 $s .= $prefix . '[[' . $line;
1997 wfProfileOut( __METHOD__
. "-e1" );
2000 wfProfileOut( __METHOD__
. "-e1" );
2001 wfProfileIn( __METHOD__
. "-misc" );
2003 # Don't allow internal links to pages containing
2004 # PROTO: where PROTO is a valid URL protocol; these
2005 # should be external links.
2006 if ( preg_match( '/^(?i:' . $this->mUrlProtocols
. ')/', $m[1] ) ) {
2007 $s .= $prefix . '[[' . $line;
2008 wfProfileOut( __METHOD__
. "-misc" );
2012 # Make subpage if necessary
2013 if ( $useSubpages ) {
2014 $link = $this->maybeDoSubpageLink( $m[1], $text );
2019 $noforce = ( substr( $m[1], 0, 1 ) !== ':' );
2021 # Strip off leading ':'
2022 $link = substr( $link, 1 );
2025 wfProfileOut( __METHOD__
. "-misc" );
2026 wfProfileIn( __METHOD__
. "-title" );
2027 $nt = Title
::newFromText( $this->mStripState
->unstripNoWiki( $link ) );
2028 if ( $nt === null ) {
2029 $s .= $prefix . '[[' . $line;
2030 wfProfileOut( __METHOD__
. "-title" );
2034 $ns = $nt->getNamespace();
2035 $iw = $nt->getInterwiki();
2036 wfProfileOut( __METHOD__
. "-title" );
2038 if ( $might_be_img ) { # if this is actually an invalid link
2039 wfProfileIn( __METHOD__
. "-might_be_img" );
2040 if ( $ns == NS_FILE
&& $noforce ) { # but might be an image
2043 # look at the next 'line' to see if we can close it there
2045 $next_line = $a->current();
2046 if ( $next_line === false ||
$next_line === null ) {
2049 $m = explode( ']]', $next_line, 3 );
2050 if ( count( $m ) == 3 ) {
2051 # the first ]] closes the inner link, the second the image
2053 $text .= "[[{$m[0]}]]{$m[1]}";
2056 } elseif ( count( $m ) == 2 ) {
2057 # if there's exactly one ]] that's fine, we'll keep looking
2058 $text .= "[[{$m[0]}]]{$m[1]}";
2060 # if $next_line is invalid too, we need look no further
2061 $text .= '[[' . $next_line;
2066 # we couldn't find the end of this imageLink, so output it raw
2067 # but don't ignore what might be perfectly normal links in the text we've examined
2068 $holders->merge( $this->replaceInternalLinks2( $text ) );
2069 $s .= "{$prefix}[[$link|$text";
2070 # note: no $trail, because without an end, there *is* no trail
2071 wfProfileOut( __METHOD__
. "-might_be_img" );
2074 } else { # it's not an image, so output it raw
2075 $s .= "{$prefix}[[$link|$text";
2076 # note: no $trail, because without an end, there *is* no trail
2077 wfProfileOut( __METHOD__
. "-might_be_img" );
2080 wfProfileOut( __METHOD__
. "-might_be_img" );
2083 $wasblank = ( $text == '' );
2087 # Bug 4598 madness. Handle the quotes only if they come from the alternate part
2088 # [[Lista d''e paise d''o munno]] -> <a href="...">Lista d''e paise d''o munno</a>
2089 # [[Criticism of Harry Potter|Criticism of ''Harry Potter'']]
2090 # -> <a href="Criticism of Harry Potter">Criticism of <i>Harry Potter</i></a>
2091 $text = $this->doQuotes( $text );
2094 # Link not escaped by : , create the various objects
2097 wfProfileIn( __METHOD__
. "-interwiki" );
2098 if ( $iw && $this->mOptions
->getInterwikiMagic()
2099 && $nottalk && Language
::fetchLanguageName( $iw, null, 'mw' )
2101 // XXX: the above check prevents links to sites with identifiers that are not language codes
2103 # Bug 24502: filter duplicates
2104 if ( !isset( $this->mLangLinkLanguages
[$iw] ) ) {
2105 $this->mLangLinkLanguages
[$iw] = true;
2106 $this->mOutput
->addLanguageLink( $nt->getFullText() );
2109 $s = rtrim( $s . $prefix );
2110 $s .= trim( $trail, "\n" ) == '' ?
'': $prefix . $trail;
2111 wfProfileOut( __METHOD__
. "-interwiki" );
2114 wfProfileOut( __METHOD__
. "-interwiki" );
2116 if ( $ns == NS_FILE
) {
2117 wfProfileIn( __METHOD__
. "-image" );
2118 if ( !wfIsBadImage( $nt->getDBkey(), $this->mTitle
) ) {
2120 # if no parameters were passed, $text
2121 # becomes something like "File:Foo.png",
2122 # which we don't want to pass on to the
2126 # recursively parse links inside the image caption
2127 # actually, this will parse them in any other parameters, too,
2128 # but it might be hard to fix that, and it doesn't matter ATM
2129 $text = $this->replaceExternalLinks( $text );
2130 $holders->merge( $this->replaceInternalLinks2( $text ) );
2132 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
2133 $s .= $prefix . $this->armorLinks(
2134 $this->makeImage( $nt, $text, $holders ) ) . $trail;
2136 $s .= $prefix . $trail;
2138 wfProfileOut( __METHOD__
. "-image" );
2142 if ( $ns == NS_CATEGORY
) {
2143 wfProfileIn( __METHOD__
. "-category" );
2144 $s = rtrim( $s . "\n" ); # bug 87
2147 $sortkey = $this->getDefaultSort();
2151 $sortkey = Sanitizer
::decodeCharReferences( $sortkey );
2152 $sortkey = str_replace( "\n", '', $sortkey );
2153 $sortkey = $this->getConverterLanguage()->convertCategoryKey( $sortkey );
2154 $this->mOutput
->addCategory( $nt->getDBkey(), $sortkey );
2157 * Strip the whitespace Category links produce, see bug 87
2159 $s .= trim( $prefix . $trail, "\n" ) == '' ?
'' : $prefix . $trail;
2161 wfProfileOut( __METHOD__
. "-category" );
2166 # Self-link checking. For some languages, variants of the title are checked in
2167 # LinkHolderArray::doVariants() to allow batching the existence checks necessary
2168 # for linking to a different variant.
2169 if ( $ns != NS_SPECIAL
&& $nt->equals( $this->mTitle
) && !$nt->hasFragment() ) {
2170 $s .= $prefix . Linker
::makeSelfLinkObj( $nt, $text, '', $trail );
2174 # NS_MEDIA is a pseudo-namespace for linking directly to a file
2175 # @todo FIXME: Should do batch file existence checks, see comment below
2176 if ( $ns == NS_MEDIA
) {
2177 wfProfileIn( __METHOD__
. "-media" );
2178 # Give extensions a chance to select the file revision for us
2181 wfRunHooks( 'BeforeParserFetchFileAndTitle',
2182 array( $this, $nt, &$options, &$descQuery ) );
2183 # Fetch and register the file (file title may be different via hooks)
2184 list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $options );
2185 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
2186 $s .= $prefix . $this->armorLinks(
2187 Linker
::makeMediaLinkFile( $nt, $file, $text ) ) . $trail;
2188 wfProfileOut( __METHOD__
. "-media" );
2192 wfProfileIn( __METHOD__
. "-always_known" );
2193 # Some titles, such as valid special pages or files in foreign repos, should
2194 # be shown as bluelinks even though they're not included in the page table
2196 # @todo FIXME: isAlwaysKnown() can be expensive for file links; we should really do
2197 # batch file existence checks for NS_FILE and NS_MEDIA
2198 if ( $iw == '' && $nt->isAlwaysKnown() ) {
2199 $this->mOutput
->addLink( $nt );
2200 $s .= $this->makeKnownLinkHolder( $nt, $text, array(), $trail, $prefix );
2202 # Links will be added to the output link list after checking
2203 $s .= $holders->makeHolder( $nt, $text, array(), $trail, $prefix );
2205 wfProfileOut( __METHOD__
. "-always_known" );
2207 wfProfileOut( __METHOD__
);
2212 * Render a forced-blue link inline; protect against double expansion of
2213 * URLs if we're in a mode that prepends full URL prefixes to internal links.
2214 * Since this little disaster has to split off the trail text to avoid
2215 * breaking URLs in the following text without breaking trails on the
2216 * wiki links, it's been made into a horrible function.
2219 * @param string $text
2220 * @param array|string $query
2221 * @param string $trail
2222 * @param string $prefix
2223 * @return string HTML-wikitext mix oh yuck
2225 function makeKnownLinkHolder( $nt, $text = '', $query = array(), $trail = '', $prefix = '' ) {
2226 list( $inside, $trail ) = Linker
::splitTrail( $trail );
2228 if ( is_string( $query ) ) {
2229 $query = wfCgiToArray( $query );
2231 if ( $text == '' ) {
2232 $text = htmlspecialchars( $nt->getPrefixedText() );
2235 $link = Linker
::linkKnown( $nt, "$prefix$text$inside", array(), $query );
2237 return $this->armorLinks( $link ) . $trail;
2241 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
2242 * going to go through further parsing steps before inline URL expansion.
2244 * Not needed quite as much as it used to be since free links are a bit
2245 * more sensible these days. But bracketed links are still an issue.
2247 * @param string $text More-or-less HTML
2248 * @return string Less-or-more HTML with NOPARSE bits
2250 function armorLinks( $text ) {
2251 return preg_replace( '/\b((?i)' . $this->mUrlProtocols
. ')/',
2252 "{$this->mUniqPrefix}NOPARSE$1", $text );
2256 * Return true if subpage links should be expanded on this page.
2259 function areSubpagesAllowed() {
2260 # Some namespaces don't allow subpages
2261 return MWNamespace
::hasSubpages( $this->mTitle
->getNamespace() );
2265 * Handle link to subpage if necessary
2267 * @param string $target The source of the link
2268 * @param string &$text The link text, modified as necessary
2269 * @return string The full name of the link
2272 function maybeDoSubpageLink( $target, &$text ) {
2273 return Linker
::normalizeSubpageLink( $this->mTitle
, $target, $text );
2277 * Used by doBlockLevels()
2282 function closeParagraph() {
2284 if ( $this->mLastSection
!= '' ) {
2285 $result = '</' . $this->mLastSection
. ">\n";
2287 $this->mInPre
= false;
2288 $this->mLastSection
= '';
2293 * getCommon() returns the length of the longest common substring
2294 * of both arguments, starting at the beginning of both.
2297 * @param string $st1
2298 * @param string $st2
2302 function getCommon( $st1, $st2 ) {
2303 $fl = strlen( $st1 );
2304 $shorter = strlen( $st2 );
2305 if ( $fl < $shorter ) {
2309 for ( $i = 0; $i < $shorter; ++
$i ) {
2310 if ( $st1[$i] != $st2[$i] ) {
2318 * These next three functions open, continue, and close the list
2319 * element appropriate to the prefix character passed into them.
2322 * @param string $char
2326 function openList( $char ) {
2327 $result = $this->closeParagraph();
2329 if ( '*' === $char ) {
2330 $result .= "<ul><li>";
2331 } elseif ( '#' === $char ) {
2332 $result .= "<ol><li>";
2333 } elseif ( ':' === $char ) {
2334 $result .= "<dl><dd>";
2335 } elseif ( ';' === $char ) {
2336 $result .= "<dl><dt>";
2337 $this->mDTopen
= true;
2339 $result = '<!-- ERR 1 -->';
2347 * @param string $char
2352 function nextItem( $char ) {
2353 if ( '*' === $char ||
'#' === $char ) {
2354 return "</li>\n<li>";
2355 } elseif ( ':' === $char ||
';' === $char ) {
2357 if ( $this->mDTopen
) {
2360 if ( ';' === $char ) {
2361 $this->mDTopen
= true;
2362 return $close . '<dt>';
2364 $this->mDTopen
= false;
2365 return $close . '<dd>';
2368 return '<!-- ERR 2 -->';
2373 * @param string $char
2378 function closeList( $char ) {
2379 if ( '*' === $char ) {
2380 $text = "</li></ul>";
2381 } elseif ( '#' === $char ) {
2382 $text = "</li></ol>";
2383 } elseif ( ':' === $char ) {
2384 if ( $this->mDTopen
) {
2385 $this->mDTopen
= false;
2386 $text = "</dt></dl>";
2388 $text = "</dd></dl>";
2391 return '<!-- ERR 3 -->';
2398 * Make lists from lines starting with ':', '*', '#', etc. (DBL)
2400 * @param string $text
2401 * @param bool $linestart Whether or not this is at the start of a line.
2403 * @return string The lists rendered as HTML
2405 function doBlockLevels( $text, $linestart ) {
2406 wfProfileIn( __METHOD__
);
2408 # Parsing through the text line by line. The main thing
2409 # happening here is handling of block-level elements p, pre,
2410 # and making lists from lines starting with * # : etc.
2412 $textLines = StringUtils
::explode( "\n", $text );
2414 $lastPrefix = $output = '';
2415 $this->mDTopen
= $inBlockElem = false;
2417 $paragraphStack = false;
2418 $inBlockquote = false;
2420 foreach ( $textLines as $oLine ) {
2422 if ( !$linestart ) {
2432 $lastPrefixLength = strlen( $lastPrefix );
2433 $preCloseMatch = preg_match( '/<\\/pre/i', $oLine );
2434 $preOpenMatch = preg_match( '/<pre/i', $oLine );
2435 # If not in a <pre> element, scan for and figure out what prefixes are there.
2436 if ( !$this->mInPre
) {
2437 # Multiple prefixes may abut each other for nested lists.
2438 $prefixLength = strspn( $oLine, '*#:;' );
2439 $prefix = substr( $oLine, 0, $prefixLength );
2442 # ; and : are both from definition-lists, so they're equivalent
2443 # for the purposes of determining whether or not we need to open/close
2445 $prefix2 = str_replace( ';', ':', $prefix );
2446 $t = substr( $oLine, $prefixLength );
2447 $this->mInPre
= (bool)$preOpenMatch;
2449 # Don't interpret any other prefixes in preformatted text
2451 $prefix = $prefix2 = '';
2456 if ( $prefixLength && $lastPrefix === $prefix2 ) {
2457 # Same as the last item, so no need to deal with nesting or opening stuff
2458 $output .= $this->nextItem( substr( $prefix, -1 ) );
2459 $paragraphStack = false;
2461 if ( substr( $prefix, -1 ) === ';' ) {
2462 # The one nasty exception: definition lists work like this:
2463 # ; title : definition text
2464 # So we check for : in the remainder text to split up the
2465 # title and definition, without b0rking links.
2467 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
2469 $output .= $term . $this->nextItem( ':' );
2472 } elseif ( $prefixLength ||
$lastPrefixLength ) {
2473 # We need to open or close prefixes, or both.
2475 # Either open or close a level...
2476 $commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
2477 $paragraphStack = false;
2479 # Close all the prefixes which aren't shared.
2480 while ( $commonPrefixLength < $lastPrefixLength ) {
2481 $output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
2482 --$lastPrefixLength;
2485 # Continue the current prefix if appropriate.
2486 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
2487 $output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
2490 # Open prefixes where appropriate.
2491 if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
2494 while ( $prefixLength > $commonPrefixLength ) {
2495 $char = substr( $prefix, $commonPrefixLength, 1 );
2496 $output .= $this->openList( $char );
2498 if ( ';' === $char ) {
2499 # @todo FIXME: This is dupe of code above
2500 if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
2502 $output .= $term . $this->nextItem( ':' );
2505 ++
$commonPrefixLength;
2507 if ( !$prefixLength && $lastPrefix ) {
2510 $lastPrefix = $prefix2;
2513 # If we have no prefixes, go to paragraph mode.
2514 if ( 0 == $prefixLength ) {
2515 wfProfileIn( __METHOD__
. "-paragraph" );
2516 # No prefix (not in list)--go to paragraph mode
2517 # XXX: use a stack for nestable elements like span, table and div
2518 $openmatch = preg_match(
2519 '/(?:<table|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|'
2520 . '<p|<ul|<ol|<dl|<li|<\\/tr|<\\/td|<\\/th)/iS',
2523 $closematch = preg_match(
2524 '/(?:<\\/table|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'
2525 . '<td|<th|<\\/?blockquote|<\\/?div|<hr|<\\/pre|<\\/p|<\\/mw:|'
2526 . $this->mUniqPrefix
2527 . '-pre|<\\/li|<\\/ul|<\\/ol|<\\/dl|<\\/?center)/iS',
2531 if ( $openmatch or $closematch ) {
2532 $paragraphStack = false;
2533 # @todo bug 5718: paragraph closed
2534 $output .= $this->closeParagraph();
2535 if ( $preOpenMatch and !$preCloseMatch ) {
2536 $this->mInPre
= true;
2539 while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t, $bqMatch, PREG_OFFSET_CAPTURE
, $bqOffset ) ) {
2540 $inBlockquote = !$bqMatch[1][0]; // is this a close tag?
2541 $bqOffset = $bqMatch[0][1] +
strlen( $bqMatch[0][0] );
2543 $inBlockElem = !$closematch;
2544 } elseif ( !$inBlockElem && !$this->mInPre
) {
2545 if ( ' ' == substr( $t, 0, 1 )
2546 && ( $this->mLastSection
=== 'pre' ||
trim( $t ) != '' )
2550 if ( $this->mLastSection
!== 'pre' ) {
2551 $paragraphStack = false;
2552 $output .= $this->closeParagraph() . '<pre>';
2553 $this->mLastSection
= 'pre';
2555 $t = substr( $t, 1 );
2558 if ( trim( $t ) === '' ) {
2559 if ( $paragraphStack ) {
2560 $output .= $paragraphStack . '<br />';
2561 $paragraphStack = false;
2562 $this->mLastSection
= 'p';
2564 if ( $this->mLastSection
!== 'p' ) {
2565 $output .= $this->closeParagraph();
2566 $this->mLastSection
= '';
2567 $paragraphStack = '<p>';
2569 $paragraphStack = '</p><p>';
2573 if ( $paragraphStack ) {
2574 $output .= $paragraphStack;
2575 $paragraphStack = false;
2576 $this->mLastSection
= 'p';
2577 } elseif ( $this->mLastSection
!== 'p' ) {
2578 $output .= $this->closeParagraph() . '<p>';
2579 $this->mLastSection
= 'p';
2584 wfProfileOut( __METHOD__
. "-paragraph" );
2586 # somewhere above we forget to get out of pre block (bug 785)
2587 if ( $preCloseMatch && $this->mInPre
) {
2588 $this->mInPre
= false;
2590 if ( $paragraphStack === false ) {
2592 if ( $prefixLength === 0 ) {
2597 while ( $prefixLength ) {
2598 $output .= $this->closeList( $prefix2[$prefixLength - 1] );
2600 if ( !$prefixLength ) {
2604 if ( $this->mLastSection
!= '' ) {
2605 $output .= '</' . $this->mLastSection
. '>';
2606 $this->mLastSection
= '';
2609 wfProfileOut( __METHOD__
);
2614 * Split up a string on ':', ignoring any occurrences inside tags
2615 * to prevent illegal overlapping.
2617 * @param string $str The string to split
2618 * @param string &$before Set to everything before the ':'
2619 * @param string &$after Set to everything after the ':'
2620 * @throws MWException
2621 * @return string The position of the ':', or false if none found
2623 function findColonNoLinks( $str, &$before, &$after ) {
2624 wfProfileIn( __METHOD__
);
2626 $pos = strpos( $str, ':' );
2627 if ( $pos === false ) {
2629 wfProfileOut( __METHOD__
);
2633 $lt = strpos( $str, '<' );
2634 if ( $lt === false ||
$lt > $pos ) {
2635 # Easy; no tag nesting to worry about
2636 $before = substr( $str, 0, $pos );
2637 $after = substr( $str, $pos +
1 );
2638 wfProfileOut( __METHOD__
);
2642 # Ugly state machine to walk through avoiding tags.
2643 $state = self
::COLON_STATE_TEXT
;
2645 $len = strlen( $str );
2646 for ( $i = 0; $i < $len; $i++
) {
2650 # (Using the number is a performance hack for common cases)
2651 case 0: # self::COLON_STATE_TEXT:
2654 # Could be either a <start> tag or an </end> tag
2655 $state = self
::COLON_STATE_TAGSTART
;
2658 if ( $stack == 0 ) {
2660 $before = substr( $str, 0, $i );
2661 $after = substr( $str, $i +
1 );
2662 wfProfileOut( __METHOD__
);
2665 # Embedded in a tag; don't break it.
2668 # Skip ahead looking for something interesting
2669 $colon = strpos( $str, ':', $i );
2670 if ( $colon === false ) {
2671 # Nothing else interesting
2672 wfProfileOut( __METHOD__
);
2675 $lt = strpos( $str, '<', $i );
2676 if ( $stack === 0 ) {
2677 if ( $lt === false ||
$colon < $lt ) {
2679 $before = substr( $str, 0, $colon );
2680 $after = substr( $str, $colon +
1 );
2681 wfProfileOut( __METHOD__
);
2685 if ( $lt === false ) {
2686 # Nothing else interesting to find; abort!
2687 # We're nested, but there's no close tags left. Abort!
2690 # Skip ahead to next tag start
2692 $state = self
::COLON_STATE_TAGSTART
;
2695 case 1: # self::COLON_STATE_TAG:
2700 $state = self
::COLON_STATE_TEXT
;
2703 # Slash may be followed by >?
2704 $state = self
::COLON_STATE_TAGSLASH
;
2710 case 2: # self::COLON_STATE_TAGSTART:
2713 $state = self
::COLON_STATE_CLOSETAG
;
2716 $state = self
::COLON_STATE_COMMENT
;
2719 # Illegal early close? This shouldn't happen D:
2720 $state = self
::COLON_STATE_TEXT
;
2723 $state = self
::COLON_STATE_TAG
;
2726 case 3: # self::COLON_STATE_CLOSETAG:
2731 wfDebug( __METHOD__
. ": Invalid input; too many close tags\n" );
2732 wfProfileOut( __METHOD__
);
2735 $state = self
::COLON_STATE_TEXT
;
2738 case self
::COLON_STATE_TAGSLASH
:
2740 # Yes, a self-closed tag <blah/>
2741 $state = self
::COLON_STATE_TEXT
;
2743 # Probably we're jumping the gun, and this is an attribute
2744 $state = self
::COLON_STATE_TAG
;
2747 case 5: # self::COLON_STATE_COMMENT:
2749 $state = self
::COLON_STATE_COMMENTDASH
;
2752 case self
::COLON_STATE_COMMENTDASH
:
2754 $state = self
::COLON_STATE_COMMENTDASHDASH
;
2756 $state = self
::COLON_STATE_COMMENT
;
2759 case self
::COLON_STATE_COMMENTDASHDASH
:
2761 $state = self
::COLON_STATE_TEXT
;
2763 $state = self
::COLON_STATE_COMMENT
;
2767 wfProfileOut( __METHOD__
);
2768 throw new MWException( "State machine error in " . __METHOD__
);
2772 wfDebug( __METHOD__
. ": Invalid input; not enough close tags (stack $stack, state $state)\n" );
2773 wfProfileOut( __METHOD__
);
2776 wfProfileOut( __METHOD__
);
2781 * Return value of a magic variable (like PAGENAME)
2786 * @param bool|PPFrame $frame
2788 * @throws MWException
2791 function getVariableValue( $index, $frame = false ) {
2792 global $wgContLang, $wgSitename, $wgServer, $wgServerName;
2793 global $wgArticlePath, $wgScriptPath, $wgStylePath;
2795 if ( is_null( $this->mTitle
) ) {
2796 // If no title set, bad things are going to happen
2797 // later. Title should always be set since this
2798 // should only be called in the middle of a parse
2799 // operation (but the unit-tests do funky stuff)
2800 throw new MWException( __METHOD__
. ' Should only be '
2801 . ' called while parsing (no title set)' );
2805 * Some of these require message or data lookups and can be
2806 * expensive to check many times.
2808 if ( wfRunHooks( 'ParserGetVariableValueVarCache', array( &$this, &$this->mVarCache
) ) ) {
2809 if ( isset( $this->mVarCache
[$index] ) ) {
2810 return $this->mVarCache
[$index];
2814 $ts = wfTimestamp( TS_UNIX
, $this->mOptions
->getTimestamp() );
2815 wfRunHooks( 'ParserGetVariableValueTs', array( &$this, &$ts ) );
2817 $pageLang = $this->getFunctionLang();
2820 case 'currentmonth':
2821 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'm' ) );
2823 case 'currentmonth1':
2824 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2826 case 'currentmonthname':
2827 $value = $pageLang->getMonthName( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2829 case 'currentmonthnamegen':
2830 $value = $pageLang->getMonthNameGen( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2832 case 'currentmonthabbrev':
2833 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getInstance( $ts )->format( 'n' ) );
2836 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'j' ) );
2839 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'd' ) );
2842 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'm' ) );
2845 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2847 case 'localmonthname':
2848 $value = $pageLang->getMonthName( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2850 case 'localmonthnamegen':
2851 $value = $pageLang->getMonthNameGen( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2853 case 'localmonthabbrev':
2854 $value = $pageLang->getMonthAbbreviation( MWTimestamp
::getLocalInstance( $ts )->format( 'n' ) );
2857 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'j' ) );
2860 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'd' ) );
2863 $value = wfEscapeWikiText( $this->mTitle
->getText() );
2866 $value = wfEscapeWikiText( $this->mTitle
->getPartialURL() );
2868 case 'fullpagename':
2869 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedText() );
2871 case 'fullpagenamee':
2872 $value = wfEscapeWikiText( $this->mTitle
->getPrefixedURL() );
2875 $value = wfEscapeWikiText( $this->mTitle
->getSubpageText() );
2877 case 'subpagenamee':
2878 $value = wfEscapeWikiText( $this->mTitle
->getSubpageUrlForm() );
2880 case 'rootpagename':
2881 $value = wfEscapeWikiText( $this->mTitle
->getRootText() );
2883 case 'rootpagenamee':
2884 $value = wfEscapeWikiText( wfUrlEncode( str_replace(
2887 $this->mTitle
->getRootText()
2890 case 'basepagename':
2891 $value = wfEscapeWikiText( $this->mTitle
->getBaseText() );
2893 case 'basepagenamee':
2894 $value = wfEscapeWikiText( wfUrlEncode( str_replace(
2897 $this->mTitle
->getBaseText()
2900 case 'talkpagename':
2901 if ( $this->mTitle
->canTalk() ) {
2902 $talkPage = $this->mTitle
->getTalkPage();
2903 $value = wfEscapeWikiText( $talkPage->getPrefixedText() );
2908 case 'talkpagenamee':
2909 if ( $this->mTitle
->canTalk() ) {
2910 $talkPage = $this->mTitle
->getTalkPage();
2911 $value = wfEscapeWikiText( $talkPage->getPrefixedURL() );
2916 case 'subjectpagename':
2917 $subjPage = $this->mTitle
->getSubjectPage();
2918 $value = wfEscapeWikiText( $subjPage->getPrefixedText() );
2920 case 'subjectpagenamee':
2921 $subjPage = $this->mTitle
->getSubjectPage();
2922 $value = wfEscapeWikiText( $subjPage->getPrefixedURL() );
2924 case 'pageid': // requested in bug 23427
2925 $pageid = $this->getTitle()->getArticleID();
2926 if ( $pageid == 0 ) {
2927 # 0 means the page doesn't exist in the database,
2928 # which means the user is previewing a new page.
2929 # The vary-revision flag must be set, because the magic word
2930 # will have a different value once the page is saved.
2931 $this->mOutput
->setFlag( 'vary-revision' );
2932 wfDebug( __METHOD__
. ": {{PAGEID}} used in a new page, setting vary-revision...\n" );
2934 $value = $pageid ?
$pageid : null;
2937 # Let the edit saving system know we should parse the page
2938 # *after* a revision ID has been assigned.
2939 $this->mOutput
->setFlag( 'vary-revision' );
2940 wfDebug( __METHOD__
. ": {{REVISIONID}} used, setting vary-revision...\n" );
2941 $value = $this->mRevisionId
;
2944 # Let the edit saving system know we should parse the page
2945 # *after* a revision ID has been assigned. This is for null edits.
2946 $this->mOutput
->setFlag( 'vary-revision' );
2947 wfDebug( __METHOD__
. ": {{REVISIONDAY}} used, setting vary-revision...\n" );
2948 $value = intval( substr( $this->getRevisionTimestamp(), 6, 2 ) );
2950 case 'revisionday2':
2951 # Let the edit saving system know we should parse the page
2952 # *after* a revision ID has been assigned. This is for null edits.
2953 $this->mOutput
->setFlag( 'vary-revision' );
2954 wfDebug( __METHOD__
. ": {{REVISIONDAY2}} used, setting vary-revision...\n" );
2955 $value = substr( $this->getRevisionTimestamp(), 6, 2 );
2957 case 'revisionmonth':
2958 # Let the edit saving system know we should parse the page
2959 # *after* a revision ID has been assigned. This is for null edits.
2960 $this->mOutput
->setFlag( 'vary-revision' );
2961 wfDebug( __METHOD__
. ": {{REVISIONMONTH}} used, setting vary-revision...\n" );
2962 $value = substr( $this->getRevisionTimestamp(), 4, 2 );
2964 case 'revisionmonth1':
2965 # Let the edit saving system know we should parse the page
2966 # *after* a revision ID has been assigned. This is for null edits.
2967 $this->mOutput
->setFlag( 'vary-revision' );
2968 wfDebug( __METHOD__
. ": {{REVISIONMONTH1}} used, setting vary-revision...\n" );
2969 $value = intval( substr( $this->getRevisionTimestamp(), 4, 2 ) );
2971 case 'revisionyear':
2972 # Let the edit saving system know we should parse the page
2973 # *after* a revision ID has been assigned. This is for null edits.
2974 $this->mOutput
->setFlag( 'vary-revision' );
2975 wfDebug( __METHOD__
. ": {{REVISIONYEAR}} used, setting vary-revision...\n" );
2976 $value = substr( $this->getRevisionTimestamp(), 0, 4 );
2978 case 'revisiontimestamp':
2979 # Let the edit saving system know we should parse the page
2980 # *after* a revision ID has been assigned. This is for null edits.
2981 $this->mOutput
->setFlag( 'vary-revision' );
2982 wfDebug( __METHOD__
. ": {{REVISIONTIMESTAMP}} used, setting vary-revision...\n" );
2983 $value = $this->getRevisionTimestamp();
2985 case 'revisionuser':
2986 # Let the edit saving system know we should parse the page
2987 # *after* a revision ID has been assigned. This is for null edits.
2988 $this->mOutput
->setFlag( 'vary-revision' );
2989 wfDebug( __METHOD__
. ": {{REVISIONUSER}} used, setting vary-revision...\n" );
2990 $value = $this->getRevisionUser();
2992 case 'revisionsize':
2993 # Let the edit saving system know we should parse the page
2994 # *after* a revision ID has been assigned. This is for null edits.
2995 $this->mOutput
->setFlag( 'vary-revision' );
2996 wfDebug( __METHOD__
. ": {{REVISIONSIZE}} used, setting vary-revision...\n" );
2997 $value = $this->getRevisionSize();
3000 $value = str_replace( '_', ' ', $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
3003 $value = wfUrlencode( $wgContLang->getNsText( $this->mTitle
->getNamespace() ) );
3005 case 'namespacenumber':
3006 $value = $this->mTitle
->getNamespace();
3009 $value = $this->mTitle
->canTalk()
3010 ?
str_replace( '_', ' ', $this->mTitle
->getTalkNsText() )
3014 $value = $this->mTitle
->canTalk() ?
wfUrlencode( $this->mTitle
->getTalkNsText() ) : '';
3016 case 'subjectspace':
3017 $value = str_replace( '_', ' ', $this->mTitle
->getSubjectNsText() );
3019 case 'subjectspacee':
3020 $value = ( wfUrlencode( $this->mTitle
->getSubjectNsText() ) );
3022 case 'currentdayname':
3023 $value = $pageLang->getWeekdayName( (int)MWTimestamp
::getInstance( $ts )->format( 'w' ) +
1 );
3026 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'Y' ), true );
3029 $value = $pageLang->time( wfTimestamp( TS_MW
, $ts ), false, false );
3032 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'H' ), true );
3035 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
3036 # int to remove the padding
3037 $value = $pageLang->formatNum( (int)MWTimestamp
::getInstance( $ts )->format( 'W' ) );
3040 $value = $pageLang->formatNum( MWTimestamp
::getInstance( $ts )->format( 'w' ) );
3042 case 'localdayname':
3043 $value = $pageLang->getWeekdayName(
3044 (int)MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) +
1
3048 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'Y' ), true );
3051 $value = $pageLang->time(
3052 MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' ),
3058 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'H' ), true );
3061 # @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
3062 # int to remove the padding
3063 $value = $pageLang->formatNum( (int)MWTimestamp
::getLocalInstance( $ts )->format( 'W' ) );
3066 $value = $pageLang->formatNum( MWTimestamp
::getLocalInstance( $ts )->format( 'w' ) );
3068 case 'numberofarticles':
3069 $value = $pageLang->formatNum( SiteStats
::articles() );
3071 case 'numberoffiles':
3072 $value = $pageLang->formatNum( SiteStats
::images() );
3074 case 'numberofusers':
3075 $value = $pageLang->formatNum( SiteStats
::users() );
3077 case 'numberofactiveusers':
3078 $value = $pageLang->formatNum( SiteStats
::activeUsers() );
3080 case 'numberofpages':
3081 $value = $pageLang->formatNum( SiteStats
::pages() );
3083 case 'numberofadmins':
3084 $value = $pageLang->formatNum( SiteStats
::numberingroup( 'sysop' ) );
3086 case 'numberofedits':
3087 $value = $pageLang->formatNum( SiteStats
::edits() );
3089 case 'numberofviews':
3090 global $wgDisableCounters;
3091 $value = !$wgDisableCounters ?
$pageLang->formatNum( SiteStats
::views() ) : '';
3093 case 'currenttimestamp':
3094 $value = wfTimestamp( TS_MW
, $ts );
3096 case 'localtimestamp':
3097 $value = MWTimestamp
::getLocalInstance( $ts )->format( 'YmdHis' );
3099 case 'currentversion':
3100 $value = SpecialVersion
::getVersion();
3103 return $wgArticlePath;
3109 return $wgServerName;
3111 return $wgScriptPath;
3113 return $wgStylePath;
3114 case 'directionmark':
3115 return $pageLang->getDirMark();
3116 case 'contentlanguage':
3117 global $wgLanguageCode;
3118 return $wgLanguageCode;
3119 case 'cascadingsources':
3120 $value = CoreParserFunctions
::cascadingsources( $this );
3125 'ParserGetVariableValueSwitch',
3126 array( &$this, &$this->mVarCache
, &$index, &$ret, &$frame )
3133 $this->mVarCache
[$index] = $value;
3140 * initialise the magic variables (like CURRENTMONTHNAME) and substitution modifiers
3144 function initialiseVariables() {
3145 wfProfileIn( __METHOD__
);
3146 $variableIDs = MagicWord
::getVariableIDs();
3147 $substIDs = MagicWord
::getSubstIDs();
3149 $this->mVariables
= new MagicWordArray( $variableIDs );
3150 $this->mSubstWords
= new MagicWordArray( $substIDs );
3151 wfProfileOut( __METHOD__
);
3155 * Preprocess some wikitext and return the document tree.
3156 * This is the ghost of replace_variables().
3158 * @param string $text The text to parse
3159 * @param int $flags Bitwise combination of:
3160 * - self::PTD_FOR_INCLUSION: Handle "<noinclude>" and "<includeonly>" as if the text is being
3161 * included. Default is to assume a direct page view.
3163 * The generated DOM tree must depend only on the input text and the flags.
3164 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
3166 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
3167 * change in the DOM tree for a given text, must be passed through the section identifier
3168 * in the section edit link and thus back to extractSections().
3170 * The output of this function is currently only cached in process memory, but a persistent
3171 * cache may be implemented at a later date which takes further advantage of these strict
3172 * dependency requirements.
3176 function preprocessToDom( $text, $flags = 0 ) {
3177 $dom = $this->getPreprocessor()->preprocessToObj( $text, $flags );
3182 * Return a three-element array: leading whitespace, string contents, trailing whitespace
3188 public static function splitWhitespace( $s ) {
3189 $ltrimmed = ltrim( $s );
3190 $w1 = substr( $s, 0, strlen( $s ) - strlen( $ltrimmed ) );
3191 $trimmed = rtrim( $ltrimmed );
3192 $diff = strlen( $ltrimmed ) - strlen( $trimmed );
3194 $w2 = substr( $ltrimmed, -$diff );
3198 return array( $w1, $trimmed, $w2 );
3202 * Replace magic variables, templates, and template arguments
3203 * with the appropriate text. Templates are substituted recursively,
3204 * taking care to avoid infinite loops.
3206 * Note that the substitution depends on value of $mOutputType:
3207 * self::OT_WIKI: only {{subst:}} templates
3208 * self::OT_PREPROCESS: templates but not extension tags
3209 * self::OT_HTML: all templates and extension tags
3211 * @param string $text The text to transform
3212 * @param bool|PPFrame $frame Object describing the arguments passed to the
3213 * template. Arguments may also be provided as an associative array, as
3214 * was the usual case before MW1.12. Providing arguments this way may be
3215 * useful for extensions wishing to perform variable replacement
3217 * @param bool $argsOnly Only do argument (triple-brace) expansion, not
3218 * double-brace expansion.
3221 public function replaceVariables( $text, $frame = false, $argsOnly = false ) {
3222 # Is there any text? Also, Prevent too big inclusions!
3223 if ( strlen( $text ) < 1 ||
strlen( $text ) > $this->mOptions
->getMaxIncludeSize() ) {
3226 wfProfileIn( __METHOD__
);
3228 if ( $frame === false ) {
3229 $frame = $this->getPreprocessor()->newFrame();
3230 } elseif ( !( $frame instanceof PPFrame
) ) {
3231 wfDebug( __METHOD__
. " called using plain parameters instead of "
3232 . "a PPFrame instance. Creating custom frame.\n" );
3233 $frame = $this->getPreprocessor()->newCustomFrame( $frame );
3236 $dom = $this->preprocessToDom( $text );
3237 $flags = $argsOnly ? PPFrame
::NO_TEMPLATES
: 0;
3238 $text = $frame->expand( $dom, $flags );
3240 wfProfileOut( __METHOD__
);
3245 * Clean up argument array - refactored in 1.9 so parserfunctions can use it, too.
3247 * @param array $args
3251 static function createAssocArgs( $args ) {
3252 $assocArgs = array();
3254 foreach ( $args as $arg ) {
3255 $eqpos = strpos( $arg, '=' );
3256 if ( $eqpos === false ) {
3257 $assocArgs[$index++
] = $arg;
3259 $name = trim( substr( $arg, 0, $eqpos ) );
3260 $value = trim( substr( $arg, $eqpos +
1 ) );
3261 if ( $value === false ) {
3264 if ( $name !== false ) {
3265 $assocArgs[$name] = $value;
3274 * Warn the user when a parser limitation is reached
3275 * Will warn at most once the user per limitation type
3277 * @param string $limitationType Should be one of:
3278 * 'expensive-parserfunction' (corresponding messages:
3279 * 'expensive-parserfunction-warning',
3280 * 'expensive-parserfunction-category')
3281 * 'post-expand-template-argument' (corresponding messages:
3282 * 'post-expand-template-argument-warning',
3283 * 'post-expand-template-argument-category')
3284 * 'post-expand-template-inclusion' (corresponding messages:
3285 * 'post-expand-template-inclusion-warning',
3286 * 'post-expand-template-inclusion-category')
3287 * 'node-count-exceeded' (corresponding messages:
3288 * 'node-count-exceeded-warning',
3289 * 'node-count-exceeded-category')
3290 * 'expansion-depth-exceeded' (corresponding messages:
3291 * 'expansion-depth-exceeded-warning',
3292 * 'expansion-depth-exceeded-category')
3293 * @param string|int|null $current Current value
3294 * @param string|int|null $max Maximum allowed, when an explicit limit has been
3295 * exceeded, provide the values (optional)
3297 function limitationWarn( $limitationType, $current = '', $max = '' ) {
3298 # does no harm if $current and $max are present but are unnecessary for the message
3299 $warning = wfMessage( "$limitationType-warning" )->numParams( $current, $max )
3300 ->inLanguage( $this->mOptions
->getUserLangObj() )->text();
3301 $this->mOutput
->addWarning( $warning );
3302 $this->addTrackingCategory( "$limitationType-category" );
3306 * Return the text of a template, after recursively
3307 * replacing any variables or templates within the template.
3309 * @param array $piece The parts of the template
3310 * $piece['title']: the title, i.e. the part before the |
3311 * $piece['parts']: the parameter array
3312 * $piece['lineStart']: whether the brace was at the start of a line
3313 * @param PPFrame $frame The current frame, contains template arguments
3315 * @return string The text of the template
3317 public function braceSubstitution( $piece, $frame ) {
3318 wfProfileIn( __METHOD__
);
3319 wfProfileIn( __METHOD__
. '-setup' );
3323 // $text has been filled
3325 // wiki markup in $text should be escaped
3327 // $text is HTML, armour it against wikitext transformation
3329 // Force interwiki transclusion to be done in raw mode not rendered
3330 $forceRawInterwiki = false;
3331 // $text is a DOM node needing expansion in a child frame
3332 $isChildObj = false;
3333 // $text is a DOM node needing expansion in the current frame
3334 $isLocalObj = false;
3336 # Title object, where $text came from
3339 # $part1 is the bit before the first |, and must contain only title characters.
3340 # Various prefixes will be stripped from it later.
3341 $titleWithSpaces = $frame->expand( $piece['title'] );
3342 $part1 = trim( $titleWithSpaces );
3345 # Original title text preserved for various purposes
3346 $originalTitle = $part1;
3348 # $args is a list of argument nodes, starting from index 0, not including $part1
3349 # @todo FIXME: If piece['parts'] is null then the call to getLength()
3350 # below won't work b/c this $args isn't an object
3351 $args = ( null == $piece['parts'] ) ?
array() : $piece['parts'];
3352 wfProfileOut( __METHOD__
. '-setup' );
3354 $titleProfileIn = null; // profile templates
3357 wfProfileIn( __METHOD__
. '-modifiers' );
3360 $substMatch = $this->mSubstWords
->matchStartAndRemove( $part1 );
3362 # Possibilities for substMatch: "subst", "safesubst" or FALSE
3363 # Decide whether to expand template or keep wikitext as-is.
3364 if ( $this->ot
['wiki'] ) {
3365 if ( $substMatch === false ) {
3366 $literal = true; # literal when in PST with no prefix
3368 $literal = false; # expand when in PST with subst: or safesubst:
3371 if ( $substMatch == 'subst' ) {
3372 $literal = true; # literal when not in PST with plain subst:
3374 $literal = false; # expand when not in PST with safesubst: or no prefix
3378 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3385 if ( !$found && $args->getLength() == 0 ) {
3386 $id = $this->mVariables
->matchStartToEnd( $part1 );
3387 if ( $id !== false ) {
3388 $text = $this->getVariableValue( $id, $frame );
3389 if ( MagicWord
::getCacheTTL( $id ) > -1 ) {
3390 $this->mOutput
->updateCacheExpiry( MagicWord
::getCacheTTL( $id ) );
3396 # MSG, MSGNW and RAW
3399 $mwMsgnw = MagicWord
::get( 'msgnw' );
3400 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
3403 # Remove obsolete MSG:
3404 $mwMsg = MagicWord
::get( 'msg' );
3405 $mwMsg->matchStartAndRemove( $part1 );
3409 $mwRaw = MagicWord
::get( 'raw' );
3410 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
3411 $forceRawInterwiki = true;
3414 wfProfileOut( __METHOD__
. '-modifiers' );
3418 wfProfileIn( __METHOD__
. '-pfunc' );
3420 $colonPos = strpos( $part1, ':' );
3421 if ( $colonPos !== false ) {
3422 $func = substr( $part1, 0, $colonPos );
3423 $funcArgs = array( trim( substr( $part1, $colonPos +
1 ) ) );
3424 for ( $i = 0; $i < $args->getLength(); $i++
) {
3425 $funcArgs[] = $args->item( $i );
3428 $result = $this->callParserFunction( $frame, $func, $funcArgs );
3429 } catch ( Exception
$ex ) {
3430 wfProfileOut( __METHOD__
. '-pfunc' );
3431 wfProfileOut( __METHOD__
);
3435 # The interface for parser functions allows for extracting
3436 # flags into the local scope. Extract any forwarded flags
3440 wfProfileOut( __METHOD__
. '-pfunc' );
3443 # Finish mangling title and then check for loops.
3444 # Set $title to a Title object and $titleText to the PDBK
3447 # Split the title into page and subpage
3449 $relative = $this->maybeDoSubpageLink( $part1, $subpage );
3450 if ( $part1 !== $relative ) {
3452 $ns = $this->mTitle
->getNamespace();
3454 $title = Title
::newFromText( $part1, $ns );
3456 $titleText = $title->getPrefixedText();
3457 # Check for language variants if the template is not found
3458 if ( $this->getConverterLanguage()->hasVariants() && $title->getArticleID() == 0 ) {
3459 $this->getConverterLanguage()->findVariantLink( $part1, $title, true );
3461 # Do recursion depth check
3462 $limit = $this->mOptions
->getMaxTemplateDepth();
3463 if ( $frame->depth
>= $limit ) {
3465 $text = '<span class="error">'
3466 . wfMessage( 'parser-template-recursion-depth-warning' )
3467 ->numParams( $limit )->inContentLanguage()->text()
3473 # Load from database
3474 if ( !$found && $title ) {
3475 if ( !Profiler
::instance()->isPersistent() ) {
3476 # Too many unique items can kill profiling DBs/collectors
3477 $titleProfileIn = __METHOD__
. "-title-" . $title->getPrefixedDBkey();
3478 wfProfileIn( $titleProfileIn ); // template in
3480 wfProfileIn( __METHOD__
. '-loadtpl' );
3481 if ( !$title->isExternal() ) {
3482 if ( $title->isSpecialPage()
3483 && $this->mOptions
->getAllowSpecialInclusion()
3484 && $this->ot
['html']
3486 // Pass the template arguments as URL parameters.
3487 // "uselang" will have no effect since the Language object
3488 // is forced to the one defined in ParserOptions.
3489 $pageArgs = array();
3490 $argsLength = $args->getLength();
3491 for ( $i = 0; $i < $argsLength; $i++
) {
3492 $bits = $args->item( $i )->splitArg();
3493 if ( strval( $bits['index'] ) === '' ) {
3494 $name = trim( $frame->expand( $bits['name'], PPFrame
::STRIP_COMMENTS
) );
3495 $value = trim( $frame->expand( $bits['value'] ) );
3496 $pageArgs[$name] = $value;
3500 // Create a new context to execute the special page
3501 $context = new RequestContext
;
3502 $context->setTitle( $title );
3503 $context->setRequest( new FauxRequest( $pageArgs ) );
3504 $context->setUser( $this->getUser() );
3505 $context->setLanguage( $this->mOptions
->getUserLangObj() );
3506 $ret = SpecialPageFactory
::capturePath( $title, $context );
3508 $text = $context->getOutput()->getHTML();
3509 $this->mOutput
->addOutputPageMetadata( $context->getOutput() );
3512 $this->disableCache();
3514 } elseif ( MWNamespace
::isNonincludable( $title->getNamespace() ) ) {
3515 $found = false; # access denied
3516 wfDebug( __METHOD__
. ": template inclusion denied for " .
3517 $title->getPrefixedDBkey() . "\n" );
3519 list( $text, $title ) = $this->getTemplateDom( $title );
3520 if ( $text !== false ) {
3526 # If the title is valid but undisplayable, make a link to it
3527 if ( !$found && ( $this->ot
['html'] ||
$this->ot
['pre'] ) ) {
3528 $text = "[[:$titleText]]";
3531 } elseif ( $title->isTrans() ) {
3532 # Interwiki transclusion
3533 if ( $this->ot
['html'] && !$forceRawInterwiki ) {
3534 $text = $this->interwikiTransclude( $title, 'render' );
3537 $text = $this->interwikiTransclude( $title, 'raw' );
3538 # Preprocess it like a template
3539 $text = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3545 # Do infinite loop check
3546 # This has to be done after redirect resolution to avoid infinite loops via redirects
3547 if ( !$frame->loopCheck( $title ) ) {
3549 $text = '<span class="error">'
3550 . wfMessage( 'parser-template-loop-warning', $titleText )->inContentLanguage()->text()
3552 wfDebug( __METHOD__
. ": template loop broken at '$titleText'\n" );
3554 wfProfileOut( __METHOD__
. '-loadtpl' );
3557 # If we haven't found text to substitute by now, we're done
3558 # Recover the source wikitext and return it
3560 $text = $frame->virtualBracketedImplode( '{{', '|', '}}', $titleWithSpaces, $args );
3561 if ( $titleProfileIn ) {
3562 wfProfileOut( $titleProfileIn ); // template out
3564 wfProfileOut( __METHOD__
);
3565 return array( 'object' => $text );
3568 # Expand DOM-style return values in a child frame
3569 if ( $isChildObj ) {
3570 # Clean up argument array
3571 $newFrame = $frame->newChild( $args, $title );
3574 $text = $newFrame->expand( $text, PPFrame
::RECOVER_ORIG
);
3575 } elseif ( $titleText !== false && $newFrame->isEmpty() ) {
3576 # Expansion is eligible for the empty-frame cache
3577 if ( isset( $this->mTplExpandCache
[$titleText] ) ) {
3578 $text = $this->mTplExpandCache
[$titleText];
3580 $text = $newFrame->expand( $text );
3581 $this->mTplExpandCache
[$titleText] = $text;
3584 # Uncached expansion
3585 $text = $newFrame->expand( $text );
3588 if ( $isLocalObj && $nowiki ) {
3589 $text = $frame->expand( $text, PPFrame
::RECOVER_ORIG
);
3590 $isLocalObj = false;
3593 if ( $titleProfileIn ) {
3594 wfProfileOut( $titleProfileIn ); // template out
3597 # Replace raw HTML by a placeholder
3599 $text = $this->insertStripItem( $text );
3600 } elseif ( $nowiki && ( $this->ot
['html'] ||
$this->ot
['pre'] ) ) {
3601 # Escape nowiki-style return values
3602 $text = wfEscapeWikiText( $text );
3603 } elseif ( is_string( $text )
3604 && !$piece['lineStart']
3605 && preg_match( '/^(?:{\\||:|;|#|\*)/', $text )
3607 # Bug 529: if the template begins with a table or block-level
3608 # element, it should be treated as beginning a new line.
3609 # This behavior is somewhat controversial.
3610 $text = "\n" . $text;
3613 if ( is_string( $text ) && !$this->incrementIncludeSize( 'post-expand', strlen( $text ) ) ) {
3614 # Error, oversize inclusion
3615 if ( $titleText !== false ) {
3616 # Make a working, properly escaped link if possible (bug 23588)
3617 $text = "[[:$titleText]]";
3619 # This will probably not be a working link, but at least it may
3620 # provide some hint of where the problem is
3621 preg_replace( '/^:/', '', $originalTitle );
3622 $text = "[[:$originalTitle]]";
3624 $text .= $this->insertStripItem( '<!-- WARNING: template omitted, '
3625 . 'post-expand include size too large -->' );
3626 $this->limitationWarn( 'post-expand-template-inclusion' );
3629 if ( $isLocalObj ) {
3630 $ret = array( 'object' => $text );
3632 $ret = array( 'text' => $text );
3635 wfProfileOut( __METHOD__
);
3640 * Call a parser function and return an array with text and flags.
3642 * The returned array will always contain a boolean 'found', indicating
3643 * whether the parser function was found or not. It may also contain the
3645 * text: string|object, resulting wikitext or PP DOM object
3646 * isHTML: bool, $text is HTML, armour it against wikitext transformation
3647 * isChildObj: bool, $text is a DOM node needing expansion in a child frame
3648 * isLocalObj: bool, $text is a DOM node needing expansion in the current frame
3649 * nowiki: bool, wiki markup in $text should be escaped
3652 * @param PPFrame $frame The current frame, contains template arguments
3653 * @param string $function Function name
3654 * @param array $args Arguments to the function
3655 * @throws MWException
3658 public function callParserFunction( $frame, $function, array $args = array() ) {
3661 wfProfileIn( __METHOD__
);
3663 # Case sensitive functions
3664 if ( isset( $this->mFunctionSynonyms
[1][$function] ) ) {
3665 $function = $this->mFunctionSynonyms
[1][$function];
3667 # Case insensitive functions
3668 $function = $wgContLang->lc( $function );
3669 if ( isset( $this->mFunctionSynonyms
[0][$function] ) ) {
3670 $function = $this->mFunctionSynonyms
[0][$function];
3672 wfProfileOut( __METHOD__
);
3673 return array( 'found' => false );
3677 wfProfileIn( __METHOD__
. '-pfunc-' . $function );
3678 list( $callback, $flags ) = $this->mFunctionHooks
[$function];
3680 # Workaround for PHP bug 35229 and similar
3681 if ( !is_callable( $callback ) ) {
3682 wfProfileOut( __METHOD__
. '-pfunc-' . $function );
3683 wfProfileOut( __METHOD__
);
3684 throw new MWException( "Tag hook for $function is not callable\n" );
3687 $allArgs = array( &$this );
3688 if ( $flags & SFH_OBJECT_ARGS
) {
3689 # Convert arguments to PPNodes and collect for appending to $allArgs
3690 $funcArgs = array();
3691 foreach ( $args as $k => $v ) {
3692 if ( $v instanceof PPNode ||
$k === 0 ) {
3695 $funcArgs[] = $this->mPreprocessor
->newPartNodeArray( array( $k => $v ) )->item( 0 );
3699 # Add a frame parameter, and pass the arguments as an array
3700 $allArgs[] = $frame;
3701 $allArgs[] = $funcArgs;
3703 # Convert arguments to plain text and append to $allArgs
3704 foreach ( $args as $k => $v ) {
3705 if ( $v instanceof PPNode
) {
3706 $allArgs[] = trim( $frame->expand( $v ) );
3707 } elseif ( is_int( $k ) && $k >= 0 ) {
3708 $allArgs[] = trim( $v );
3710 $allArgs[] = trim( "$k=$v" );
3715 $result = call_user_func_array( $callback, $allArgs );
3717 # The interface for function hooks allows them to return a wikitext
3718 # string or an array containing the string and any flags. This mungs
3719 # things around to match what this method should return.
3720 if ( !is_array( $result ) ) {
3726 if ( isset( $result[0] ) && !isset( $result['text'] ) ) {
3727 $result['text'] = $result[0];
3729 unset( $result[0] );
3736 $preprocessFlags = 0;
3737 if ( isset( $result['noparse'] ) ) {
3738 $noparse = $result['noparse'];
3740 if ( isset( $result['preprocessFlags'] ) ) {
3741 $preprocessFlags = $result['preprocessFlags'];
3745 $result['text'] = $this->preprocessToDom( $result['text'], $preprocessFlags );
3746 $result['isChildObj'] = true;
3748 wfProfileOut( __METHOD__
. '-pfunc-' . $function );
3749 wfProfileOut( __METHOD__
);
3755 * Get the semi-parsed DOM representation of a template with a given title,
3756 * and its redirect destination title. Cached.
3758 * @param Title $title
3762 function getTemplateDom( $title ) {
3763 $cacheTitle = $title;
3764 $titleText = $title->getPrefixedDBkey();
3766 if ( isset( $this->mTplRedirCache
[$titleText] ) ) {
3767 list( $ns, $dbk ) = $this->mTplRedirCache
[$titleText];
3768 $title = Title
::makeTitle( $ns, $dbk );
3769 $titleText = $title->getPrefixedDBkey();
3771 if ( isset( $this->mTplDomCache
[$titleText] ) ) {
3772 return array( $this->mTplDomCache
[$titleText], $title );
3775 # Cache miss, go to the database
3776 list( $text, $title ) = $this->fetchTemplateAndTitle( $title );
3778 if ( $text === false ) {
3779 $this->mTplDomCache
[$titleText] = false;
3780 return array( false, $title );
3783 $dom = $this->preprocessToDom( $text, self
::PTD_FOR_INCLUSION
);
3784 $this->mTplDomCache
[$titleText] = $dom;
3786 if ( !$title->equals( $cacheTitle ) ) {
3787 $this->mTplRedirCache
[$cacheTitle->getPrefixedDBkey()] =
3788 array( $title->getNamespace(), $cdb = $title->getDBkey() );
3791 return array( $dom, $title );
3795 * Fetch the unparsed text of a template and register a reference to it.
3796 * @param Title $title
3797 * @return array ( string or false, Title )
3799 function fetchTemplateAndTitle( $title ) {
3800 // Defaults to Parser::statelessFetchTemplate()
3801 $templateCb = $this->mOptions
->getTemplateCallback();
3802 $stuff = call_user_func( $templateCb, $title, $this );
3803 $text = $stuff['text'];
3804 $finalTitle = isset( $stuff['finalTitle'] ) ?
$stuff['finalTitle'] : $title;
3805 if ( isset( $stuff['deps'] ) ) {
3806 foreach ( $stuff['deps'] as $dep ) {
3807 $this->mOutput
->addTemplate( $dep['title'], $dep['page_id'], $dep['rev_id'] );
3808 if ( $dep['title']->equals( $this->getTitle() ) ) {
3809 // If we transclude ourselves, the final result
3810 // will change based on the new version of the page
3811 $this->mOutput
->setFlag( 'vary-revision' );
3815 return array( $text, $finalTitle );
3819 * Fetch the unparsed text of a template and register a reference to it.
3820 * @param Title $title
3821 * @return string|bool
3823 function fetchTemplate( $title ) {
3824 $rv = $this->fetchTemplateAndTitle( $title );
3829 * Static function to get a template
3830 * Can be overridden via ParserOptions::setTemplateCallback().
3832 * @param Title $title
3833 * @param bool|Parser $parser
3837 static function statelessFetchTemplate( $title, $parser = false ) {
3838 $text = $skip = false;
3839 $finalTitle = $title;
3842 # Loop to fetch the article, with up to 1 redirect
3843 for ( $i = 0; $i < 2 && is_object( $title ); $i++
) {
3844 # Give extensions a chance to select the revision instead
3845 $id = false; # Assume current
3846 wfRunHooks( 'BeforeParserFetchTemplateAndtitle',
3847 array( $parser, $title, &$skip, &$id ) );
3853 'page_id' => $title->getArticleID(),
3860 ? Revision
::newFromId( $id )
3861 : Revision
::newFromTitle( $title, false, Revision
::READ_NORMAL
);
3862 $rev_id = $rev ?
$rev->getId() : 0;
3863 # If there is no current revision, there is no page
3864 if ( $id === false && !$rev ) {
3865 $linkCache = LinkCache
::singleton();
3866 $linkCache->addBadLinkObj( $title );
3871 'page_id' => $title->getArticleID(),
3872 'rev_id' => $rev_id );
3873 if ( $rev && !$title->equals( $rev->getTitle() ) ) {
3874 # We fetched a rev from a different title; register it too...
3876 'title' => $rev->getTitle(),
3877 'page_id' => $rev->getPage(),
3878 'rev_id' => $rev_id );
3882 $content = $rev->getContent();
3883 $text = $content ?
$content->getWikitextForTransclusion() : null;
3885 if ( $text === false ||
$text === null ) {
3889 } elseif ( $title->getNamespace() == NS_MEDIAWIKI
) {
3891 $message = wfMessage( $wgContLang->lcfirst( $title->getText() ) )->inContentLanguage();
3892 if ( !$message->exists() ) {
3896 $content = $message->content();
3897 $text = $message->plain();
3905 $finalTitle = $title;
3906 $title = $content->getRedirectTarget();
3910 'finalTitle' => $finalTitle,
3915 * Fetch a file and its title and register a reference to it.
3916 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3917 * @param Title $title
3918 * @param array $options Array of options to RepoGroup::findFile
3921 function fetchFile( $title, $options = array() ) {
3922 $res = $this->fetchFileAndTitle( $title, $options );
3927 * Fetch a file and its title and register a reference to it.
3928 * If 'broken' is a key in $options then the file will appear as a broken thumbnail.
3929 * @param Title $title
3930 * @param array $options Array of options to RepoGroup::findFile
3931 * @return array ( File or false, Title of file )
3933 function fetchFileAndTitle( $title, $options = array() ) {
3934 $file = $this->fetchFileNoRegister( $title, $options );
3936 $time = $file ?
$file->getTimestamp() : false;
3937 $sha1 = $file ?
$file->getSha1() : false;
3938 # Register the file as a dependency...
3939 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
3940 if ( $file && !$title->equals( $file->getTitle() ) ) {
3941 # Update fetched file title
3942 $title = $file->getTitle();
3943 $this->mOutput
->addImage( $title->getDBkey(), $time, $sha1 );
3945 return array( $file, $title );
3949 * Helper function for fetchFileAndTitle.
3951 * Also useful if you need to fetch a file but not use it yet,
3952 * for example to get the file's handler.
3954 * @param Title $title
3955 * @param array $options Array of options to RepoGroup::findFile
3958 protected function fetchFileNoRegister( $title, $options = array() ) {
3959 if ( isset( $options['broken'] ) ) {
3960 $file = false; // broken thumbnail forced by hook
3961 } elseif ( isset( $options['sha1'] ) ) { // get by (sha1,timestamp)
3962 $file = RepoGroup
::singleton()->findFileFromKey( $options['sha1'], $options );
3963 } else { // get by (name,timestamp)
3964 $file = wfFindFile( $title, $options );
3970 * Transclude an interwiki link.
3972 * @param Title $title
3973 * @param string $action
3977 function interwikiTransclude( $title, $action ) {
3978 global $wgEnableScaryTranscluding;
3980 if ( !$wgEnableScaryTranscluding ) {
3981 return wfMessage( 'scarytranscludedisabled' )->inContentLanguage()->text();
3984 $url = $title->getFullURL( array( 'action' => $action ) );
3986 if ( strlen( $url ) > 255 ) {
3987 return wfMessage( 'scarytranscludetoolong' )->inContentLanguage()->text();
3989 return $this->fetchScaryTemplateMaybeFromCache( $url );
3993 * @param string $url
3994 * @return mixed|string
3996 function fetchScaryTemplateMaybeFromCache( $url ) {
3997 global $wgTranscludeCacheExpiry;
3998 $dbr = wfGetDB( DB_SLAVE
);
3999 $tsCond = $dbr->timestamp( time() - $wgTranscludeCacheExpiry );
4000 $obj = $dbr->selectRow( 'transcache', array( 'tc_time', 'tc_contents' ),
4001 array( 'tc_url' => $url, "tc_time >= " . $dbr->addQuotes( $tsCond ) ) );
4003 return $obj->tc_contents
;
4006 $req = MWHttpRequest
::factory( $url );
4007 $status = $req->execute(); // Status object
4008 if ( $status->isOK() ) {
4009 $text = $req->getContent();
4010 } elseif ( $req->getStatus() != 200 ) {
4011 // Though we failed to fetch the content, this status is useless.
4012 return wfMessage( 'scarytranscludefailed-httpstatus' )
4013 ->params( $url, $req->getStatus() /* HTTP status */ )->inContentLanguage()->text();
4015 return wfMessage( 'scarytranscludefailed', $url )->inContentLanguage()->text();
4018 $dbw = wfGetDB( DB_MASTER
);
4019 $dbw->replace( 'transcache', array( 'tc_url' ), array(
4021 'tc_time' => $dbw->timestamp( time() ),
4022 'tc_contents' => $text
4028 * Triple brace replacement -- used for template arguments
4031 * @param array $piece
4032 * @param PPFrame $frame
4036 function argSubstitution( $piece, $frame ) {
4037 wfProfileIn( __METHOD__
);
4040 $parts = $piece['parts'];
4041 $nameWithSpaces = $frame->expand( $piece['title'] );
4042 $argName = trim( $nameWithSpaces );
4044 $text = $frame->getArgument( $argName );
4045 if ( $text === false && $parts->getLength() > 0
4046 && ( $this->ot
['html']
4048 ||
( $this->ot
['wiki'] && $frame->isTemplate() )
4051 # No match in frame, use the supplied default
4052 $object = $parts->item( 0 )->getChildren();
4054 if ( !$this->incrementIncludeSize( 'arg', strlen( $text ) ) ) {
4055 $error = '<!-- WARNING: argument omitted, expansion size too large -->';
4056 $this->limitationWarn( 'post-expand-template-argument' );
4059 if ( $text === false && $object === false ) {
4061 $object = $frame->virtualBracketedImplode( '{{{', '|', '}}}', $nameWithSpaces, $parts );
4063 if ( $error !== false ) {
4066 if ( $object !== false ) {
4067 $ret = array( 'object' => $object );
4069 $ret = array( 'text' => $text );
4072 wfProfileOut( __METHOD__
);
4077 * Return the text to be used for a given extension tag.
4078 * This is the ghost of strip().
4080 * @param array $params Associative array of parameters:
4081 * name PPNode for the tag name
4082 * attr PPNode for unparsed text where tag attributes are thought to be
4083 * attributes Optional associative array of parsed attributes
4084 * inner Contents of extension element
4085 * noClose Original text did not have a close tag
4086 * @param PPFrame $frame
4088 * @throws MWException
4091 function extensionSubstitution( $params, $frame ) {
4092 $name = $frame->expand( $params['name'] );
4093 $attrText = !isset( $params['attr'] ) ?
null : $frame->expand( $params['attr'] );
4094 $content = !isset( $params['inner'] ) ?
null : $frame->expand( $params['inner'] );
4095 $marker = "{$this->mUniqPrefix}-$name-"
4096 . sprintf( '%08X', $this->mMarkerIndex++
) . self
::MARKER_SUFFIX
;
4098 $isFunctionTag = isset( $this->mFunctionTagHooks
[strtolower( $name )] ) &&
4099 ( $this->ot
['html'] ||
$this->ot
['pre'] );
4100 if ( $isFunctionTag ) {
4101 $markerType = 'none';
4103 $markerType = 'general';
4105 if ( $this->ot
['html'] ||
$isFunctionTag ) {
4106 $name = strtolower( $name );
4107 $attributes = Sanitizer
::decodeTagAttributes( $attrText );
4108 if ( isset( $params['attributes'] ) ) {
4109 $attributes = $attributes +
$params['attributes'];
4112 if ( isset( $this->mTagHooks
[$name] ) ) {
4113 # Workaround for PHP bug 35229 and similar
4114 if ( !is_callable( $this->mTagHooks
[$name] ) ) {
4115 throw new MWException( "Tag hook for $name is not callable\n" );
4117 $output = call_user_func_array( $this->mTagHooks
[$name],
4118 array( $content, $attributes, $this, $frame ) );
4119 } elseif ( isset( $this->mFunctionTagHooks
[$name] ) ) {
4120 list( $callback, ) = $this->mFunctionTagHooks
[$name];
4121 if ( !is_callable( $callback ) ) {
4122 throw new MWException( "Tag hook for $name is not callable\n" );
4125 $output = call_user_func_array( $callback, array( &$this, $frame, $content, $attributes ) );
4127 $output = '<span class="error">Invalid tag extension name: ' .
4128 htmlspecialchars( $name ) . '</span>';
4131 if ( is_array( $output ) ) {
4132 # Extract flags to local scope (to override $markerType)
4134 $output = $flags[0];
4139 if ( is_null( $attrText ) ) {
4142 if ( isset( $params['attributes'] ) ) {
4143 foreach ( $params['attributes'] as $attrName => $attrValue ) {
4144 $attrText .= ' ' . htmlspecialchars( $attrName ) . '="' .
4145 htmlspecialchars( $attrValue ) . '"';
4148 if ( $content === null ) {
4149 $output = "<$name$attrText/>";
4151 $close = is_null( $params['close'] ) ?
'' : $frame->expand( $params['close'] );
4152 $output = "<$name$attrText>$content$close";
4156 if ( $markerType === 'none' ) {
4158 } elseif ( $markerType === 'nowiki' ) {
4159 $this->mStripState
->addNoWiki( $marker, $output );
4160 } elseif ( $markerType === 'general' ) {
4161 $this->mStripState
->addGeneral( $marker, $output );
4163 throw new MWException( __METHOD__
. ': invalid marker type' );
4169 * Increment an include size counter
4171 * @param string $type The type of expansion
4172 * @param int $size The size of the text
4173 * @return bool False if this inclusion would take it over the maximum, true otherwise
4175 function incrementIncludeSize( $type, $size ) {
4176 if ( $this->mIncludeSizes
[$type] +
$size > $this->mOptions
->getMaxIncludeSize() ) {
4179 $this->mIncludeSizes
[$type] +
= $size;
4185 * Increment the expensive function count
4187 * @return bool False if the limit has been exceeded
4189 function incrementExpensiveFunctionCount() {
4190 $this->mExpensiveFunctionCount++
;
4191 return $this->mExpensiveFunctionCount
<= $this->mOptions
->getExpensiveParserFunctionLimit();
4195 * Strip double-underscore items like __NOGALLERY__ and __NOTOC__
4196 * Fills $this->mDoubleUnderscores, returns the modified text
4198 * @param string $text
4202 function doDoubleUnderscore( $text ) {
4203 wfProfileIn( __METHOD__
);
4205 # The position of __TOC__ needs to be recorded
4206 $mw = MagicWord
::get( 'toc' );
4207 if ( $mw->match( $text ) ) {
4208 $this->mShowToc
= true;
4209 $this->mForceTocPosition
= true;
4211 # Set a placeholder. At the end we'll fill it in with the TOC.
4212 $text = $mw->replace( '<!--MWTOC-->', $text, 1 );
4214 # Only keep the first one.
4215 $text = $mw->replace( '', $text );
4218 # Now match and remove the rest of them
4219 $mwa = MagicWord
::getDoubleUnderscoreArray();
4220 $this->mDoubleUnderscores
= $mwa->matchAndRemove( $text );
4222 if ( isset( $this->mDoubleUnderscores
['nogallery'] ) ) {
4223 $this->mOutput
->mNoGallery
= true;
4225 if ( isset( $this->mDoubleUnderscores
['notoc'] ) && !$this->mForceTocPosition
) {
4226 $this->mShowToc
= false;
4228 if ( isset( $this->mDoubleUnderscores
['hiddencat'] )
4229 && $this->mTitle
->getNamespace() == NS_CATEGORY
4231 $this->addTrackingCategory( 'hidden-category-category' );
4233 # (bug 8068) Allow control over whether robots index a page.
4235 # @todo FIXME: Bug 14899: __INDEX__ always overrides __NOINDEX__ here! This
4236 # is not desirable, the last one on the page should win.
4237 if ( isset( $this->mDoubleUnderscores
['noindex'] ) && $this->mTitle
->canUseNoindex() ) {
4238 $this->mOutput
->setIndexPolicy( 'noindex' );
4239 $this->addTrackingCategory( 'noindex-category' );
4241 if ( isset( $this->mDoubleUnderscores
['index'] ) && $this->mTitle
->canUseNoindex() ) {
4242 $this->mOutput
->setIndexPolicy( 'index' );
4243 $this->addTrackingCategory( 'index-category' );
4246 # Cache all double underscores in the database
4247 foreach ( $this->mDoubleUnderscores
as $key => $val ) {
4248 $this->mOutput
->setProperty( $key, '' );
4251 wfProfileOut( __METHOD__
);
4256 * Add a tracking category, getting the title from a system message,
4257 * or print a debug message if the title is invalid.
4259 * Please add any message that you use with this function to
4260 * $wgTrackingCategories. That way they will be listed on
4261 * Special:TrackingCategories.
4263 * @param string $msg Message key
4264 * @return bool Whether the addition was successful
4266 public function addTrackingCategory( $msg ) {
4267 if ( $this->mTitle
->getNamespace() === NS_SPECIAL
) {
4268 wfDebug( __METHOD__
. ": Not adding tracking category $msg to special page!\n" );
4271 // Important to parse with correct title (bug 31469)
4272 $cat = wfMessage( $msg )
4273 ->title( $this->getTitle() )
4274 ->inContentLanguage()
4277 # Allow tracking categories to be disabled by setting them to "-"
4278 if ( $cat === '-' ) {
4282 $containerCategory = Title
::makeTitleSafe( NS_CATEGORY
, $cat );
4283 if ( $containerCategory ) {
4284 $this->mOutput
->addCategory( $containerCategory->getDBkey(), $this->getDefaultSort() );
4287 wfDebug( __METHOD__
. ": [[MediaWiki:$msg]] is not a valid title!\n" );
4293 * This function accomplishes several tasks:
4294 * 1) Auto-number headings if that option is enabled
4295 * 2) Add an [edit] link to sections for users who have enabled the option and can edit the page
4296 * 3) Add a Table of contents on the top for users who have enabled the option
4297 * 4) Auto-anchor headings
4299 * It loops through all headlines, collects the necessary data, then splits up the
4300 * string and re-inserts the newly formatted headlines.
4302 * @param string $text
4303 * @param string $origText Original, untouched wikitext
4304 * @param bool $isMain
4305 * @return mixed|string
4308 function formatHeadings( $text, $origText, $isMain = true ) {
4309 global $wgMaxTocLevel, $wgExperimentalHtmlIds;
4311 # Inhibit editsection links if requested in the page
4312 if ( isset( $this->mDoubleUnderscores
['noeditsection'] ) ) {
4313 $maybeShowEditLink = $showEditLink = false;
4315 $maybeShowEditLink = true; /* Actual presence will depend on ParserOptions option */
4316 $showEditLink = $this->mOptions
->getEditSection();
4318 if ( $showEditLink ) {
4319 $this->mOutput
->setEditSectionTokens( true );
4322 # Get all headlines for numbering them and adding funky stuff like [edit]
4323 # links - this is for later, but we need the number of headlines right now
4325 $numMatches = preg_match_all(
4326 '/<H(?P<level>[1-6])(?P<attrib>.*?' . '>)\s*(?P<header>[\s\S]*?)\s*<\/H[1-6] *>/i',
4331 # if there are fewer than 4 headlines in the article, do not show TOC
4332 # unless it's been explicitly enabled.
4333 $enoughToc = $this->mShowToc
&&
4334 ( ( $numMatches >= 4 ) ||
$this->mForceTocPosition
);
4336 # Allow user to stipulate that a page should have a "new section"
4337 # link added via __NEWSECTIONLINK__
4338 if ( isset( $this->mDoubleUnderscores
['newsectionlink'] ) ) {
4339 $this->mOutput
->setNewSection( true );
4342 # Allow user to remove the "new section"
4343 # link via __NONEWSECTIONLINK__
4344 if ( isset( $this->mDoubleUnderscores
['nonewsectionlink'] ) ) {
4345 $this->mOutput
->hideNewSection( true );
4348 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
4349 # override above conditions and always show TOC above first header
4350 if ( isset( $this->mDoubleUnderscores
['forcetoc'] ) ) {
4351 $this->mShowToc
= true;
4359 # Ugh .. the TOC should have neat indentation levels which can be
4360 # passed to the skin functions. These are determined here
4364 $sublevelCount = array();
4365 $levelCount = array();
4370 $markerRegex = "{$this->mUniqPrefix}-h-(\d+)-" . self
::MARKER_SUFFIX
;
4371 $baseTitleText = $this->mTitle
->getPrefixedDBkey();
4372 $oldType = $this->mOutputType
;
4373 $this->setOutputType( self
::OT_WIKI
);
4374 $frame = $this->getPreprocessor()->newFrame();
4375 $root = $this->preprocessToDom( $origText );
4376 $node = $root->getFirstChild();
4381 foreach ( $matches[3] as $headline ) {
4382 $isTemplate = false;
4384 $sectionIndex = false;
4386 $markerMatches = array();
4387 if ( preg_match( "/^$markerRegex/", $headline, $markerMatches ) ) {
4388 $serial = $markerMatches[1];
4389 list( $titleText, $sectionIndex ) = $this->mHeadings
[$serial];
4390 $isTemplate = ( $titleText != $baseTitleText );
4391 $headline = preg_replace( "/^$markerRegex\\s*/", "", $headline );
4395 $prevlevel = $level;
4397 $level = $matches[1][$headlineCount];
4399 if ( $level > $prevlevel ) {
4400 # Increase TOC level
4402 $sublevelCount[$toclevel] = 0;
4403 if ( $toclevel < $wgMaxTocLevel ) {
4404 $prevtoclevel = $toclevel;
4405 $toc .= Linker
::tocIndent();
4408 } elseif ( $level < $prevlevel && $toclevel > 1 ) {
4409 # Decrease TOC level, find level to jump to
4411 for ( $i = $toclevel; $i > 0; $i-- ) {
4412 if ( $levelCount[$i] == $level ) {
4413 # Found last matching level
4416 } elseif ( $levelCount[$i] < $level ) {
4417 # Found first matching level below current level
4425 if ( $toclevel < $wgMaxTocLevel ) {
4426 if ( $prevtoclevel < $wgMaxTocLevel ) {
4427 # Unindent only if the previous toc level was shown :p
4428 $toc .= Linker
::tocUnindent( $prevtoclevel - $toclevel );
4429 $prevtoclevel = $toclevel;
4431 $toc .= Linker
::tocLineEnd();
4435 # No change in level, end TOC line
4436 if ( $toclevel < $wgMaxTocLevel ) {
4437 $toc .= Linker
::tocLineEnd();
4441 $levelCount[$toclevel] = $level;
4443 # count number of headlines for each level
4444 $sublevelCount[$toclevel]++
;
4446 for ( $i = 1; $i <= $toclevel; $i++
) {
4447 if ( !empty( $sublevelCount[$i] ) ) {
4451 $numbering .= $this->getTargetLanguage()->formatNum( $sublevelCount[$i] );
4456 # The safe header is a version of the header text safe to use for links
4458 # Remove link placeholders by the link text.
4459 # <!--LINK number-->
4461 # link text with suffix
4462 # Do this before unstrip since link text can contain strip markers
4463 $safeHeadline = $this->replaceLinkHoldersText( $headline );
4465 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
4466 $safeHeadline = $this->mStripState
->unstripBoth( $safeHeadline );
4468 # Strip out HTML (first regex removes any tag not allowed)
4470 # * <sup> and <sub> (bug 8393)
4473 # * <span dir="rtl"> and <span dir="ltr"> (bug 35167)
4475 # We strip any parameter from accepted tags (second regex), except dir="rtl|ltr" from <span>,
4476 # to allow setting directionality in toc items.
4477 $tocline = preg_replace(
4479 '#<(?!/?(span|sup|sub|i|b)(?: [^>]*)?>).*?' . '>#',
4480 '#<(/?(?:span(?: dir="(?:rtl|ltr)")?|sup|sub|i|b))(?: .*?)?' . '>#'
4482 array( '', '<$1>' ),
4485 $tocline = trim( $tocline );
4487 # For the anchor, strip out HTML-y stuff period
4488 $safeHeadline = preg_replace( '/<.*?' . '>/', '', $safeHeadline );
4489 $safeHeadline = Sanitizer
::normalizeSectionNameWhitespace( $safeHeadline );
4491 # Save headline for section edit hint before it's escaped
4492 $headlineHint = $safeHeadline;
4494 if ( $wgExperimentalHtmlIds ) {
4495 # For reverse compatibility, provide an id that's
4496 # HTML4-compatible, like we used to.
4498 # It may be worth noting, academically, that it's possible for
4499 # the legacy anchor to conflict with a non-legacy headline
4500 # anchor on the page. In this case likely the "correct" thing
4501 # would be to either drop the legacy anchors or make sure
4502 # they're numbered first. However, this would require people
4503 # to type in section names like "abc_.D7.93.D7.90.D7.A4"
4504 # manually, so let's not bother worrying about it.
4505 $legacyHeadline = Sanitizer
::escapeId( $safeHeadline,
4506 array( 'noninitial', 'legacy' ) );
4507 $safeHeadline = Sanitizer
::escapeId( $safeHeadline );
4509 if ( $legacyHeadline == $safeHeadline ) {
4510 # No reason to have both (in fact, we can't)
4511 $legacyHeadline = false;
4514 $legacyHeadline = false;
4515 $safeHeadline = Sanitizer
::escapeId( $safeHeadline,
4519 # HTML names must be case-insensitively unique (bug 10721).
4520 # This does not apply to Unicode characters per
4521 # http://dev.w3.org/html5/spec/infrastructure.html#case-sensitivity-and-string-comparison
4522 # @todo FIXME: We may be changing them depending on the current locale.
4523 $arrayKey = strtolower( $safeHeadline );
4524 if ( $legacyHeadline === false ) {
4525 $legacyArrayKey = false;
4527 $legacyArrayKey = strtolower( $legacyHeadline );
4530 # count how many in assoc. array so we can track dupes in anchors
4531 if ( isset( $refers[$arrayKey] ) ) {
4532 $refers[$arrayKey]++
;
4534 $refers[$arrayKey] = 1;
4536 if ( isset( $refers[$legacyArrayKey] ) ) {
4537 $refers[$legacyArrayKey]++
;
4539 $refers[$legacyArrayKey] = 1;
4542 # Don't number the heading if it is the only one (looks silly)
4543 if ( count( $matches[3] ) > 1 && $this->mOptions
->getNumberHeadings() ) {
4544 # the two are different if the line contains a link
4545 $headline = Html
::element(
4547 array( 'class' => 'mw-headline-number' ),
4549 ) . ' ' . $headline;
4552 # Create the anchor for linking from the TOC to the section
4553 $anchor = $safeHeadline;
4554 $legacyAnchor = $legacyHeadline;
4555 if ( $refers[$arrayKey] > 1 ) {
4556 $anchor .= '_' . $refers[$arrayKey];
4558 if ( $legacyHeadline !== false && $refers[$legacyArrayKey] > 1 ) {
4559 $legacyAnchor .= '_' . $refers[$legacyArrayKey];
4561 if ( $enoughToc && ( !isset( $wgMaxTocLevel ) ||
$toclevel < $wgMaxTocLevel ) ) {
4562 $toc .= Linker
::tocLine( $anchor, $tocline,
4563 $numbering, $toclevel, ( $isTemplate ?
false : $sectionIndex ) );
4566 # Add the section to the section tree
4567 # Find the DOM node for this header
4568 $noOffset = ( $isTemplate ||
$sectionIndex === false );
4569 while ( $node && !$noOffset ) {
4570 if ( $node->getName() === 'h' ) {
4571 $bits = $node->splitHeading();
4572 if ( $bits['i'] == $sectionIndex ) {
4576 $byteOffset +
= mb_strlen( $this->mStripState
->unstripBoth(
4577 $frame->expand( $node, PPFrame
::RECOVER_ORIG
) ) );
4578 $node = $node->getNextSibling();
4581 'toclevel' => $toclevel,
4584 'number' => $numbering,
4585 'index' => ( $isTemplate ?
'T-' : '' ) . $sectionIndex,
4586 'fromtitle' => $titleText,
4587 'byteoffset' => ( $noOffset ?
null : $byteOffset ),
4588 'anchor' => $anchor,
4591 # give headline the correct <h#> tag
4592 if ( $maybeShowEditLink && $sectionIndex !== false ) {
4593 // Output edit section links as markers with styles that can be customized by skins
4594 if ( $isTemplate ) {
4595 # Put a T flag in the section identifier, to indicate to extractSections()
4596 # that sections inside <includeonly> should be counted.
4597 $editlinkArgs = array( $titleText, "T-$sectionIndex"/*, null */ );
4599 $editlinkArgs = array(
4600 $this->mTitle
->getPrefixedText(),
4605 // We use a bit of pesudo-xml for editsection markers. The
4606 // language converter is run later on. Using a UNIQ style marker
4607 // leads to the converter screwing up the tokens when it
4608 // converts stuff. And trying to insert strip tags fails too. At
4609 // this point all real inputted tags have already been escaped,
4610 // so we don't have to worry about a user trying to input one of
4611 // these markers directly. We use a page and section attribute
4612 // to stop the language converter from converting these
4613 // important bits of data, but put the headline hint inside a
4614 // content block because the language converter is supposed to
4615 // be able to convert that piece of data.
4616 $editlink = '<mw:editsection page="' . htmlspecialchars( $editlinkArgs[0] );
4617 $editlink .= '" section="' . htmlspecialchars( $editlinkArgs[1] ) . '"';
4618 if ( isset( $editlinkArgs[2] ) ) {
4619 $editlink .= '>' . $editlinkArgs[2] . '</mw:editsection>';
4626 $head[$headlineCount] = Linker
::makeHeadline( $level,
4627 $matches['attrib'][$headlineCount], $anchor, $headline,
4628 $editlink, $legacyAnchor );
4633 $this->setOutputType( $oldType );
4635 # Never ever show TOC if no headers
4636 if ( $numVisible < 1 ) {
4641 if ( $prevtoclevel > 0 && $prevtoclevel < $wgMaxTocLevel ) {
4642 $toc .= Linker
::tocUnindent( $prevtoclevel - 1 );
4644 $toc = Linker
::tocList( $toc, $this->mOptions
->getUserLangObj() );
4645 $this->mOutput
->setTOCHTML( $toc );
4646 $toc = self
::TOC_START
. $toc . self
::TOC_END
;
4647 $this->mOutput
->addModules( 'mediawiki.toc' );
4651 $this->mOutput
->setSections( $tocraw );
4654 # split up and insert constructed headlines
4655 $blocks = preg_split( '/<H[1-6].*?' . '>[\s\S]*?<\/H[1-6]>/i', $text );
4658 // build an array of document sections
4659 $sections = array();
4660 foreach ( $blocks as $block ) {
4661 // $head is zero-based, sections aren't.
4662 if ( empty( $head[$i - 1] ) ) {
4663 $sections[$i] = $block;
4665 $sections[$i] = $head[$i - 1] . $block;
4669 * Send a hook, one per section.
4670 * The idea here is to be able to make section-level DIVs, but to do so in a
4671 * lower-impact, more correct way than r50769
4674 * $section : the section number
4675 * &$sectionContent : ref to the content of the section
4676 * $showEditLinks : boolean describing whether this section has an edit link
4678 wfRunHooks( 'ParserSectionCreate', array( $this, $i, &$sections[$i], $showEditLink ) );
4683 if ( $enoughToc && $isMain && !$this->mForceTocPosition
) {
4684 // append the TOC at the beginning
4685 // Top anchor now in skin
4686 $sections[0] = $sections[0] . $toc . "\n";
4689 $full .= join( '', $sections );
4691 if ( $this->mForceTocPosition
) {
4692 return str_replace( '<!--MWTOC-->', $toc, $full );
4699 * Transform wiki markup when saving a page by doing "\r\n" -> "\n"
4700 * conversion, substitting signatures, {{subst:}} templates, etc.
4702 * @param string $text The text to transform
4703 * @param Title $title The Title object for the current article
4704 * @param User $user The User object describing the current user
4705 * @param ParserOptions $options Parsing options
4706 * @param bool $clearState Whether to clear the parser state first
4707 * @return string The altered wiki markup
4709 public function preSaveTransform( $text, Title
$title, User
$user,
4710 ParserOptions
$options, $clearState = true
4712 if ( $clearState ) {
4713 $magicScopeVariable = $this->lock();
4715 $this->startParse( $title, $options, self
::OT_WIKI
, $clearState );
4716 $this->setUser( $user );
4721 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
4722 if ( $options->getPreSaveTransform() ) {
4723 $text = $this->pstPass2( $text, $user );
4725 $text = $this->mStripState
->unstripBoth( $text );
4727 $this->setUser( null ); #Reset
4733 * Pre-save transform helper function
4735 * @param string $text
4740 private function pstPass2( $text, $user ) {
4743 # Note: This is the timestamp saved as hardcoded wikitext to
4744 # the database, we use $wgContLang here in order to give
4745 # everyone the same signature and use the default one rather
4746 # than the one selected in each user's preferences.
4747 # (see also bug 12815)
4748 $ts = $this->mOptions
->getTimestamp();
4749 $timestamp = MWTimestamp
::getLocalInstance( $ts );
4750 $ts = $timestamp->format( 'YmdHis' );
4751 $tzMsg = $timestamp->format( 'T' ); # might vary on DST changeover!
4753 # Allow translation of timezones through wiki. format() can return
4754 # whatever crap the system uses, localised or not, so we cannot
4755 # ship premade translations.
4756 $key = 'timezone-' . strtolower( trim( $tzMsg ) );
4757 $msg = wfMessage( $key )->inContentLanguage();
4758 if ( $msg->exists() ) {
4759 $tzMsg = $msg->text();
4762 $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tzMsg)";
4764 # Variable replacement
4765 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
4766 $text = $this->replaceVariables( $text );
4768 # This works almost by chance, as the replaceVariables are done before the getUserSig(),
4769 # which may corrupt this parser instance via its wfMessage()->text() call-
4772 $sigText = $this->getUserSig( $user );
4773 $text = strtr( $text, array(
4775 '~~~~' => "$sigText $d",
4779 # Context links ("pipe tricks"): [[|name]] and [[name (context)|]]
4780 $tc = '[' . Title
::legalChars() . ']';
4781 $nc = '[ _0-9A-Za-z\x80-\xff-]'; # Namespaces can use non-ascii!
4783 // [[ns:page (context)|]]
4784 $p1 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\))\\|]]/";
4785 // [[ns:page(context)|]] (double-width brackets, added in r40257)
4786 $p4 = "/\[\[(:?$nc+:|:|)($tc+?)( ?($tc+))\\|]]/";
4787 // [[ns:page (context), context|]] (using either single or double-width comma)
4788 $p3 = "/\[\[(:?$nc+:|:|)($tc+?)( ?\\($tc+\\)|)((?:, |,)$tc+|)\\|]]/";
4789 // [[|page]] (reverse pipe trick: add context from page title)
4790 $p2 = "/\[\[\\|($tc+)]]/";
4792 # try $p1 first, to turn "[[A, B (C)|]]" into "[[A, B (C)|A, B]]"
4793 $text = preg_replace( $p1, '[[\\1\\2\\3|\\2]]', $text );
4794 $text = preg_replace( $p4, '[[\\1\\2\\3|\\2]]', $text );
4795 $text = preg_replace( $p3, '[[\\1\\2\\3\\4|\\2]]', $text );
4797 $t = $this->mTitle
->getText();
4799 if ( preg_match( "/^($nc+:|)$tc+?( \\($tc+\\))$/", $t, $m ) ) {
4800 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4801 } elseif ( preg_match( "/^($nc+:|)$tc+?(, $tc+|)$/", $t, $m ) && "$m[1]$m[2]" != '' ) {
4802 $text = preg_replace( $p2, "[[$m[1]\\1$m[2]|\\1]]", $text );
4804 # if there's no context, don't bother duplicating the title
4805 $text = preg_replace( $p2, '[[\\1]]', $text );
4808 # Trim trailing whitespace
4809 $text = rtrim( $text );
4815 * Fetch the user's signature text, if any, and normalize to
4816 * validated, ready-to-insert wikitext.
4817 * If you have pre-fetched the nickname or the fancySig option, you can
4818 * specify them here to save a database query.
4819 * Do not reuse this parser instance after calling getUserSig(),
4820 * as it may have changed if it's the $wgParser.
4823 * @param string|bool $nickname Nickname to use or false to use user's default nickname
4824 * @param bool|null $fancySig whether the nicknname is the complete signature
4825 * or null to use default value
4828 function getUserSig( &$user, $nickname = false, $fancySig = null ) {
4829 global $wgMaxSigChars;
4831 $username = $user->getName();
4833 # If not given, retrieve from the user object.
4834 if ( $nickname === false ) {
4835 $nickname = $user->getOption( 'nickname' );
4838 if ( is_null( $fancySig ) ) {
4839 $fancySig = $user->getBoolOption( 'fancysig' );
4842 $nickname = $nickname == null ?
$username : $nickname;
4844 if ( mb_strlen( $nickname ) > $wgMaxSigChars ) {
4845 $nickname = $username;
4846 wfDebug( __METHOD__
. ": $username has overlong signature.\n" );
4847 } elseif ( $fancySig !== false ) {
4848 # Sig. might contain markup; validate this
4849 if ( $this->validateSig( $nickname ) !== false ) {
4850 # Validated; clean up (if needed) and return it
4851 return $this->cleanSig( $nickname, true );
4853 # Failed to validate; fall back to the default
4854 $nickname = $username;
4855 wfDebug( __METHOD__
. ": $username has bad XML tags in signature.\n" );
4859 # Make sure nickname doesnt get a sig in a sig
4860 $nickname = self
::cleanSigInSig( $nickname );
4862 # If we're still here, make it a link to the user page
4863 $userText = wfEscapeWikiText( $username );
4864 $nickText = wfEscapeWikiText( $nickname );
4865 $msgName = $user->isAnon() ?
'signature-anon' : 'signature';
4867 return wfMessage( $msgName, $userText, $nickText )->inContentLanguage()
4868 ->title( $this->getTitle() )->text();
4872 * Check that the user's signature contains no bad XML
4874 * @param string $text
4875 * @return string|bool An expanded string, or false if invalid.
4877 function validateSig( $text ) {
4878 return Xml
::isWellFormedXmlFragment( $text ) ?
$text : false;
4882 * Clean up signature text
4884 * 1) Strip ~~~, ~~~~ and ~~~~~ out of signatures @see cleanSigInSig
4885 * 2) Substitute all transclusions
4887 * @param string $text
4888 * @param bool $parsing Whether we're cleaning (preferences save) or parsing
4889 * @return string Signature text
4891 public function cleanSig( $text, $parsing = false ) {
4894 $magicScopeVariable = $this->lock();
4895 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PREPROCESS
, true );
4898 # Option to disable this feature
4899 if ( !$this->mOptions
->getCleanSignatures() ) {
4903 # @todo FIXME: Regex doesn't respect extension tags or nowiki
4904 # => Move this logic to braceSubstitution()
4905 $substWord = MagicWord
::get( 'subst' );
4906 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
4907 $substText = '{{' . $substWord->getSynonym( 0 );
4909 $text = preg_replace( $substRegex, $substText, $text );
4910 $text = self
::cleanSigInSig( $text );
4911 $dom = $this->preprocessToDom( $text );
4912 $frame = $this->getPreprocessor()->newFrame();
4913 $text = $frame->expand( $dom );
4916 $text = $this->mStripState
->unstripBoth( $text );
4923 * Strip ~~~, ~~~~ and ~~~~~ out of signatures
4925 * @param string $text
4926 * @return string Signature text with /~{3,5}/ removed
4928 public static function cleanSigInSig( $text ) {
4929 $text = preg_replace( '/~{3,5}/', '', $text );
4934 * Set up some variables which are usually set up in parse()
4935 * so that an external function can call some class members with confidence
4937 * @param Title|null $title
4938 * @param ParserOptions $options
4939 * @param int $outputType
4940 * @param bool $clearState
4942 public function startExternalParse( Title
$title = null, ParserOptions
$options,
4943 $outputType, $clearState = true
4945 $this->startParse( $title, $options, $outputType, $clearState );
4949 * @param Title|null $title
4950 * @param ParserOptions $options
4951 * @param int $outputType
4952 * @param bool $clearState
4954 private function startParse( Title
$title = null, ParserOptions
$options,
4955 $outputType, $clearState = true
4957 $this->setTitle( $title );
4958 $this->mOptions
= $options;
4959 $this->setOutputType( $outputType );
4960 if ( $clearState ) {
4961 $this->clearState();
4966 * Wrapper for preprocess()
4968 * @param string $text The text to preprocess
4969 * @param ParserOptions $options Options
4970 * @param Title|null $title Title object or null to use $wgTitle
4973 public function transformMsg( $text, $options, $title = null ) {
4974 static $executing = false;
4976 # Guard against infinite recursion
4982 wfProfileIn( __METHOD__
);
4988 $text = $this->preprocess( $text, $title, $options );
4991 wfProfileOut( __METHOD__
);
4996 * Create an HTML-style tag, e.g. "<yourtag>special text</yourtag>"
4997 * The callback should have the following form:
4998 * function myParserHook( $text, $params, $parser, $frame ) { ... }
5000 * Transform and return $text. Use $parser for any required context, e.g. use
5001 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
5003 * Hooks may return extended information by returning an array, of which the
5004 * first numbered element (index 0) must be the return string, and all other
5005 * entries are extracted into local variables within an internal function
5006 * in the Parser class.
5008 * This interface (introduced r61913) appears to be undocumented, but
5009 * 'markerName' is used by some core tag hooks to override which strip
5010 * array their results are placed in. **Use great caution if attempting
5011 * this interface, as it is not documented and injudicious use could smash
5012 * private variables.**
5014 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
5015 * @param mixed $callback The callback function (and object) to use for the tag
5016 * @throws MWException
5017 * @return mixed|null The old value of the mTagHooks array associated with the hook
5019 public function setHook( $tag, $callback ) {
5020 $tag = strtolower( $tag );
5021 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
5022 throw new MWException( "Invalid character {$m[0]} in setHook('$tag', ...) call" );
5024 $oldVal = isset( $this->mTagHooks
[$tag] ) ?
$this->mTagHooks
[$tag] : null;
5025 $this->mTagHooks
[$tag] = $callback;
5026 if ( !in_array( $tag, $this->mStripList
) ) {
5027 $this->mStripList
[] = $tag;
5034 * As setHook(), but letting the contents be parsed.
5036 * Transparent tag hooks are like regular XML-style tag hooks, except they
5037 * operate late in the transformation sequence, on HTML instead of wikitext.
5039 * This is probably obsoleted by things dealing with parser frames?
5040 * The only extension currently using it is geoserver.
5043 * @todo better document or deprecate this
5045 * @param string $tag The tag to use, e.g. 'hook' for "<hook>"
5046 * @param mixed $callback The callback function (and object) to use for the tag
5047 * @throws MWException
5048 * @return mixed|null The old value of the mTagHooks array associated with the hook
5050 function setTransparentTagHook( $tag, $callback ) {
5051 $tag = strtolower( $tag );
5052 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
5053 throw new MWException( "Invalid character {$m[0]} in setTransparentHook('$tag', ...) call" );
5055 $oldVal = isset( $this->mTransparentTagHooks
[$tag] ) ?
$this->mTransparentTagHooks
[$tag] : null;
5056 $this->mTransparentTagHooks
[$tag] = $callback;
5062 * Remove all tag hooks
5064 function clearTagHooks() {
5065 $this->mTagHooks
= array();
5066 $this->mFunctionTagHooks
= array();
5067 $this->mStripList
= $this->mDefaultStripList
;
5071 * Create a function, e.g. {{sum:1|2|3}}
5072 * The callback function should have the form:
5073 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
5075 * Or with SFH_OBJECT_ARGS:
5076 * function myParserFunction( $parser, $frame, $args ) { ... }
5078 * The callback may either return the text result of the function, or an array with the text
5079 * in element 0, and a number of flags in the other elements. The names of the flags are
5080 * specified in the keys. Valid flags are:
5081 * found The text returned is valid, stop processing the template. This
5083 * nowiki Wiki markup in the return value should be escaped
5084 * isHTML The returned text is HTML, armour it against wikitext transformation
5086 * @param string $id The magic word ID
5087 * @param mixed $callback The callback function (and object) to use
5088 * @param int $flags A combination of the following flags:
5089 * SFH_NO_HASH No leading hash, i.e. {{plural:...}} instead of {{#if:...}}
5091 * SFH_OBJECT_ARGS Pass the template arguments as PPNode objects instead of text. This
5092 * allows for conditional expansion of the parse tree, allowing you to eliminate dead
5093 * branches and thus speed up parsing. It is also possible to analyse the parse tree of
5094 * the arguments, and to control the way they are expanded.
5096 * The $frame parameter is a PPFrame. This can be used to produce expanded text from the
5097 * arguments, for instance:
5098 * $text = isset( $args[0] ) ? $frame->expand( $args[0] ) : '';
5100 * For technical reasons, $args[0] is pre-expanded and will be a string. This may change in
5101 * future versions. Please call $frame->expand() on it anyway so that your code keeps
5102 * working if/when this is changed.
5104 * If you want whitespace to be trimmed from $args, you need to do it yourself, post-
5107 * Please read the documentation in includes/parser/Preprocessor.php for more information
5108 * about the methods available in PPFrame and PPNode.
5110 * @throws MWException
5111 * @return string|callable The old callback function for this name, if any
5113 public function setFunctionHook( $id, $callback, $flags = 0 ) {
5116 $oldVal = isset( $this->mFunctionHooks
[$id] ) ?
$this->mFunctionHooks
[$id][0] : null;
5117 $this->mFunctionHooks
[$id] = array( $callback, $flags );
5119 # Add to function cache
5120 $mw = MagicWord
::get( $id );
5122 throw new MWException( __METHOD__
. '() expecting a magic word identifier.' );
5125 $synonyms = $mw->getSynonyms();
5126 $sensitive = intval( $mw->isCaseSensitive() );
5128 foreach ( $synonyms as $syn ) {
5130 if ( !$sensitive ) {
5131 $syn = $wgContLang->lc( $syn );
5134 if ( !( $flags & SFH_NO_HASH
) ) {
5137 # Remove trailing colon
5138 if ( substr( $syn, -1, 1 ) === ':' ) {
5139 $syn = substr( $syn, 0, -1 );
5141 $this->mFunctionSynonyms
[$sensitive][$syn] = $id;
5147 * Get all registered function hook identifiers
5151 function getFunctionHooks() {
5152 return array_keys( $this->mFunctionHooks
);
5156 * Create a tag function, e.g. "<test>some stuff</test>".
5157 * Unlike tag hooks, tag functions are parsed at preprocessor level.
5158 * Unlike parser functions, their content is not preprocessed.
5159 * @param string $tag
5160 * @param callable $callback
5162 * @throws MWException
5165 function setFunctionTagHook( $tag, $callback, $flags ) {
5166 $tag = strtolower( $tag );
5167 if ( preg_match( '/[<>\r\n]/', $tag, $m ) ) {
5168 throw new MWException( "Invalid character {$m[0]} in setFunctionTagHook('$tag', ...) call" );
5170 $old = isset( $this->mFunctionTagHooks
[$tag] ) ?
5171 $this->mFunctionTagHooks
[$tag] : null;
5172 $this->mFunctionTagHooks
[$tag] = array( $callback, $flags );
5174 if ( !in_array( $tag, $this->mStripList
) ) {
5175 $this->mStripList
[] = $tag;
5182 * @todo FIXME: Update documentation. makeLinkObj() is deprecated.
5183 * Replace "<!--LINK-->" link placeholders with actual links, in the buffer
5184 * Placeholders created in Skin::makeLinkObj()
5186 * @param string $text
5187 * @param int $options
5189 * @return array Array of link CSS classes, indexed by PDBK.
5191 function replaceLinkHolders( &$text, $options = 0 ) {
5192 return $this->mLinkHolders
->replace( $text );
5196 * Replace "<!--LINK-->" link placeholders with plain text of links
5197 * (not HTML-formatted).
5199 * @param string $text
5202 function replaceLinkHoldersText( $text ) {
5203 return $this->mLinkHolders
->replaceText( $text );
5207 * Renders an image gallery from a text with one line per image.
5208 * text labels may be given by using |-style alternative text. E.g.
5209 * Image:one.jpg|The number "1"
5210 * Image:tree.jpg|A tree
5211 * given as text will return the HTML of a gallery with two images,
5212 * labeled 'The number "1"' and
5215 * @param string $text
5216 * @param array $params
5217 * @return string HTML
5219 function renderImageGallery( $text, $params ) {
5220 wfProfileIn( __METHOD__
);
5223 if ( isset( $params['mode'] ) ) {
5224 $mode = $params['mode'];
5228 $ig = ImageGalleryBase
::factory( $mode );
5229 } catch ( MWException
$e ) {
5230 // If invalid type set, fallback to default.
5231 $ig = ImageGalleryBase
::factory( false );
5234 $ig->setContextTitle( $this->mTitle
);
5235 $ig->setShowBytes( false );
5236 $ig->setShowFilename( false );
5237 $ig->setParser( $this );
5238 $ig->setHideBadImages();
5239 $ig->setAttributes( Sanitizer
::validateTagAttributes( $params, 'table' ) );
5241 if ( isset( $params['showfilename'] ) ) {
5242 $ig->setShowFilename( true );
5244 $ig->setShowFilename( false );
5246 if ( isset( $params['caption'] ) ) {
5247 $caption = $params['caption'];
5248 $caption = htmlspecialchars( $caption );
5249 $caption = $this->replaceInternalLinks( $caption );
5250 $ig->setCaptionHtml( $caption );
5252 if ( isset( $params['perrow'] ) ) {
5253 $ig->setPerRow( $params['perrow'] );
5255 if ( isset( $params['widths'] ) ) {
5256 $ig->setWidths( $params['widths'] );
5258 if ( isset( $params['heights'] ) ) {
5259 $ig->setHeights( $params['heights'] );
5261 $ig->setAdditionalOptions( $params );
5263 wfRunHooks( 'BeforeParserrenderImageGallery', array( &$this, &$ig ) );
5265 $lines = StringUtils
::explode( "\n", $text );
5266 foreach ( $lines as $line ) {
5267 # match lines like these:
5268 # Image:someimage.jpg|This is some image
5270 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
5272 if ( count( $matches ) == 0 ) {
5276 if ( strpos( $matches[0], '%' ) !== false ) {
5277 $matches[1] = rawurldecode( $matches[1] );
5279 $title = Title
::newFromText( $matches[1], NS_FILE
);
5280 if ( is_null( $title ) ) {
5281 # Bogus title. Ignore these so we don't bomb out later.
5285 # We need to get what handler the file uses, to figure out parameters.
5286 # Note, a hook can overide the file name, and chose an entirely different
5287 # file (which potentially could be of a different type and have different handler).
5290 wfRunHooks( 'BeforeParserFetchFileAndTitle',
5291 array( $this, $title, &$options, &$descQuery ) );
5292 # Don't register it now, as ImageGallery does that later.
5293 $file = $this->fetchFileNoRegister( $title, $options );
5294 $handler = $file ?
$file->getHandler() : false;
5296 wfProfileIn( __METHOD__
. '-getMagicWord' );
5298 'img_alt' => 'gallery-internal-alt',
5299 'img_link' => 'gallery-internal-link',
5302 $paramMap = $paramMap +
$handler->getParamMap();
5303 // We don't want people to specify per-image widths.
5304 // Additionally the width parameter would need special casing anyhow.
5305 unset( $paramMap['img_width'] );
5308 $mwArray = new MagicWordArray( array_keys( $paramMap ) );
5309 wfProfileOut( __METHOD__
. '-getMagicWord' );
5314 $handlerOptions = array();
5315 if ( isset( $matches[3] ) ) {
5316 // look for an |alt= definition while trying not to break existing
5317 // captions with multiple pipes (|) in it, until a more sensible grammar
5318 // is defined for images in galleries
5320 // FIXME: Doing recursiveTagParse at this stage, and the trim before
5321 // splitting on '|' is a bit odd, and different from makeImage.
5322 $matches[3] = $this->recursiveTagParse( trim( $matches[3] ) );
5323 $parameterMatches = StringUtils
::explode( '|', $matches[3] );
5325 foreach ( $parameterMatches as $parameterMatch ) {
5326 list( $magicName, $match ) = $mwArray->matchVariableStartToEnd( $parameterMatch );
5328 $paramName = $paramMap[$magicName];
5330 switch ( $paramName ) {
5331 case 'gallery-internal-alt':
5332 $alt = $this->stripAltText( $match, false );
5334 case 'gallery-internal-link':
5335 $linkValue = strip_tags( $this->replaceLinkHoldersText( $match ) );
5336 $chars = self
::EXT_LINK_URL_CLASS
;
5337 $prots = $this->mUrlProtocols
;
5338 //check to see if link matches an absolute url, if not then it must be a wiki link.
5339 if ( preg_match( "/^($prots)$chars+$/u", $linkValue ) ) {
5342 $localLinkTitle = Title
::newFromText( $linkValue );
5343 if ( $localLinkTitle !== null ) {
5344 $link = $localLinkTitle->getLocalURL();
5349 // Must be a handler specific parameter.
5350 if ( $handler->validateParam( $paramName, $match ) ) {
5351 $handlerOptions[$paramName] = $match;
5353 // Guess not. Append it to the caption.
5354 wfDebug( "$parameterMatch failed parameter validation\n" );
5355 $label .= '|' . $parameterMatch;
5360 // concatenate all other pipes
5361 $label .= '|' . $parameterMatch;
5364 // remove the first pipe
5365 $label = substr( $label, 1 );
5368 $ig->add( $title, $label, $alt, $link, $handlerOptions );
5370 $html = $ig->toHTML();
5371 wfProfileOut( __METHOD__
);
5376 * @param string $handler
5379 function getImageParams( $handler ) {
5381 $handlerClass = get_class( $handler );
5385 if ( !isset( $this->mImageParams
[$handlerClass] ) ) {
5386 # Initialise static lists
5387 static $internalParamNames = array(
5388 'horizAlign' => array( 'left', 'right', 'center', 'none' ),
5389 'vertAlign' => array( 'baseline', 'sub', 'super', 'top', 'text-top', 'middle',
5390 'bottom', 'text-bottom' ),
5391 'frame' => array( 'thumbnail', 'manualthumb', 'framed', 'frameless',
5392 'upright', 'border', 'link', 'alt', 'class' ),
5394 static $internalParamMap;
5395 if ( !$internalParamMap ) {
5396 $internalParamMap = array();
5397 foreach ( $internalParamNames as $type => $names ) {
5398 foreach ( $names as $name ) {
5399 $magicName = str_replace( '-', '_', "img_$name" );
5400 $internalParamMap[$magicName] = array( $type, $name );
5405 # Add handler params
5406 $paramMap = $internalParamMap;
5408 $handlerParamMap = $handler->getParamMap();
5409 foreach ( $handlerParamMap as $magic => $paramName ) {
5410 $paramMap[$magic] = array( 'handler', $paramName );
5413 $this->mImageParams
[$handlerClass] = $paramMap;
5414 $this->mImageParamsMagicArray
[$handlerClass] = new MagicWordArray( array_keys( $paramMap ) );
5416 return array( $this->mImageParams
[$handlerClass], $this->mImageParamsMagicArray
[$handlerClass] );
5420 * Parse image options text and use it to make an image
5422 * @param Title $title
5423 * @param string $options
5424 * @param LinkHolderArray|bool $holders
5425 * @return string HTML
5427 function makeImage( $title, $options, $holders = false ) {
5428 # Check if the options text is of the form "options|alt text"
5430 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
5431 # * left no resizing, just left align. label is used for alt= only
5432 # * right same, but right aligned
5433 # * none same, but not aligned
5434 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
5435 # * center center the image
5436 # * frame Keep original image size, no magnify-button.
5437 # * framed Same as "frame"
5438 # * frameless like 'thumb' but without a frame. Keeps user preferences for width
5439 # * upright reduce width for upright images, rounded to full __0 px
5440 # * border draw a 1px border around the image
5441 # * alt Text for HTML alt attribute (defaults to empty)
5442 # * class Set a class for img node
5443 # * link Set the target of the image link. Can be external, interwiki, or local
5444 # vertical-align values (no % or length right now):
5454 $parts = StringUtils
::explode( "|", $options );
5456 # Give extensions a chance to select the file revision for us
5459 wfRunHooks( 'BeforeParserFetchFileAndTitle',
5460 array( $this, $title, &$options, &$descQuery ) );
5461 # Fetch and register the file (file title may be different via hooks)
5462 list( $file, $title ) = $this->fetchFileAndTitle( $title, $options );
5465 $handler = $file ?
$file->getHandler() : false;
5467 list( $paramMap, $mwArray ) = $this->getImageParams( $handler );
5470 $this->addTrackingCategory( 'broken-file-category' );
5473 # Process the input parameters
5475 $params = array( 'frame' => array(), 'handler' => array(),
5476 'horizAlign' => array(), 'vertAlign' => array() );
5477 $seenformat = false;
5478 foreach ( $parts as $part ) {
5479 $part = trim( $part );
5480 list( $magicName, $value ) = $mwArray->matchVariableStartToEnd( $part );
5482 if ( isset( $paramMap[$magicName] ) ) {
5483 list( $type, $paramName ) = $paramMap[$magicName];
5485 # Special case; width and height come in one variable together
5486 if ( $type === 'handler' && $paramName === 'width' ) {
5487 $parsedWidthParam = $this->parseWidthParam( $value );
5488 if ( isset( $parsedWidthParam['width'] ) ) {
5489 $width = $parsedWidthParam['width'];
5490 if ( $handler->validateParam( 'width', $width ) ) {
5491 $params[$type]['width'] = $width;
5495 if ( isset( $parsedWidthParam['height'] ) ) {
5496 $height = $parsedWidthParam['height'];
5497 if ( $handler->validateParam( 'height', $height ) ) {
5498 $params[$type]['height'] = $height;
5502 # else no validation -- bug 13436
5504 if ( $type === 'handler' ) {
5505 # Validate handler parameter
5506 $validated = $handler->validateParam( $paramName, $value );
5508 # Validate internal parameters
5509 switch ( $paramName ) {
5513 # @todo FIXME: Possibly check validity here for
5514 # manualthumb? downstream behavior seems odd with
5515 # missing manual thumbs.
5517 $value = $this->stripAltText( $value, $holders );
5520 $chars = self
::EXT_LINK_URL_CLASS
;
5521 $prots = $this->mUrlProtocols
;
5522 if ( $value === '' ) {
5523 $paramName = 'no-link';
5526 } elseif ( preg_match( "/^(?i)$prots/", $value ) ) {
5527 if ( preg_match( "/^((?i)$prots)$chars+$/u", $value, $m ) ) {
5528 $paramName = 'link-url';
5529 $this->mOutput
->addExternalLink( $value );
5530 if ( $this->mOptions
->getExternalLinkTarget() ) {
5531 $params[$type]['link-target'] = $this->mOptions
->getExternalLinkTarget();
5536 $linkTitle = Title
::newFromText( $value );
5538 $paramName = 'link-title';
5539 $value = $linkTitle;
5540 $this->mOutput
->addLink( $linkTitle );
5548 // use first appearing option, discard others.
5549 $validated = ! $seenformat;
5553 # Most other things appear to be empty or numeric...
5554 $validated = ( $value === false ||
is_numeric( trim( $value ) ) );
5559 $params[$type][$paramName] = $value;
5563 if ( !$validated ) {
5568 # Process alignment parameters
5569 if ( $params['horizAlign'] ) {
5570 $params['frame']['align'] = key( $params['horizAlign'] );
5572 if ( $params['vertAlign'] ) {
5573 $params['frame']['valign'] = key( $params['vertAlign'] );
5576 $params['frame']['caption'] = $caption;
5578 # Will the image be presented in a frame, with the caption below?
5579 $imageIsFramed = isset( $params['frame']['frame'] )
5580 ||
isset( $params['frame']['framed'] )
5581 ||
isset( $params['frame']['thumbnail'] )
5582 ||
isset( $params['frame']['manualthumb'] );
5584 # In the old days, [[Image:Foo|text...]] would set alt text. Later it
5585 # came to also set the caption, ordinary text after the image -- which
5586 # makes no sense, because that just repeats the text multiple times in
5587 # screen readers. It *also* came to set the title attribute.
5589 # Now that we have an alt attribute, we should not set the alt text to
5590 # equal the caption: that's worse than useless, it just repeats the
5591 # text. This is the framed/thumbnail case. If there's no caption, we
5592 # use the unnamed parameter for alt text as well, just for the time be-
5593 # ing, if the unnamed param is set and the alt param is not.
5595 # For the future, we need to figure out if we want to tweak this more,
5596 # e.g., introducing a title= parameter for the title; ignoring the un-
5597 # named parameter entirely for images without a caption; adding an ex-
5598 # plicit caption= parameter and preserving the old magic unnamed para-
5600 if ( $imageIsFramed ) { # Framed image
5601 if ( $caption === '' && !isset( $params['frame']['alt'] ) ) {
5602 # No caption or alt text, add the filename as the alt text so
5603 # that screen readers at least get some description of the image
5604 $params['frame']['alt'] = $title->getText();
5606 # Do not set $params['frame']['title'] because tooltips don't make sense
5608 } else { # Inline image
5609 if ( !isset( $params['frame']['alt'] ) ) {
5610 # No alt text, use the "caption" for the alt text
5611 if ( $caption !== '' ) {
5612 $params['frame']['alt'] = $this->stripAltText( $caption, $holders );
5614 # No caption, fall back to using the filename for the
5616 $params['frame']['alt'] = $title->getText();
5619 # Use the "caption" for the tooltip text
5620 $params['frame']['title'] = $this->stripAltText( $caption, $holders );
5623 wfRunHooks( 'ParserMakeImageParams', array( $title, $file, &$params, $this ) );
5625 # Linker does the rest
5626 $time = isset( $options['time'] ) ?
$options['time'] : false;
5627 $ret = Linker
::makeImageLink( $this, $title, $file, $params['frame'], $params['handler'],
5628 $time, $descQuery, $this->mOptions
->getThumbSize() );
5630 # Give the handler a chance to modify the parser object
5632 $handler->parserTransformHook( $this, $file );
5639 * @param string $caption
5640 * @param LinkHolderArray|bool $holders
5641 * @return mixed|string
5643 protected function stripAltText( $caption, $holders ) {
5644 # Strip bad stuff out of the title (tooltip). We can't just use
5645 # replaceLinkHoldersText() here, because if this function is called
5646 # from replaceInternalLinks2(), mLinkHolders won't be up-to-date.
5648 $tooltip = $holders->replaceText( $caption );
5650 $tooltip = $this->replaceLinkHoldersText( $caption );
5653 # make sure there are no placeholders in thumbnail attributes
5654 # that are later expanded to html- so expand them now and
5656 $tooltip = $this->mStripState
->unstripBoth( $tooltip );
5657 $tooltip = Sanitizer
::stripAllTags( $tooltip );
5663 * Set a flag in the output object indicating that the content is dynamic and
5664 * shouldn't be cached.
5666 function disableCache() {
5667 wfDebug( "Parser output marked as uncacheable.\n" );
5668 if ( !$this->mOutput
) {
5669 throw new MWException( __METHOD__
.
5670 " can only be called when actually parsing something" );
5672 $this->mOutput
->setCacheTime( -1 ); // old style, for compatibility
5673 $this->mOutput
->updateCacheExpiry( 0 ); // new style, for consistency
5677 * Callback from the Sanitizer for expanding items found in HTML attribute
5678 * values, so they can be safely tested and escaped.
5680 * @param string $text
5681 * @param bool|PPFrame $frame
5684 function attributeStripCallback( &$text, $frame = false ) {
5685 $text = $this->replaceVariables( $text, $frame );
5686 $text = $this->mStripState
->unstripBoth( $text );
5695 function getTags() {
5697 array_keys( $this->mTransparentTagHooks
),
5698 array_keys( $this->mTagHooks
),
5699 array_keys( $this->mFunctionTagHooks
)
5704 * Replace transparent tags in $text with the values given by the callbacks.
5706 * Transparent tag hooks are like regular XML-style tag hooks, except they
5707 * operate late in the transformation sequence, on HTML instead of wikitext.
5709 * @param string $text
5713 function replaceTransparentTags( $text ) {
5715 $elements = array_keys( $this->mTransparentTagHooks
);
5716 $text = self
::extractTagsAndParams( $elements, $text, $matches, $this->mUniqPrefix
);
5717 $replacements = array();
5719 foreach ( $matches as $marker => $data ) {
5720 list( $element, $content, $params, $tag ) = $data;
5721 $tagName = strtolower( $element );
5722 if ( isset( $this->mTransparentTagHooks
[$tagName] ) ) {
5723 $output = call_user_func_array(
5724 $this->mTransparentTagHooks
[$tagName],
5725 array( $content, $params, $this )
5730 $replacements[$marker] = $output;
5732 return strtr( $text, $replacements );
5736 * Break wikitext input into sections, and either pull or replace
5737 * some particular section's text.
5739 * External callers should use the getSection and replaceSection methods.
5741 * @param string $text Page wikitext
5742 * @param string $section A section identifier string of the form:
5743 * "<flag1> - <flag2> - ... - <section number>"
5745 * Currently the only recognised flag is "T", which means the target section number
5746 * was derived during a template inclusion parse, in other words this is a template
5747 * section edit link. If no flags are given, it was an ordinary section edit link.
5748 * This flag is required to avoid a section numbering mismatch when a section is
5749 * enclosed by "<includeonly>" (bug 6563).
5751 * The section number 0 pulls the text before the first heading; other numbers will
5752 * pull the given section along with its lower-level subsections. If the section is
5753 * not found, $mode=get will return $newtext, and $mode=replace will return $text.
5755 * Section 0 is always considered to exist, even if it only contains the empty
5756 * string. If $text is the empty string and section 0 is replaced, $newText is
5759 * @param string $mode One of "get" or "replace"
5760 * @param string $newText Replacement text for section data.
5761 * @return string For "get", the extracted section text.
5762 * for "replace", the whole page with the section replaced.
5764 private function extractSections( $text, $section, $mode, $newText = '' ) {
5765 global $wgTitle; # not generally used but removes an ugly failure mode
5767 $magicScopeVariable = $this->lock();
5768 $this->startParse( $wgTitle, new ParserOptions
, self
::OT_PLAIN
, true );
5770 $frame = $this->getPreprocessor()->newFrame();
5772 # Process section extraction flags
5774 $sectionParts = explode( '-', $section );
5775 $sectionIndex = array_pop( $sectionParts );
5776 foreach ( $sectionParts as $part ) {
5777 if ( $part === 'T' ) {
5778 $flags |
= self
::PTD_FOR_INCLUSION
;
5782 # Check for empty input
5783 if ( strval( $text ) === '' ) {
5784 # Only sections 0 and T-0 exist in an empty document
5785 if ( $sectionIndex == 0 ) {
5786 if ( $mode === 'get' ) {
5792 if ( $mode === 'get' ) {
5800 # Preprocess the text
5801 $root = $this->preprocessToDom( $text, $flags );
5803 # <h> nodes indicate section breaks
5804 # They can only occur at the top level, so we can find them by iterating the root's children
5805 $node = $root->getFirstChild();
5807 # Find the target section
5808 if ( $sectionIndex == 0 ) {
5809 # Section zero doesn't nest, level=big
5810 $targetLevel = 1000;
5813 if ( $node->getName() === 'h' ) {
5814 $bits = $node->splitHeading();
5815 if ( $bits['i'] == $sectionIndex ) {
5816 $targetLevel = $bits['level'];
5820 if ( $mode === 'replace' ) {
5821 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5823 $node = $node->getNextSibling();
5829 if ( $mode === 'get' ) {
5836 # Find the end of the section, including nested sections
5838 if ( $node->getName() === 'h' ) {
5839 $bits = $node->splitHeading();
5840 $curLevel = $bits['level'];
5841 if ( $bits['i'] != $sectionIndex && $curLevel <= $targetLevel ) {
5845 if ( $mode === 'get' ) {
5846 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5848 $node = $node->getNextSibling();
5851 # Write out the remainder (in replace mode only)
5852 if ( $mode === 'replace' ) {
5853 # Output the replacement text
5854 # Add two newlines on -- trailing whitespace in $newText is conventionally
5855 # stripped by the editor, so we need both newlines to restore the paragraph gap
5856 # Only add trailing whitespace if there is newText
5857 if ( $newText != "" ) {
5858 $outText .= $newText . "\n\n";
5862 $outText .= $frame->expand( $node, PPFrame
::RECOVER_ORIG
);
5863 $node = $node->getNextSibling();
5867 if ( is_string( $outText ) ) {
5868 # Re-insert stripped tags
5869 $outText = rtrim( $this->mStripState
->unstripBoth( $outText ) );
5876 * This function returns the text of a section, specified by a number ($section).
5877 * A section is text under a heading like == Heading == or \<h1\>Heading\</h1\>, or
5878 * the first section before any such heading (section 0).
5880 * If a section contains subsections, these are also returned.
5882 * @param string $text Text to look in
5883 * @param string $section Section identifier
5884 * @param string $deftext Default to return if section is not found
5885 * @return string Text of the requested section
5887 public function getSection( $text, $section, $deftext = '' ) {
5888 return $this->extractSections( $text, $section, "get", $deftext );
5892 * This function returns $oldtext after the content of the section
5893 * specified by $section has been replaced with $text. If the target
5894 * section does not exist, $oldtext is returned unchanged.
5896 * @param string $oldtext Former text of the article
5897 * @param int $section Section identifier
5898 * @param string $text Replacing text
5899 * @return string Modified text
5901 public function replaceSection( $oldtext, $section, $text ) {
5902 return $this->extractSections( $oldtext, $section, "replace", $text );
5906 * Get the ID of the revision we are parsing
5910 function getRevisionId() {
5911 return $this->mRevisionId
;
5915 * Get the revision object for $this->mRevisionId
5917 * @return Revision|null Either a Revision object or null
5918 * @since 1.23 (public since 1.23)
5920 public function getRevisionObject() {
5921 if ( !is_null( $this->mRevisionObject
) ) {
5922 return $this->mRevisionObject
;
5924 if ( is_null( $this->mRevisionId
) ) {
5928 $this->mRevisionObject
= Revision
::newFromId( $this->mRevisionId
);
5929 return $this->mRevisionObject
;
5933 * Get the timestamp associated with the current revision, adjusted for
5934 * the default server-local timestamp
5937 function getRevisionTimestamp() {
5938 if ( is_null( $this->mRevisionTimestamp
) ) {
5939 wfProfileIn( __METHOD__
);
5943 $revObject = $this->getRevisionObject();
5944 $timestamp = $revObject ?
$revObject->getTimestamp() : wfTimestampNow();
5946 # The cryptic '' timezone parameter tells to use the site-default
5947 # timezone offset instead of the user settings.
5949 # Since this value will be saved into the parser cache, served
5950 # to other users, and potentially even used inside links and such,
5951 # it needs to be consistent for all visitors.
5952 $this->mRevisionTimestamp
= $wgContLang->userAdjust( $timestamp, '' );
5954 wfProfileOut( __METHOD__
);
5956 return $this->mRevisionTimestamp
;
5960 * Get the name of the user that edited the last revision
5962 * @return string User name
5964 function getRevisionUser() {
5965 if ( is_null( $this->mRevisionUser
) ) {
5966 $revObject = $this->getRevisionObject();
5968 # if this template is subst: the revision id will be blank,
5969 # so just use the current user's name
5971 $this->mRevisionUser
= $revObject->getUserText();
5972 } elseif ( $this->ot
['wiki'] ||
$this->mOptions
->getIsPreview() ) {
5973 $this->mRevisionUser
= $this->getUser()->getName();
5976 return $this->mRevisionUser
;
5980 * Get the size of the revision
5982 * @return int|null Revision size
5984 function getRevisionSize() {
5985 if ( is_null( $this->mRevisionSize
) ) {
5986 $revObject = $this->getRevisionObject();
5988 # if this variable is subst: the revision id will be blank,
5989 # so just use the parser input size, because the own substituation
5990 # will change the size.
5992 $this->mRevisionSize
= $revObject->getSize();
5993 } elseif ( $this->ot
['wiki'] ||
$this->mOptions
->getIsPreview() ) {
5994 $this->mRevisionSize
= $this->mInputSize
;
5997 return $this->mRevisionSize
;
6001 * Mutator for $mDefaultSort
6003 * @param string $sort New value
6005 public function setDefaultSort( $sort ) {
6006 $this->mDefaultSort
= $sort;
6007 $this->mOutput
->setProperty( 'defaultsort', $sort );
6011 * Accessor for $mDefaultSort
6012 * Will use the empty string if none is set.
6014 * This value is treated as a prefix, so the
6015 * empty string is equivalent to sorting by
6020 public function getDefaultSort() {
6021 if ( $this->mDefaultSort
!== false ) {
6022 return $this->mDefaultSort
;
6029 * Accessor for $mDefaultSort
6030 * Unlike getDefaultSort(), will return false if none is set
6032 * @return string|bool
6034 public function getCustomDefaultSort() {
6035 return $this->mDefaultSort
;
6039 * Try to guess the section anchor name based on a wikitext fragment
6040 * presumably extracted from a heading, for example "Header" from
6043 * @param string $text
6047 public function guessSectionNameFromWikiText( $text ) {
6048 # Strip out wikitext links(they break the anchor)
6049 $text = $this->stripSectionName( $text );
6050 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
6051 return '#' . Sanitizer
::escapeId( $text, 'noninitial' );
6055 * Same as guessSectionNameFromWikiText(), but produces legacy anchors
6056 * instead. For use in redirects, since IE6 interprets Redirect: headers
6057 * as something other than UTF-8 (apparently?), resulting in breakage.
6059 * @param string $text The section name
6060 * @return string An anchor
6062 public function guessLegacySectionNameFromWikiText( $text ) {
6063 # Strip out wikitext links(they break the anchor)
6064 $text = $this->stripSectionName( $text );
6065 $text = Sanitizer
::normalizeSectionNameWhitespace( $text );
6066 return '#' . Sanitizer
::escapeId( $text, array( 'noninitial', 'legacy' ) );
6070 * Strips a text string of wikitext for use in a section anchor
6072 * Accepts a text string and then removes all wikitext from the
6073 * string and leaves only the resultant text (i.e. the result of
6074 * [[User:WikiSysop|Sysop]] would be "Sysop" and the result of
6075 * [[User:WikiSysop]] would be "User:WikiSysop") - this is intended
6076 * to create valid section anchors by mimicing the output of the
6077 * parser when headings are parsed.
6079 * @param string $text Text string to be stripped of wikitext
6080 * for use in a Section anchor
6081 * @return string Filtered text string
6083 public function stripSectionName( $text ) {
6084 # Strip internal link markup
6085 $text = preg_replace( '/\[\[:?([^[|]+)\|([^[]+)\]\]/', '$2', $text );
6086 $text = preg_replace( '/\[\[:?([^[]+)\|?\]\]/', '$1', $text );
6088 # Strip external link markup
6089 # @todo FIXME: Not tolerant to blank link text
6090 # I.E. [https://www.mediawiki.org] will render as [1] or something depending
6091 # on how many empty links there are on the page - need to figure that out.
6092 $text = preg_replace( '/\[(?i:' . $this->mUrlProtocols
. ')([^ ]+?) ([^[]+)\]/', '$2', $text );
6094 # Parse wikitext quotes (italics & bold)
6095 $text = $this->doQuotes( $text );
6098 $text = StringUtils
::delimiterReplace( '<', '>', '', $text );
6103 * strip/replaceVariables/unstrip for preprocessor regression testing
6105 * @param string $text
6106 * @param Title $title
6107 * @param ParserOptions $options
6108 * @param int $outputType
6112 function testSrvus( $text, Title
$title, ParserOptions
$options, $outputType = self
::OT_HTML
) {
6113 $magicScopeVariable = $this->lock();
6114 $this->startParse( $title, $options, $outputType, true );
6116 $text = $this->replaceVariables( $text );
6117 $text = $this->mStripState
->unstripBoth( $text );
6118 $text = Sanitizer
::removeHTMLtags( $text );
6123 * @param string $text
6124 * @param Title $title
6125 * @param ParserOptions $options
6128 function testPst( $text, Title
$title, ParserOptions
$options ) {
6129 return $this->preSaveTransform( $text, $title, $options->getUser(), $options );
6133 * @param string $text
6134 * @param Title $title
6135 * @param ParserOptions $options
6138 function testPreprocess( $text, Title
$title, ParserOptions
$options ) {
6139 return $this->testSrvus( $text, $title, $options, self
::OT_PREPROCESS
);
6143 * Call a callback function on all regions of the given text that are not
6144 * inside strip markers, and replace those regions with the return value
6145 * of the callback. For example, with input:
6149 * This will call the callback function twice, with 'aaa' and 'bbb'. Those
6150 * two strings will be replaced with the value returned by the callback in
6154 * @param callable $callback
6158 function markerSkipCallback( $s, $callback ) {
6161 while ( $i < strlen( $s ) ) {
6162 $markerStart = strpos( $s, $this->mUniqPrefix
, $i );
6163 if ( $markerStart === false ) {
6164 $out .= call_user_func( $callback, substr( $s, $i ) );
6167 $out .= call_user_func( $callback, substr( $s, $i, $markerStart - $i ) );
6168 $markerEnd = strpos( $s, self
::MARKER_SUFFIX
, $markerStart );
6169 if ( $markerEnd === false ) {
6170 $out .= substr( $s, $markerStart );
6173 $markerEnd +
= strlen( self
::MARKER_SUFFIX
);
6174 $out .= substr( $s, $markerStart, $markerEnd - $markerStart );
6183 * Remove any strip markers found in the given text.
6185 * @param string $text Input string
6188 function killMarkers( $text ) {
6189 return $this->mStripState
->killMarkers( $text );
6193 * Save the parser state required to convert the given half-parsed text to
6194 * HTML. "Half-parsed" in this context means the output of
6195 * recursiveTagParse() or internalParse(). This output has strip markers
6196 * from replaceVariables (extensionSubstitution() etc.), and link
6197 * placeholders from replaceLinkHolders().
6199 * Returns an array which can be serialized and stored persistently. This
6200 * array can later be loaded into another parser instance with
6201 * unserializeHalfParsedText(). The text can then be safely incorporated into
6202 * the return value of a parser hook.
6204 * @param string $text
6208 function serializeHalfParsedText( $text ) {
6209 wfProfileIn( __METHOD__
);
6212 'version' => self
::HALF_PARSED_VERSION
,
6213 'stripState' => $this->mStripState
->getSubState( $text ),
6214 'linkHolders' => $this->mLinkHolders
->getSubArray( $text )
6216 wfProfileOut( __METHOD__
);
6221 * Load the parser state given in the $data array, which is assumed to
6222 * have been generated by serializeHalfParsedText(). The text contents is
6223 * extracted from the array, and its markers are transformed into markers
6224 * appropriate for the current Parser instance. This transformed text is
6225 * returned, and can be safely included in the return value of a parser
6228 * If the $data array has been stored persistently, the caller should first
6229 * check whether it is still valid, by calling isValidHalfParsedText().
6231 * @param array $data Serialized data
6232 * @throws MWException
6235 function unserializeHalfParsedText( $data ) {
6236 if ( !isset( $data['version'] ) ||
$data['version'] != self
::HALF_PARSED_VERSION
) {
6237 throw new MWException( __METHOD__
. ': invalid version' );
6240 # First, extract the strip state.
6241 $texts = array( $data['text'] );
6242 $texts = $this->mStripState
->merge( $data['stripState'], $texts );
6244 # Now renumber links
6245 $texts = $this->mLinkHolders
->mergeForeign( $data['linkHolders'], $texts );
6247 # Should be good to go.
6252 * Returns true if the given array, presumed to be generated by
6253 * serializeHalfParsedText(), is compatible with the current version of the
6256 * @param array $data
6260 function isValidHalfParsedText( $data ) {
6261 return isset( $data['version'] ) && $data['version'] == self
::HALF_PARSED_VERSION
;
6265 * Parsed a width param of imagelink like 300px or 200x300px
6267 * @param string $value
6272 public function parseWidthParam( $value ) {
6273 $parsedWidthParam = array();
6274 if ( $value === '' ) {
6275 return $parsedWidthParam;
6278 # (bug 13500) In both cases (width/height and width only),
6279 # permit trailing "px" for backward compatibility.
6280 if ( preg_match( '/^([0-9]*)x([0-9]*)\s*(?:px)?\s*$/', $value, $m ) ) {
6281 $width = intval( $m[1] );
6282 $height = intval( $m[2] );
6283 $parsedWidthParam['width'] = $width;
6284 $parsedWidthParam['height'] = $height;
6285 } elseif ( preg_match( '/^[0-9]*\s*(?:px)?\s*$/', $value ) ) {
6286 $width = intval( $value );
6287 $parsedWidthParam['width'] = $width;
6289 return $parsedWidthParam;
6293 * Lock the current instance of the parser.
6295 * This is meant to stop someone from calling the parser
6296 * recursively and messing up all the strip state.
6298 * @throws MWException If parser is in a parse
6299 * @return ScopedCallback The lock will be released once the return value goes out of scope.
6301 protected function lock() {
6302 if ( $this->mInParse
) {
6303 throw new MWException( "Parser state cleared while parsing. "
6304 . "Did you call Parser::parse recursively?" );
6306 $this->mInParse
= true;
6309 $recursiveCheck = new ScopedCallback( function() use ( $that ) {
6310 $that->mInParse
= false;
6313 return $recursiveCheck;
6317 * Strip outer <p></p> tag from the HTML source of a single paragraph.
6319 * Returns original HTML if the <p/> tag has any attributes, if there's no wrapping <p/> tag,
6320 * or if there is more than one <p/> tag in the input HTML.
6322 * @param string $html
6326 public static function stripOuterParagraph( $html ) {
6328 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $html, $m ) ) {
6329 if ( strpos( $m[1], '</p>' ) === false ) {