Add TALKSPACE, SUBJECTSPACE, TALKPAGENAME, SUBJECTPAGENAME (and encoded forms for...
[lhc/web/wiklou.git] / includes / Parser.php
1 <?php
2 /**
3 * File for Parser and related classes
4 *
5 * @package MediaWiki
6 * @subpackage Parser
7 */
8
9 /** */
10 require_once( 'Sanitizer.php' );
11 require_once( 'HttpFunctions.php' );
12
13 /**
14 * Update this version number when the ParserOutput format
15 * changes in an incompatible way, so the parser cache
16 * can automatically discard old data.
17 */
18 define( 'MW_PARSER_VERSION', '1.6.0' );
19
20 /**
21 * Variable substitution O(N^2) attack
22 *
23 * Without countermeasures, it would be possible to attack the parser by saving
24 * a page filled with a large number of inclusions of large pages. The size of
25 * the generated page would be proportional to the square of the input size.
26 * Hence, we limit the number of inclusions of any given page, thus bringing any
27 * attack back to O(N).
28 */
29
30 define( 'MAX_INCLUDE_REPEAT', 100 );
31 define( 'MAX_INCLUDE_SIZE', 1000000 ); // 1 Million
32
33 define( 'RLH_FOR_UPDATE', 1 );
34
35 # Allowed values for $mOutputType
36 define( 'OT_HTML', 1 );
37 define( 'OT_WIKI', 2 );
38 define( 'OT_MSG' , 3 );
39
40 # string parameter for extractTags which will cause it
41 # to strip HTML comments in addition to regular
42 # <XML>-style tags. This should not be anything we
43 # may want to use in wikisyntax
44 define( 'STRIP_COMMENTS', 'HTMLCommentStrip' );
45
46 # Constants needed for external link processing
47 define( 'HTTP_PROTOCOLS', 'http:\/\/|https:\/\/' );
48 # Everything except bracket, space, or control characters
49 define( 'EXT_LINK_URL_CLASS', '[^][<>"\\x00-\\x20\\x7F]' );
50 # Including space
51 define( 'EXT_LINK_TEXT_CLASS', '[^\]\\x00-\\x1F\\x7F]' );
52 define( 'EXT_IMAGE_FNAME_CLASS', '[A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]' );
53 define( 'EXT_IMAGE_EXTENSIONS', 'gif|png|jpg|jpeg' );
54 define( 'EXT_LINK_BRACKETED', '/\[(\b(' . wfUrlProtocols() . ')'.EXT_LINK_URL_CLASS.'+) *('.EXT_LINK_TEXT_CLASS.'*?)\]/S' );
55 define( 'EXT_IMAGE_REGEX',
56 '/^('.HTTP_PROTOCOLS.')'. # Protocol
57 '('.EXT_LINK_URL_CLASS.'+)\\/'. # Hostname and path
58 '('.EXT_IMAGE_FNAME_CLASS.'+)\\.((?i)'.EXT_IMAGE_EXTENSIONS.')$/S' # Filename
59 );
60
61 /**
62 * PHP Parser
63 *
64 * Processes wiki markup
65 *
66 * <pre>
67 * There are three main entry points into the Parser class:
68 * parse()
69 * produces HTML output
70 * preSaveTransform().
71 * produces altered wiki markup.
72 * transformMsg()
73 * performs brace substitution on MediaWiki messages
74 *
75 * Globals used:
76 * objects: $wgLang, $wgContLang
77 *
78 * NOT $wgArticle, $wgUser or $wgTitle. Keep them away!
79 *
80 * settings:
81 * $wgUseTex*, $wgUseDynamicDates*, $wgInterwikiMagic*,
82 * $wgNamespacesWithSubpages, $wgAllowExternalImages*,
83 * $wgLocaltimezone, $wgAllowSpecialInclusion*
84 *
85 * * only within ParserOptions
86 * </pre>
87 *
88 * @package MediaWiki
89 */
90 class Parser
91 {
92 /**#@+
93 * @access private
94 */
95 # Persistent:
96 var $mTagHooks, $mFunctionHooks;
97
98 # Cleared with clearState():
99 var $mOutput, $mAutonumber, $mDTopen, $mStripState = array();
100 var $mVariables, $mIncludeCount, $mArgStack, $mLastSection, $mInPre;
101 var $mInterwikiLinkHolders, $mLinkHolders, $mUniqPrefix;
102 var $mTemplates, // cache of already loaded templates, avoids
103 // multiple SQL queries for the same string
104 $mTemplatePath; // stores an unsorted hash of all the templates already loaded
105 // in this path. Used for loop detection.
106
107 # Temporary
108 # These are variables reset at least once per parse regardless of $clearState
109 var $mOptions, // ParserOptions object
110 $mTitle, // Title context, used for self-link rendering and similar things
111 $mOutputType, // Output type, one of the OT_xxx constants
112 $mRevisionId; // ID to display in {{REVISIONID}} tags
113
114 /**#@-*/
115
116 /**
117 * Constructor
118 *
119 * @access public
120 */
121 function Parser() {
122 $this->mTagHooks = array();
123 $this->mFunctionHooks = array();
124 $this->clearState();
125 }
126
127 /**
128 * Clear Parser state
129 *
130 * @access private
131 */
132 function clearState() {
133 $this->mOutput = new ParserOutput;
134 $this->mAutonumber = 0;
135 $this->mLastSection = '';
136 $this->mDTopen = false;
137 $this->mVariables = false;
138 $this->mIncludeCount = array();
139 $this->mStripState = array();
140 $this->mArgStack = array();
141 $this->mInPre = false;
142 $this->mInterwikiLinkHolders = array(
143 'texts' => array(),
144 'titles' => array()
145 );
146 $this->mLinkHolders = array(
147 'namespaces' => array(),
148 'dbkeys' => array(),
149 'queries' => array(),
150 'texts' => array(),
151 'titles' => array()
152 );
153 $this->mRevisionId = null;
154 $this->mUniqPrefix = 'UNIQ' . Parser::getRandomString();
155
156 # Clear these on every parse, bug 4549
157 $this->mTemplates = array();
158 $this->mTemplatePath = array();
159
160 wfRunHooks( 'ParserClearState', array( &$this ) );
161 }
162
163 /**
164 * Accessor for mUniqPrefix.
165 *
166 * @access public
167 */
168 function UniqPrefix() {
169 return $this->mUniqPrefix;
170 }
171
172 /**
173 * Convert wikitext to HTML
174 * Do not call this function recursively.
175 *
176 * @access private
177 * @param string $text Text we want to parse
178 * @param Title &$title A title object
179 * @param array $options
180 * @param boolean $linestart
181 * @param boolean $clearState
182 * @param int $revid number to pass in {{REVISIONID}}
183 * @return ParserOutput a ParserOutput
184 */
185 function parse( $text, &$title, $options, $linestart = true, $clearState = true, $revid = null ) {
186 /**
187 * First pass--just handle <nowiki> sections, pass the rest off
188 * to internalParse() which does all the real work.
189 */
190
191 global $wgUseTidy, $wgAlwaysUseTidy, $wgContLang;
192 $fname = 'Parser::parse';
193 wfProfileIn( $fname );
194
195 if ( $clearState ) {
196 $this->clearState();
197 }
198
199 $this->mOptions = $options;
200 $this->mTitle =& $title;
201 $this->mRevisionId = $revid;
202 $this->mOutputType = OT_HTML;
203
204 //$text = $this->strip( $text, $this->mStripState );
205 // VOODOO MAGIC FIX! Sometimes the above segfaults in PHP5.
206 $x =& $this->mStripState;
207
208 wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$x ) );
209 $text = $this->strip( $text, $x );
210 wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$x ) );
211
212 # Hook to suspend the parser in this state
213 if ( !wfRunHooks( 'ParserBeforeInternalParse', array( &$this, &$text, &$x ) ) ) {
214 wfProfileOut( $fname );
215 return $text ;
216 }
217
218 $text = $this->internalParse( $text );
219
220 $text = $this->unstrip( $text, $this->mStripState );
221
222 # Clean up special characters, only run once, next-to-last before doBlockLevels
223 $fixtags = array(
224 # french spaces, last one Guillemet-left
225 # only if there is something before the space
226 '/(.) (?=\\?|:|;|!|\\302\\273)/' => '\\1&nbsp;\\2',
227 # french spaces, Guillemet-right
228 '/(\\302\\253) /' => '\\1&nbsp;',
229 '/<center *>(.*)<\\/center *>/i' => '<div class="center">\\1</div>',
230 );
231 $text = preg_replace( array_keys($fixtags), array_values($fixtags), $text );
232
233 # only once and last
234 $text = $this->doBlockLevels( $text, $linestart );
235
236 $this->replaceLinkHolders( $text );
237
238 # the position of the parserConvert() call should not be changed. it
239 # assumes that the links are all replaced and the only thing left
240 # is the <nowiki> mark.
241 # Side-effects: this calls $this->mOutput->setTitleText()
242 $text = $wgContLang->parserConvert( $text, $this );
243
244 $text = $this->unstripNoWiki( $text, $this->mStripState );
245
246 wfRunHooks( 'ParserBeforeTidy', array( &$this, &$text ) );
247
248 $text = Sanitizer::normalizeCharReferences( $text );
249
250 if (($wgUseTidy and $this->mOptions->mTidy) or $wgAlwaysUseTidy) {
251 $text = Parser::tidy($text);
252 } else {
253 # attempt to sanitize at least some nesting problems
254 # (bug #2702 and quite a few others)
255 $tidyregs = array(
256 # ''Something [http://www.cool.com cool''] -->
257 # <i>Something</i><a href="http://www.cool.com"..><i>cool></i></a>
258 '/(<([bi])>)(<([bi])>)?([^<]*)(<\/?a[^<]*>)([^<]*)(<\/\\4>)?(<\/\\2>)/' =>
259 '\\1\\3\\5\\8\\9\\6\\1\\3\\7\\8\\9',
260 # fix up an anchor inside another anchor, only
261 # at least for a single single nested link (bug 3695)
262 '/(<a[^>]+>)([^<]*)(<a[^>]+>[^<]*)<\/a>(.*)<\/a>/' =>
263 '\\1\\2</a>\\3</a>\\1\\4</a>',
264 # fix div inside inline elements- doBlockLevels won't wrap a line which
265 # contains a div, so fix it up here; replace
266 # div with escaped text
267 '/(<([aib]) [^>]+>)([^<]*)(<div([^>]*)>)(.*)(<\/div>)([^<]*)(<\/\\2>)/' =>
268 '\\1\\3&lt;div\\5&gt;\\6&lt;/div&gt;\\8\\9',
269 # remove empty italic or bold tag pairs, some
270 # introduced by rules above
271 '/<([bi])><\/\\1>/' => ''
272 );
273
274 $text = preg_replace(
275 array_keys( $tidyregs ),
276 array_values( $tidyregs ),
277 $text );
278 }
279
280 wfRunHooks( 'ParserAfterTidy', array( &$this, &$text ) );
281
282 $this->mOutput->setText( $text );
283 wfProfileOut( $fname );
284
285 return $this->mOutput;
286 }
287
288 /**
289 * Get a random string
290 *
291 * @access private
292 * @static
293 */
294 function getRandomString() {
295 return dechex(mt_rand(0, 0x7fffffff)) . dechex(mt_rand(0, 0x7fffffff));
296 }
297
298 function &getTitle() { return $this->mTitle; }
299 function getOptions() { return $this->mOptions; }
300
301 /**
302 * Replaces all occurrences of <$tag>content</$tag> in the text
303 * with a random marker and returns the new text. the output parameter
304 * $content will be an associative array filled with data on the form
305 * $unique_marker => content.
306 *
307 * If $content is already set, the additional entries will be appended
308 * If $tag is set to STRIP_COMMENTS, the function will extract
309 * <!-- HTML comments -->
310 *
311 * @access private
312 * @static
313 */
314 function extractTagsAndParams($tag, $text, &$content, &$tags, &$params, $uniq_prefix = ''){
315 $rnd = $uniq_prefix . '-' . $tag . Parser::getRandomString();
316 if ( !$content ) {
317 $content = array( );
318 }
319 $n = 1;
320 $stripped = '';
321
322 if ( !$tags ) {
323 $tags = array( );
324 }
325
326 if ( !$params ) {
327 $params = array( );
328 }
329
330 if( $tag == STRIP_COMMENTS ) {
331 $start = '/<!--()/';
332 $end = '/-->/';
333 } else {
334 $start = "/<$tag(\\s+[^>]*|\\s*\/?)>/i";
335 $end = "/<\\/$tag\\s*>/i";
336 }
337
338 while ( '' != $text ) {
339 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE );
340 $stripped .= $p[0];
341 if( count( $p ) < 3 ) {
342 break;
343 }
344 $attributes = $p[1];
345 $inside = $p[2];
346
347 // If $attributes ends with '/', we have an empty element tag, <tag />
348 if( $tag != STRIP_COMMENTS && substr( $attributes, -1 ) == '/' ) {
349 $attributes = substr( $attributes, 0, -1);
350 $empty = '/';
351 } else {
352 $empty = '';
353 }
354
355 $marker = $rnd . sprintf('%08X', $n++);
356 $stripped .= $marker;
357
358 $tags[$marker] = "<$tag$attributes$empty>";
359 $params[$marker] = Sanitizer::decodeTagAttributes( $attributes );
360
361 if ( $empty === '/' ) {
362 // Empty element tag, <tag />
363 $content[$marker] = null;
364 $text = $inside;
365 } else {
366 $q = preg_split( $end, $inside, 2 );
367 $content[$marker] = $q[0];
368 if( count( $q ) < 2 ) {
369 # No end tag -- let it run out to the end of the text.
370 break;
371 } else {
372 $text = $q[1];
373 }
374 }
375 }
376 return $stripped;
377 }
378
379 /**
380 * Wrapper function for extractTagsAndParams
381 * for cases where $tags and $params isn't needed
382 * i.e. where tags will never have params, like <nowiki>
383 *
384 * @access private
385 * @static
386 */
387 function extractTags( $tag, $text, &$content, $uniq_prefix = '' ) {
388 $dummy_tags = array();
389 $dummy_params = array();
390
391 return Parser::extractTagsAndParams( $tag, $text, $content,
392 $dummy_tags, $dummy_params, $uniq_prefix );
393 }
394
395 /**
396 * Strips and renders nowiki, pre, math, hiero
397 * If $render is set, performs necessary rendering operations on plugins
398 * Returns the text, and fills an array with data needed in unstrip()
399 * If the $state is already a valid strip state, it adds to the state
400 *
401 * @param bool $stripcomments when set, HTML comments <!-- like this -->
402 * will be stripped in addition to other tags. This is important
403 * for section editing, where these comments cause confusion when
404 * counting the sections in the wikisource
405 *
406 * @access private
407 */
408 function strip( $text, &$state, $stripcomments = false ) {
409 $render = ($this->mOutputType == OT_HTML);
410 $html_content = array();
411 $nowiki_content = array();
412 $math_content = array();
413 $pre_content = array();
414 $comment_content = array();
415 $ext_content = array();
416 $ext_tags = array();
417 $ext_params = array();
418 $gallery_content = array();
419
420 # Replace any instances of the placeholders
421 $uniq_prefix = $this->mUniqPrefix;
422 #$text = str_replace( $uniq_prefix, wfHtmlEscapeFirst( $uniq_prefix ), $text );
423
424 # html
425 global $wgRawHtml;
426 if( $wgRawHtml ) {
427 $text = Parser::extractTags('html', $text, $html_content, $uniq_prefix);
428 foreach( $html_content as $marker => $content ) {
429 if ($render ) {
430 # Raw and unchecked for validity.
431 $html_content[$marker] = $content;
432 } else {
433 $html_content[$marker] = '<html>'.$content.'</html>';
434 }
435 }
436 }
437
438 # nowiki
439 $text = Parser::extractTags('nowiki', $text, $nowiki_content, $uniq_prefix);
440 foreach( $nowiki_content as $marker => $content ) {
441 if( $render ){
442 $nowiki_content[$marker] = wfEscapeHTMLTagsOnly( $content );
443 } else {
444 $nowiki_content[$marker] = '<nowiki>'.$content.'</nowiki>';
445 }
446 }
447
448 # math
449 if( $this->mOptions->getUseTeX() ) {
450 $text = Parser::extractTags('math', $text, $math_content, $uniq_prefix);
451 foreach( $math_content as $marker => $content ){
452 if( $render ) {
453 $math_content[$marker] = renderMath( $content );
454 } else {
455 $math_content[$marker] = '<math>'.$content.'</math>';
456 }
457 }
458 }
459
460 # pre
461 $text = Parser::extractTags('pre', $text, $pre_content, $uniq_prefix);
462 foreach( $pre_content as $marker => $content ){
463 if( $render ){
464 $pre_content[$marker] = '<pre>' . wfEscapeHTMLTagsOnly( $content ) . '</pre>';
465 } else {
466 $pre_content[$marker] = '<pre>'.$content.'</pre>';
467 }
468 }
469
470 # gallery
471 $text = Parser::extractTags('gallery', $text, $gallery_content, $uniq_prefix);
472 foreach( $gallery_content as $marker => $content ) {
473 require_once( 'ImageGallery.php' );
474 if ( $render ) {
475 $gallery_content[$marker] = $this->renderImageGallery( $content );
476 } else {
477 $gallery_content[$marker] = '<gallery>'.$content.'</gallery>';
478 }
479 }
480
481 # Comments
482 $text = Parser::extractTags(STRIP_COMMENTS, $text, $comment_content, $uniq_prefix);
483 foreach( $comment_content as $marker => $content ){
484 $comment_content[$marker] = '<!--'.$content.'-->';
485 }
486
487 # Extensions
488 foreach ( $this->mTagHooks as $tag => $callback ) {
489 $ext_content[$tag] = array();
490 $text = Parser::extractTagsAndParams( $tag, $text, $ext_content[$tag],
491 $ext_tags[$tag], $ext_params[$tag], $uniq_prefix );
492 foreach( $ext_content[$tag] as $marker => $content ) {
493 $full_tag = $ext_tags[$tag][$marker];
494 $params = $ext_params[$tag][$marker];
495 if ( $render )
496 $ext_content[$tag][$marker] = call_user_func_array( $callback, array( $content, $params, &$this ) );
497 else {
498 if ( is_null( $content ) ) {
499 // Empty element tag
500 $ext_content[$tag][$marker] = $full_tag;
501 } else {
502 $ext_content[$tag][$marker] = "$full_tag$content</$tag>";
503 }
504 }
505 }
506 }
507
508 # Unstrip comments unless explicitly told otherwise.
509 # (The comments are always stripped prior to this point, so as to
510 # not invoke any extension tags / parser hooks contained within
511 # a comment.)
512 if ( !$stripcomments ) {
513 $tempstate = array( 'comment' => $comment_content );
514 $text = $this->unstrip( $text, $tempstate );
515 $comment_content = array();
516 }
517
518 # Merge state with the pre-existing state, if there is one
519 if ( $state ) {
520 $state['html'] = $state['html'] + $html_content;
521 $state['nowiki'] = $state['nowiki'] + $nowiki_content;
522 $state['math'] = $state['math'] + $math_content;
523 $state['pre'] = $state['pre'] + $pre_content;
524 $state['gallery'] = $state['gallery'] + $gallery_content;
525 $state['comment'] = $state['comment'] + $comment_content;
526
527 foreach( $ext_content as $tag => $array ) {
528 if ( array_key_exists( $tag, $state ) ) {
529 $state[$tag] = $state[$tag] + $array;
530 }
531 }
532 } else {
533 $state = array(
534 'html' => $html_content,
535 'nowiki' => $nowiki_content,
536 'math' => $math_content,
537 'pre' => $pre_content,
538 'gallery' => $gallery_content,
539 'comment' => $comment_content,
540 ) + $ext_content;
541 }
542 return $text;
543 }
544
545 /**
546 * restores pre, math, and hiero removed by strip()
547 *
548 * always call unstripNoWiki() after this one
549 * @access private
550 */
551 function unstrip( $text, &$state ) {
552 if ( !is_array( $state ) ) {
553 return $text;
554 }
555
556 # Must expand in reverse order, otherwise nested tags will be corrupted
557 foreach( array_reverse( $state, true ) as $tag => $contentDict ) {
558 if( $tag != 'nowiki' && $tag != 'html' ) {
559 foreach( array_reverse( $contentDict, true ) as $uniq => $content ) {
560 $text = str_replace( $uniq, $content, $text );
561 }
562 }
563 }
564
565 return $text;
566 }
567
568 /**
569 * always call this after unstrip() to preserve the order
570 *
571 * @access private
572 */
573 function unstripNoWiki( $text, &$state ) {
574 if ( !is_array( $state ) ) {
575 return $text;
576 }
577
578 # Must expand in reverse order, otherwise nested tags will be corrupted
579 for ( $content = end($state['nowiki']); $content !== false; $content = prev( $state['nowiki'] ) ) {
580 $text = str_replace( key( $state['nowiki'] ), $content, $text );
581 }
582
583 global $wgRawHtml;
584 if ($wgRawHtml) {
585 for ( $content = end($state['html']); $content !== false; $content = prev( $state['html'] ) ) {
586 $text = str_replace( key( $state['html'] ), $content, $text );
587 }
588 }
589
590 return $text;
591 }
592
593 /**
594 * Add an item to the strip state
595 * Returns the unique tag which must be inserted into the stripped text
596 * The tag will be replaced with the original text in unstrip()
597 *
598 * @access private
599 */
600 function insertStripItem( $text, &$state ) {
601 $rnd = $this->mUniqPrefix . '-item' . Parser::getRandomString();
602 if ( !$state ) {
603 $state = array(
604 'html' => array(),
605 'nowiki' => array(),
606 'math' => array(),
607 'pre' => array(),
608 'comment' => array(),
609 'gallery' => array(),
610 );
611 }
612 $state['item'][$rnd] = $text;
613 return $rnd;
614 }
615
616 /**
617 * Interface with html tidy, used if $wgUseTidy = true.
618 * If tidy isn't able to correct the markup, the original will be
619 * returned in all its glory with a warning comment appended.
620 *
621 * Either the external tidy program or the in-process tidy extension
622 * will be used depending on availability. Override the default
623 * $wgTidyInternal setting to disable the internal if it's not working.
624 *
625 * @param string $text Hideous HTML input
626 * @return string Corrected HTML output
627 * @access public
628 * @static
629 */
630 function tidy( $text ) {
631 global $wgTidyInternal;
632 $wrappedtext = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'.
633 ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>'.
634 '<head><title>test</title></head><body>'.$text.'</body></html>';
635 if( $wgTidyInternal ) {
636 $correctedtext = Parser::internalTidy( $wrappedtext );
637 } else {
638 $correctedtext = Parser::externalTidy( $wrappedtext );
639 }
640 if( is_null( $correctedtext ) ) {
641 wfDebug( "Tidy error detected!\n" );
642 return $text . "\n<!-- Tidy found serious XHTML errors -->\n";
643 }
644 return $correctedtext;
645 }
646
647 /**
648 * Spawn an external HTML tidy process and get corrected markup back from it.
649 *
650 * @access private
651 * @static
652 */
653 function externalTidy( $text ) {
654 global $wgTidyConf, $wgTidyBin, $wgTidyOpts;
655 $fname = 'Parser::externalTidy';
656 wfProfileIn( $fname );
657
658 $cleansource = '';
659 $opts = ' -utf8';
660
661 $descriptorspec = array(
662 0 => array('pipe', 'r'),
663 1 => array('pipe', 'w'),
664 2 => array('file', '/dev/null', 'a')
665 );
666 $pipes = array();
667 $process = proc_open("$wgTidyBin -config $wgTidyConf $wgTidyOpts$opts", $descriptorspec, $pipes);
668 if (is_resource($process)) {
669 // Theoretically, this style of communication could cause a deadlock
670 // here. If the stdout buffer fills up, then writes to stdin could
671 // block. This doesn't appear to happen with tidy, because tidy only
672 // writes to stdout after it's finished reading from stdin. Search
673 // for tidyParseStdin and tidySaveStdout in console/tidy.c
674 fwrite($pipes[0], $text);
675 fclose($pipes[0]);
676 while (!feof($pipes[1])) {
677 $cleansource .= fgets($pipes[1], 1024);
678 }
679 fclose($pipes[1]);
680 proc_close($process);
681 }
682
683 wfProfileOut( $fname );
684
685 if( $cleansource == '' && $text != '') {
686 // Some kind of error happened, so we couldn't get the corrected text.
687 // Just give up; we'll use the source text and append a warning.
688 return null;
689 } else {
690 return $cleansource;
691 }
692 }
693
694 /**
695 * Use the HTML tidy PECL extension to use the tidy library in-process,
696 * saving the overhead of spawning a new process. Currently written to
697 * the PHP 4.3.x version of the extension, may not work on PHP 5.
698 *
699 * 'pear install tidy' should be able to compile the extension module.
700 *
701 * @access private
702 * @static
703 */
704 function internalTidy( $text ) {
705 global $wgTidyConf;
706 $fname = 'Parser::internalTidy';
707 wfProfileIn( $fname );
708
709 tidy_load_config( $wgTidyConf );
710 tidy_set_encoding( 'utf8' );
711 tidy_parse_string( $text );
712 tidy_clean_repair();
713 if( tidy_get_status() == 2 ) {
714 // 2 is magic number for fatal error
715 // http://www.php.net/manual/en/function.tidy-get-status.php
716 $cleansource = null;
717 } else {
718 $cleansource = tidy_get_output();
719 }
720 wfProfileOut( $fname );
721 return $cleansource;
722 }
723
724 /**
725 * parse the wiki syntax used to render tables
726 *
727 * @access private
728 */
729 function doTableStuff ( $t ) {
730 $fname = 'Parser::doTableStuff';
731 wfProfileIn( $fname );
732
733 $t = explode ( "\n" , $t ) ;
734 $td = array () ; # Is currently a td tag open?
735 $ltd = array () ; # Was it TD or TH?
736 $tr = array () ; # Is currently a tr tag open?
737 $ltr = array () ; # tr attributes
738 $has_opened_tr = array(); # Did this table open a <tr> element?
739 $indent_level = 0; # indent level of the table
740 foreach ( $t AS $k => $x )
741 {
742 $x = trim ( $x ) ;
743 $fc = substr ( $x , 0 , 1 ) ;
744 if ( preg_match( '/^(:*)\{\|(.*)$/', $x, $matches ) ) {
745 $indent_level = strlen( $matches[1] );
746
747 $attributes = $this->unstripForHTML( $matches[2] );
748
749 $t[$k] = str_repeat( '<dl><dd>', $indent_level ) .
750 '<table' . Sanitizer::fixTagAttributes ( $attributes, 'table' ) . '>' ;
751 array_push ( $td , false ) ;
752 array_push ( $ltd , '' ) ;
753 array_push ( $tr , false ) ;
754 array_push ( $ltr , '' ) ;
755 array_push ( $has_opened_tr, false );
756 }
757 else if ( count ( $td ) == 0 ) { } # Don't do any of the following
758 else if ( '|}' == substr ( $x , 0 , 2 ) ) {
759 $z = "</table>" . substr ( $x , 2);
760 $l = array_pop ( $ltd ) ;
761 if ( !array_pop ( $has_opened_tr ) ) $z = "<tr><td></td></tr>" . $z ;
762 if ( array_pop ( $tr ) ) $z = '</tr>' . $z ;
763 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
764 array_pop ( $ltr ) ;
765 $t[$k] = $z . str_repeat( '</dd></dl>', $indent_level );
766 }
767 else if ( '|-' == substr ( $x , 0 , 2 ) ) { # Allows for |---------------
768 $x = substr ( $x , 1 ) ;
769 while ( $x != '' && substr ( $x , 0 , 1 ) == '-' ) $x = substr ( $x , 1 ) ;
770 $z = '' ;
771 $l = array_pop ( $ltd ) ;
772 array_pop ( $has_opened_tr );
773 array_push ( $has_opened_tr , true ) ;
774 if ( array_pop ( $tr ) ) $z = '</tr>' . $z ;
775 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
776 array_pop ( $ltr ) ;
777 $t[$k] = $z ;
778 array_push ( $tr , false ) ;
779 array_push ( $td , false ) ;
780 array_push ( $ltd , '' ) ;
781 $attributes = $this->unstripForHTML( $x );
782 array_push ( $ltr , Sanitizer::fixTagAttributes ( $attributes, 'tr' ) ) ;
783 }
784 else if ( '|' == $fc || '!' == $fc || '|+' == substr ( $x , 0 , 2 ) ) { # Caption
785 # $x is a table row
786 if ( '|+' == substr ( $x , 0 , 2 ) ) {
787 $fc = '+' ;
788 $x = substr ( $x , 1 ) ;
789 }
790 $after = substr ( $x , 1 ) ;
791 if ( $fc == '!' ) $after = str_replace ( '!!' , '||' , $after ) ;
792
793 // Split up multiple cells on the same line.
794 // FIXME: This can result in improper nesting of tags processed
795 // by earlier parser steps, but should avoid splitting up eg
796 // attribute values containing literal "||".
797 $after = wfExplodeMarkup( '||', $after );
798
799 $t[$k] = '' ;
800
801 # Loop through each table cell
802 foreach ( $after AS $theline )
803 {
804 $z = '' ;
805 if ( $fc != '+' )
806 {
807 $tra = array_pop ( $ltr ) ;
808 if ( !array_pop ( $tr ) ) $z = '<tr'.$tra.">\n" ;
809 array_push ( $tr , true ) ;
810 array_push ( $ltr , '' ) ;
811 array_pop ( $has_opened_tr );
812 array_push ( $has_opened_tr , true ) ;
813 }
814
815 $l = array_pop ( $ltd ) ;
816 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
817 if ( $fc == '|' ) $l = 'td' ;
818 else if ( $fc == '!' ) $l = 'th' ;
819 else if ( $fc == '+' ) $l = 'caption' ;
820 else $l = '' ;
821 array_push ( $ltd , $l ) ;
822
823 # Cell parameters
824 $y = explode ( '|' , $theline , 2 ) ;
825 # Note that a '|' inside an invalid link should not
826 # be mistaken as delimiting cell parameters
827 if ( strpos( $y[0], '[[' ) !== false ) {
828 $y = array ($theline);
829 }
830 if ( count ( $y ) == 1 )
831 $y = "{$z}<{$l}>{$y[0]}" ;
832 else {
833 $attributes = $this->unstripForHTML( $y[0] );
834 $y = "{$z}<{$l}".Sanitizer::fixTagAttributes($attributes, $l).">{$y[1]}" ;
835 }
836 $t[$k] .= $y ;
837 array_push ( $td , true ) ;
838 }
839 }
840 }
841
842 # Closing open td, tr && table
843 while ( count ( $td ) > 0 )
844 {
845 $l = array_pop ( $ltd ) ;
846 if ( array_pop ( $td ) ) $t[] = '</td>' ;
847 if ( array_pop ( $tr ) ) $t[] = '</tr>' ;
848 if ( !array_pop ( $has_opened_tr ) ) $t[] = "<tr><td></td></tr>" ;
849 $t[] = '</table>' ;
850 }
851
852 $t = implode ( "\n" , $t ) ;
853 # special case: don't return empty table
854 if($t == "<table>\n<tr><td></td></tr>\n</table>")
855 $t = '';
856 wfProfileOut( $fname );
857 return $t ;
858 }
859
860 /**
861 * Helper function for parse() that transforms wiki markup into
862 * HTML. Only called for $mOutputType == OT_HTML.
863 *
864 * @access private
865 */
866 function internalParse( $text ) {
867 $args = array();
868 $isMain = true;
869 $fname = 'Parser::internalParse';
870 wfProfileIn( $fname );
871
872 # Remove <noinclude> tags and <includeonly> sections
873 $text = strtr( $text, array( '<onlyinclude>' => '' , '</onlyinclude>' => '' ) );
874 $text = strtr( $text, array( '<noinclude>' => '', '</noinclude>' => '') );
875 $text = preg_replace( '/<includeonly>.*?<\/includeonly>/s', '', $text );
876
877 $text = Sanitizer::removeHTMLtags( $text, array( &$this, 'attributeStripCallback' ) );
878 $text = $this->replaceVariables( $text, $args );
879
880 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
881
882 $text = $this->doHeadings( $text );
883 if($this->mOptions->getUseDynamicDates()) {
884 $df =& DateFormatter::getInstance();
885 $text = $df->reformat( $this->mOptions->getDateFormat(), $text );
886 }
887 $text = $this->doAllQuotes( $text );
888 $text = $this->replaceInternalLinks( $text );
889 $text = $this->replaceExternalLinks( $text );
890
891 # replaceInternalLinks may sometimes leave behind
892 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
893 $text = str_replace($this->mUniqPrefix."NOPARSE", "", $text);
894
895 $text = $this->doMagicLinks( $text );
896 $text = $this->doTableStuff( $text );
897 $text = $this->formatHeadings( $text, $isMain );
898
899 wfProfileOut( $fname );
900 return $text;
901 }
902
903 /**
904 * Replace special strings like "ISBN xxx" and "RFC xxx" with
905 * magic external links.
906 *
907 * @access private
908 */
909 function &doMagicLinks( &$text ) {
910 $text = $this->magicISBN( $text );
911 $text = $this->magicRFC( $text, 'RFC ', 'rfcurl' );
912 $text = $this->magicRFC( $text, 'PMID ', 'pubmedurl' );
913 return $text;
914 }
915
916 /**
917 * Parse headers and return html
918 *
919 * @access private
920 */
921 function doHeadings( $text ) {
922 $fname = 'Parser::doHeadings';
923 wfProfileIn( $fname );
924 for ( $i = 6; $i >= 1; --$i ) {
925 $h = str_repeat( '=', $i );
926 $text = preg_replace( "/^{$h}(.+){$h}(\\s|$)/m",
927 "<h{$i}>\\1</h{$i}>\\2", $text );
928 }
929 wfProfileOut( $fname );
930 return $text;
931 }
932
933 /**
934 * Replace single quotes with HTML markup
935 * @access private
936 * @return string the altered text
937 */
938 function doAllQuotes( $text ) {
939 $fname = 'Parser::doAllQuotes';
940 wfProfileIn( $fname );
941 $outtext = '';
942 $lines = explode( "\n", $text );
943 foreach ( $lines as $line ) {
944 $outtext .= $this->doQuotes ( $line ) . "\n";
945 }
946 $outtext = substr($outtext, 0,-1);
947 wfProfileOut( $fname );
948 return $outtext;
949 }
950
951 /**
952 * Helper function for doAllQuotes()
953 * @access private
954 */
955 function doQuotes( $text ) {
956 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE );
957 if ( count( $arr ) == 1 )
958 return $text;
959 else
960 {
961 # First, do some preliminary work. This may shift some apostrophes from
962 # being mark-up to being text. It also counts the number of occurrences
963 # of bold and italics mark-ups.
964 $i = 0;
965 $numbold = 0;
966 $numitalics = 0;
967 foreach ( $arr as $r )
968 {
969 if ( ( $i % 2 ) == 1 )
970 {
971 # If there are ever four apostrophes, assume the first is supposed to
972 # be text, and the remaining three constitute mark-up for bold text.
973 if ( strlen( $arr[$i] ) == 4 )
974 {
975 $arr[$i-1] .= "'";
976 $arr[$i] = "'''";
977 }
978 # If there are more than 5 apostrophes in a row, assume they're all
979 # text except for the last 5.
980 else if ( strlen( $arr[$i] ) > 5 )
981 {
982 $arr[$i-1] .= str_repeat( "'", strlen( $arr[$i] ) - 5 );
983 $arr[$i] = "'''''";
984 }
985 # Count the number of occurrences of bold and italics mark-ups.
986 # We are not counting sequences of five apostrophes.
987 if ( strlen( $arr[$i] ) == 2 ) $numitalics++; else
988 if ( strlen( $arr[$i] ) == 3 ) $numbold++; else
989 if ( strlen( $arr[$i] ) == 5 ) { $numitalics++; $numbold++; }
990 }
991 $i++;
992 }
993
994 # If there is an odd number of both bold and italics, it is likely
995 # that one of the bold ones was meant to be an apostrophe followed
996 # by italics. Which one we cannot know for certain, but it is more
997 # likely to be one that has a single-letter word before it.
998 if ( ( $numbold % 2 == 1 ) && ( $numitalics % 2 == 1 ) )
999 {
1000 $i = 0;
1001 $firstsingleletterword = -1;
1002 $firstmultiletterword = -1;
1003 $firstspace = -1;
1004 foreach ( $arr as $r )
1005 {
1006 if ( ( $i % 2 == 1 ) and ( strlen( $r ) == 3 ) )
1007 {
1008 $x1 = substr ($arr[$i-1], -1);
1009 $x2 = substr ($arr[$i-1], -2, 1);
1010 if ($x1 == ' ') {
1011 if ($firstspace == -1) $firstspace = $i;
1012 } else if ($x2 == ' ') {
1013 if ($firstsingleletterword == -1) $firstsingleletterword = $i;
1014 } else {
1015 if ($firstmultiletterword == -1) $firstmultiletterword = $i;
1016 }
1017 }
1018 $i++;
1019 }
1020
1021 # If there is a single-letter word, use it!
1022 if ($firstsingleletterword > -1)
1023 {
1024 $arr [ $firstsingleletterword ] = "''";
1025 $arr [ $firstsingleletterword-1 ] .= "'";
1026 }
1027 # If not, but there's a multi-letter word, use that one.
1028 else if ($firstmultiletterword > -1)
1029 {
1030 $arr [ $firstmultiletterword ] = "''";
1031 $arr [ $firstmultiletterword-1 ] .= "'";
1032 }
1033 # ... otherwise use the first one that has neither.
1034 # (notice that it is possible for all three to be -1 if, for example,
1035 # there is only one pentuple-apostrophe in the line)
1036 else if ($firstspace > -1)
1037 {
1038 $arr [ $firstspace ] = "''";
1039 $arr [ $firstspace-1 ] .= "'";
1040 }
1041 }
1042
1043 # Now let's actually convert our apostrophic mush to HTML!
1044 $output = '';
1045 $buffer = '';
1046 $state = '';
1047 $i = 0;
1048 foreach ($arr as $r)
1049 {
1050 if (($i % 2) == 0)
1051 {
1052 if ($state == 'both')
1053 $buffer .= $r;
1054 else
1055 $output .= $r;
1056 }
1057 else
1058 {
1059 if (strlen ($r) == 2)
1060 {
1061 if ($state == 'i')
1062 { $output .= '</i>'; $state = ''; }
1063 else if ($state == 'bi')
1064 { $output .= '</i>'; $state = 'b'; }
1065 else if ($state == 'ib')
1066 { $output .= '</b></i><b>'; $state = 'b'; }
1067 else if ($state == 'both')
1068 { $output .= '<b><i>'.$buffer.'</i>'; $state = 'b'; }
1069 else # $state can be 'b' or ''
1070 { $output .= '<i>'; $state .= 'i'; }
1071 }
1072 else if (strlen ($r) == 3)
1073 {
1074 if ($state == 'b')
1075 { $output .= '</b>'; $state = ''; }
1076 else if ($state == 'bi')
1077 { $output .= '</i></b><i>'; $state = 'i'; }
1078 else if ($state == 'ib')
1079 { $output .= '</b>'; $state = 'i'; }
1080 else if ($state == 'both')
1081 { $output .= '<i><b>'.$buffer.'</b>'; $state = 'i'; }
1082 else # $state can be 'i' or ''
1083 { $output .= '<b>'; $state .= 'b'; }
1084 }
1085 else if (strlen ($r) == 5)
1086 {
1087 if ($state == 'b')
1088 { $output .= '</b><i>'; $state = 'i'; }
1089 else if ($state == 'i')
1090 { $output .= '</i><b>'; $state = 'b'; }
1091 else if ($state == 'bi')
1092 { $output .= '</i></b>'; $state = ''; }
1093 else if ($state == 'ib')
1094 { $output .= '</b></i>'; $state = ''; }
1095 else if ($state == 'both')
1096 { $output .= '<i><b>'.$buffer.'</b></i>'; $state = ''; }
1097 else # ($state == '')
1098 { $buffer = ''; $state = 'both'; }
1099 }
1100 }
1101 $i++;
1102 }
1103 # Now close all remaining tags. Notice that the order is important.
1104 if ($state == 'b' || $state == 'ib')
1105 $output .= '</b>';
1106 if ($state == 'i' || $state == 'bi' || $state == 'ib')
1107 $output .= '</i>';
1108 if ($state == 'bi')
1109 $output .= '</b>';
1110 if ($state == 'both')
1111 $output .= '<b><i>'.$buffer.'</i></b>';
1112 return $output;
1113 }
1114 }
1115
1116 /**
1117 * Replace external links
1118 *
1119 * Note: this is all very hackish and the order of execution matters a lot.
1120 * Make sure to run maintenance/parserTests.php if you change this code.
1121 *
1122 * @access private
1123 */
1124 function replaceExternalLinks( $text ) {
1125 global $wgContLang;
1126 $fname = 'Parser::replaceExternalLinks';
1127 wfProfileIn( $fname );
1128
1129 $sk =& $this->mOptions->getSkin();
1130
1131 $bits = preg_split( EXT_LINK_BRACKETED, $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1132
1133 $s = $this->replaceFreeExternalLinks( array_shift( $bits ) );
1134
1135 $i = 0;
1136 while ( $i<count( $bits ) ) {
1137 $url = $bits[$i++];
1138 $protocol = $bits[$i++];
1139 $text = $bits[$i++];
1140 $trail = $bits[$i++];
1141
1142 # The characters '<' and '>' (which were escaped by
1143 # removeHTMLtags()) should not be included in
1144 # URLs, per RFC 2396.
1145 if (preg_match('/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE)) {
1146 $text = substr($url, $m2[0][1]) . ' ' . $text;
1147 $url = substr($url, 0, $m2[0][1]);
1148 }
1149
1150 # If the link text is an image URL, replace it with an <img> tag
1151 # This happened by accident in the original parser, but some people used it extensively
1152 $img = $this->maybeMakeExternalImage( $text );
1153 if ( $img !== false ) {
1154 $text = $img;
1155 }
1156
1157 $dtrail = '';
1158
1159 # Set linktype for CSS - if URL==text, link is essentially free
1160 $linktype = ($text == $url) ? 'free' : 'text';
1161
1162 # No link text, e.g. [http://domain.tld/some.link]
1163 if ( $text == '' ) {
1164 # Autonumber if allowed
1165 if ( strpos( HTTP_PROTOCOLS, str_replace('/','\/', $protocol) ) !== false ) {
1166 $text = '[' . ++$this->mAutonumber . ']';
1167 $linktype = 'autonumber';
1168 } else {
1169 # Otherwise just use the URL
1170 $text = htmlspecialchars( $url );
1171 $linktype = 'free';
1172 }
1173 } else {
1174 # Have link text, e.g. [http://domain.tld/some.link text]s
1175 # Check for trail
1176 list( $dtrail, $trail ) = Linker::splitTrail( $trail );
1177 }
1178
1179 $text = $wgContLang->markNoConversion($text);
1180
1181 # Replace &amp; from obsolete syntax with &.
1182 # All HTML entities will be escaped by makeExternalLink()
1183 $url = str_replace( '&amp;', '&', $url );
1184
1185 # Process the trail (i.e. everything after this link up until start of the next link),
1186 # replacing any non-bracketed links
1187 $trail = $this->replaceFreeExternalLinks( $trail );
1188
1189 # Use the encoded URL
1190 # This means that users can paste URLs directly into the text
1191 # Funny characters like &ouml; aren't valid in URLs anyway
1192 # This was changed in August 2004
1193 $s .= $sk->makeExternalLink( $url, $text, false, $linktype ) . $dtrail . $trail;
1194
1195 # Register link in the output object.
1196 # Replace unnecessary URL escape codes with the referenced character
1197 # This prevents spammers from hiding links from the filters
1198 $pasteurized = Parser::replaceUnusualEscapes( $url );
1199 $this->mOutput->addExternalLink( $pasteurized );
1200 }
1201
1202 wfProfileOut( $fname );
1203 return $s;
1204 }
1205
1206 /**
1207 * Replace anything that looks like a URL with a link
1208 * @access private
1209 */
1210 function replaceFreeExternalLinks( $text ) {
1211 global $wgContLang;
1212 $fname = 'Parser::replaceFreeExternalLinks';
1213 wfProfileIn( $fname );
1214
1215 $bits = preg_split( '/(\b(?:' . wfUrlProtocols() . '))/S', $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1216 $s = array_shift( $bits );
1217 $i = 0;
1218
1219 $sk =& $this->mOptions->getSkin();
1220
1221 while ( $i < count( $bits ) ){
1222 $protocol = $bits[$i++];
1223 $remainder = $bits[$i++];
1224
1225 if ( preg_match( '/^('.EXT_LINK_URL_CLASS.'+)(.*)$/s', $remainder, $m ) ) {
1226 # Found some characters after the protocol that look promising
1227 $url = $protocol . $m[1];
1228 $trail = $m[2];
1229
1230 # special case: handle urls as url args:
1231 # http://www.example.com/foo?=http://www.example.com/bar
1232 if(strlen($trail) == 0 &&
1233 isset($bits[$i]) &&
1234 preg_match('/^'. wfUrlProtocols() . '$/S', $bits[$i]) &&
1235 preg_match( '/^('.EXT_LINK_URL_CLASS.'+)(.*)$/s', $bits[$i + 1], $m ))
1236 {
1237 # add protocol, arg
1238 $url .= $bits[$i] . $bits[$i + 1]; # protocol, url as arg to previous link
1239 $i += 2;
1240 $trail = $m[2];
1241 }
1242
1243 # The characters '<' and '>' (which were escaped by
1244 # removeHTMLtags()) should not be included in
1245 # URLs, per RFC 2396.
1246 if (preg_match('/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE)) {
1247 $trail = substr($url, $m2[0][1]) . $trail;
1248 $url = substr($url, 0, $m2[0][1]);
1249 }
1250
1251 # Move trailing punctuation to $trail
1252 $sep = ',;\.:!?';
1253 # If there is no left bracket, then consider right brackets fair game too
1254 if ( strpos( $url, '(' ) === false ) {
1255 $sep .= ')';
1256 }
1257
1258 $numSepChars = strspn( strrev( $url ), $sep );
1259 if ( $numSepChars ) {
1260 $trail = substr( $url, -$numSepChars ) . $trail;
1261 $url = substr( $url, 0, -$numSepChars );
1262 }
1263
1264 # Replace &amp; from obsolete syntax with &.
1265 # All HTML entities will be escaped by makeExternalLink()
1266 # or maybeMakeExternalImage()
1267 $url = str_replace( '&amp;', '&', $url );
1268
1269 # Is this an external image?
1270 $text = $this->maybeMakeExternalImage( $url );
1271 if ( $text === false ) {
1272 # Not an image, make a link
1273 $text = $sk->makeExternalLink( $url, $wgContLang->markNoConversion($url), true, 'free' );
1274 # Register it in the output object...
1275 # Replace unnecessary URL escape codes with their equivalent characters
1276 $pasteurized = Parser::replaceUnusualEscapes( $url );
1277 $this->mOutput->addExternalLink( $pasteurized );
1278 }
1279 $s .= $text . $trail;
1280 } else {
1281 $s .= $protocol . $remainder;
1282 }
1283 }
1284 wfProfileOut( $fname );
1285 return $s;
1286 }
1287
1288 /**
1289 * Replace unusual URL escape codes with their equivalent characters
1290 * @param string
1291 * @return string
1292 * @static
1293 * @fixme This can merge genuinely required bits in the path or query string,
1294 * breaking legit URLs. A proper fix would treat the various parts of
1295 * the URL differently; as a workaround, just use the output for
1296 * statistical records, not for actual linking/output.
1297 */
1298 function replaceUnusualEscapes( $url ) {
1299 return preg_replace_callback( '/%[0-9A-Fa-f]{2}/',
1300 array( 'Parser', 'replaceUnusualEscapesCallback' ), $url );
1301 }
1302
1303 /**
1304 * Callback function used in replaceUnusualEscapes().
1305 * Replaces unusual URL escape codes with their equivalent character
1306 * @static
1307 * @access private
1308 */
1309 function replaceUnusualEscapesCallback( $matches ) {
1310 $char = urldecode( $matches[0] );
1311 $ord = ord( $char );
1312 // Is it an unsafe or HTTP reserved character according to RFC 1738?
1313 if ( $ord > 32 && $ord < 127 && strpos( '<>"#{}|\^~[]`;/?', $char ) === false ) {
1314 // No, shouldn't be escaped
1315 return $char;
1316 } else {
1317 // Yes, leave it escaped
1318 return $matches[0];
1319 }
1320 }
1321
1322 /**
1323 * make an image if it's allowed, either through the global
1324 * option or through the exception
1325 * @access private
1326 */
1327 function maybeMakeExternalImage( $url ) {
1328 $sk =& $this->mOptions->getSkin();
1329 $imagesfrom = $this->mOptions->getAllowExternalImagesFrom();
1330 $imagesexception = !empty($imagesfrom);
1331 $text = false;
1332 if ( $this->mOptions->getAllowExternalImages()
1333 || ( $imagesexception && strpos( $url, $imagesfrom ) === 0 ) ) {
1334 if ( preg_match( EXT_IMAGE_REGEX, $url ) ) {
1335 # Image found
1336 $text = $sk->makeExternalImage( htmlspecialchars( $url ) );
1337 }
1338 }
1339 return $text;
1340 }
1341
1342 /**
1343 * Process [[ ]] wikilinks
1344 *
1345 * @access private
1346 */
1347 function replaceInternalLinks( $s ) {
1348 global $wgContLang;
1349 static $fname = 'Parser::replaceInternalLinks' ;
1350
1351 wfProfileIn( $fname );
1352
1353 wfProfileIn( $fname.'-setup' );
1354 static $tc = FALSE;
1355 # the % is needed to support urlencoded titles as well
1356 if ( !$tc ) { $tc = Title::legalChars() . '#%'; }
1357
1358 $sk =& $this->mOptions->getSkin();
1359
1360 #split the entire text string on occurences of [[
1361 $a = explode( '[[', ' ' . $s );
1362 #get the first element (all text up to first [[), and remove the space we added
1363 $s = array_shift( $a );
1364 $s = substr( $s, 1 );
1365
1366 # Match a link having the form [[namespace:link|alternate]]trail
1367 static $e1 = FALSE;
1368 if ( !$e1 ) { $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD"; }
1369 # Match cases where there is no "]]", which might still be images
1370 static $e1_img = FALSE;
1371 if ( !$e1_img ) { $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD"; }
1372 # Match the end of a line for a word that's not followed by whitespace,
1373 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
1374 $e2 = wfMsgForContent( 'linkprefix' );
1375
1376 $useLinkPrefixExtension = $wgContLang->linkPrefixExtension();
1377
1378 if( is_null( $this->mTitle ) ) {
1379 wfDebugDieBacktrace( 'nooo' );
1380 }
1381 $nottalk = !$this->mTitle->isTalkPage();
1382
1383 if ( $useLinkPrefixExtension ) {
1384 if ( preg_match( $e2, $s, $m ) ) {
1385 $first_prefix = $m[2];
1386 } else {
1387 $first_prefix = false;
1388 }
1389 } else {
1390 $prefix = '';
1391 }
1392
1393 $selflink = $this->mTitle->getPrefixedText();
1394 wfProfileOut( $fname.'-setup' );
1395
1396 $checkVariantLink = sizeof($wgContLang->getVariants())>1;
1397 $useSubpages = $this->areSubpagesAllowed();
1398
1399 # Loop for each link
1400 for ($k = 0; isset( $a[$k] ); $k++) {
1401 $line = $a[$k];
1402 if ( $useLinkPrefixExtension ) {
1403 wfProfileIn( $fname.'-prefixhandling' );
1404 if ( preg_match( $e2, $s, $m ) ) {
1405 $prefix = $m[2];
1406 $s = $m[1];
1407 } else {
1408 $prefix='';
1409 }
1410 # first link
1411 if($first_prefix) {
1412 $prefix = $first_prefix;
1413 $first_prefix = false;
1414 }
1415 wfProfileOut( $fname.'-prefixhandling' );
1416 }
1417
1418 $might_be_img = false;
1419
1420 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
1421 $text = $m[2];
1422 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
1423 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
1424 # the real problem is with the $e1 regex
1425 # See bug 1300.
1426 #
1427 # Still some problems for cases where the ] is meant to be outside punctuation,
1428 # and no image is in sight. See bug 2095.
1429 #
1430 if( $text !== '' &&
1431 preg_match( "/^\](.*)/s", $m[3], $n ) &&
1432 strpos($text, '[') !== false
1433 )
1434 {
1435 $text .= ']'; # so that replaceExternalLinks($text) works later
1436 $m[3] = $n[1];
1437 }
1438 # fix up urlencoded title texts
1439 if(preg_match('/%/', $m[1] ))
1440 # Should anchors '#' also be rejected?
1441 $m[1] = str_replace( array('<', '>'), array('&lt;', '&gt;'), urldecode($m[1]) );
1442 $trail = $m[3];
1443 } elseif( preg_match($e1_img, $line, $m) ) { # Invalid, but might be an image with a link in its caption
1444 $might_be_img = true;
1445 $text = $m[2];
1446 if(preg_match('/%/', $m[1] )) $m[1] = urldecode($m[1]);
1447 $trail = "";
1448 } else { # Invalid form; output directly
1449 $s .= $prefix . '[[' . $line ;
1450 continue;
1451 }
1452
1453 # Don't allow internal links to pages containing
1454 # PROTO: where PROTO is a valid URL protocol; these
1455 # should be external links.
1456 if (preg_match('/^(\b(?:' . wfUrlProtocols() . '))/', $m[1])) {
1457 $s .= $prefix . '[[' . $line ;
1458 continue;
1459 }
1460
1461 # Make subpage if necessary
1462 if( $useSubpages ) {
1463 $link = $this->maybeDoSubpageLink( $m[1], $text );
1464 } else {
1465 $link = $m[1];
1466 }
1467
1468 $noforce = (substr($m[1], 0, 1) != ':');
1469 if (!$noforce) {
1470 # Strip off leading ':'
1471 $link = substr($link, 1);
1472 }
1473
1474 $nt = Title::newFromText( $this->unstripNoWiki($link, $this->mStripState) );
1475 if( !$nt ) {
1476 $s .= $prefix . '[[' . $line;
1477 continue;
1478 }
1479
1480 #check other language variants of the link
1481 #if the article does not exist
1482 if( $checkVariantLink
1483 && $nt->getArticleID() == 0 ) {
1484 $wgContLang->findVariantLink($link, $nt);
1485 }
1486
1487 $ns = $nt->getNamespace();
1488 $iw = $nt->getInterWiki();
1489
1490 if ($might_be_img) { # if this is actually an invalid link
1491 if ($ns == NS_IMAGE && $noforce) { #but might be an image
1492 $found = false;
1493 while (isset ($a[$k+1]) ) {
1494 #look at the next 'line' to see if we can close it there
1495 $spliced = array_splice( $a, $k + 1, 1 );
1496 $next_line = array_shift( $spliced );
1497 if( preg_match("/^(.*?]].*?)]](.*)$/sD", $next_line, $m) ) {
1498 # the first ]] closes the inner link, the second the image
1499 $found = true;
1500 $text .= '[[' . $m[1];
1501 $trail = $m[2];
1502 break;
1503 } elseif( preg_match("/^.*?]].*$/sD", $next_line, $m) ) {
1504 #if there's exactly one ]] that's fine, we'll keep looking
1505 $text .= '[[' . $m[0];
1506 } else {
1507 #if $next_line is invalid too, we need look no further
1508 $text .= '[[' . $next_line;
1509 break;
1510 }
1511 }
1512 if ( !$found ) {
1513 # we couldn't find the end of this imageLink, so output it raw
1514 #but don't ignore what might be perfectly normal links in the text we've examined
1515 $text = $this->replaceInternalLinks($text);
1516 $s .= $prefix . '[[' . $link . '|' . $text;
1517 # note: no $trail, because without an end, there *is* no trail
1518 continue;
1519 }
1520 } else { #it's not an image, so output it raw
1521 $s .= $prefix . '[[' . $link . '|' . $text;
1522 # note: no $trail, because without an end, there *is* no trail
1523 continue;
1524 }
1525 }
1526
1527 $wasblank = ( '' == $text );
1528 if( $wasblank ) $text = $link;
1529
1530
1531 # Link not escaped by : , create the various objects
1532 if( $noforce ) {
1533
1534 # Interwikis
1535 if( $iw && $this->mOptions->getInterwikiMagic() && $nottalk && $wgContLang->getLanguageName( $iw ) ) {
1536 $this->mOutput->addLanguageLink( $nt->getFullText() );
1537 $s = rtrim($s . "\n");
1538 $s .= trim($prefix . $trail, "\n") == '' ? '': $prefix . $trail;
1539 continue;
1540 }
1541
1542 if ( $ns == NS_IMAGE ) {
1543 wfProfileIn( "$fname-image" );
1544 if ( !wfIsBadImage( $nt->getDBkey() ) ) {
1545 # recursively parse links inside the image caption
1546 # actually, this will parse them in any other parameters, too,
1547 # but it might be hard to fix that, and it doesn't matter ATM
1548 $text = $this->replaceExternalLinks($text);
1549 $text = $this->replaceInternalLinks($text);
1550
1551 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
1552 $s .= $prefix . $this->armorLinks( $this->makeImage( $nt, $text ) ) . $trail;
1553 $this->mOutput->addImage( $nt->getDBkey() );
1554
1555 wfProfileOut( "$fname-image" );
1556 continue;
1557 }
1558 wfProfileOut( "$fname-image" );
1559
1560 }
1561
1562 if ( $ns == NS_CATEGORY ) {
1563 wfProfileIn( "$fname-category" );
1564 $s = rtrim($s . "\n"); # bug 87
1565
1566 if ( $wasblank ) {
1567 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
1568 $sortkey = $this->mTitle->getText();
1569 } else {
1570 $sortkey = $this->mTitle->getPrefixedText();
1571 }
1572 } else {
1573 $sortkey = $text;
1574 }
1575 $sortkey = Sanitizer::decodeCharReferences( $sortkey );
1576 $sortkey = $wgContLang->convertCategoryKey( $sortkey );
1577 $this->mOutput->addCategory( $nt->getDBkey(), $sortkey );
1578
1579 /**
1580 * Strip the whitespace Category links produce, see bug 87
1581 * @todo We might want to use trim($tmp, "\n") here.
1582 */
1583 $s .= trim($prefix . $trail, "\n") == '' ? '': $prefix . $trail;
1584
1585 wfProfileOut( "$fname-category" );
1586 continue;
1587 }
1588 }
1589
1590 if( ( $nt->getPrefixedText() === $selflink ) &&
1591 ( $nt->getFragment() === '' ) ) {
1592 # Self-links are handled specially; generally de-link and change to bold.
1593 $s .= $prefix . $sk->makeSelfLinkObj( $nt, $text, '', $trail );
1594 continue;
1595 }
1596
1597 # Special and Media are pseudo-namespaces; no pages actually exist in them
1598 if( $ns == NS_MEDIA ) {
1599 $link = $sk->makeMediaLinkObj( $nt, $text );
1600 # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
1601 $s .= $prefix . $this->armorLinks( $link ) . $trail;
1602 $this->mOutput->addImage( $nt->getDBkey() );
1603 continue;
1604 } elseif( $ns == NS_SPECIAL ) {
1605 $s .= $this->makeKnownLinkHolder( $nt, $text, '', $trail, $prefix );
1606 continue;
1607 } elseif( $ns == NS_IMAGE ) {
1608 $img = Image::newFromTitle( $nt );
1609 if( $img->exists() ) {
1610 // Force a blue link if the file exists; may be a remote
1611 // upload on the shared repository, and we want to see its
1612 // auto-generated page.
1613 $s .= $this->makeKnownLinkHolder( $nt, $text, '', $trail, $prefix );
1614 continue;
1615 }
1616 }
1617 $s .= $this->makeLinkHolder( $nt, $text, '', $trail, $prefix );
1618 }
1619 wfProfileOut( $fname );
1620 return $s;
1621 }
1622
1623 /**
1624 * Make a link placeholder. The text returned can be later resolved to a real link with
1625 * replaceLinkHolders(). This is done for two reasons: firstly to avoid further
1626 * parsing of interwiki links, and secondly to allow all extistence checks and
1627 * article length checks (for stub links) to be bundled into a single query.
1628 *
1629 */
1630 function makeLinkHolder( &$nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
1631 if ( ! is_object($nt) ) {
1632 # Fail gracefully
1633 $retVal = "<!-- ERROR -->{$prefix}{$text}{$trail}";
1634 } else {
1635 # Separate the link trail from the rest of the link
1636 list( $inside, $trail ) = Linker::splitTrail( $trail );
1637
1638 if ( $nt->isExternal() ) {
1639 $nr = array_push( $this->mInterwikiLinkHolders['texts'], $prefix.$text.$inside );
1640 $this->mInterwikiLinkHolders['titles'][] = $nt;
1641 $retVal = '<!--IWLINK '. ($nr-1) ."-->{$trail}";
1642 } else {
1643 $nr = array_push( $this->mLinkHolders['namespaces'], $nt->getNamespace() );
1644 $this->mLinkHolders['dbkeys'][] = $nt->getDBkey();
1645 $this->mLinkHolders['queries'][] = $query;
1646 $this->mLinkHolders['texts'][] = $prefix.$text.$inside;
1647 $this->mLinkHolders['titles'][] = $nt;
1648
1649 $retVal = '<!--LINK '. ($nr-1) ."-->{$trail}";
1650 }
1651 }
1652 return $retVal;
1653 }
1654
1655 /**
1656 * Render a forced-blue link inline; protect against double expansion of
1657 * URLs if we're in a mode that prepends full URL prefixes to internal links.
1658 * Since this little disaster has to split off the trail text to avoid
1659 * breaking URLs in the following text without breaking trails on the
1660 * wiki links, it's been made into a horrible function.
1661 *
1662 * @param Title $nt
1663 * @param string $text
1664 * @param string $query
1665 * @param string $trail
1666 * @param string $prefix
1667 * @return string HTML-wikitext mix oh yuck
1668 */
1669 function makeKnownLinkHolder( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
1670 list( $inside, $trail ) = Linker::splitTrail( $trail );
1671 $sk =& $this->mOptions->getSkin();
1672 $link = $sk->makeKnownLinkObj( $nt, $text, $query, $inside, $prefix );
1673 return $this->armorLinks( $link ) . $trail;
1674 }
1675
1676 /**
1677 * Insert a NOPARSE hacky thing into any inline links in a chunk that's
1678 * going to go through further parsing steps before inline URL expansion.
1679 *
1680 * In particular this is important when using action=render, which causes
1681 * full URLs to be included.
1682 *
1683 * Oh man I hate our multi-layer parser!
1684 *
1685 * @param string more-or-less HTML
1686 * @return string less-or-more HTML with NOPARSE bits
1687 */
1688 function armorLinks( $text ) {
1689 return preg_replace( "/\b(" . wfUrlProtocols() . ')/',
1690 "{$this->mUniqPrefix}NOPARSE$1", $text );
1691 }
1692
1693 /**
1694 * Return true if subpage links should be expanded on this page.
1695 * @return bool
1696 */
1697 function areSubpagesAllowed() {
1698 # Some namespaces don't allow subpages
1699 global $wgNamespacesWithSubpages;
1700 return !empty($wgNamespacesWithSubpages[$this->mTitle->getNamespace()]);
1701 }
1702
1703 /**
1704 * Handle link to subpage if necessary
1705 * @param string $target the source of the link
1706 * @param string &$text the link text, modified as necessary
1707 * @return string the full name of the link
1708 * @access private
1709 */
1710 function maybeDoSubpageLink($target, &$text) {
1711 # Valid link forms:
1712 # Foobar -- normal
1713 # :Foobar -- override special treatment of prefix (images, language links)
1714 # /Foobar -- convert to CurrentPage/Foobar
1715 # /Foobar/ -- convert to CurrentPage/Foobar, strip the initial / from text
1716 # ../ -- convert to CurrentPage, from CurrentPage/CurrentSubPage
1717 # ../Foobar -- convert to CurrentPage/Foobar, from CurrentPage/CurrentSubPage
1718
1719 $fname = 'Parser::maybeDoSubpageLink';
1720 wfProfileIn( $fname );
1721 $ret = $target; # default return value is no change
1722
1723 # Some namespaces don't allow subpages,
1724 # so only perform processing if subpages are allowed
1725 if( $this->areSubpagesAllowed() ) {
1726 # Look at the first character
1727 if( $target != '' && $target{0} == '/' ) {
1728 # / at end means we don't want the slash to be shown
1729 if( substr( $target, -1, 1 ) == '/' ) {
1730 $target = substr( $target, 1, -1 );
1731 $noslash = $target;
1732 } else {
1733 $noslash = substr( $target, 1 );
1734 }
1735
1736 $ret = $this->mTitle->getPrefixedText(). '/' . trim($noslash);
1737 if( '' === $text ) {
1738 $text = $target;
1739 } # this might be changed for ugliness reasons
1740 } else {
1741 # check for .. subpage backlinks
1742 $dotdotcount = 0;
1743 $nodotdot = $target;
1744 while( strncmp( $nodotdot, "../", 3 ) == 0 ) {
1745 ++$dotdotcount;
1746 $nodotdot = substr( $nodotdot, 3 );
1747 }
1748 if($dotdotcount > 0) {
1749 $exploded = explode( '/', $this->mTitle->GetPrefixedText() );
1750 if( count( $exploded ) > $dotdotcount ) { # not allowed to go below top level page
1751 $ret = implode( '/', array_slice( $exploded, 0, -$dotdotcount ) );
1752 # / at the end means don't show full path
1753 if( substr( $nodotdot, -1, 1 ) == '/' ) {
1754 $nodotdot = substr( $nodotdot, 0, -1 );
1755 if( '' === $text ) {
1756 $text = $nodotdot;
1757 }
1758 }
1759 $nodotdot = trim( $nodotdot );
1760 if( $nodotdot != '' ) {
1761 $ret .= '/' . $nodotdot;
1762 }
1763 }
1764 }
1765 }
1766 }
1767
1768 wfProfileOut( $fname );
1769 return $ret;
1770 }
1771
1772 /**#@+
1773 * Used by doBlockLevels()
1774 * @access private
1775 */
1776 /* private */ function closeParagraph() {
1777 $result = '';
1778 if ( '' != $this->mLastSection ) {
1779 $result = '</' . $this->mLastSection . ">\n";
1780 }
1781 $this->mInPre = false;
1782 $this->mLastSection = '';
1783 return $result;
1784 }
1785 # getCommon() returns the length of the longest common substring
1786 # of both arguments, starting at the beginning of both.
1787 #
1788 /* private */ function getCommon( $st1, $st2 ) {
1789 $fl = strlen( $st1 );
1790 $shorter = strlen( $st2 );
1791 if ( $fl < $shorter ) { $shorter = $fl; }
1792
1793 for ( $i = 0; $i < $shorter; ++$i ) {
1794 if ( $st1{$i} != $st2{$i} ) { break; }
1795 }
1796 return $i;
1797 }
1798 # These next three functions open, continue, and close the list
1799 # element appropriate to the prefix character passed into them.
1800 #
1801 /* private */ function openList( $char ) {
1802 $result = $this->closeParagraph();
1803
1804 if ( '*' == $char ) { $result .= '<ul><li>'; }
1805 else if ( '#' == $char ) { $result .= '<ol><li>'; }
1806 else if ( ':' == $char ) { $result .= '<dl><dd>'; }
1807 else if ( ';' == $char ) {
1808 $result .= '<dl><dt>';
1809 $this->mDTopen = true;
1810 }
1811 else { $result = '<!-- ERR 1 -->'; }
1812
1813 return $result;
1814 }
1815
1816 /* private */ function nextItem( $char ) {
1817 if ( '*' == $char || '#' == $char ) { return '</li><li>'; }
1818 else if ( ':' == $char || ';' == $char ) {
1819 $close = '</dd>';
1820 if ( $this->mDTopen ) { $close = '</dt>'; }
1821 if ( ';' == $char ) {
1822 $this->mDTopen = true;
1823 return $close . '<dt>';
1824 } else {
1825 $this->mDTopen = false;
1826 return $close . '<dd>';
1827 }
1828 }
1829 return '<!-- ERR 2 -->';
1830 }
1831
1832 /* private */ function closeList( $char ) {
1833 if ( '*' == $char ) { $text = '</li></ul>'; }
1834 else if ( '#' == $char ) { $text = '</li></ol>'; }
1835 else if ( ':' == $char ) {
1836 if ( $this->mDTopen ) {
1837 $this->mDTopen = false;
1838 $text = '</dt></dl>';
1839 } else {
1840 $text = '</dd></dl>';
1841 }
1842 }
1843 else { return '<!-- ERR 3 -->'; }
1844 return $text."\n";
1845 }
1846 /**#@-*/
1847
1848 /**
1849 * Make lists from lines starting with ':', '*', '#', etc.
1850 *
1851 * @access private
1852 * @return string the lists rendered as HTML
1853 */
1854 function doBlockLevels( $text, $linestart ) {
1855 $fname = 'Parser::doBlockLevels';
1856 wfProfileIn( $fname );
1857
1858 # Parsing through the text line by line. The main thing
1859 # happening here is handling of block-level elements p, pre,
1860 # and making lists from lines starting with * # : etc.
1861 #
1862 $textLines = explode( "\n", $text );
1863
1864 $lastPrefix = $output = '';
1865 $this->mDTopen = $inBlockElem = false;
1866 $prefixLength = 0;
1867 $paragraphStack = false;
1868
1869 if ( !$linestart ) {
1870 $output .= array_shift( $textLines );
1871 }
1872 foreach ( $textLines as $oLine ) {
1873 $lastPrefixLength = strlen( $lastPrefix );
1874 $preCloseMatch = preg_match('/<\\/pre/i', $oLine );
1875 $preOpenMatch = preg_match('/<pre/i', $oLine );
1876 if ( !$this->mInPre ) {
1877 # Multiple prefixes may abut each other for nested lists.
1878 $prefixLength = strspn( $oLine, '*#:;' );
1879 $pref = substr( $oLine, 0, $prefixLength );
1880
1881 # eh?
1882 $pref2 = str_replace( ';', ':', $pref );
1883 $t = substr( $oLine, $prefixLength );
1884 $this->mInPre = !empty($preOpenMatch);
1885 } else {
1886 # Don't interpret any other prefixes in preformatted text
1887 $prefixLength = 0;
1888 $pref = $pref2 = '';
1889 $t = $oLine;
1890 }
1891
1892 # List generation
1893 if( $prefixLength && 0 == strcmp( $lastPrefix, $pref2 ) ) {
1894 # Same as the last item, so no need to deal with nesting or opening stuff
1895 $output .= $this->nextItem( substr( $pref, -1 ) );
1896 $paragraphStack = false;
1897
1898 if ( substr( $pref, -1 ) == ';') {
1899 # The one nasty exception: definition lists work like this:
1900 # ; title : definition text
1901 # So we check for : in the remainder text to split up the
1902 # title and definition, without b0rking links.
1903 $term = $t2 = '';
1904 if ($this->findColonNoLinks($t, $term, $t2) !== false) {
1905 $t = $t2;
1906 $output .= $term . $this->nextItem( ':' );
1907 }
1908 }
1909 } elseif( $prefixLength || $lastPrefixLength ) {
1910 # Either open or close a level...
1911 $commonPrefixLength = $this->getCommon( $pref, $lastPrefix );
1912 $paragraphStack = false;
1913
1914 while( $commonPrefixLength < $lastPrefixLength ) {
1915 $output .= $this->closeList( $lastPrefix{$lastPrefixLength-1} );
1916 --$lastPrefixLength;
1917 }
1918 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
1919 $output .= $this->nextItem( $pref{$commonPrefixLength-1} );
1920 }
1921 while ( $prefixLength > $commonPrefixLength ) {
1922 $char = substr( $pref, $commonPrefixLength, 1 );
1923 $output .= $this->openList( $char );
1924
1925 if ( ';' == $char ) {
1926 # FIXME: This is dupe of code above
1927 if ($this->findColonNoLinks($t, $term, $t2) !== false) {
1928 $t = $t2;
1929 $output .= $term . $this->nextItem( ':' );
1930 }
1931 }
1932 ++$commonPrefixLength;
1933 }
1934 $lastPrefix = $pref2;
1935 }
1936 if( 0 == $prefixLength ) {
1937 wfProfileIn( "$fname-paragraph" );
1938 # No prefix (not in list)--go to paragraph mode
1939 // XXX: use a stack for nestable elements like span, table and div
1940 $openmatch = preg_match('/(<table|<blockquote|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|<p|<ul|<li|<\\/tr|<\\/td|<\\/th)/iS', $t );
1941 $closematch = preg_match(
1942 '/(<\\/table|<\\/blockquote|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'.
1943 '<td|<th|<div|<\\/div|<hr|<\\/pre|<\\/p|'.$this->mUniqPrefix.'-pre|<\\/li|<\\/ul)/iS', $t );
1944 if ( $openmatch or $closematch ) {
1945 $paragraphStack = false;
1946 $output .= $this->closeParagraph();
1947 if ( $preOpenMatch and !$preCloseMatch ) {
1948 $this->mInPre = true;
1949 }
1950 if ( $closematch ) {
1951 $inBlockElem = false;
1952 } else {
1953 $inBlockElem = true;
1954 }
1955 } else if ( !$inBlockElem && !$this->mInPre ) {
1956 if ( ' ' == $t{0} and ( $this->mLastSection == 'pre' or trim($t) != '' ) ) {
1957 // pre
1958 if ($this->mLastSection != 'pre') {
1959 $paragraphStack = false;
1960 $output .= $this->closeParagraph().'<pre>';
1961 $this->mLastSection = 'pre';
1962 }
1963 $t = substr( $t, 1 );
1964 } else {
1965 // paragraph
1966 if ( '' == trim($t) ) {
1967 if ( $paragraphStack ) {
1968 $output .= $paragraphStack.'<br />';
1969 $paragraphStack = false;
1970 $this->mLastSection = 'p';
1971 } else {
1972 if ($this->mLastSection != 'p' ) {
1973 $output .= $this->closeParagraph();
1974 $this->mLastSection = '';
1975 $paragraphStack = '<p>';
1976 } else {
1977 $paragraphStack = '</p><p>';
1978 }
1979 }
1980 } else {
1981 if ( $paragraphStack ) {
1982 $output .= $paragraphStack;
1983 $paragraphStack = false;
1984 $this->mLastSection = 'p';
1985 } else if ($this->mLastSection != 'p') {
1986 $output .= $this->closeParagraph().'<p>';
1987 $this->mLastSection = 'p';
1988 }
1989 }
1990 }
1991 }
1992 wfProfileOut( "$fname-paragraph" );
1993 }
1994 // somewhere above we forget to get out of pre block (bug 785)
1995 if($preCloseMatch && $this->mInPre) {
1996 $this->mInPre = false;
1997 }
1998 if ($paragraphStack === false) {
1999 $output .= $t."\n";
2000 }
2001 }
2002 while ( $prefixLength ) {
2003 $output .= $this->closeList( $pref2{$prefixLength-1} );
2004 --$prefixLength;
2005 }
2006 if ( '' != $this->mLastSection ) {
2007 $output .= '</' . $this->mLastSection . '>';
2008 $this->mLastSection = '';
2009 }
2010
2011 wfProfileOut( $fname );
2012 return $output;
2013 }
2014
2015 /**
2016 * Split up a string on ':', ignoring any occurences inside
2017 * <a>..</a> or <span>...</span>
2018 * @param string $str the string to split
2019 * @param string &$before set to everything before the ':'
2020 * @param string &$after set to everything after the ':'
2021 * return string the position of the ':', or false if none found
2022 */
2023 function findColonNoLinks($str, &$before, &$after) {
2024 # I wonder if we should make this count all tags, not just <a>
2025 # and <span>. That would prevent us from matching a ':' that
2026 # comes in the middle of italics other such formatting....
2027 # -- Wil
2028 $fname = 'Parser::findColonNoLinks';
2029 wfProfileIn( $fname );
2030 $pos = 0;
2031 do {
2032 $colon = strpos($str, ':', $pos);
2033
2034 if ($colon !== false) {
2035 $before = substr($str, 0, $colon);
2036 $after = substr($str, $colon + 1);
2037
2038 # Skip any ':' within <a> or <span> pairs
2039 $a = substr_count($before, '<a');
2040 $s = substr_count($before, '<span');
2041 $ca = substr_count($before, '</a>');
2042 $cs = substr_count($before, '</span>');
2043
2044 if ($a <= $ca and $s <= $cs) {
2045 # Tags are balanced before ':'; ok
2046 break;
2047 }
2048 $pos = $colon + 1;
2049 }
2050 } while ($colon !== false);
2051 wfProfileOut( $fname );
2052 return $colon;
2053 }
2054
2055 /**
2056 * Return value of a magic variable (like PAGENAME)
2057 *
2058 * @access private
2059 */
2060 function getVariableValue( $index ) {
2061 global $wgContLang, $wgSitename, $wgServer, $wgServerName, $wgScriptPath;
2062
2063 /**
2064 * Some of these require message or data lookups and can be
2065 * expensive to check many times.
2066 */
2067 static $varCache = array();
2068 if ( wfRunHooks( 'ParserGetVariableValueVarCache', array( &$this, &$varCache ) ) )
2069 if ( isset( $varCache[$index] ) )
2070 return $varCache[$index];
2071
2072 $ts = time();
2073 wfRunHooks( 'ParserGetVariableValueTs', array( &$this, &$ts ) );
2074
2075 switch ( $index ) {
2076 case MAG_CURRENTMONTH:
2077 return $varCache[$index] = $wgContLang->formatNum( date( 'm', $ts ) );
2078 case MAG_CURRENTMONTHNAME:
2079 return $varCache[$index] = $wgContLang->getMonthName( date( 'n', $ts ) );
2080 case MAG_CURRENTMONTHNAMEGEN:
2081 return $varCache[$index] = $wgContLang->getMonthNameGen( date( 'n', $ts ) );
2082 case MAG_CURRENTMONTHABBREV:
2083 return $varCache[$index] = $wgContLang->getMonthAbbreviation( date( 'n', $ts ) );
2084 case MAG_CURRENTDAY:
2085 return $varCache[$index] = $wgContLang->formatNum( date( 'j', $ts ) );
2086 case MAG_CURRENTDAY2:
2087 return $varCache[$index] = $wgContLang->formatNum( date( 'd', $ts ) );
2088 case MAG_PAGENAME:
2089 return $this->mTitle->getText();
2090 case MAG_PAGENAMEE:
2091 return $this->mTitle->getPartialURL();
2092 case MAG_FULLPAGENAME:
2093 return $this->mTitle->getPrefixedText();
2094 case MAG_FULLPAGENAMEE:
2095 return $this->mTitle->getPrefixedURL();
2096 case MAG_SUBPAGENAME:
2097 return $this->mTitle->getSubpageText();
2098 case MAG_SUBPAGENAMEE:
2099 return $this->mTitle->getSubpageUrlForm();
2100 case MAG_TALKPAGENAME:
2101 if( $this->mTitle->canTalk() ) {
2102 $talkPage = $this->mTitle->getTalkPage();
2103 return $talkPage->getPrefixedText();
2104 } else {
2105 return '';
2106 }
2107 case MAG_TALKPAGENAMEE:
2108 if( $this->mTitle->canTalk() ) {
2109 $talkPage = $this->mTitle->getTalkPage();
2110 return $talkPage->getPrefixedUrl();
2111 } else {
2112 return '';
2113 }
2114 case MAG_SUBJECTPAGENAME:
2115 $subjPage = $this->mTitle->getSubjectPage();
2116 return $subjPage->getPrefixedText();
2117 case MAG_SUBJECTPAGENAMEE:
2118 $subjPage = $this->mTitle->getSubjectPage();
2119 return $subjPage->getPrefixedUrl();
2120 case MAG_REVISIONID:
2121 return $this->mRevisionId;
2122 case MAG_NAMESPACE:
2123 return $wgContLang->getNsText( $this->mTitle->getNamespace() );
2124 case MAG_NAMESPACEE:
2125 return wfUrlencode( $wgContLang->getNsText( $this->mTitle->getNamespace() ) );
2126 case MAG_TALKSPACE:
2127 return $this->mTitle->canTalk() ? $this->mTitle->getTalkNsText() : '';
2128 case MAG_TALKSPACEE:
2129 return $this->mTitle->canTalk() ? wfUrlencode( $this->mTitle->getTalkNsText() ) : '';
2130 case MAG_SUBJECTSPACE:
2131 return $this->mTitle->getSubjectNsText();
2132 case MAG_SUBJECTSPACEE:
2133 return( wfUrlencode( $this->mTitle->getSubjectNsText() ) );
2134 case MAG_CURRENTDAYNAME:
2135 return $varCache[$index] = $wgContLang->getWeekdayName( date( 'w', $ts ) + 1 );
2136 case MAG_CURRENTYEAR:
2137 return $varCache[$index] = $wgContLang->formatNum( date( 'Y', $ts ), true );
2138 case MAG_CURRENTTIME:
2139 return $varCache[$index] = $wgContLang->time( wfTimestamp( TS_MW, $ts ), false, false );
2140 case MAG_CURRENTWEEK:
2141 // @bug 4594 PHP5 has it zero padded, PHP4 does not, cast to
2142 // int to remove the padding
2143 return $varCache[$index] = $wgContLang->formatNum( (int)date( 'W', $ts ) );
2144 case MAG_CURRENTDOW:
2145 return $varCache[$index] = $wgContLang->formatNum( date( 'w', $ts ) );
2146 case MAG_NUMBEROFARTICLES:
2147 return $varCache[$index] = $wgContLang->formatNum( wfNumberOfArticles() );
2148 case MAG_NUMBEROFFILES:
2149 return $varCache[$index] = $wgContLang->formatNum( wfNumberOfFiles() );
2150 case MAG_SITENAME:
2151 return $wgSitename;
2152 case MAG_SERVER:
2153 return $wgServer;
2154 case MAG_SERVERNAME:
2155 return $wgServerName;
2156 case MAG_SCRIPTPATH:
2157 return $wgScriptPath;
2158 default:
2159 $ret = null;
2160 if ( wfRunHooks( 'ParserGetVariableValueSwitch', array( &$this, &$varCache, &$index, &$ret ) ) )
2161 return $ret;
2162 else
2163 return null;
2164 }
2165 }
2166
2167 /**
2168 * initialise the magic variables (like CURRENTMONTHNAME)
2169 *
2170 * @access private
2171 */
2172 function initialiseVariables() {
2173 $fname = 'Parser::initialiseVariables';
2174 wfProfileIn( $fname );
2175 global $wgVariableIDs;
2176 $this->mVariables = array();
2177 foreach ( $wgVariableIDs as $id ) {
2178 $mw =& MagicWord::get( $id );
2179 $mw->addToArray( $this->mVariables, $id );
2180 }
2181 wfProfileOut( $fname );
2182 }
2183
2184 /**
2185 * parse any parentheses in format ((title|part|part))
2186 * and call callbacks to get a replacement text for any found piece
2187 *
2188 * @param string $text The text to parse
2189 * @param array $callbacks rules in form:
2190 * '{' => array( # opening parentheses
2191 * 'end' => '}', # closing parentheses
2192 * 'cb' => array(2 => callback, # replacement callback to call if {{..}} is found
2193 * 4 => callback # replacement callback to call if {{{{..}}}} is found
2194 * )
2195 * )
2196 * @access private
2197 */
2198 function replace_callback ($text, $callbacks) {
2199 $openingBraceStack = array(); # this array will hold a stack of parentheses which are not closed yet
2200 $lastOpeningBrace = -1; # last not closed parentheses
2201
2202 for ($i = 0; $i < strlen($text); $i++) {
2203 # check for any opening brace
2204 $rule = null;
2205 $nextPos = -1;
2206 foreach ($callbacks as $key => $value) {
2207 $pos = strpos ($text, $key, $i);
2208 if (false !== $pos && (-1 == $nextPos || $pos < $nextPos)) {
2209 $rule = $value;
2210 $nextPos = $pos;
2211 }
2212 }
2213
2214 if ($lastOpeningBrace >= 0) {
2215 $pos = strpos ($text, $openingBraceStack[$lastOpeningBrace]['braceEnd'], $i);
2216
2217 if (false !== $pos && (-1 == $nextPos || $pos < $nextPos)){
2218 $rule = null;
2219 $nextPos = $pos;
2220 }
2221
2222 $pos = strpos ($text, '|', $i);
2223
2224 if (false !== $pos && (-1 == $nextPos || $pos < $nextPos)){
2225 $rule = null;
2226 $nextPos = $pos;
2227 }
2228 }
2229
2230 if ($nextPos == -1)
2231 break;
2232
2233 $i = $nextPos;
2234
2235 # found openning brace, lets add it to parentheses stack
2236 if (null != $rule) {
2237 $piece = array('brace' => $text[$i],
2238 'braceEnd' => $rule['end'],
2239 'count' => 1,
2240 'title' => '',
2241 'parts' => null);
2242
2243 # count openning brace characters
2244 while ($i+1 < strlen($text) && $text[$i+1] == $piece['brace']) {
2245 $piece['count']++;
2246 $i++;
2247 }
2248
2249 $piece['startAt'] = $i+1;
2250 $piece['partStart'] = $i+1;
2251
2252 # we need to add to stack only if openning brace count is enough for any given rule
2253 foreach ($rule['cb'] as $cnt => $fn) {
2254 if ($piece['count'] >= $cnt) {
2255 $lastOpeningBrace ++;
2256 $openingBraceStack[$lastOpeningBrace] = $piece;
2257 break;
2258 }
2259 }
2260
2261 continue;
2262 }
2263 else if ($lastOpeningBrace >= 0) {
2264 # first check if it is a closing brace
2265 if ($openingBraceStack[$lastOpeningBrace]['braceEnd'] == $text[$i]) {
2266 # lets check if it is enough characters for closing brace
2267 $count = 1;
2268 while ($i+$count < strlen($text) && $text[$i+$count] == $text[$i])
2269 $count++;
2270
2271 # if there are more closing parentheses than opening ones, we parse less
2272 if ($openingBraceStack[$lastOpeningBrace]['count'] < $count)
2273 $count = $openingBraceStack[$lastOpeningBrace]['count'];
2274
2275 # check for maximum matching characters (if there are 5 closing characters, we will probably need only 3 - depending on the rules)
2276 $matchingCount = 0;
2277 $matchingCallback = null;
2278 foreach ($callbacks[$openingBraceStack[$lastOpeningBrace]['brace']]['cb'] as $cnt => $fn) {
2279 if ($count >= $cnt && $matchingCount < $cnt) {
2280 $matchingCount = $cnt;
2281 $matchingCallback = $fn;
2282 }
2283 }
2284
2285 if ($matchingCount == 0) {
2286 $i += $count - 1;
2287 continue;
2288 }
2289
2290 # lets set a title or last part (if '|' was found)
2291 if (null === $openingBraceStack[$lastOpeningBrace]['parts'])
2292 $openingBraceStack[$lastOpeningBrace]['title'] = substr($text, $openingBraceStack[$lastOpeningBrace]['partStart'], $i - $openingBraceStack[$lastOpeningBrace]['partStart']);
2293 else
2294 $openingBraceStack[$lastOpeningBrace]['parts'][] = substr($text, $openingBraceStack[$lastOpeningBrace]['partStart'], $i - $openingBraceStack[$lastOpeningBrace]['partStart']);
2295
2296 $pieceStart = $openingBraceStack[$lastOpeningBrace]['startAt'] - $matchingCount;
2297 $pieceEnd = $i + $matchingCount;
2298
2299 if( is_callable( $matchingCallback ) ) {
2300 $cbArgs = array (
2301 'text' => substr($text, $pieceStart, $pieceEnd - $pieceStart),
2302 'title' => trim($openingBraceStack[$lastOpeningBrace]['title']),
2303 'parts' => $openingBraceStack[$lastOpeningBrace]['parts'],
2304 'lineStart' => (($pieceStart > 0) && ($text[$pieceStart-1] == '\n')),
2305 );
2306 # finally we can call a user callback and replace piece of text
2307 $replaceWith = call_user_func( $matchingCallback, $cbArgs );
2308 $text = substr($text, 0, $pieceStart) . $replaceWith . substr($text, $pieceEnd);
2309 $i = $pieceStart + strlen($replaceWith) - 1;
2310 }
2311 else {
2312 # null value for callback means that parentheses should be parsed, but not replaced
2313 $i += $matchingCount - 1;
2314 }
2315
2316 # reset last openning parentheses, but keep it in case there are unused characters
2317 $piece = array('brace' => $openingBraceStack[$lastOpeningBrace]['brace'],
2318 'braceEnd' => $openingBraceStack[$lastOpeningBrace]['braceEnd'],
2319 'count' => $openingBraceStack[$lastOpeningBrace]['count'],
2320 'title' => '',
2321 'parts' => null,
2322 'startAt' => $openingBraceStack[$lastOpeningBrace]['startAt']);
2323 $openingBraceStack[$lastOpeningBrace--] = null;
2324
2325 if ($matchingCount < $piece['count']) {
2326 $piece['count'] -= $matchingCount;
2327 $piece['startAt'] -= $matchingCount;
2328 $piece['partStart'] = $piece['startAt'];
2329 # do we still qualify for any callback with remaining count?
2330 foreach ($callbacks[$piece['brace']]['cb'] as $cnt => $fn) {
2331 if ($piece['count'] >= $cnt) {
2332 $lastOpeningBrace ++;
2333 $openingBraceStack[$lastOpeningBrace] = $piece;
2334 break;
2335 }
2336 }
2337 }
2338 continue;
2339 }
2340
2341 # lets set a title if it is a first separator, or next part otherwise
2342 if ($text[$i] == '|') {
2343 if (null === $openingBraceStack[$lastOpeningBrace]['parts']) {
2344 $openingBraceStack[$lastOpeningBrace]['title'] = substr($text, $openingBraceStack[$lastOpeningBrace]['partStart'], $i - $openingBraceStack[$lastOpeningBrace]['partStart']);
2345 $openingBraceStack[$lastOpeningBrace]['parts'] = array();
2346 }
2347 else
2348 $openingBraceStack[$lastOpeningBrace]['parts'][] = substr($text, $openingBraceStack[$lastOpeningBrace]['partStart'], $i - $openingBraceStack[$lastOpeningBrace]['partStart']);
2349
2350 $openingBraceStack[$lastOpeningBrace]['partStart'] = $i + 1;
2351 }
2352 }
2353 }
2354
2355 return $text;
2356 }
2357
2358 /**
2359 * Replace magic variables, templates, and template arguments
2360 * with the appropriate text. Templates are substituted recursively,
2361 * taking care to avoid infinite loops.
2362 *
2363 * Note that the substitution depends on value of $mOutputType:
2364 * OT_WIKI: only {{subst:}} templates
2365 * OT_MSG: only magic variables
2366 * OT_HTML: all templates and magic variables
2367 *
2368 * @param string $tex The text to transform
2369 * @param array $args Key-value pairs representing template parameters to substitute
2370 * @param bool $argsOnly Only do argument (triple-brace) expansion, not double-brace expansion
2371 * @access private
2372 */
2373 function replaceVariables( $text, $args = array(), $argsOnly = false ) {
2374 # Prevent too big inclusions
2375 if( strlen( $text ) > MAX_INCLUDE_SIZE ) {
2376 return $text;
2377 }
2378
2379 $fname = 'Parser::replaceVariables';
2380 wfProfileIn( $fname );
2381
2382 # This function is called recursively. To keep track of arguments we need a stack:
2383 array_push( $this->mArgStack, $args );
2384
2385 $braceCallbacks = array();
2386 if ( !$argsOnly ) {
2387 $braceCallbacks[2] = array( &$this, 'braceSubstitution' );
2388 }
2389 if ( $this->mOutputType == OT_HTML || $this->mOutputType == OT_WIKI ) {
2390 $braceCallbacks[3] = array( &$this, 'argSubstitution' );
2391 }
2392 $callbacks = array();
2393 $callbacks['{'] = array('end' => '}', 'cb' => $braceCallbacks);
2394 $callbacks['['] = array('end' => ']', 'cb' => array(2=>null));
2395 $text = $this->replace_callback ($text, $callbacks);
2396
2397 array_pop( $this->mArgStack );
2398
2399 wfProfileOut( $fname );
2400 return $text;
2401 }
2402
2403 /**
2404 * Replace magic variables
2405 * @access private
2406 */
2407 function variableSubstitution( $matches ) {
2408 $fname = 'Parser::variableSubstitution';
2409 $varname = $matches[1];
2410 wfProfileIn( $fname );
2411 if ( !$this->mVariables ) {
2412 $this->initialiseVariables();
2413 }
2414 $skip = false;
2415 if ( $this->mOutputType == OT_WIKI ) {
2416 # Do only magic variables prefixed by SUBST
2417 $mwSubst =& MagicWord::get( MAG_SUBST );
2418 if (!$mwSubst->matchStartAndRemove( $varname ))
2419 $skip = true;
2420 # Note that if we don't substitute the variable below,
2421 # we don't remove the {{subst:}} magic word, in case
2422 # it is a template rather than a magic variable.
2423 }
2424 if ( !$skip && array_key_exists( $varname, $this->mVariables ) ) {
2425 $id = $this->mVariables[$varname];
2426 $text = $this->getVariableValue( $id );
2427 $this->mOutput->mContainsOldMagic = true;
2428 } else {
2429 $text = $matches[0];
2430 }
2431 wfProfileOut( $fname );
2432 return $text;
2433 }
2434
2435 # Split template arguments
2436 function getTemplateArgs( $argsString ) {
2437 if ( $argsString === '' ) {
2438 return array();
2439 }
2440
2441 $args = explode( '|', substr( $argsString, 1 ) );
2442
2443 # If any of the arguments contains a '[[' but no ']]', it needs to be
2444 # merged with the next arg because the '|' character between belongs
2445 # to the link syntax and not the template parameter syntax.
2446 $argc = count($args);
2447
2448 for ( $i = 0; $i < $argc-1; $i++ ) {
2449 if ( substr_count ( $args[$i], '[[' ) != substr_count ( $args[$i], ']]' ) ) {
2450 $args[$i] .= '|'.$args[$i+1];
2451 array_splice($args, $i+1, 1);
2452 $i--;
2453 $argc--;
2454 }
2455 }
2456
2457 return $args;
2458 }
2459
2460 /**
2461 * Return the text of a template, after recursively
2462 * replacing any variables or templates within the template.
2463 *
2464 * @param array $piece The parts of the template
2465 * $piece['text']: matched text
2466 * $piece['title']: the title, i.e. the part before the |
2467 * $piece['parts']: the parameter array
2468 * @return string the text of the template
2469 * @access private
2470 */
2471 function braceSubstitution( $piece ) {
2472 global $wgContLang, $wgAllowDisplayTitle, $action;
2473 $fname = 'Parser::braceSubstitution';
2474 wfProfileIn( $fname );
2475
2476 # Flags
2477 $found = false; # $text has been filled
2478 $nowiki = false; # wiki markup in $text should be escaped
2479 $noparse = false; # Unsafe HTML tags should not be stripped, etc.
2480 $noargs = false; # Don't replace triple-brace arguments in $text
2481 $replaceHeadings = false; # Make the edit section links go to the template not the article
2482 $isHTML = false; # $text is HTML, armour it against wikitext transformation
2483 $forceRawInterwiki = false; # Force interwiki transclusion to be done in raw mode not rendered
2484
2485 # Title object, where $text came from
2486 $title = NULL;
2487
2488 $linestart = '';
2489
2490 # $part1 is the bit before the first |, and must contain only title characters
2491 # $args is a list of arguments, starting from index 0, not including $part1
2492
2493 $part1 = $piece['title'];
2494 # If the third subpattern matched anything, it will start with |
2495
2496 if (null == $piece['parts']) {
2497 $replaceWith = $this->variableSubstitution (array ($piece['text'], $piece['title']));
2498 if ($replaceWith != $piece['text']) {
2499 $text = $replaceWith;
2500 $found = true;
2501 $noparse = true;
2502 $noargs = true;
2503 }
2504 }
2505
2506 $args = (null == $piece['parts']) ? array() : $piece['parts'];
2507 $argc = count( $args );
2508
2509 # SUBST
2510 if ( !$found ) {
2511 $mwSubst =& MagicWord::get( MAG_SUBST );
2512 if ( $mwSubst->matchStartAndRemove( $part1 ) xor ($this->mOutputType == OT_WIKI) ) {
2513 # One of two possibilities is true:
2514 # 1) Found SUBST but not in the PST phase
2515 # 2) Didn't find SUBST and in the PST phase
2516 # In either case, return without further processing
2517 $text = $piece['text'];
2518 $found = true;
2519 $noparse = true;
2520 $noargs = true;
2521 }
2522 }
2523
2524 # MSG, MSGNW, INT and RAW
2525 if ( !$found ) {
2526 # Check for MSGNW:
2527 $mwMsgnw =& MagicWord::get( MAG_MSGNW );
2528 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
2529 $nowiki = true;
2530 } else {
2531 # Remove obsolete MSG:
2532 $mwMsg =& MagicWord::get( MAG_MSG );
2533 $mwMsg->matchStartAndRemove( $part1 );
2534 }
2535
2536 # Check for RAW:
2537 $mwRaw =& MagicWord::get( MAG_RAW );
2538 if ( $mwRaw->matchStartAndRemove( $part1 ) ) {
2539 $forceRawInterwiki = true;
2540 }
2541
2542 # Check if it is an internal message
2543 $mwInt =& MagicWord::get( MAG_INT );
2544 if ( $mwInt->matchStartAndRemove( $part1 ) ) {
2545 if ( $this->incrementIncludeCount( 'int:'.$part1 ) ) {
2546 $text = $linestart . wfMsgReal( $part1, $args, true );
2547 $found = true;
2548 }
2549 }
2550 }
2551
2552 # NS
2553 if ( !$found ) {
2554 # Check for NS: (namespace expansion)
2555 $mwNs = MagicWord::get( MAG_NS );
2556 if ( $mwNs->matchStartAndRemove( $part1 ) ) {
2557 if ( intval( $part1 ) || $part1 == "0" ) {
2558 $text = $linestart . $wgContLang->getNsText( intval( $part1 ) );
2559 $found = true;
2560 } else {
2561 $index = Namespace::getCanonicalIndex( strtolower( $part1 ) );
2562 if ( !is_null( $index ) ) {
2563 $text = $linestart . $wgContLang->getNsText( $index );
2564 $found = true;
2565 }
2566 }
2567 }
2568 }
2569
2570 # LCFIRST, UCFIRST, LC and UC
2571 if ( !$found ) {
2572 $lcfirst =& MagicWord::get( MAG_LCFIRST );
2573 $ucfirst =& MagicWord::get( MAG_UCFIRST );
2574 $lc =& MagicWord::get( MAG_LC );
2575 $uc =& MagicWord::get( MAG_UC );
2576 if ( $lcfirst->matchStartAndRemove( $part1 ) ) {
2577 $text = $linestart . $wgContLang->lcfirst( $part1 );
2578 $found = true;
2579 } else if ( $ucfirst->matchStartAndRemove( $part1 ) ) {
2580 $text = $linestart . $wgContLang->ucfirst( $part1 );
2581 $found = true;
2582 } else if ( $lc->matchStartAndRemove( $part1 ) ) {
2583 $text = $linestart . $wgContLang->lc( $part1 );
2584 $found = true;
2585 } else if ( $uc->matchStartAndRemove( $part1 ) ) {
2586 $text = $linestart . $wgContLang->uc( $part1 );
2587 $found = true;
2588 }
2589 }
2590
2591 # LOCALURL and FULLURL
2592 if ( !$found ) {
2593 $mwLocal =& MagicWord::get( MAG_LOCALURL );
2594 $mwLocalE =& MagicWord::get( MAG_LOCALURLE );
2595 $mwFull =& MagicWord::get( MAG_FULLURL );
2596 $mwFullE =& MagicWord::get( MAG_FULLURLE );
2597
2598
2599 if ( $mwLocal->matchStartAndRemove( $part1 ) ) {
2600 $func = 'getLocalURL';
2601 } elseif ( $mwLocalE->matchStartAndRemove( $part1 ) ) {
2602 $func = 'escapeLocalURL';
2603 } elseif ( $mwFull->matchStartAndRemove( $part1 ) ) {
2604 $func = 'getFullURL';
2605 } elseif ( $mwFullE->matchStartAndRemove( $part1 ) ) {
2606 $func = 'escapeFullURL';
2607 } else {
2608 $func = false;
2609 }
2610
2611 if ( $func !== false ) {
2612 $title = Title::newFromText( $part1 );
2613 if ( !is_null( $title ) ) {
2614 if ( $argc > 0 ) {
2615 $text = $linestart . $title->$func( $args[0] );
2616 } else {
2617 $text = $linestart . $title->$func();
2618 }
2619 $found = true;
2620 }
2621 }
2622 }
2623
2624 # GRAMMAR
2625 if ( !$found && $argc == 1 ) {
2626 $mwGrammar =& MagicWord::get( MAG_GRAMMAR );
2627 if ( $mwGrammar->matchStartAndRemove( $part1 ) ) {
2628 $text = $linestart . $wgContLang->convertGrammar( $args[0], $part1 );
2629 $found = true;
2630 }
2631 }
2632
2633 # PLURAL
2634 if ( !$found && $argc >= 2 ) {
2635 $mwPluralForm =& MagicWord::get( MAG_PLURAL );
2636 if ( $mwPluralForm->matchStartAndRemove( $part1 ) ) {
2637 if ($argc==2) {$args[2]=$args[1];}
2638 $text = $linestart . $wgContLang->convertPlural( $part1, $args[0], $args[1], $args[2]);
2639 $found = true;
2640 }
2641 }
2642
2643 # DISPLAYTITLE
2644 if ( !$found && $argc == 1 && $wgAllowDisplayTitle && $action == "view" ) {
2645 $mwDT =& MagicWord::get( MAG_DISPLAYTITLE );
2646 if ( $mwDT->matchStartAndRemove( $part1 ) ) {
2647 global $wgOut;
2648
2649 # Only the first one counts...
2650 if ( $wgOut->mPageLinkTitle == "" ) {
2651 $param = $args[0];
2652 $parserOptions = new ParserOptions;
2653 $local_parser = new Parser ();
2654 $t2 = $local_parser->parse ( $param, $this->mTitle, $parserOptions, false );
2655 $wgOut->mPageLinkTitle = $wgOut->getPageTitle();
2656 $wgOut->mPagetitle = $t2->GetText();
2657
2658 # Add subtitle
2659 $t = $this->mTitle->getPrefixedText();
2660 $st = trim ( $wgOut->getSubtitle () );
2661 if ( $st != "" ) $st .= " ";
2662 $st .= wfMsg('displaytitle', $t);
2663 $wgOut->setSubtitle ( $st );
2664 }
2665 $text = "" ;
2666 $found = true ;
2667 }
2668 }
2669
2670 # Extensions
2671 if ( !$found && substr( $part1, 0, 1 ) == '#' ) {
2672 $colonPos = strpos( $part1, ':' );
2673 if ( $colonPos !== false ) {
2674 $function = strtolower( substr( $part1, 1, $colonPos - 1 ) );
2675 if ( isset( $this->mFunctionHooks[$function] ) ) {
2676 $funcArgs = array_merge( array( &$this, substr( $part1, $colonPos + 1 ) ), $args );
2677 $result = call_user_func_array( $this->mFunctionHooks[$function], $funcArgs );
2678 $found = true;
2679 if ( is_array( $result ) ) {
2680 $text = $linestart . $result[0];
2681 unset( $result[0] );
2682
2683 // Extract flags into the local scope
2684 // This allows callers to set flags such as nowiki, noparse, found, etc.
2685 extract( $result );
2686 } else {
2687 $text = $linestart . $result;
2688 }
2689 }
2690 }
2691 }
2692
2693 # Template table test
2694
2695 # Did we encounter this template already? If yes, it is in the cache
2696 # and we need to check for loops.
2697 if ( !$found && isset( $this->mTemplates[$piece['title']] ) ) {
2698 $found = true;
2699
2700 # Infinite loop test
2701 if ( isset( $this->mTemplatePath[$part1] ) ) {
2702 $noparse = true;
2703 $noargs = true;
2704 $found = true;
2705 $text = $linestart .
2706 '{{' . $part1 . '}}' .
2707 '<!-- WARNING: template loop detected -->';
2708 wfDebug( "$fname: template loop broken at '$part1'\n" );
2709 } else {
2710 # set $text to cached message.
2711 $text = $linestart . $this->mTemplates[$piece['title']];
2712 }
2713 }
2714
2715 # Load from database
2716 $lastPathLevel = $this->mTemplatePath;
2717 if ( !$found ) {
2718 $ns = NS_TEMPLATE;
2719 # declaring $subpage directly in the function call
2720 # does not work correctly with references and breaks
2721 # {{/subpage}}-style inclusions
2722 $subpage = '';
2723 $part1 = $this->maybeDoSubpageLink( $part1, $subpage );
2724 if ($subpage !== '') {
2725 $ns = $this->mTitle->getNamespace();
2726 }
2727 $title = Title::newFromText( $part1, $ns );
2728
2729 if ( !is_null( $title ) ) {
2730 if ( !$title->isExternal() ) {
2731 # Check for excessive inclusion
2732 $dbk = $title->getPrefixedDBkey();
2733 if ( $this->incrementIncludeCount( $dbk ) ) {
2734 if ( $title->getNamespace() == NS_SPECIAL && $this->mOptions->getAllowSpecialInclusion() ) {
2735 # Capture special page output
2736 $text = SpecialPage::capturePath( $title );
2737 if ( is_string( $text ) ) {
2738 $found = true;
2739 $noparse = true;
2740 $noargs = true;
2741 $isHTML = true;
2742 $this->disableCache();
2743 }
2744 } else {
2745 $articleContent = $this->fetchTemplate( $title );
2746 if ( $articleContent !== false ) {
2747 $found = true;
2748 $text = $articleContent;
2749 $replaceHeadings = true;
2750 }
2751 }
2752 }
2753
2754 # If the title is valid but undisplayable, make a link to it
2755 if ( $this->mOutputType == OT_HTML && !$found ) {
2756 $text = '[['.$title->getPrefixedText().']]';
2757 $found = true;
2758 }
2759 } elseif ( $title->isTrans() ) {
2760 // Interwiki transclusion
2761 if ( $this->mOutputType == OT_HTML && !$forceRawInterwiki ) {
2762 $text = $this->interwikiTransclude( $title, 'render' );
2763 $isHTML = true;
2764 $noparse = true;
2765 } else {
2766 $text = $this->interwikiTransclude( $title, 'raw' );
2767 $replaceHeadings = true;
2768 }
2769 $found = true;
2770 }
2771
2772 # Template cache array insertion
2773 # Use the original $piece['title'] not the mangled $part1, so that
2774 # modifiers such as RAW: produce separate cache entries
2775 if( $found ) {
2776 $this->mTemplates[$piece['title']] = $text;
2777 $text = $linestart . $text;
2778 }
2779 }
2780 }
2781
2782 # Recursive parsing, escaping and link table handling
2783 # Only for HTML output
2784 if ( $nowiki && $found && $this->mOutputType == OT_HTML ) {
2785 $text = wfEscapeWikiText( $text );
2786 } elseif ( ($this->mOutputType == OT_HTML || $this->mOutputType == OT_WIKI) && $found ) {
2787 if ( !$noargs ) {
2788 # Clean up argument array
2789 $assocArgs = array();
2790 $index = 1;
2791 foreach( $args as $arg ) {
2792 $eqpos = strpos( $arg, '=' );
2793 if ( $eqpos === false ) {
2794 $assocArgs[$index++] = $arg;
2795 } else {
2796 $name = trim( substr( $arg, 0, $eqpos ) );
2797 $value = trim( substr( $arg, $eqpos+1 ) );
2798 if ( $value === false ) {
2799 $value = '';
2800 }
2801 if ( $name !== false ) {
2802 $assocArgs[$name] = $value;
2803 }
2804 }
2805 }
2806
2807 # Add a new element to the templace recursion path
2808 $this->mTemplatePath[$part1] = 1;
2809 }
2810
2811 if ( !$noparse ) {
2812 # If there are any <onlyinclude> tags, only include them
2813 if ( in_string( '<onlyinclude>', $text ) && in_string( '</onlyinclude>', $text ) ) {
2814 preg_match_all( '/<onlyinclude>(.*?)\n?<\/onlyinclude>/s', $text, $m );
2815 $text = '';
2816 foreach ($m[1] as $piece)
2817 $text .= $piece;
2818 }
2819 # Remove <noinclude> sections and <includeonly> tags
2820 $text = preg_replace( '/<noinclude>.*?<\/noinclude>/s', '', $text );
2821 $text = strtr( $text, array( '<includeonly>' => '' , '</includeonly>' => '' ) );
2822
2823 if( $this->mOutputType == OT_HTML ) {
2824 # Strip <nowiki>, <pre>, etc.
2825 $text = $this->strip( $text, $this->mStripState );
2826 $text = Sanitizer::removeHTMLtags( $text, array( &$this, 'replaceVariables' ), $assocArgs );
2827 }
2828 $text = $this->replaceVariables( $text, $assocArgs );
2829
2830 # If the template begins with a table or block-level
2831 # element, it should be treated as beginning a new line.
2832 if (!$piece['lineStart'] && preg_match('/^({\\||:|;|#|\*)/', $text)) {
2833 $text = "\n" . $text;
2834 }
2835 } elseif ( !$noargs ) {
2836 # $noparse and !$noargs
2837 # Just replace the arguments, not any double-brace items
2838 # This is used for rendered interwiki transclusion
2839 $text = $this->replaceVariables( $text, $assocArgs, true );
2840 }
2841 }
2842 # Prune lower levels off the recursion check path
2843 $this->mTemplatePath = $lastPathLevel;
2844
2845 if ( !$found ) {
2846 wfProfileOut( $fname );
2847 return $piece['text'];
2848 } else {
2849 if ( $isHTML ) {
2850 # Replace raw HTML by a placeholder
2851 # Add a blank line preceding, to prevent it from mucking up
2852 # immediately preceding headings
2853 $text = "\n\n" . $this->insertStripItem( $text, $this->mStripState );
2854 } else {
2855 # replace ==section headers==
2856 # XXX this needs to go away once we have a better parser.
2857 if ( $this->mOutputType != OT_WIKI && $replaceHeadings ) {
2858 if( !is_null( $title ) )
2859 $encodedname = base64_encode($title->getPrefixedDBkey());
2860 else
2861 $encodedname = base64_encode("");
2862 $m = preg_split('/(^={1,6}.*?={1,6}\s*?$)/m', $text, -1,
2863 PREG_SPLIT_DELIM_CAPTURE);
2864 $text = '';
2865 $nsec = 0;
2866 for( $i = 0; $i < count($m); $i += 2 ) {
2867 $text .= $m[$i];
2868 if (!isset($m[$i + 1]) || $m[$i + 1] == "") continue;
2869 $hl = $m[$i + 1];
2870 if( strstr($hl, "<!--MWTEMPLATESECTION") ) {
2871 $text .= $hl;
2872 continue;
2873 }
2874 preg_match('/^(={1,6})(.*?)(={1,6})\s*?$/m', $hl, $m2);
2875 $text .= $m2[1] . $m2[2] . "<!--MWTEMPLATESECTION="
2876 . $encodedname . "&" . base64_encode("$nsec") . "-->" . $m2[3];
2877
2878 $nsec++;
2879 }
2880 }
2881 }
2882 }
2883
2884 # Prune lower levels off the recursion check path
2885 $this->mTemplatePath = $lastPathLevel;
2886
2887 if ( !$found ) {
2888 wfProfileOut( $fname );
2889 return $piece['text'];
2890 } else {
2891 wfProfileOut( $fname );
2892 return $text;
2893 }
2894 }
2895
2896 /**
2897 * Fetch the unparsed text of a template and register a reference to it.
2898 */
2899 function fetchTemplate( $title ) {
2900 $text = false;
2901 // Loop to fetch the article, with up to 1 redirect
2902 for ( $i = 0; $i < 2 && is_object( $title ); $i++ ) {
2903 $rev = Revision::newFromTitle( $title );
2904 $this->mOutput->addTemplate( $title, $title->getArticleID() );
2905 if ( !$rev ) {
2906 break;
2907 }
2908 $text = $rev->getText();
2909 if ( $text === false ) {
2910 break;
2911 }
2912 // Redirect?
2913 $title = Title::newFromRedirect( $text );
2914 }
2915 return $text;
2916 }
2917
2918 /**
2919 * Transclude an interwiki link.
2920 */
2921 function interwikiTransclude( $title, $action ) {
2922 global $wgEnableScaryTranscluding, $wgCanonicalNamespaceNames;
2923
2924 if (!$wgEnableScaryTranscluding)
2925 return wfMsg('scarytranscludedisabled');
2926
2927 // The namespace will actually only be 0 or 10, depending on whether there was a leading :
2928 // But we'll handle it generally anyway
2929 if ( $title->getNamespace() ) {
2930 // Use the canonical namespace, which should work anywhere
2931 $articleName = $wgCanonicalNamespaceNames[$title->getNamespace()] . ':' . $title->getDBkey();
2932 } else {
2933 $articleName = $title->getDBkey();
2934 }
2935
2936 $url = str_replace('$1', urlencode($articleName), Title::getInterwikiLink($title->getInterwiki()));
2937 $url .= "?action=$action";
2938 if (strlen($url) > 255)
2939 return wfMsg('scarytranscludetoolong');
2940 return $this->fetchScaryTemplateMaybeFromCache($url);
2941 }
2942
2943 function fetchScaryTemplateMaybeFromCache($url) {
2944 global $wgTranscludeCacheExpiry;
2945 $dbr =& wfGetDB(DB_SLAVE);
2946 $obj = $dbr->selectRow('transcache', array('tc_time', 'tc_contents'),
2947 array('tc_url' => $url));
2948 if ($obj) {
2949 $time = $obj->tc_time;
2950 $text = $obj->tc_contents;
2951 if ($time && time() < $time + $wgTranscludeCacheExpiry ) {
2952 return $text;
2953 }
2954 }
2955
2956 $text = wfGetHTTP($url);
2957 if (!$text)
2958 return wfMsg('scarytranscludefailed', $url);
2959
2960 $dbw =& wfGetDB(DB_MASTER);
2961 $dbw->replace('transcache', array('tc_url'), array(
2962 'tc_url' => $url,
2963 'tc_time' => time(),
2964 'tc_contents' => $text));
2965 return $text;
2966 }
2967
2968
2969 /**
2970 * Triple brace replacement -- used for template arguments
2971 * @access private
2972 */
2973 function argSubstitution( $matches ) {
2974 $arg = trim( $matches['title'] );
2975 $text = $matches['text'];
2976 $inputArgs = end( $this->mArgStack );
2977
2978 if ( array_key_exists( $arg, $inputArgs ) ) {
2979 $text = $inputArgs[$arg];
2980 } else if ($this->mOutputType == OT_HTML && null != $matches['parts'] && count($matches['parts']) > 0) {
2981 $text = $matches['parts'][0];
2982 }
2983
2984 return $text;
2985 }
2986
2987 /**
2988 * Returns true if the function is allowed to include this entity
2989 * @access private
2990 */
2991 function incrementIncludeCount( $dbk ) {
2992 if ( !array_key_exists( $dbk, $this->mIncludeCount ) ) {
2993 $this->mIncludeCount[$dbk] = 0;
2994 }
2995 if ( ++$this->mIncludeCount[$dbk] <= MAX_INCLUDE_REPEAT ) {
2996 return true;
2997 } else {
2998 return false;
2999 }
3000 }
3001
3002 /**
3003 * This function accomplishes several tasks:
3004 * 1) Auto-number headings if that option is enabled
3005 * 2) Add an [edit] link to sections for logged in users who have enabled the option
3006 * 3) Add a Table of contents on the top for users who have enabled the option
3007 * 4) Auto-anchor headings
3008 *
3009 * It loops through all headlines, collects the necessary data, then splits up the
3010 * string and re-inserts the newly formatted headlines.
3011 *
3012 * @param string $text
3013 * @param boolean $isMain
3014 * @access private
3015 */
3016 function formatHeadings( $text, $isMain=true ) {
3017 global $wgMaxTocLevel, $wgContLang;
3018
3019 $doNumberHeadings = $this->mOptions->getNumberHeadings();
3020 $doShowToc = true;
3021 $forceTocHere = false;
3022 if( !$this->mTitle->userCanEdit() ) {
3023 $showEditLink = 0;
3024 } else {
3025 $showEditLink = $this->mOptions->getEditSection();
3026 }
3027
3028 # Inhibit editsection links if requested in the page
3029 $esw =& MagicWord::get( MAG_NOEDITSECTION );
3030 if( $esw->matchAndRemove( $text ) ) {
3031 $showEditLink = 0;
3032 }
3033 # if the string __NOTOC__ (not case-sensitive) occurs in the HTML,
3034 # do not add TOC
3035 $mw =& MagicWord::get( MAG_NOTOC );
3036 if( $mw->matchAndRemove( $text ) ) {
3037 $doShowToc = false;
3038 }
3039
3040 # Get all headlines for numbering them and adding funky stuff like [edit]
3041 # links - this is for later, but we need the number of headlines right now
3042 $numMatches = preg_match_all( '/<H([1-6])(.*?'.'>)(.*?)<\/H[1-6] *>/i', $text, $matches );
3043
3044 # if there are fewer than 4 headlines in the article, do not show TOC
3045 if( $numMatches < 4 ) {
3046 $doShowToc = false;
3047 }
3048
3049 # if the string __TOC__ (not case-sensitive) occurs in the HTML,
3050 # override above conditions and always show TOC at that place
3051
3052 $mw =& MagicWord::get( MAG_TOC );
3053 if($mw->match( $text ) ) {
3054 $doShowToc = true;
3055 $forceTocHere = true;
3056 } else {
3057 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
3058 # override above conditions and always show TOC above first header
3059 $mw =& MagicWord::get( MAG_FORCETOC );
3060 if ($mw->matchAndRemove( $text ) ) {
3061 $doShowToc = true;
3062 }
3063 }
3064
3065 # Never ever show TOC if no headers
3066 if( $numMatches < 1 ) {
3067 $doShowToc = false;
3068 }
3069
3070 # We need this to perform operations on the HTML
3071 $sk =& $this->mOptions->getSkin();
3072
3073 # headline counter
3074 $headlineCount = 0;
3075 $sectionCount = 0; # headlineCount excluding template sections
3076
3077 # Ugh .. the TOC should have neat indentation levels which can be
3078 # passed to the skin functions. These are determined here
3079 $toc = '';
3080 $full = '';
3081 $head = array();
3082 $sublevelCount = array();
3083 $levelCount = array();
3084 $toclevel = 0;
3085 $level = 0;
3086 $prevlevel = 0;
3087 $toclevel = 0;
3088 $prevtoclevel = 0;
3089
3090 foreach( $matches[3] as $headline ) {
3091 $istemplate = 0;
3092 $templatetitle = '';
3093 $templatesection = 0;
3094 $numbering = '';
3095
3096 if (preg_match("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", $headline, $mat)) {
3097 $istemplate = 1;
3098 $templatetitle = base64_decode($mat[1]);
3099 $templatesection = 1 + (int)base64_decode($mat[2]);
3100 $headline = preg_replace("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", "", $headline);
3101 }
3102
3103 if( $toclevel ) {
3104 $prevlevel = $level;
3105 $prevtoclevel = $toclevel;
3106 }
3107 $level = $matches[1][$headlineCount];
3108
3109 if( $doNumberHeadings || $doShowToc ) {
3110
3111 if ( $level > $prevlevel ) {
3112 # Increase TOC level
3113 $toclevel++;
3114 $sublevelCount[$toclevel] = 0;
3115 $toc .= $sk->tocIndent();
3116 }
3117 elseif ( $level < $prevlevel && $toclevel > 1 ) {
3118 # Decrease TOC level, find level to jump to
3119
3120 if ( $toclevel == 2 && $level <= $levelCount[1] ) {
3121 # Can only go down to level 1
3122 $toclevel = 1;
3123 } else {
3124 for ($i = $toclevel; $i > 0; $i--) {
3125 if ( $levelCount[$i] == $level ) {
3126 # Found last matching level
3127 $toclevel = $i;
3128 break;
3129 }
3130 elseif ( $levelCount[$i] < $level ) {
3131 # Found first matching level below current level
3132 $toclevel = $i + 1;
3133 break;
3134 }
3135 }
3136 }
3137
3138 $toc .= $sk->tocUnindent( $prevtoclevel - $toclevel );
3139 }
3140 else {
3141 # No change in level, end TOC line
3142 $toc .= $sk->tocLineEnd();
3143 }
3144
3145 $levelCount[$toclevel] = $level;
3146
3147 # count number of headlines for each level
3148 @$sublevelCount[$toclevel]++;
3149 $dot = 0;
3150 for( $i = 1; $i <= $toclevel; $i++ ) {
3151 if( !empty( $sublevelCount[$i] ) ) {
3152 if( $dot ) {
3153 $numbering .= '.';
3154 }
3155 $numbering .= $wgContLang->formatNum( $sublevelCount[$i] );
3156 $dot = 1;
3157 }
3158 }
3159 }
3160
3161 # The canonized header is a version of the header text safe to use for links
3162 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
3163 $canonized_headline = $this->unstrip( $headline, $this->mStripState );
3164 $canonized_headline = $this->unstripNoWiki( $canonized_headline, $this->mStripState );
3165
3166 # Remove link placeholders by the link text.
3167 # <!--LINK number-->
3168 # turns into
3169 # link text with suffix
3170 $canonized_headline = preg_replace( '/<!--LINK ([0-9]*)-->/e',
3171 "\$this->mLinkHolders['texts'][\$1]",
3172 $canonized_headline );
3173 $canonized_headline = preg_replace( '/<!--IWLINK ([0-9]*)-->/e',
3174 "\$this->mInterwikiLinkHolders['texts'][\$1]",
3175 $canonized_headline );
3176
3177 # strip out HTML
3178 $canonized_headline = preg_replace( '/<.*?' . '>/','',$canonized_headline );
3179 $tocline = trim( $canonized_headline );
3180 # Save headline for section edit hint before it's escaped
3181 $headline_hint = trim( $canonized_headline );
3182 $canonized_headline = Sanitizer::escapeId( $tocline );
3183 $refers[$headlineCount] = $canonized_headline;
3184
3185 # count how many in assoc. array so we can track dupes in anchors
3186 @$refers[$canonized_headline]++;
3187 $refcount[$headlineCount]=$refers[$canonized_headline];
3188
3189 # Don't number the heading if it is the only one (looks silly)
3190 if( $doNumberHeadings && count( $matches[3] ) > 1) {
3191 # the two are different if the line contains a link
3192 $headline=$numbering . ' ' . $headline;
3193 }
3194
3195 # Create the anchor for linking from the TOC to the section
3196 $anchor = $canonized_headline;
3197 if($refcount[$headlineCount] > 1 ) {
3198 $anchor .= '_' . $refcount[$headlineCount];
3199 }
3200 if( $doShowToc && ( !isset($wgMaxTocLevel) || $toclevel<$wgMaxTocLevel ) ) {
3201 $toc .= $sk->tocLine($anchor, $tocline, $numbering, $toclevel);
3202 }
3203 if( $showEditLink && ( !$istemplate || $templatetitle !== "" ) ) {
3204 if ( empty( $head[$headlineCount] ) ) {
3205 $head[$headlineCount] = '';
3206 }
3207 if( $istemplate )
3208 $head[$headlineCount] .= $sk->editSectionLinkForOther($templatetitle, $templatesection);
3209 else
3210 $head[$headlineCount] .= $sk->editSectionLink($this->mTitle, $sectionCount+1, $headline_hint);
3211 }
3212
3213 # give headline the correct <h#> tag
3214 @$head[$headlineCount] .= "<a name=\"$anchor\"></a><h".$level.$matches[2][$headlineCount] .$headline.'</h'.$level.'>';
3215
3216 $headlineCount++;
3217 if( !$istemplate )
3218 $sectionCount++;
3219 }
3220
3221 if( $doShowToc ) {
3222 $toc .= $sk->tocUnindent( $toclevel - 1 );
3223 $toc = $sk->tocList( $toc );
3224 }
3225
3226 # split up and insert constructed headlines
3227
3228 $blocks = preg_split( '/<H[1-6].*?' . '>.*?<\/H[1-6]>/i', $text );
3229 $i = 0;
3230
3231 foreach( $blocks as $block ) {
3232 if( $showEditLink && $headlineCount > 0 && $i == 0 && $block != "\n" ) {
3233 # This is the [edit] link that appears for the top block of text when
3234 # section editing is enabled
3235
3236 # Disabled because it broke block formatting
3237 # For example, a bullet point in the top line
3238 # $full .= $sk->editSectionLink(0);
3239 }
3240 $full .= $block;
3241 if( $doShowToc && !$i && $isMain && !$forceTocHere) {
3242 # Top anchor now in skin
3243 $full = $full.$toc;
3244 }
3245
3246 if( !empty( $head[$i] ) ) {
3247 $full .= $head[$i];
3248 }
3249 $i++;
3250 }
3251 if($forceTocHere) {
3252 $mw =& MagicWord::get( MAG_TOC );
3253 return $mw->replace( $toc, $full );
3254 } else {
3255 return $full;
3256 }
3257 }
3258
3259 /**
3260 * Return an HTML link for the "ISBN 123456" text
3261 * @access private
3262 */
3263 function magicISBN( $text ) {
3264 $fname = 'Parser::magicISBN';
3265 wfProfileIn( $fname );
3266
3267 $a = split( 'ISBN ', ' '.$text );
3268 if ( count ( $a ) < 2 ) {
3269 wfProfileOut( $fname );
3270 return $text;
3271 }
3272 $text = substr( array_shift( $a ), 1);
3273 $valid = '0123456789-Xx';
3274
3275 foreach ( $a as $x ) {
3276 # hack: don't replace inside thumbnail title/alt
3277 # attributes
3278 if(preg_match('/<[^>]+(alt|title)="[^">]*$/', $text)) {
3279 $text .= "ISBN $x";
3280 continue;
3281 }
3282
3283 $isbn = $blank = '' ;
3284 while ( ' ' == $x{0} ) {
3285 $blank .= ' ';
3286 $x = substr( $x, 1 );
3287 }
3288 if ( $x == '' ) { # blank isbn
3289 $text .= "ISBN $blank";
3290 continue;
3291 }
3292 while ( strstr( $valid, $x{0} ) != false ) {
3293 $isbn .= $x{0};
3294 $x = substr( $x, 1 );
3295 }
3296 $num = str_replace( '-', '', $isbn );
3297 $num = str_replace( ' ', '', $num );
3298 $num = str_replace( 'x', 'X', $num );
3299
3300 if ( '' == $num ) {
3301 $text .= "ISBN $blank$x";
3302 } else {
3303 $titleObj = Title::makeTitle( NS_SPECIAL, 'Booksources' );
3304 $text .= '<a href="' .
3305 $titleObj->escapeLocalUrl( 'isbn='.$num ) .
3306 "\" class=\"internal\">ISBN $isbn</a>";
3307 $text .= $x;
3308 }
3309 }
3310 wfProfileOut( $fname );
3311 return $text;
3312 }
3313
3314 /**
3315 * Return an HTML link for the "RFC 1234" text
3316 *
3317 * @access private
3318 * @param string $text Text to be processed
3319 * @param string $keyword Magic keyword to use (default RFC)
3320 * @param string $urlmsg Interface message to use (default rfcurl)
3321 * @return string
3322 */
3323 function magicRFC( $text, $keyword='RFC ', $urlmsg='rfcurl' ) {
3324
3325 $valid = '0123456789';
3326 $internal = false;
3327
3328 $a = split( $keyword, ' '.$text );
3329 if ( count ( $a ) < 2 ) {
3330 return $text;
3331 }
3332 $text = substr( array_shift( $a ), 1);
3333
3334 /* Check if keyword is preceed by [[.
3335 * This test is made here cause of the array_shift above
3336 * that prevent the test to be done in the foreach.
3337 */
3338 if ( substr( $text, -2 ) == '[[' ) {
3339 $internal = true;
3340 }
3341
3342 foreach ( $a as $x ) {
3343 /* token might be empty if we have RFC RFC 1234 */
3344 if ( $x=='' ) {
3345 $text.=$keyword;
3346 continue;
3347 }
3348
3349 # hack: don't replace inside thumbnail title/alt
3350 # attributes
3351 if(preg_match('/<[^>]+(alt|title)="[^">]*$/', $text)) {
3352 $text .= $keyword . $x;
3353 continue;
3354 }
3355
3356 $id = $blank = '' ;
3357
3358 /** remove and save whitespaces in $blank */
3359 while ( $x{0} == ' ' ) {
3360 $blank .= ' ';
3361 $x = substr( $x, 1 );
3362 }
3363
3364 /** remove and save the rfc number in $id */
3365 while ( strstr( $valid, $x{0} ) != false ) {
3366 $id .= $x{0};
3367 $x = substr( $x, 1 );
3368 }
3369
3370 if ( $id == '' ) {
3371 /* call back stripped spaces*/
3372 $text .= $keyword.$blank.$x;
3373 } elseif( $internal ) {
3374 /* normal link */
3375 $text .= $keyword.$id.$x;
3376 } else {
3377 /* build the external link*/
3378 $url = wfMsg( $urlmsg, $id);
3379 $sk =& $this->mOptions->getSkin();
3380 $la = $sk->getExternalLinkAttributes( $url, $keyword.$id );
3381 $text .= "<a href='{$url}'{$la}>{$keyword}{$id}</a>{$x}";
3382 }
3383
3384 /* Check if the next RFC keyword is preceed by [[ */
3385 $internal = ( substr($x,-2) == '[[' );
3386 }
3387 return $text;
3388 }
3389
3390 /**
3391 * Transform wiki markup when saving a page by doing \r\n -> \n
3392 * conversion, substitting signatures, {{subst:}} templates, etc.
3393 *
3394 * @param string $text the text to transform
3395 * @param Title &$title the Title object for the current article
3396 * @param User &$user the User object describing the current user
3397 * @param ParserOptions $options parsing options
3398 * @param bool $clearState whether to clear the parser state first
3399 * @return string the altered wiki markup
3400 * @access public
3401 */
3402 function preSaveTransform( $text, &$title, &$user, $options, $clearState = true ) {
3403 $this->mOptions = $options;
3404 $this->mTitle =& $title;
3405 $this->mOutputType = OT_WIKI;
3406
3407 if ( $clearState ) {
3408 $this->clearState();
3409 }
3410
3411 $stripState = false;
3412 $pairs = array(
3413 "\r\n" => "\n",
3414 );
3415 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
3416 $text = $this->strip( $text, $stripState, true );
3417 $text = $this->pstPass2( $text, $user );
3418 $text = $this->unstrip( $text, $stripState );
3419 $text = $this->unstripNoWiki( $text, $stripState );
3420 return $text;
3421 }
3422
3423 /**
3424 * Pre-save transform helper function
3425 * @access private
3426 */
3427 function pstPass2( $text, &$user ) {
3428 global $wgContLang, $wgLocaltimezone;
3429
3430 /* Note: This is the timestamp saved as hardcoded wikitext to
3431 * the database, we use $wgContLang here in order to give
3432 * everyone the same signiture and use the default one rather
3433 * than the one selected in each users preferences.
3434 */
3435 if ( isset( $wgLocaltimezone ) ) {
3436 $oldtz = getenv( 'TZ' );
3437 putenv( 'TZ='.$wgLocaltimezone );
3438 }
3439 $d = $wgContLang->timeanddate( date( 'YmdHis' ), false, false) .
3440 ' (' . date( 'T' ) . ')';
3441 if ( isset( $wgLocaltimezone ) ) {
3442 putenv( 'TZ='.$oldtz );
3443 }
3444
3445 # Variable replacement
3446 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
3447 $text = $this->replaceVariables( $text );
3448
3449 # Signatures
3450 $sigText = $this->getUserSig( $user );
3451 $text = strtr( $text, array(
3452 '~~~~~' => $d,
3453 '~~~~' => "$sigText $d",
3454 '~~~' => $sigText
3455 ) );
3456
3457 # Context links: [[|name]] and [[name (context)|]]
3458 #
3459 global $wgLegalTitleChars;
3460 $tc = "[$wgLegalTitleChars]";
3461 $np = str_replace( array( '(', ')' ), array( '', '' ), $tc ); # No parens
3462
3463 $namespacechar = '[ _0-9A-Za-z\x80-\xff]'; # Namespaces can use non-ascii!
3464 $conpat = "/^({$np}+) \\(({$tc}+)\\)$/";
3465
3466 $p1 = "/\[\[({$np}+) \\(({$np}+)\\)\\|]]/"; # [[page (context)|]]
3467 $p2 = "/\[\[\\|({$tc}+)]]/"; # [[|page]]
3468 $p3 = "/\[\[(:*$namespacechar+):({$np}+)\\|]]/"; # [[namespace:page|]] and [[:namespace:page|]]
3469 $p4 = "/\[\[(:*$namespacechar+):({$np}+) \\(({$np}+)\\)\\|]]/"; # [[ns:page (cont)|]] and [[:ns:page (cont)|]]
3470 $context = '';
3471 $t = $this->mTitle->getText();
3472 if ( preg_match( $conpat, $t, $m ) ) {
3473 $context = $m[2];
3474 }
3475 $text = preg_replace( $p4, '[[\\1:\\2 (\\3)|\\2]]', $text );
3476 $text = preg_replace( $p1, '[[\\1 (\\2)|\\1]]', $text );
3477 $text = preg_replace( $p3, '[[\\1:\\2|\\2]]', $text );
3478
3479 if ( '' == $context ) {
3480 $text = preg_replace( $p2, '[[\\1]]', $text );
3481 } else {
3482 $text = preg_replace( $p2, "[[\\1 ({$context})|\\1]]", $text );
3483 }
3484
3485 # Trim trailing whitespace
3486 # MAG_END (__END__) tag allows for trailing
3487 # whitespace to be deliberately included
3488 $text = rtrim( $text );
3489 $mw =& MagicWord::get( MAG_END );
3490 $mw->matchAndRemove( $text );
3491
3492 return $text;
3493 }
3494
3495 /**
3496 * Fetch the user's signature text, if any, and normalize to
3497 * validated, ready-to-insert wikitext.
3498 *
3499 * @param User $user
3500 * @return string
3501 * @access private
3502 */
3503 function getUserSig( &$user ) {
3504 $username = $user->getName();
3505 $nickname = $user->getOption( 'nickname' );
3506 $nickname = $nickname === '' ? $username : $nickname;
3507
3508 if( $user->getBoolOption( 'fancysig' ) !== false ) {
3509 # Sig. might contain markup; validate this
3510 if( $this->validateSig( $nickname ) !== false ) {
3511 # Validated; clean up (if needed) and return it
3512 return( $this->cleanSig( $nickname ) );
3513 } else {
3514 # Failed to validate; fall back to the default
3515 $nickname = $username;
3516 wfDebug( "Parser::getUserSig: $username has bad XML tags in signature.\n" );
3517 }
3518 }
3519
3520 # If we're still here, make it a link to the user page
3521 $userpage = $user->getUserPage();
3522 return( '[[' . $userpage->getPrefixedText() . '|' . wfEscapeWikiText( $nickname ) . ']]' );
3523 }
3524
3525 /**
3526 * Check that the user's signature contains no bad XML
3527 *
3528 * @param string $text
3529 * @return mixed An expanded string, or false if invalid.
3530 */
3531 function validateSig( $text ) {
3532 return( wfIsWellFormedXmlFragment( $text ) ? $text : false );
3533 }
3534
3535 /**
3536 * Clean up signature text
3537 *
3538 * 1) Strip ~~~, ~~~~ and ~~~~~ out of signatures
3539 * 2) Substitute all transclusions
3540 *
3541 * @param string $text
3542 * @return string Signature text
3543 */
3544 function cleanSig( $text ) {
3545 $substWord = MagicWord::get( MAG_SUBST );
3546 $substRegex = '/\{\{(?!(?:' . $substWord->getBaseRegex() . '))/x' . $substWord->getRegexCase();
3547 $substText = '{{' . $substWord->getSynonym( 0 );
3548
3549 $text = preg_replace( $substRegex, $substText, $text );
3550 $text = preg_replace( '/~{3,5}/', '', $text );
3551 $text = $this->replaceVariables( $text );
3552
3553 return $text;
3554 }
3555
3556 /**
3557 * Set up some variables which are usually set up in parse()
3558 * so that an external function can call some class members with confidence
3559 * @access public
3560 */
3561 function startExternalParse( &$title, $options, $outputType, $clearState = true ) {
3562 $this->mTitle =& $title;
3563 $this->mOptions = $options;
3564 $this->mOutputType = $outputType;
3565 if ( $clearState ) {
3566 $this->clearState();
3567 }
3568 }
3569
3570 /**
3571 * Transform a MediaWiki message by replacing magic variables.
3572 *
3573 * @param string $text the text to transform
3574 * @param ParserOptions $options options
3575 * @return string the text with variables substituted
3576 * @access public
3577 */
3578 function transformMsg( $text, $options ) {
3579 global $wgTitle;
3580 static $executing = false;
3581
3582 $fname = "Parser::transformMsg";
3583
3584 # Guard against infinite recursion
3585 if ( $executing ) {
3586 return $text;
3587 }
3588 $executing = true;
3589
3590 wfProfileIn($fname);
3591
3592 $this->mTitle = $wgTitle;
3593 $this->mOptions = $options;
3594 $this->mOutputType = OT_MSG;
3595 $this->clearState();
3596 $text = $this->replaceVariables( $text );
3597
3598 $executing = false;
3599 wfProfileOut($fname);
3600 return $text;
3601 }
3602
3603 /**
3604 * Create an HTML-style tag, e.g. <yourtag>special text</yourtag>
3605 * The callback should have the following form:
3606 * function myParserHook( $text, $params, &$parser ) { ... }
3607 *
3608 * Transform and return $text. Use $parser for any required context, e.g. use
3609 * $parser->getTitle() and $parser->getOptions() not $wgTitle or $wgOut->mParserOptions
3610 *
3611 * @access public
3612 *
3613 * @param mixed $tag The tag to use, e.g. 'hook' for <hook>
3614 * @param mixed $callback The callback function (and object) to use for the tag
3615 *
3616 * @return The old value of the mTagHooks array associated with the hook
3617 */
3618 function setHook( $tag, $callback ) {
3619 $oldVal = @$this->mTagHooks[$tag];
3620 $this->mTagHooks[$tag] = $callback;
3621
3622 return $oldVal;
3623 }
3624
3625 /**
3626 * Create a function, e.g. {{sum:1|2|3}}
3627 * The callback function should have the form:
3628 * function myParserFunction( &$parser, $arg1, $arg2, $arg3 ) { ... }
3629 *
3630 * The callback may either return the text result of the function, or an array with the text
3631 * in element 0, and a number of flags in the other elements. The names of the flags are
3632 * specified in the keys. Valid flags are:
3633 * found The text returned is valid, stop processing the template. This
3634 * is on by default.
3635 * nowiki Wiki markup in the return value should be escaped
3636 * noparse Unsafe HTML tags should not be stripped, etc.
3637 * noargs Don't replace triple-brace arguments in the return value
3638 * isHTML The returned text is HTML, armour it against wikitext transformation
3639 *
3640 * @access public
3641 *
3642 * @param string $name The function name. Function names are case-insensitive.
3643 * @param mixed $callback The callback function (and object) to use
3644 *
3645 * @return The old callback function for this name, if any
3646 */
3647 function setFunctionHook( $name, $callback ) {
3648 $name = strtolower( $name );
3649 $oldVal = @$this->mFunctionHooks[$name];
3650 $this->mFunctionHooks[$name] = $callback;
3651 return $oldVal;
3652 }
3653
3654 /**
3655 * Replace <!--LINK--> link placeholders with actual links, in the buffer
3656 * Placeholders created in Skin::makeLinkObj()
3657 * Returns an array of links found, indexed by PDBK:
3658 * 0 - broken
3659 * 1 - normal link
3660 * 2 - stub
3661 * $options is a bit field, RLH_FOR_UPDATE to select for update
3662 */
3663 function replaceLinkHolders( &$text, $options = 0 ) {
3664 global $wgUser;
3665 global $wgOutputReplace;
3666
3667 $fname = 'Parser::replaceLinkHolders';
3668 wfProfileIn( $fname );
3669
3670 $pdbks = array();
3671 $colours = array();
3672 $sk =& $this->mOptions->getSkin();
3673 $linkCache =& LinkCache::singleton();
3674
3675 if ( !empty( $this->mLinkHolders['namespaces'] ) ) {
3676 wfProfileIn( $fname.'-check' );
3677 $dbr =& wfGetDB( DB_SLAVE );
3678 $page = $dbr->tableName( 'page' );
3679 $threshold = $wgUser->getOption('stubthreshold');
3680
3681 # Sort by namespace
3682 asort( $this->mLinkHolders['namespaces'] );
3683
3684 # Generate query
3685 $query = false;
3686 foreach ( $this->mLinkHolders['namespaces'] as $key => $ns ) {
3687 # Make title object
3688 $title = $this->mLinkHolders['titles'][$key];
3689
3690 # Skip invalid entries.
3691 # Result will be ugly, but prevents crash.
3692 if ( is_null( $title ) ) {
3693 continue;
3694 }
3695 $pdbk = $pdbks[$key] = $title->getPrefixedDBkey();
3696
3697 # Check if it's a static known link, e.g. interwiki
3698 if ( $title->isAlwaysKnown() ) {
3699 $colours[$pdbk] = 1;
3700 } elseif ( ( $id = $linkCache->getGoodLinkID( $pdbk ) ) != 0 ) {
3701 $colours[$pdbk] = 1;
3702 $this->mOutput->addLink( $title, $id );
3703 } elseif ( $linkCache->isBadLink( $pdbk ) ) {
3704 $colours[$pdbk] = 0;
3705 } else {
3706 # Not in the link cache, add it to the query
3707 if ( !isset( $current ) ) {
3708 $current = $ns;
3709 $query = "SELECT page_id, page_namespace, page_title";
3710 if ( $threshold > 0 ) {
3711 $query .= ', page_len, page_is_redirect';
3712 }
3713 $query .= " FROM $page WHERE (page_namespace=$ns AND page_title IN(";
3714 } elseif ( $current != $ns ) {
3715 $current = $ns;
3716 $query .= ")) OR (page_namespace=$ns AND page_title IN(";
3717 } else {
3718 $query .= ', ';
3719 }
3720
3721 $query .= $dbr->addQuotes( $this->mLinkHolders['dbkeys'][$key] );
3722 }
3723 }
3724 if ( $query ) {
3725 $query .= '))';
3726 if ( $options & RLH_FOR_UPDATE ) {
3727 $query .= ' FOR UPDATE';
3728 }
3729
3730 $res = $dbr->query( $query, $fname );
3731
3732 # Fetch data and form into an associative array
3733 # non-existent = broken
3734 # 1 = known
3735 # 2 = stub
3736 while ( $s = $dbr->fetchObject($res) ) {
3737 $title = Title::makeTitle( $s->page_namespace, $s->page_title );
3738 $pdbk = $title->getPrefixedDBkey();
3739 $linkCache->addGoodLinkObj( $s->page_id, $title );
3740 $this->mOutput->addLink( $title, $s->page_id );
3741
3742 if ( $threshold > 0 ) {
3743 $size = $s->page_len;
3744 if ( $s->page_is_redirect || $s->page_namespace != 0 || $size >= $threshold ) {
3745 $colours[$pdbk] = 1;
3746 } else {
3747 $colours[$pdbk] = 2;
3748 }
3749 } else {
3750 $colours[$pdbk] = 1;
3751 }
3752 }
3753 }
3754 wfProfileOut( $fname.'-check' );
3755
3756 # Construct search and replace arrays
3757 wfProfileIn( $fname.'-construct' );
3758 $wgOutputReplace = array();
3759 foreach ( $this->mLinkHolders['namespaces'] as $key => $ns ) {
3760 $pdbk = $pdbks[$key];
3761 $searchkey = "<!--LINK $key-->";
3762 $title = $this->mLinkHolders['titles'][$key];
3763 if ( empty( $colours[$pdbk] ) ) {
3764 $linkCache->addBadLinkObj( $title );
3765 $colours[$pdbk] = 0;
3766 $this->mOutput->addLink( $title, 0 );
3767 $wgOutputReplace[$searchkey] = $sk->makeBrokenLinkObj( $title,
3768 $this->mLinkHolders['texts'][$key],
3769 $this->mLinkHolders['queries'][$key] );
3770 } elseif ( $colours[$pdbk] == 1 ) {
3771 $wgOutputReplace[$searchkey] = $sk->makeKnownLinkObj( $title,
3772 $this->mLinkHolders['texts'][$key],
3773 $this->mLinkHolders['queries'][$key] );
3774 } elseif ( $colours[$pdbk] == 2 ) {
3775 $wgOutputReplace[$searchkey] = $sk->makeStubLinkObj( $title,
3776 $this->mLinkHolders['texts'][$key],
3777 $this->mLinkHolders['queries'][$key] );
3778 }
3779 }
3780 wfProfileOut( $fname.'-construct' );
3781
3782 # Do the thing
3783 wfProfileIn( $fname.'-replace' );
3784
3785 $text = preg_replace_callback(
3786 '/(<!--LINK .*?-->)/',
3787 "wfOutputReplaceMatches",
3788 $text);
3789
3790 wfProfileOut( $fname.'-replace' );
3791 }
3792
3793 # Now process interwiki link holders
3794 # This is quite a bit simpler than internal links
3795 if ( !empty( $this->mInterwikiLinkHolders['texts'] ) ) {
3796 wfProfileIn( $fname.'-interwiki' );
3797 # Make interwiki link HTML
3798 $wgOutputReplace = array();
3799 foreach( $this->mInterwikiLinkHolders['texts'] as $key => $link ) {
3800 $title = $this->mInterwikiLinkHolders['titles'][$key];
3801 $wgOutputReplace[$key] = $sk->makeLinkObj( $title, $link );
3802 }
3803
3804 $text = preg_replace_callback(
3805 '/<!--IWLINK (.*?)-->/',
3806 "wfOutputReplaceMatches",
3807 $text );
3808 wfProfileOut( $fname.'-interwiki' );
3809 }
3810
3811 wfProfileOut( $fname );
3812 return $colours;
3813 }
3814
3815 /**
3816 * Replace <!--LINK--> link placeholders with plain text of links
3817 * (not HTML-formatted).
3818 * @param string $text
3819 * @return string
3820 */
3821 function replaceLinkHoldersText( $text ) {
3822 $fname = 'Parser::replaceLinkHoldersText';
3823 wfProfileIn( $fname );
3824
3825 $text = preg_replace_callback(
3826 '/<!--(LINK|IWLINK) (.*?)-->/',
3827 array( &$this, 'replaceLinkHoldersTextCallback' ),
3828 $text );
3829
3830 wfProfileOut( $fname );
3831 return $text;
3832 }
3833
3834 /**
3835 * @param array $matches
3836 * @return string
3837 * @access private
3838 */
3839 function replaceLinkHoldersTextCallback( $matches ) {
3840 $type = $matches[1];
3841 $key = $matches[2];
3842 if( $type == 'LINK' ) {
3843 if( isset( $this->mLinkHolders['texts'][$key] ) ) {
3844 return $this->mLinkHolders['texts'][$key];
3845 }
3846 } elseif( $type == 'IWLINK' ) {
3847 if( isset( $this->mInterwikiLinkHolders['texts'][$key] ) ) {
3848 return $this->mInterwikiLinkHolders['texts'][$key];
3849 }
3850 }
3851 return $matches[0];
3852 }
3853
3854 /**
3855 * Renders an image gallery from a text with one line per image.
3856 * text labels may be given by using |-style alternative text. E.g.
3857 * Image:one.jpg|The number "1"
3858 * Image:tree.jpg|A tree
3859 * given as text will return the HTML of a gallery with two images,
3860 * labeled 'The number "1"' and
3861 * 'A tree'.
3862 */
3863 function renderImageGallery( $text ) {
3864 # Setup the parser
3865 $parserOptions = new ParserOptions;
3866 $localParser = new Parser();
3867
3868 $ig = new ImageGallery();
3869 $ig->setShowBytes( false );
3870 $ig->setShowFilename( false );
3871 $lines = explode( "\n", $text );
3872
3873 foreach ( $lines as $line ) {
3874 # match lines like these:
3875 # Image:someimage.jpg|This is some image
3876 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
3877 # Skip empty lines
3878 if ( count( $matches ) == 0 ) {
3879 continue;
3880 }
3881 $nt =& Title::newFromText( $matches[1] );
3882 if( is_null( $nt ) ) {
3883 # Bogus title. Ignore these so we don't bomb out later.
3884 continue;
3885 }
3886 if ( isset( $matches[3] ) ) {
3887 $label = $matches[3];
3888 } else {
3889 $label = '';
3890 }
3891
3892 $pout = $localParser->parse( $label , $this->mTitle, $parserOptions );
3893 $html = $pout->getText();
3894
3895 $ig->add( new Image( $nt ), $html );
3896 $this->mOutput->addImage( $nt->getDBkey() );
3897 }
3898 return $ig->toHTML();
3899 }
3900
3901 /**
3902 * Parse image options text and use it to make an image
3903 */
3904 function makeImage( &$nt, $options ) {
3905 global $wgUseImageResize;
3906
3907 $align = '';
3908
3909 # Check if the options text is of the form "options|alt text"
3910 # Options are:
3911 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
3912 # * left no resizing, just left align. label is used for alt= only
3913 # * right same, but right aligned
3914 # * none same, but not aligned
3915 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
3916 # * center center the image
3917 # * framed Keep original image size, no magnify-button.
3918
3919 $part = explode( '|', $options);
3920
3921 $mwThumb =& MagicWord::get( MAG_IMG_THUMBNAIL );
3922 $mwManualThumb =& MagicWord::get( MAG_IMG_MANUALTHUMB );
3923 $mwLeft =& MagicWord::get( MAG_IMG_LEFT );
3924 $mwRight =& MagicWord::get( MAG_IMG_RIGHT );
3925 $mwNone =& MagicWord::get( MAG_IMG_NONE );
3926 $mwWidth =& MagicWord::get( MAG_IMG_WIDTH );
3927 $mwCenter =& MagicWord::get( MAG_IMG_CENTER );
3928 $mwFramed =& MagicWord::get( MAG_IMG_FRAMED );
3929 $caption = '';
3930
3931 $width = $height = $framed = $thumb = false;
3932 $manual_thumb = '' ;
3933
3934 foreach( $part as $key => $val ) {
3935 if ( $wgUseImageResize && ! is_null( $mwThumb->matchVariableStartToEnd($val) ) ) {
3936 $thumb=true;
3937 } elseif ( ! is_null( $match = $mwManualThumb->matchVariableStartToEnd($val) ) ) {
3938 # use manually specified thumbnail
3939 $thumb=true;
3940 $manual_thumb = $match;
3941 } elseif ( ! is_null( $mwRight->matchVariableStartToEnd($val) ) ) {
3942 # remember to set an alignment, don't render immediately
3943 $align = 'right';
3944 } elseif ( ! is_null( $mwLeft->matchVariableStartToEnd($val) ) ) {
3945 # remember to set an alignment, don't render immediately
3946 $align = 'left';
3947 } elseif ( ! is_null( $mwCenter->matchVariableStartToEnd($val) ) ) {
3948 # remember to set an alignment, don't render immediately
3949 $align = 'center';
3950 } elseif ( ! is_null( $mwNone->matchVariableStartToEnd($val) ) ) {
3951 # remember to set an alignment, don't render immediately
3952 $align = 'none';
3953 } elseif ( $wgUseImageResize && ! is_null( $match = $mwWidth->matchVariableStartToEnd($val) ) ) {
3954 wfDebug( "MAG_IMG_WIDTH match: $match\n" );
3955 # $match is the image width in pixels
3956 if ( preg_match( '/^([0-9]*)x([0-9]*)$/', $match, $m ) ) {
3957 $width = intval( $m[1] );
3958 $height = intval( $m[2] );
3959 } else {
3960 $width = intval($match);
3961 }
3962 } elseif ( ! is_null( $mwFramed->matchVariableStartToEnd($val) ) ) {
3963 $framed=true;
3964 } else {
3965 $caption = $val;
3966 }
3967 }
3968 # Strip bad stuff out of the alt text
3969 $alt = $this->replaceLinkHoldersText( $caption );
3970
3971 # make sure there are no placeholders in thumbnail attributes
3972 # that are later expanded to html- so expand them now and
3973 # remove the tags
3974 $alt = $this->unstrip($alt, $this->mStripState);
3975 $alt = Sanitizer::stripAllTags( $alt );
3976
3977 # Linker does the rest
3978 $sk =& $this->mOptions->getSkin();
3979 return $sk->makeImageLinkObj( $nt, $caption, $alt, $align, $width, $height, $framed, $thumb, $manual_thumb );
3980 }
3981
3982 /**
3983 * Set a flag in the output object indicating that the content is dynamic and
3984 * shouldn't be cached.
3985 */
3986 function disableCache() {
3987 $this->mOutput->mCacheTime = -1;
3988 }
3989
3990 /**#@+
3991 * Callback from the Sanitizer for expanding items found in HTML attribute
3992 * values, so they can be safely tested and escaped.
3993 * @param string $text
3994 * @param array $args
3995 * @return string
3996 * @access private
3997 */
3998 function attributeStripCallback( &$text, $args ) {
3999 $text = $this->replaceVariables( $text, $args );
4000 $text = $this->unstripForHTML( $text );
4001 return $text;
4002 }
4003
4004 function unstripForHTML( $text ) {
4005 $text = $this->unstrip( $text, $this->mStripState );
4006 $text = $this->unstripNoWiki( $text, $this->mStripState );
4007 return $text;
4008 }
4009 /**#@-*/
4010
4011 /**#@+
4012 * Accessor/mutator
4013 */
4014 function Title( $x = NULL ) { return wfSetVar( $this->mTitle, $x ); }
4015 function Options( $x = NULL ) { return wfSetVar( $this->mOptions, $x ); }
4016 function OutputType( $x = NULL ) { return wfSetVar( $this->mOutputType, $x ); }
4017 /**#@-*/
4018
4019 /**#@+
4020 * Accessor
4021 */
4022 function getTags() { return array_keys( $this->mTagHooks ); }
4023 /**#@-*/
4024 }
4025
4026 /**
4027 * @todo document
4028 * @package MediaWiki
4029 */
4030 class ParserOutput
4031 {
4032 var $mText, # The output text
4033 $mLanguageLinks, # List of the full text of language links, in the order they appear
4034 $mCategories, # Map of category names to sort keys
4035 $mContainsOldMagic, # Boolean variable indicating if the input contained variables like {{CURRENTDAY}}
4036 $mCacheTime, # Time when this object was generated, or -1 for uncacheable. Used in ParserCache.
4037 $mVersion, # Compatibility check
4038 $mTitleText, # title text of the chosen language variant
4039 $mLinks, # 2-D map of NS/DBK to ID for the links in the document. ID=zero for broken.
4040 $mTemplates, # 2-D map of NS/DBK to ID for the template references. ID=zero for broken.
4041 $mImages, # DB keys of the images used, in the array key only
4042 $mExternalLinks; # External link URLs, in the key only
4043
4044 function ParserOutput( $text = '', $languageLinks = array(), $categoryLinks = array(),
4045 $containsOldMagic = false, $titletext = '' )
4046 {
4047 $this->mText = $text;
4048 $this->mLanguageLinks = $languageLinks;
4049 $this->mCategories = $categoryLinks;
4050 $this->mContainsOldMagic = $containsOldMagic;
4051 $this->mCacheTime = '';
4052 $this->mVersion = MW_PARSER_VERSION;
4053 $this->mTitleText = $titletext;
4054 $this->mLinks = array();
4055 $this->mTemplates = array();
4056 $this->mImages = array();
4057 $this->mExternalLinks = array();
4058 }
4059
4060 function getText() { return $this->mText; }
4061 function &getLanguageLinks() { return $this->mLanguageLinks; }
4062 function getCategoryLinks() { return array_keys( $this->mCategories ); }
4063 function &getCategories() { return $this->mCategories; }
4064 function getCacheTime() { return $this->mCacheTime; }
4065 function getTitleText() { return $this->mTitleText; }
4066 function &getLinks() { return $this->mLinks; }
4067 function &getTemplates() { return $this->mTemplates; }
4068 function &getImages() { return $this->mImages; }
4069 function &getExternalLinks() { return $this->mExternalLinks; }
4070
4071 function containsOldMagic() { return $this->mContainsOldMagic; }
4072 function setText( $text ) { return wfSetVar( $this->mText, $text ); }
4073 function setLanguageLinks( $ll ) { return wfSetVar( $this->mLanguageLinks, $ll ); }
4074 function setCategoryLinks( $cl ) { return wfSetVar( $this->mCategories, $cl ); }
4075 function setContainsOldMagic( $com ) { return wfSetVar( $this->mContainsOldMagic, $com ); }
4076 function setCacheTime( $t ) { return wfSetVar( $this->mCacheTime, $t ); }
4077 function setTitleText( $t ) { return wfSetVar ($this->mTitleText, $t); }
4078
4079 function addCategory( $c, $sort ) { $this->mCategories[$c] = $sort; }
4080 function addImage( $name ) { $this->mImages[$name] = 1; }
4081 function addLanguageLink( $t ) { $this->mLanguageLinks[] = $t; }
4082 function addExternalLink( $url ) { $this->mExternalLinks[$url] = 1; }
4083
4084 function addLink( $title, $id ) {
4085 $ns = $title->getNamespace();
4086 $dbk = $title->getDBkey();
4087 if ( !isset( $this->mLinks[$ns] ) ) {
4088 $this->mLinks[$ns] = array();
4089 }
4090 $this->mLinks[$ns][$dbk] = $id;
4091 }
4092
4093 function addTemplate( $title, $id ) {
4094 $ns = $title->getNamespace();
4095 $dbk = $title->getDBkey();
4096 if ( !isset( $this->mTemplates[$ns] ) ) {
4097 $this->mTemplates[$ns] = array();
4098 }
4099 $this->mTemplates[$ns][$dbk] = $id;
4100 }
4101
4102 /**
4103 * Return true if this cached output object predates the global or
4104 * per-article cache invalidation timestamps, or if it comes from
4105 * an incompatible older version.
4106 *
4107 * @param string $touched the affected article's last touched timestamp
4108 * @return bool
4109 * @access public
4110 */
4111 function expired( $touched ) {
4112 global $wgCacheEpoch;
4113 return $this->getCacheTime() == -1 || // parser says it's uncacheable
4114 $this->getCacheTime() < $touched ||
4115 $this->getCacheTime() <= $wgCacheEpoch ||
4116 !isset( $this->mVersion ) ||
4117 version_compare( $this->mVersion, MW_PARSER_VERSION, "lt" );
4118 }
4119 }
4120
4121 /**
4122 * Set options of the Parser
4123 * @todo document
4124 * @package MediaWiki
4125 */
4126 class ParserOptions
4127 {
4128 # All variables are private
4129 var $mUseTeX; # Use texvc to expand <math> tags
4130 var $mUseDynamicDates; # Use DateFormatter to format dates
4131 var $mInterwikiMagic; # Interlanguage links are removed and returned in an array
4132 var $mAllowExternalImages; # Allow external images inline
4133 var $mAllowExternalImagesFrom; # If not, any exception?
4134 var $mSkin; # Reference to the preferred skin
4135 var $mDateFormat; # Date format index
4136 var $mEditSection; # Create "edit section" links
4137 var $mNumberHeadings; # Automatically number headings
4138 var $mAllowSpecialInclusion; # Allow inclusion of special pages
4139 var $mTidy; # Ask for tidy cleanup
4140
4141 function getUseTeX() { return $this->mUseTeX; }
4142 function getUseDynamicDates() { return $this->mUseDynamicDates; }
4143 function getInterwikiMagic() { return $this->mInterwikiMagic; }
4144 function getAllowExternalImages() { return $this->mAllowExternalImages; }
4145 function getAllowExternalImagesFrom() { return $this->mAllowExternalImagesFrom; }
4146 function &getSkin() { return $this->mSkin; }
4147 function getDateFormat() { return $this->mDateFormat; }
4148 function getEditSection() { return $this->mEditSection; }
4149 function getNumberHeadings() { return $this->mNumberHeadings; }
4150 function getAllowSpecialInclusion() { return $this->mAllowSpecialInclusion; }
4151 function getTidy() { return $this->mTidy; }
4152
4153 function setUseTeX( $x ) { return wfSetVar( $this->mUseTeX, $x ); }
4154 function setUseDynamicDates( $x ) { return wfSetVar( $this->mUseDynamicDates, $x ); }
4155 function setInterwikiMagic( $x ) { return wfSetVar( $this->mInterwikiMagic, $x ); }
4156 function setAllowExternalImages( $x ) { return wfSetVar( $this->mAllowExternalImages, $x ); }
4157 function setAllowExternalImagesFrom( $x ) { return wfSetVar( $this->mAllowExternalImagesFrom, $x ); }
4158 function setDateFormat( $x ) { return wfSetVar( $this->mDateFormat, $x ); }
4159 function setEditSection( $x ) { return wfSetVar( $this->mEditSection, $x ); }
4160 function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); }
4161 function setAllowSpecialInclusion( $x ) { return wfSetVar( $this->mAllowSpecialInclusion, $x ); }
4162 function setTidy( $x ) { return wfSetVar( $this->mTidy, $x); }
4163 function setSkin( &$x ) { $this->mSkin =& $x; }
4164
4165 function ParserOptions() {
4166 global $wgUser;
4167 $this->initialiseFromUser( $wgUser );
4168 }
4169
4170 /**
4171 * Get parser options
4172 * @static
4173 */
4174 function newFromUser( &$user ) {
4175 $popts = new ParserOptions;
4176 $popts->initialiseFromUser( $user );
4177 return $popts;
4178 }
4179
4180 /** Get user options */
4181 function initialiseFromUser( &$userInput ) {
4182 global $wgUseTeX, $wgUseDynamicDates, $wgInterwikiMagic, $wgAllowExternalImages;
4183 global $wgAllowExternalImagesFrom, $wgAllowSpecialInclusion;
4184 $fname = 'ParserOptions::initialiseFromUser';
4185 wfProfileIn( $fname );
4186 if ( !$userInput ) {
4187 $user = new User;
4188 $user->setLoaded( true );
4189 } else {
4190 $user =& $userInput;
4191 }
4192
4193 $this->mUseTeX = $wgUseTeX;
4194 $this->mUseDynamicDates = $wgUseDynamicDates;
4195 $this->mInterwikiMagic = $wgInterwikiMagic;
4196 $this->mAllowExternalImages = $wgAllowExternalImages;
4197 $this->mAllowExternalImagesFrom = $wgAllowExternalImagesFrom;
4198 wfProfileIn( $fname.'-skin' );
4199 $this->mSkin =& $user->getSkin();
4200 wfProfileOut( $fname.'-skin' );
4201 $this->mDateFormat = $user->getOption( 'date' );
4202 $this->mEditSection = true;
4203 $this->mNumberHeadings = $user->getOption( 'numberheadings' );
4204 $this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
4205 $this->mTidy = false;
4206 wfProfileOut( $fname );
4207 }
4208 }
4209
4210 /**
4211 * Callback function used by Parser::replaceLinkHolders()
4212 * to substitute link placeholders.
4213 */
4214 function &wfOutputReplaceMatches( $matches ) {
4215 global $wgOutputReplace;
4216 return $wgOutputReplace[$matches[1]];
4217 }
4218
4219 /**
4220 * Return the total number of articles
4221 */
4222 function wfNumberOfArticles() {
4223 global $wgNumberOfArticles;
4224
4225 wfLoadSiteStats();
4226 return $wgNumberOfArticles;
4227 }
4228
4229 /**
4230 * Return the number of files
4231 */
4232 function wfNumberOfFiles() {
4233 $fname = 'wfNumberOfFiles';
4234
4235 wfProfileIn( $fname );
4236 $dbr =& wfGetDB( DB_SLAVE );
4237 $numImages = $dbr->selectField('site_stats', 'ss_images', array(), $fname );
4238 wfProfileOut( $fname );
4239
4240 return $numImages;
4241 }
4242
4243 /**
4244 * Get various statistics from the database
4245 * @access private
4246 */
4247 function wfLoadSiteStats() {
4248 global $wgNumberOfArticles, $wgTotalViews, $wgTotalEdits;
4249 $fname = 'wfLoadSiteStats';
4250
4251 if ( -1 != $wgNumberOfArticles ) return;
4252 $dbr =& wfGetDB( DB_SLAVE );
4253 $s = $dbr->selectRow( 'site_stats',
4254 array( 'ss_total_views', 'ss_total_edits', 'ss_good_articles' ),
4255 array( 'ss_row_id' => 1 ), $fname
4256 );
4257
4258 if ( $s === false ) {
4259 return;
4260 } else {
4261 $wgTotalViews = $s->ss_total_views;
4262 $wgTotalEdits = $s->ss_total_edits;
4263 $wgNumberOfArticles = $s->ss_good_articles;
4264 }
4265 }
4266
4267 /**
4268 * Escape html tags
4269 * Basically replacing " > and < with HTML entities ( &quot;, &gt;, &lt;)
4270 *
4271 * @param string $in Text that might contain HTML tags
4272 * @return string Escaped string
4273 */
4274 function wfEscapeHTMLTagsOnly( $in ) {
4275 return str_replace(
4276 array( '"', '>', '<' ),
4277 array( '&quot;', '&gt;', '&lt;' ),
4278 $in );
4279 }
4280
4281 ?>