f7e9415b48c14a14a836cf56eae2589e33288497
[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.5.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 # prefix for escaping, used in two functions at least
47 define( 'UNIQ_PREFIX', 'NaodW29');
48
49 # Constants needed for external link processing
50 define( 'URL_PROTOCOLS', 'http|https|ftp|irc|gopher|news|mailto' );
51 define( 'HTTP_PROTOCOLS', 'http|https' );
52 # Everything except bracket, space, or control characters
53 define( 'EXT_LINK_URL_CLASS', '[^]<>"\\x00-\\x20\\x7F]' );
54 # Including space
55 define( 'EXT_LINK_TEXT_CLASS', '[^\]\\x00-\\x1F\\x7F]' );
56 define( 'EXT_IMAGE_FNAME_CLASS', '[A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]' );
57 define( 'EXT_IMAGE_EXTENSIONS', 'gif|png|jpg|jpeg' );
58 define( 'EXT_LINK_BRACKETED', '/\[(\b('.URL_PROTOCOLS.'):'.EXT_LINK_URL_CLASS.'+) *('.EXT_LINK_TEXT_CLASS.'*?)\]/S' );
59 define( 'EXT_IMAGE_REGEX',
60 '/^('.HTTP_PROTOCOLS.':)'. # Protocol
61 '('.EXT_LINK_URL_CLASS.'+)\\/'. # Hostname and path
62 '('.EXT_IMAGE_FNAME_CLASS.'+)\\.((?i)'.EXT_IMAGE_EXTENSIONS.')$/S' # Filename
63 );
64
65 /**
66 * PHP Parser
67 *
68 * Processes wiki markup
69 *
70 * <pre>
71 * There are three main entry points into the Parser class:
72 * parse()
73 * produces HTML output
74 * preSaveTransform().
75 * produces altered wiki markup.
76 * transformMsg()
77 * performs brace substitution on MediaWiki messages
78 *
79 * Globals used:
80 * objects: $wgLang, $wgLinkCache
81 *
82 * NOT $wgArticle, $wgUser or $wgTitle. Keep them away!
83 *
84 * settings:
85 * $wgUseTex*, $wgUseDynamicDates*, $wgInterwikiMagic*,
86 * $wgNamespacesWithSubpages, $wgAllowExternalImages*,
87 * $wgLocaltimezone, $wgAllowSpecialInclusion*
88 *
89 * * only within ParserOptions
90 * </pre>
91 *
92 * @package MediaWiki
93 */
94 class Parser
95 {
96 /**#@+
97 * @access private
98 */
99 # Persistent:
100 var $mTagHooks;
101
102 # Cleared with clearState():
103 var $mOutput, $mAutonumber, $mDTopen, $mStripState = array();
104 var $mVariables, $mIncludeCount, $mArgStack, $mLastSection, $mInPre;
105 var $mInterwikiLinkHolders, $mLinkHolders;
106
107 # Temporary:
108 var $mOptions, $mTitle, $mOutputType,
109 $mTemplates, // cache of already loaded templates, avoids
110 // multiple SQL queries for the same string
111 $mTemplatePath; // stores an unsorted hash of all the templates already loaded
112 // in this path. Used for loop detection.
113
114 var $mIWTransData = array();
115
116 /**#@-*/
117
118 /**
119 * Constructor
120 *
121 * @access public
122 */
123 function Parser() {
124 global $wgContLang;
125 $this->mTemplates = array();
126 $this->mTemplatePath = array();
127 $this->mTagHooks = array();
128 $this->clearState();
129 }
130
131 /**
132 * Clear Parser state
133 *
134 * @access private
135 */
136 function clearState() {
137 $this->mOutput = new ParserOutput;
138 $this->mAutonumber = 0;
139 $this->mLastSection = '';
140 $this->mDTopen = false;
141 $this->mVariables = false;
142 $this->mIncludeCount = array();
143 $this->mStripState = array();
144 $this->mArgStack = array();
145 $this->mInPre = false;
146 $this->mInterwikiLinkHolders = array(
147 'texts' => array(),
148 'titles' => array()
149 );
150 $this->mLinkHolders = array(
151 'namespaces' => array(),
152 'dbkeys' => array(),
153 'queries' => array(),
154 'texts' => array(),
155 'titles' => array()
156 );
157 }
158
159 /**
160 * First pass--just handle <nowiki> sections, pass the rest off
161 * to internalParse() which does all the real work.
162 *
163 * @access private
164 * @param string $text Text we want to parse
165 * @param Title &$title A title object
166 * @param array $options
167 * @param boolean $linestart
168 * @param boolean $clearState
169 * @return ParserOutput a ParserOutput
170 */
171 function parse( $text, &$title, $options, $linestart = true, $clearState = true ) {
172 global $wgUseTidy, $wgContLang;
173 $fname = 'Parser::parse';
174 wfProfileIn( $fname );
175
176 if ( $clearState ) {
177 $this->clearState();
178 }
179
180 $this->mOptions = $options;
181 $this->mTitle =& $title;
182 $this->mOutputType = OT_HTML;
183
184 $this->mStripState = NULL;
185
186 //$text = $this->strip( $text, $this->mStripState );
187 // VOODOO MAGIC FIX! Sometimes the above segfaults in PHP5.
188 $x =& $this->mStripState;
189
190 wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$x ) );
191 $text = $this->strip( $text, $x );
192 wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$x ) );
193
194 $text = $this->internalParse( $text );
195
196 $text = $this->unstrip( $text, $this->mStripState );
197
198 # Clean up special characters, only run once, next-to-last before doBlockLevels
199 $fixtags = array(
200 # french spaces, last one Guillemet-left
201 # only if there is something before the space
202 '/(.) (?=\\?|:|;|!|\\302\\273)/' => '\\1&nbsp;\\2',
203 # french spaces, Guillemet-right
204 '/(\\302\\253) /' => '\\1&nbsp;',
205 '/<center *>/i' => '<div class="center">',
206 '/<\\/center *>/i' => '</div>',
207 );
208 $text = preg_replace( array_keys($fixtags), array_values($fixtags), $text );
209
210 # only once and last
211 $text = $this->doBlockLevels( $text, $linestart );
212
213 $this->replaceLinkHolders( $text );
214
215 # the position of the convert() call should not be changed. it
216 # assumes that the links are all replaces and the only thing left
217 # is the <nowiki> mark.
218 $text = $wgContLang->convert($text);
219 $this->mOutput->setTitleText($wgContLang->getParsedTitle());
220
221 $text = $this->unstripNoWiki( $text, $this->mStripState );
222
223 wfRunHooks( 'ParserBeforeTidy', array( &$this, &$text ) );
224
225 $text = Sanitizer::normalizeCharReferences( $text );
226 global $wgUseTidy;
227 if ($wgUseTidy) {
228 $text = Parser::tidy($text);
229 }
230
231 wfRunHooks( 'ParserAfterTidy', array( &$this, &$text ) );
232
233 $this->mOutput->setText( $text );
234 wfProfileOut( $fname );
235 return $this->mOutput;
236 }
237
238 /**
239 * Get a random string
240 *
241 * @access private
242 * @static
243 */
244 function getRandomString() {
245 return dechex(mt_rand(0, 0x7fffffff)) . dechex(mt_rand(0, 0x7fffffff));
246 }
247
248 /**
249 * Replaces all occurrences of <$tag>content</$tag> in the text
250 * with a random marker and returns the new text. the output parameter
251 * $content will be an associative array filled with data on the form
252 * $unique_marker => content.
253 *
254 * If $content is already set, the additional entries will be appended
255 * If $tag is set to STRIP_COMMENTS, the function will extract
256 * <!-- HTML comments -->
257 *
258 * @access private
259 * @static
260 */
261 function extractTagsAndParams($tag, $text, &$content, &$tags, &$params, $uniq_prefix = ''){
262 $rnd = $uniq_prefix . '-' . $tag . Parser::getRandomString();
263 if ( !$content ) {
264 $content = array( );
265 }
266 $n = 1;
267 $stripped = '';
268
269 if ( !$tags ) {
270 $tags = array( );
271 }
272
273 if ( !$params ) {
274 $params = array( );
275 }
276
277 if( $tag == STRIP_COMMENTS ) {
278 $start = '/<!--()/';
279 $end = '/-->/';
280 } else {
281 $start = "/<$tag(\\s+[^>]*|\\s*)>/i";
282 $end = "/<\\/$tag\\s*>/i";
283 }
284
285 while ( '' != $text ) {
286 $p = preg_split( $start, $text, 2, PREG_SPLIT_DELIM_CAPTURE );
287 $stripped .= $p[0];
288 if( count( $p ) < 3 ) {
289 break;
290 }
291 $attributes = $p[1];
292 $inside = $p[2];
293
294 $marker = $rnd . sprintf('%08X', $n++);
295 $stripped .= $marker;
296
297 $tags[$marker] = "<$tag$attributes>";
298 $params[$marker] = Sanitizer::decodeTagAttributes( $attributes );
299
300 $q = preg_split( $end, $inside, 2 );
301 $content[$marker] = $q[0];
302 if( count( $q ) < 1 ) {
303 # No end tag -- let it run out to the end of the text.
304 break;
305 } else {
306 $text = $q[1];
307 }
308 }
309 return $stripped;
310 }
311
312 /**
313 * Wrapper function for extractTagsAndParams
314 * for cases where $tags and $params isn't needed
315 * i.e. where tags will never have params, like <nowiki>
316 *
317 * @access private
318 * @static
319 */
320 function extractTags( $tag, $text, &$content, $uniq_prefix = '' ) {
321 $dummy_tags = array();
322 $dummy_params = array();
323
324 return Parser::extractTagsAndParams( $tag, $text, $content,
325 $dummy_tags, $dummy_params, $uniq_prefix );
326 }
327
328 /**
329 * Strips and renders nowiki, pre, math, hiero
330 * If $render is set, performs necessary rendering operations on plugins
331 * Returns the text, and fills an array with data needed in unstrip()
332 * If the $state is already a valid strip state, it adds to the state
333 *
334 * @param bool $stripcomments when set, HTML comments <!-- like this -->
335 * will be stripped in addition to other tags. This is important
336 * for section editing, where these comments cause confusion when
337 * counting the sections in the wikisource
338 *
339 * @access private
340 */
341 function strip( $text, &$state, $stripcomments = false ) {
342 $render = ($this->mOutputType == OT_HTML);
343 $html_content = array();
344 $nowiki_content = array();
345 $math_content = array();
346 $pre_content = array();
347 $comment_content = array();
348 $ext_content = array();
349 $ext_tags = array();
350 $ext_params = array();
351 $gallery_content = array();
352
353 # Replace any instances of the placeholders
354 $uniq_prefix = UNIQ_PREFIX;
355 #$text = str_replace( $uniq_prefix, wfHtmlEscapeFirst( $uniq_prefix ), $text );
356
357 # html
358 global $wgRawHtml;
359 if( $wgRawHtml ) {
360 $text = Parser::extractTags('html', $text, $html_content, $uniq_prefix);
361 foreach( $html_content as $marker => $content ) {
362 if ($render ) {
363 # Raw and unchecked for validity.
364 $html_content[$marker] = $content;
365 } else {
366 $html_content[$marker] = '<html>'.$content.'</html>';
367 }
368 }
369 }
370
371 # nowiki
372 $text = Parser::extractTags('nowiki', $text, $nowiki_content, $uniq_prefix);
373 foreach( $nowiki_content as $marker => $content ) {
374 if( $render ){
375 $nowiki_content[$marker] = wfEscapeHTMLTagsOnly( $content );
376 } else {
377 $nowiki_content[$marker] = '<nowiki>'.$content.'</nowiki>';
378 }
379 }
380
381 # math
382 $text = Parser::extractTags('math', $text, $math_content, $uniq_prefix);
383 foreach( $math_content as $marker => $content ){
384 if( $render ) {
385 if( $this->mOptions->getUseTeX() ) {
386 $math_content[$marker] = renderMath( $content );
387 } else {
388 $math_content[$marker] = '&lt;math&gt;'.$content.'&lt;math&gt;';
389 }
390 } else {
391 $math_content[$marker] = '<math>'.$content.'</math>';
392 }
393 }
394
395 # pre
396 $text = Parser::extractTags('pre', $text, $pre_content, $uniq_prefix);
397 foreach( $pre_content as $marker => $content ){
398 if( $render ){
399 $pre_content[$marker] = '<pre>' . wfEscapeHTMLTagsOnly( $content ) . '</pre>';
400 } else {
401 $pre_content[$marker] = '<pre>'.$content.'</pre>';
402 }
403 }
404
405 # gallery
406 $text = Parser::extractTags('gallery', $text, $gallery_content, $uniq_prefix);
407 foreach( $gallery_content as $marker => $content ) {
408 require_once( 'ImageGallery.php' );
409 if ( $render ) {
410 $gallery_content[$marker] = Parser::renderImageGallery( $content );
411 } else {
412 $gallery_content[$marker] = '<gallery>'.$content.'</gallery>';
413 }
414 }
415
416 # Comments
417 if($stripcomments) {
418 $text = Parser::extractTags(STRIP_COMMENTS, $text, $comment_content, $uniq_prefix);
419 foreach( $comment_content as $marker => $content ){
420 $comment_content[$marker] = '<!--'.$content.'-->';
421 }
422 }
423
424 # Extensions
425 foreach ( $this->mTagHooks as $tag => $callback ) {
426 $ext_content[$tag] = array();
427 $text = Parser::extractTagsAndParams( $tag, $text, $ext_content[$tag],
428 $ext_tags[$tag], $ext_params[$tag], $uniq_prefix );
429 foreach( $ext_content[$tag] as $marker => $content ) {
430 $full_tag = $ext_tags[$tag][$marker];
431 $params = $ext_params[$tag][$marker];
432 if ( $render ) {
433 $ext_content[$tag][$marker] = $callback( $content, $params );
434 } else {
435 $ext_content[$tag][$marker] = "$full_tag$content</$tag>";
436 }
437 }
438 }
439
440 # Merge state with the pre-existing state, if there is one
441 if ( $state ) {
442 $state['html'] = $state['html'] + $html_content;
443 $state['nowiki'] = $state['nowiki'] + $nowiki_content;
444 $state['math'] = $state['math'] + $math_content;
445 $state['pre'] = $state['pre'] + $pre_content;
446 $state['comment'] = $state['comment'] + $comment_content;
447 $state['gallery'] = $state['gallery'] + $gallery_content;
448
449 foreach( $ext_content as $tag => $array ) {
450 if ( array_key_exists( $tag, $state ) ) {
451 $state[$tag] = $state[$tag] + $array;
452 }
453 }
454 } else {
455 $state = array(
456 'html' => $html_content,
457 'nowiki' => $nowiki_content,
458 'math' => $math_content,
459 'pre' => $pre_content,
460 'comment' => $comment_content,
461 'gallery' => $gallery_content,
462 ) + $ext_content;
463 }
464 return $text;
465 }
466
467 /**
468 * restores pre, math, and hiero removed by strip()
469 *
470 * always call unstripNoWiki() after this one
471 * @access private
472 */
473 function unstrip( $text, &$state ) {
474 # Must expand in reverse order, otherwise nested tags will be corrupted
475 $contentDict = end( $state );
476 for ( $contentDict = end( $state ); $contentDict !== false; $contentDict = prev( $state ) ) {
477 if( key($state) != 'nowiki' && key($state) != 'html') {
478 for ( $content = end( $contentDict ); $content !== false; $content = prev( $contentDict ) ) {
479 $text = str_replace( key( $contentDict ), $content, $text );
480 }
481 }
482 }
483
484 return $text;
485 }
486
487 /**
488 * always call this after unstrip() to preserve the order
489 *
490 * @access private
491 */
492 function unstripNoWiki( $text, &$state ) {
493 # Must expand in reverse order, otherwise nested tags will be corrupted
494 for ( $content = end($state['nowiki']); $content !== false; $content = prev( $state['nowiki'] ) ) {
495 $text = str_replace( key( $state['nowiki'] ), $content, $text );
496 }
497
498 global $wgRawHtml;
499 if ($wgRawHtml) {
500 for ( $content = end($state['html']); $content !== false; $content = prev( $state['html'] ) ) {
501 $text = str_replace( key( $state['html'] ), $content, $text );
502 }
503 }
504
505 return $text;
506 }
507
508 /**
509 * Add an item to the strip state
510 * Returns the unique tag which must be inserted into the stripped text
511 * The tag will be replaced with the original text in unstrip()
512 *
513 * @access private
514 */
515 function insertStripItem( $text, &$state ) {
516 $rnd = UNIQ_PREFIX . '-item' . Parser::getRandomString();
517 if ( !$state ) {
518 $state = array(
519 'html' => array(),
520 'nowiki' => array(),
521 'math' => array(),
522 'pre' => array(),
523 'comment' => array(),
524 'gallery' => array(),
525 );
526 }
527 $state['item'][$rnd] = $text;
528 return $rnd;
529 }
530
531 /**
532 * Interface with html tidy, used if $wgUseTidy = true.
533 * If tidy isn't able to correct the markup, the original will be
534 * returned in all its glory with a warning comment appended.
535 *
536 * Either the external tidy program or the in-process tidy extension
537 * will be used depending on availability. Override the default
538 * $wgTidyInternal setting to disable the internal if it's not working.
539 *
540 * @param string $text Hideous HTML input
541 * @return string Corrected HTML output
542 * @access public
543 * @static
544 */
545 function tidy( $text ) {
546 global $wgTidyInternal;
547 $wrappedtext = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'.
548 ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>'.
549 '<head><title>test</title></head><body>'.$text.'</body></html>';
550 if( $wgTidyInternal ) {
551 $correctedtext = Parser::internalTidy( $wrappedtext );
552 } else {
553 $correctedtext = Parser::externalTidy( $wrappedtext );
554 }
555 if( is_null( $correctedtext ) ) {
556 wfDebug( "Tidy error detected!\n" );
557 return $text . "\n<!-- Tidy found serious XHTML errors -->\n";
558 }
559 return $correctedtext;
560 }
561
562 /**
563 * Spawn an external HTML tidy process and get corrected markup back from it.
564 *
565 * @access private
566 * @static
567 */
568 function externalTidy( $text ) {
569 global $wgTidyConf, $wgTidyBin, $wgTidyOpts;
570 $fname = 'Parser::externalTidy';
571 wfProfileIn( $fname );
572
573 $cleansource = '';
574 $opts = ' -utf8';
575
576 $descriptorspec = array(
577 0 => array('pipe', 'r'),
578 1 => array('pipe', 'w'),
579 2 => array('file', '/dev/null', 'a')
580 );
581 $pipes = array();
582 $process = proc_open("$wgTidyBin -config $wgTidyConf $wgTidyOpts$opts", $descriptorspec, $pipes);
583 if (is_resource($process)) {
584 fwrite($pipes[0], $text);
585 fclose($pipes[0]);
586 while (!feof($pipes[1])) {
587 $cleansource .= fgets($pipes[1], 1024);
588 }
589 fclose($pipes[1]);
590 proc_close($process);
591 }
592
593 wfProfileOut( $fname );
594
595 if( $cleansource == '' && $text != '') {
596 // Some kind of error happened, so we couldn't get the corrected text.
597 // Just give up; we'll use the source text and append a warning.
598 return null;
599 } else {
600 return $cleansource;
601 }
602 }
603
604 /**
605 * Use the HTML tidy PECL extension to use the tidy library in-process,
606 * saving the overhead of spawning a new process. Currently written to
607 * the PHP 4.3.x version of the extension, may not work on PHP 5.
608 *
609 * 'pear install tidy' should be able to compile the extension module.
610 *
611 * @access private
612 * @static
613 */
614 function internalTidy( $text ) {
615 global $wgTidyConf;
616 $fname = 'Parser::internalTidy';
617 wfProfileIn( $fname );
618
619 tidy_load_config( $wgTidyConf );
620 tidy_set_encoding( 'utf8' );
621 tidy_parse_string( $text );
622 tidy_clean_repair();
623 if( tidy_get_status() == 2 ) {
624 // 2 is magic number for fatal error
625 // http://www.php.net/manual/en/function.tidy-get-status.php
626 $cleansource = null;
627 } else {
628 $cleansource = tidy_get_output();
629 }
630 wfProfileOut( $fname );
631 return $cleansource;
632 }
633
634 /**
635 * parse the wiki syntax used to render tables
636 *
637 * @access private
638 */
639 function doTableStuff ( $t ) {
640 $fname = 'Parser::doTableStuff';
641 wfProfileIn( $fname );
642
643 $t = explode ( "\n" , $t ) ;
644 $td = array () ; # Is currently a td tag open?
645 $ltd = array () ; # Was it TD or TH?
646 $tr = array () ; # Is currently a tr tag open?
647 $ltr = array () ; # tr attributes
648 $indent_level = 0; # indent level of the table
649 foreach ( $t AS $k => $x )
650 {
651 $x = trim ( $x ) ;
652 $fc = substr ( $x , 0 , 1 ) ;
653 if ( preg_match( '/^(:*)\{\|(.*)$/', $x, $matches ) ) {
654 $indent_level = strlen( $matches[1] );
655 $t[$k] = str_repeat( '<dl><dd>', $indent_level ) .
656 '<table' . Sanitizer::fixTagAttributes ( $matches[2], 'table' ) . '>' ;
657 array_push ( $td , false ) ;
658 array_push ( $ltd , '' ) ;
659 array_push ( $tr , false ) ;
660 array_push ( $ltr , '' ) ;
661 }
662 else if ( count ( $td ) == 0 ) { } # Don't do any of the following
663 else if ( '|}' == substr ( $x , 0 , 2 ) ) {
664 $z = "</table>" . substr ( $x , 2);
665 $l = array_pop ( $ltd ) ;
666 if ( array_pop ( $tr ) ) $z = '</tr>' . $z ;
667 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
668 array_pop ( $ltr ) ;
669 $t[$k] = $z . str_repeat( '</dd></dl>', $indent_level );
670 }
671 else if ( '|-' == substr ( $x , 0 , 2 ) ) { # Allows for |---------------
672 $x = substr ( $x , 1 ) ;
673 while ( $x != '' && substr ( $x , 0 , 1 ) == '-' ) $x = substr ( $x , 1 ) ;
674 $z = '' ;
675 $l = array_pop ( $ltd ) ;
676 if ( array_pop ( $tr ) ) $z = '</tr>' . $z ;
677 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
678 array_pop ( $ltr ) ;
679 $t[$k] = $z ;
680 array_push ( $tr , false ) ;
681 array_push ( $td , false ) ;
682 array_push ( $ltd , '' ) ;
683 array_push ( $ltr , Sanitizer::fixTagAttributes ( $x, 'tr' ) ) ;
684 }
685 else if ( '|' == $fc || '!' == $fc || '|+' == substr ( $x , 0 , 2 ) ) { # Caption
686 # $x is a table row
687 if ( '|+' == substr ( $x , 0 , 2 ) ) {
688 $fc = '+' ;
689 $x = substr ( $x , 1 ) ;
690 }
691 $after = substr ( $x , 1 ) ;
692 if ( $fc == '!' ) $after = str_replace ( '!!' , '||' , $after ) ;
693 $after = explode ( '||' , $after ) ;
694 $t[$k] = '' ;
695
696 # Loop through each table cell
697 foreach ( $after AS $theline )
698 {
699 $z = '' ;
700 if ( $fc != '+' )
701 {
702 $tra = array_pop ( $ltr ) ;
703 if ( !array_pop ( $tr ) ) $z = '<tr'.$tra.">\n" ;
704 array_push ( $tr , true ) ;
705 array_push ( $ltr , '' ) ;
706 }
707
708 $l = array_pop ( $ltd ) ;
709 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
710 if ( $fc == '|' ) $l = 'td' ;
711 else if ( $fc == '!' ) $l = 'th' ;
712 else if ( $fc == '+' ) $l = 'caption' ;
713 else $l = '' ;
714 array_push ( $ltd , $l ) ;
715
716 # Cell parameters
717 $y = explode ( '|' , $theline , 2 ) ;
718 # Note that a '|' inside an invalid link should not
719 # be mistaken as delimiting cell parameters
720 if ( strpos( $y[0], '[[' ) !== false ) {
721 $y = array ($theline);
722 }
723 if ( count ( $y ) == 1 )
724 $y = "{$z}<{$l}>{$y[0]}" ;
725 else $y = $y = "{$z}<{$l}".Sanitizer::fixTagAttributes($y[0], $l).">{$y[1]}" ;
726 $t[$k] .= $y ;
727 array_push ( $td , true ) ;
728 }
729 }
730 }
731
732 # Closing open td, tr && table
733 while ( count ( $td ) > 0 )
734 {
735 if ( array_pop ( $td ) ) $t[] = '</td>' ;
736 if ( array_pop ( $tr ) ) $t[] = '</tr>' ;
737 $t[] = '</table>' ;
738 }
739
740 $t = implode ( "\n" , $t ) ;
741 wfProfileOut( $fname );
742 return $t ;
743 }
744
745 /**
746 * Helper function for parse() that transforms wiki markup into
747 * HTML. Only called for $mOutputType == OT_HTML.
748 *
749 * @access private
750 */
751 function internalParse( $text ) {
752 global $wgContLang;
753 $args = array();
754 $isMain = true;
755 $fname = 'Parser::internalParse';
756 wfProfileIn( $fname );
757
758 $text = Sanitizer::removeHTMLtags( $text, array( &$this, 'replaceVariables' ) );
759 $text = $this->replaceVariables( $text, $args );
760
761 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
762
763 $text = $this->doHeadings( $text );
764 if($this->mOptions->getUseDynamicDates()) {
765 $df =& DateFormatter::getInstance();
766 $text = $df->reformat( $this->mOptions->getDateFormat(), $text );
767 }
768 $text = $this->doAllQuotes( $text );
769 $text = $this->replaceInternalLinks( $text );
770 $text = $this->replaceExternalLinks( $text );
771
772 # replaceInternalLinks may sometimes leave behind
773 # absolute URLs, which have to be masked to hide them from replaceExternalLinks
774 $text = str_replace("http-noparse://","http://",$text);
775
776 $text = $this->doMagicLinks( $text );
777 $text = $this->doTableStuff( $text );
778 $text = $this->formatHeadings( $text, $isMain );
779
780 $regex = '/<!--IW_TRANSCLUDE (\d+)-->/';
781 $text = preg_replace_callback($regex, array(&$this, 'scarySubstitution'), $text);
782
783 wfProfileOut( $fname );
784 return $text;
785 }
786
787 function scarySubstitution($matches) {
788 # return "[[".$matches[0]."]]";
789 return $this->mIWTransData[(int)$matches[0]];
790 }
791
792 /**
793 * Replace special strings like "ISBN xxx" and "RFC xxx" with
794 * magic external links.
795 *
796 * @access private
797 */
798 function &doMagicLinks( &$text ) {
799 $text = $this->magicISBN( $text );
800 $text = $this->magicRFC( $text, 'RFC ', 'rfcurl' );
801 $text = $this->magicRFC( $text, 'PMID ', 'pubmedurl' );
802 return $text;
803 }
804
805 /**
806 * Parse ^^ tokens and return html
807 *
808 * @access private
809 */
810 function doExponent( $text ) {
811 $fname = 'Parser::doExponent';
812 wfProfileIn( $fname );
813 $text = preg_replace('/\^\^(.*)\^\^/','<small><sup>\\1</sup></small>', $text);
814 wfProfileOut( $fname );
815 return $text;
816 }
817
818 /**
819 * Parse headers and return html
820 *
821 * @access private
822 */
823 function doHeadings( $text ) {
824 $fname = 'Parser::doHeadings';
825 wfProfileIn( $fname );
826 for ( $i = 6; $i >= 1; --$i ) {
827 $h = substr( '======', 0, $i );
828 $text = preg_replace( "/^{$h}(.+){$h}(\\s|$)/m",
829 "<h{$i}>\\1</h{$i}>\\2", $text );
830 }
831 wfProfileOut( $fname );
832 return $text;
833 }
834
835 /**
836 * Replace single quotes with HTML markup
837 * @access private
838 * @return string the altered text
839 */
840 function doAllQuotes( $text ) {
841 $fname = 'Parser::doAllQuotes';
842 wfProfileIn( $fname );
843 $outtext = '';
844 $lines = explode( "\n", $text );
845 foreach ( $lines as $line ) {
846 $outtext .= $this->doQuotes ( $line ) . "\n";
847 }
848 $outtext = substr($outtext, 0,-1);
849 wfProfileOut( $fname );
850 return $outtext;
851 }
852
853 /**
854 * Helper function for doAllQuotes()
855 * @access private
856 */
857 function doQuotes( $text ) {
858 $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE );
859 if ( count( $arr ) == 1 )
860 return $text;
861 else
862 {
863 # First, do some preliminary work. This may shift some apostrophes from
864 # being mark-up to being text. It also counts the number of occurrences
865 # of bold and italics mark-ups.
866 $i = 0;
867 $numbold = 0;
868 $numitalics = 0;
869 foreach ( $arr as $r )
870 {
871 if ( ( $i % 2 ) == 1 )
872 {
873 # If there are ever four apostrophes, assume the first is supposed to
874 # be text, and the remaining three constitute mark-up for bold text.
875 if ( strlen( $arr[$i] ) == 4 )
876 {
877 $arr[$i-1] .= "'";
878 $arr[$i] = "'''";
879 }
880 # If there are more than 5 apostrophes in a row, assume they're all
881 # text except for the last 5.
882 else if ( strlen( $arr[$i] ) > 5 )
883 {
884 $arr[$i-1] .= str_repeat( "'", strlen( $arr[$i] ) - 5 );
885 $arr[$i] = "'''''";
886 }
887 # Count the number of occurrences of bold and italics mark-ups.
888 # We are not counting sequences of five apostrophes.
889 if ( strlen( $arr[$i] ) == 2 ) $numitalics++; else
890 if ( strlen( $arr[$i] ) == 3 ) $numbold++; else
891 if ( strlen( $arr[$i] ) == 5 ) { $numitalics++; $numbold++; }
892 }
893 $i++;
894 }
895
896 # If there is an odd number of both bold and italics, it is likely
897 # that one of the bold ones was meant to be an apostrophe followed
898 # by italics. Which one we cannot know for certain, but it is more
899 # likely to be one that has a single-letter word before it.
900 if ( ( $numbold % 2 == 1 ) && ( $numitalics % 2 == 1 ) )
901 {
902 $i = 0;
903 $firstsingleletterword = -1;
904 $firstmultiletterword = -1;
905 $firstspace = -1;
906 foreach ( $arr as $r )
907 {
908 if ( ( $i % 2 == 1 ) and ( strlen( $r ) == 3 ) )
909 {
910 $x1 = substr ($arr[$i-1], -1);
911 $x2 = substr ($arr[$i-1], -2, 1);
912 if ($x1 == ' ') {
913 if ($firstspace == -1) $firstspace = $i;
914 } else if ($x2 == ' ') {
915 if ($firstsingleletterword == -1) $firstsingleletterword = $i;
916 } else {
917 if ($firstmultiletterword == -1) $firstmultiletterword = $i;
918 }
919 }
920 $i++;
921 }
922
923 # If there is a single-letter word, use it!
924 if ($firstsingleletterword > -1)
925 {
926 $arr [ $firstsingleletterword ] = "''";
927 $arr [ $firstsingleletterword-1 ] .= "'";
928 }
929 # If not, but there's a multi-letter word, use that one.
930 else if ($firstmultiletterword > -1)
931 {
932 $arr [ $firstmultiletterword ] = "''";
933 $arr [ $firstmultiletterword-1 ] .= "'";
934 }
935 # ... otherwise use the first one that has neither.
936 # (notice that it is possible for all three to be -1 if, for example,
937 # there is only one pentuple-apostrophe in the line)
938 else if ($firstspace > -1)
939 {
940 $arr [ $firstspace ] = "''";
941 $arr [ $firstspace-1 ] .= "'";
942 }
943 }
944
945 # Now let's actually convert our apostrophic mush to HTML!
946 $output = '';
947 $buffer = '';
948 $state = '';
949 $i = 0;
950 foreach ($arr as $r)
951 {
952 if (($i % 2) == 0)
953 {
954 if ($state == 'both')
955 $buffer .= $r;
956 else
957 $output .= $r;
958 }
959 else
960 {
961 if (strlen ($r) == 2)
962 {
963 if ($state == 'i')
964 { $output .= '</i>'; $state = ''; }
965 else if ($state == 'bi')
966 { $output .= '</i>'; $state = 'b'; }
967 else if ($state == 'ib')
968 { $output .= '</b></i><b>'; $state = 'b'; }
969 else if ($state == 'both')
970 { $output .= '<b><i>'.$buffer.'</i>'; $state = 'b'; }
971 else # $state can be 'b' or ''
972 { $output .= '<i>'; $state .= 'i'; }
973 }
974 else if (strlen ($r) == 3)
975 {
976 if ($state == 'b')
977 { $output .= '</b>'; $state = ''; }
978 else if ($state == 'bi')
979 { $output .= '</i></b><i>'; $state = 'i'; }
980 else if ($state == 'ib')
981 { $output .= '</b>'; $state = 'i'; }
982 else if ($state == 'both')
983 { $output .= '<i><b>'.$buffer.'</b>'; $state = 'i'; }
984 else # $state can be 'i' or ''
985 { $output .= '<b>'; $state .= 'b'; }
986 }
987 else if (strlen ($r) == 5)
988 {
989 if ($state == 'b')
990 { $output .= '</b><i>'; $state = 'i'; }
991 else if ($state == 'i')
992 { $output .= '</i><b>'; $state = 'b'; }
993 else if ($state == 'bi')
994 { $output .= '</i></b>'; $state = ''; }
995 else if ($state == 'ib')
996 { $output .= '</b></i>'; $state = ''; }
997 else if ($state == 'both')
998 { $output .= '<i><b>'.$buffer.'</b></i>'; $state = ''; }
999 else # ($state == '')
1000 { $buffer = ''; $state = 'both'; }
1001 }
1002 }
1003 $i++;
1004 }
1005 # Now close all remaining tags. Notice that the order is important.
1006 if ($state == 'b' || $state == 'ib')
1007 $output .= '</b>';
1008 if ($state == 'i' || $state == 'bi' || $state == 'ib')
1009 $output .= '</i>';
1010 if ($state == 'bi')
1011 $output .= '</b>';
1012 if ($state == 'both')
1013 $output .= '<b><i>'.$buffer.'</i></b>';
1014 return $output;
1015 }
1016 }
1017
1018 /**
1019 * Replace external links
1020 *
1021 * Note: this is all very hackish and the order of execution matters a lot.
1022 * Make sure to run maintenance/parserTests.php if you change this code.
1023 *
1024 * @access private
1025 */
1026 function replaceExternalLinks( $text ) {
1027 global $wgContLang;
1028 $fname = 'Parser::replaceExternalLinks';
1029 wfProfileIn( $fname );
1030
1031 $sk =& $this->mOptions->getSkin();
1032
1033 $bits = preg_split( EXT_LINK_BRACKETED, $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1034
1035 $s = $this->replaceFreeExternalLinks( array_shift( $bits ) );
1036
1037 $i = 0;
1038 while ( $i<count( $bits ) ) {
1039 $url = $bits[$i++];
1040 $protocol = $bits[$i++];
1041 $text = $bits[$i++];
1042 $trail = $bits[$i++];
1043
1044 # The characters '<' and '>' (which were escaped by
1045 # removeHTMLtags()) should not be included in
1046 # URLs, per RFC 2396.
1047 if (preg_match('/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE)) {
1048 $text = substr($url, $m2[0][1]) . ' ' . $text;
1049 $url = substr($url, 0, $m2[0][1]);
1050 }
1051
1052 # If the link text is an image URL, replace it with an <img> tag
1053 # This happened by accident in the original parser, but some people used it extensively
1054 $img = $this->maybeMakeExternalImage( $text );
1055 if ( $img !== false ) {
1056 $text = $img;
1057 }
1058
1059 $dtrail = '';
1060
1061 # Set linktype for CSS - if URL==text, link is essentially free
1062 $linktype = ($text == $url) ? 'free' : 'text';
1063
1064 # No link text, e.g. [http://domain.tld/some.link]
1065 if ( $text == '' ) {
1066 # Autonumber if allowed
1067 if ( strpos( HTTP_PROTOCOLS, $protocol ) !== false ) {
1068 $text = '[' . ++$this->mAutonumber . ']';
1069 $linktype = 'autonumber';
1070 } else {
1071 # Otherwise just use the URL
1072 $text = htmlspecialchars( $url );
1073 $linktype = 'free';
1074 }
1075 } else {
1076 # Have link text, e.g. [http://domain.tld/some.link text]s
1077 # Check for trail
1078 list( $dtrail, $trail ) = Linker::splitTrail( $trail );
1079 }
1080
1081 $text = $wgContLang->markNoConversion($text);
1082
1083 # Replace &amp; from obsolete syntax with &.
1084 # All HTML entities will be escaped by makeExternalLink()
1085 # or maybeMakeExternalImage()
1086 $url = str_replace( '&amp;', '&', $url );
1087
1088 # Process the trail (i.e. everything after this link up until start of the next link),
1089 # replacing any non-bracketed links
1090 $trail = $this->replaceFreeExternalLinks( $trail );
1091
1092
1093 # Use the encoded URL
1094 # This means that users can paste URLs directly into the text
1095 # Funny characters like &ouml; aren't valid in URLs anyway
1096 # This was changed in August 2004
1097 $s .= $sk->makeExternalLink( $url, $text, false, $linktype ) . $dtrail . $trail;
1098 }
1099
1100 wfProfileOut( $fname );
1101 return $s;
1102 }
1103
1104 /**
1105 * Replace anything that looks like a URL with a link
1106 * @access private
1107 */
1108 function replaceFreeExternalLinks( $text ) {
1109 global $wgContLang;
1110 $fname = 'Parser::replaceFreeExternalLinks';
1111 wfProfileIn( $fname );
1112
1113 $bits = preg_split( '/(\b(?:'.URL_PROTOCOLS.'):)/S', $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1114 $s = array_shift( $bits );
1115 $i = 0;
1116
1117 $sk =& $this->mOptions->getSkin();
1118
1119 while ( $i < count( $bits ) ){
1120 $protocol = $bits[$i++];
1121 $remainder = $bits[$i++];
1122
1123 if ( preg_match( '/^('.EXT_LINK_URL_CLASS.'+)(.*)$/s', $remainder, $m ) ) {
1124 # Found some characters after the protocol that look promising
1125 $url = $protocol . $m[1];
1126 $trail = $m[2];
1127
1128 # The characters '<' and '>' (which were escaped by
1129 # removeHTMLtags()) should not be included in
1130 # URLs, per RFC 2396.
1131 if (preg_match('/&(lt|gt);/', $url, $m2, PREG_OFFSET_CAPTURE)) {
1132 $trail = substr($url, $m2[0][1]) . $trail;
1133 $url = substr($url, 0, $m2[0][1]);
1134 }
1135
1136 # Move trailing punctuation to $trail
1137 $sep = ',;\.:!?';
1138 # If there is no left bracket, then consider right brackets fair game too
1139 if ( strpos( $url, '(' ) === false ) {
1140 $sep .= ')';
1141 }
1142
1143 $numSepChars = strspn( strrev( $url ), $sep );
1144 if ( $numSepChars ) {
1145 $trail = substr( $url, -$numSepChars ) . $trail;
1146 $url = substr( $url, 0, -$numSepChars );
1147 }
1148
1149 # Replace &amp; from obsolete syntax with &.
1150 # All HTML entities will be escaped by makeExternalLink()
1151 # or maybeMakeExternalImage()
1152 $url = str_replace( '&amp;', '&', $url );
1153
1154 # Is this an external image?
1155 $text = $this->maybeMakeExternalImage( $url );
1156 if ( $text === false ) {
1157 # Not an image, make a link
1158 $text = $sk->makeExternalLink( $url, $wgContLang->markNoConversion($url), true, 'free' );
1159 }
1160 $s .= $text . $trail;
1161 } else {
1162 $s .= $protocol . $remainder;
1163 }
1164 }
1165 wfProfileOut();
1166 return $s;
1167 }
1168
1169 /**
1170 * make an image if it's allowed
1171 * @access private
1172 */
1173 function maybeMakeExternalImage( $url ) {
1174 $sk =& $this->mOptions->getSkin();
1175 $text = false;
1176 if ( $this->mOptions->getAllowExternalImages() ) {
1177 if ( preg_match( EXT_IMAGE_REGEX, $url ) ) {
1178 # Image found
1179 $text = $sk->makeExternalImage( htmlspecialchars( $url ) );
1180 }
1181 }
1182 return $text;
1183 }
1184
1185 /**
1186 * Process [[ ]] wikilinks
1187 *
1188 * @access private
1189 */
1190 function replaceInternalLinks( $s ) {
1191 global $wgContLang, $wgLinkCache;
1192 static $fname = 'Parser::replaceInternalLinks' ;
1193
1194 wfProfileIn( $fname );
1195
1196 wfProfileIn( $fname.'-setup' );
1197 static $tc = FALSE;
1198 # the % is needed to support urlencoded titles as well
1199 if ( !$tc ) { $tc = Title::legalChars() . '#%'; }
1200
1201 $sk =& $this->mOptions->getSkin();
1202
1203 #split the entire text string on occurences of [[
1204 $a = explode( '[[', ' ' . $s );
1205 #get the first element (all text up to first [[), and remove the space we added
1206 $s = array_shift( $a );
1207 $s = substr( $s, 1 );
1208
1209 # Match a link having the form [[namespace:link|alternate]]trail
1210 static $e1 = FALSE;
1211 if ( !$e1 ) { $e1 = "/^([{$tc}]+)(?:\\|(.+?))?]](.*)\$/sD"; }
1212 # Match cases where there is no "]]", which might still be images
1213 static $e1_img = FALSE;
1214 if ( !$e1_img ) { $e1_img = "/^([{$tc}]+)\\|(.*)\$/sD"; }
1215 # Match the end of a line for a word that's not followed by whitespace,
1216 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
1217 static $e2 = '/^(.*?)([a-zA-Z\x80-\xff]+)$/sD';
1218
1219 $useLinkPrefixExtension = $wgContLang->linkPrefixExtension();
1220
1221 if( is_null( $this->mTitle ) ) {
1222 wfDebugDieBacktrace( 'nooo' );
1223 }
1224 $nottalk = !$this->mTitle->isTalkPage();
1225
1226 if ( $useLinkPrefixExtension ) {
1227 if ( preg_match( $e2, $s, $m ) ) {
1228 $first_prefix = $m[2];
1229 $s = $m[1];
1230 } else {
1231 $first_prefix = false;
1232 }
1233 } else {
1234 $prefix = '';
1235 }
1236
1237 $selflink = $this->mTitle->getPrefixedText();
1238 wfProfileOut( $fname.'-setup' );
1239
1240 $checkVariantLink = sizeof($wgContLang->getVariants())>1;
1241 $useSubpages = $this->areSubpagesAllowed();
1242
1243 # Loop for each link
1244 for ($k = 0; isset( $a[$k] ); $k++) {
1245 $line = $a[$k];
1246 if ( $useLinkPrefixExtension ) {
1247 wfProfileIn( $fname.'-prefixhandling' );
1248 if ( preg_match( $e2, $s, $m ) ) {
1249 $prefix = $m[2];
1250 $s = $m[1];
1251 } else {
1252 $prefix='';
1253 }
1254 # first link
1255 if($first_prefix) {
1256 $prefix = $first_prefix;
1257 $first_prefix = false;
1258 }
1259 wfProfileOut( $fname.'-prefixhandling' );
1260 }
1261
1262 $might_be_img = false;
1263
1264 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
1265 $text = $m[2];
1266 # If we get a ] at the beginning of $m[3] that means we have a link that's something like:
1267 # [[Image:Foo.jpg|[http://example.com desc]]] <- having three ] in a row fucks up,
1268 # the real problem is with the $e1 regex
1269 # See bug 1300.
1270 #
1271 # Still some problems for cases where the ] is meant to be outside punctuation,
1272 # and no image is in sight. See bug 2095.
1273 #
1274 if( $text !== '' && preg_match( "/^\](.*)/s", $m[3], $n ) ) {
1275 $text .= ']'; # so that replaceExternalLinks($text) works later
1276 $m[3] = $n[1];
1277 }
1278 # fix up urlencoded title texts
1279 if(preg_match('/%/', $m[1] )) $m[1] = urldecode($m[1]);
1280 $trail = $m[3];
1281 } elseif( preg_match($e1_img, $line, $m) ) { # Invalid, but might be an image with a link in its caption
1282 $might_be_img = true;
1283 $text = $m[2];
1284 if(preg_match('/%/', $m[1] )) $m[1] = urldecode($m[1]);
1285 $trail = "";
1286 } else { # Invalid form; output directly
1287 $s .= $prefix . '[[' . $line ;
1288 continue;
1289 }
1290
1291 # Don't allow internal links to pages containing
1292 # PROTO: where PROTO is a valid URL protocol; these
1293 # should be external links.
1294 if (preg_match('/^(\b(?:'.URL_PROTOCOLS.'):)/', $m[1])) {
1295 $s .= $prefix . '[[' . $line ;
1296 continue;
1297 }
1298
1299 # Make subpage if necessary
1300 if( $useSubpages ) {
1301 $link = $this->maybeDoSubpageLink( $m[1], $text );
1302 } else {
1303 $link = $m[1];
1304 }
1305
1306 $noforce = (substr($m[1], 0, 1) != ':');
1307 if (!$noforce) {
1308 # Strip off leading ':'
1309 $link = substr($link, 1);
1310 }
1311
1312 $nt =& Title::newFromText( $this->unstripNoWiki($link, $this->mStripState) );
1313 if( !$nt ) {
1314 $s .= $prefix . '[[' . $line;
1315 continue;
1316 }
1317
1318 #check other language variants of the link
1319 #if the article does not exist
1320 if( $checkVariantLink
1321 && $nt->getArticleID() == 0 ) {
1322 $wgContLang->findVariantLink($link, $nt);
1323 }
1324
1325 $ns = $nt->getNamespace();
1326 $iw = $nt->getInterWiki();
1327
1328 if ($might_be_img) { # if this is actually an invalid link
1329 if ($ns == NS_IMAGE && $noforce) { #but might be an image
1330 $found = false;
1331 while (isset ($a[$k+1]) ) {
1332 #look at the next 'line' to see if we can close it there
1333 $next_line = array_shift(array_splice( $a, $k + 1, 1) );
1334 if( preg_match("/^(.*?]].*?)]](.*)$/sD", $next_line, $m) ) {
1335 # the first ]] closes the inner link, the second the image
1336 $found = true;
1337 $text .= '[[' . $m[1];
1338 $trail = $m[2];
1339 break;
1340 } elseif( preg_match("/^.*?]].*$/sD", $next_line, $m) ) {
1341 #if there's exactly one ]] that's fine, we'll keep looking
1342 $text .= '[[' . $m[0];
1343 } else {
1344 #if $next_line is invalid too, we need look no further
1345 $text .= '[[' . $next_line;
1346 break;
1347 }
1348 }
1349 if ( !$found ) {
1350 # we couldn't find the end of this imageLink, so output it raw
1351 #but don't ignore what might be perfectly normal links in the text we've examined
1352 $text = $this->replaceInternalLinks($text);
1353 $s .= $prefix . '[[' . $link . '|' . $text;
1354 # note: no $trail, because without an end, there *is* no trail
1355 continue;
1356 }
1357 } else { #it's not an image, so output it raw
1358 $s .= $prefix . '[[' . $link . '|' . $text;
1359 # note: no $trail, because without an end, there *is* no trail
1360 continue;
1361 }
1362 }
1363
1364 $wasblank = ( '' == $text );
1365 if( $wasblank ) $text = $link;
1366
1367
1368 # Link not escaped by : , create the various objects
1369 if( $noforce ) {
1370
1371 # Interwikis
1372 if( $iw && $this->mOptions->getInterwikiMagic() && $nottalk && $wgContLang->getLanguageName( $iw ) ) {
1373 array_push( $this->mOutput->mLanguageLinks, $nt->getFullText() );
1374 $s = rtrim($s . "\n");
1375 $s .= trim($prefix . $trail, "\n") == '' ? '': $prefix . $trail;
1376 continue;
1377 }
1378
1379 if ( $ns == NS_IMAGE ) {
1380 wfProfileIn( "$fname-image" );
1381 if ( !wfIsBadImage( $nt->getDBkey() ) ) {
1382 # recursively parse links inside the image caption
1383 # actually, this will parse them in any other parameters, too,
1384 # but it might be hard to fix that, and it doesn't matter ATM
1385 $text = $this->replaceExternalLinks($text);
1386 $text = $this->replaceInternalLinks($text);
1387
1388 # cloak any absolute URLs inside the image markup, so replaceExternalLinks() won't touch them
1389 $s .= $prefix . str_replace('http://', 'http-noparse://', $this->makeImage( $nt, $text ) ) . $trail;
1390 $wgLinkCache->addImageLinkObj( $nt );
1391
1392 wfProfileOut( "$fname-image" );
1393 continue;
1394 }
1395 wfProfileOut( "$fname-image" );
1396
1397 }
1398
1399 if ( $ns == NS_CATEGORY ) {
1400 wfProfileIn( "$fname-category" );
1401 $t = $wgContLang->convertHtml( $nt->getText() );
1402 $s = rtrim($s . "\n"); # bug 87
1403
1404 $wgLinkCache->suspend(); # Don't save in links/brokenlinks
1405 $t = $sk->makeLinkObj( $nt, $t, '', '' , $prefix );
1406 $wgLinkCache->resume();
1407
1408 if ( $wasblank ) {
1409 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
1410 $sortkey = $this->mTitle->getText();
1411 } else {
1412 $sortkey = $this->mTitle->getPrefixedText();
1413 }
1414 } else {
1415 $sortkey = $text;
1416 }
1417 $sortkey = $wgContLang->convertCategoryKey( $sortkey );
1418 $wgLinkCache->addCategoryLinkObj( $nt, $sortkey );
1419 $this->mOutput->addCategoryLink( $t );
1420
1421 /**
1422 * Strip the whitespace Category links produce, see bug 87
1423 * @todo We might want to use trim($tmp, "\n") here.
1424 */
1425 $s .= trim($prefix . $trail, "\n") == '' ? '': $prefix . $trail;
1426
1427 wfProfileOut( "$fname-category" );
1428 continue;
1429 }
1430 }
1431
1432 if( ( $nt->getPrefixedText() === $selflink ) &&
1433 ( $nt->getFragment() === '' ) ) {
1434 # Self-links are handled specially; generally de-link and change to bold.
1435 $s .= $prefix . $sk->makeSelfLinkObj( $nt, $text, '', $trail );
1436 continue;
1437 }
1438
1439 # Special and Media are pseudo-namespaces; no pages actually exist in them
1440 if( $ns == NS_MEDIA ) {
1441 $s .= $prefix . $sk->makeMediaLinkObj( $nt, $text, true ) . $trail;
1442 $wgLinkCache->addImageLinkObj( $nt );
1443 continue;
1444 } elseif( $ns == NS_SPECIAL ) {
1445 $s .= $prefix . $sk->makeKnownLinkObj( $nt, $text, '', $trail );
1446 continue;
1447 }
1448 if( !$nt->isExternal() && $nt->isAlwaysKnown() ) {
1449 /**
1450 * Skip lookups for special pages and self-links.
1451 * External interwiki links are not included here because
1452 * the HTTP urls would break output in the next parse step;
1453 * they will have placeholders kept.
1454 */
1455 $s .= $sk->makeKnownLinkObj( $nt, $text, '', $trail, $prefix );
1456 } else {
1457 /**
1458 * Add a link placeholder
1459 * Later, this will be replaced by a real link, after the existence or
1460 * non-existence of all the links is known
1461 */
1462 $s .= $this->makeLinkHolder( $nt, $text, '', $trail, $prefix );
1463 }
1464 }
1465 wfProfileOut( $fname );
1466 return $s;
1467 }
1468
1469 /**
1470 * Make a link placeholder. The text returned can be later resolved to a real link with
1471 * replaceLinkHolders(). This is done for two reasons: firstly to avoid further
1472 * parsing of interwiki links, and secondly to allow all extistence checks and
1473 * article length checks (for stub links) to be bundled into a single query.
1474 *
1475 */
1476 function makeLinkHolder( &$nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
1477 if ( ! is_object($nt) ) {
1478 # Fail gracefully
1479 $retVal = "<!-- ERROR -->{$prefix}{$text}{$trail}";
1480 } else {
1481 # Separate the link trail from the rest of the link
1482 list( $inside, $trail ) = Linker::splitTrail( $trail );
1483
1484 if ( $nt->isExternal() ) {
1485 $nr = array_push( $this->mInterwikiLinkHolders['texts'], $prefix.$text.$inside );
1486 $this->mInterwikiLinkHolders['titles'][] = $nt;
1487 $retVal = '<!--IWLINK '. ($nr-1) ."-->{$trail}";
1488 } else {
1489 $nr = array_push( $this->mLinkHolders['namespaces'], $nt->getNamespace() );
1490 $this->mLinkHolders['dbkeys'][] = $nt->getDBkey();
1491 $this->mLinkHolders['queries'][] = $query;
1492 $this->mLinkHolders['texts'][] = $prefix.$text.$inside;
1493 $this->mLinkHolders['titles'][] = $nt;
1494
1495 $retVal = '<!--LINK '. ($nr-1) ."-->{$trail}";
1496 }
1497 }
1498 return $retVal;
1499 }
1500
1501 /**
1502 * Return true if subpage links should be expanded on this page.
1503 * @return bool
1504 */
1505 function areSubpagesAllowed() {
1506 # Some namespaces don't allow subpages
1507 global $wgNamespacesWithSubpages;
1508 return !empty($wgNamespacesWithSubpages[$this->mTitle->getNamespace()]);
1509 }
1510
1511 /**
1512 * Handle link to subpage if necessary
1513 * @param string $target the source of the link
1514 * @param string &$text the link text, modified as necessary
1515 * @return string the full name of the link
1516 * @access private
1517 */
1518 function maybeDoSubpageLink($target, &$text) {
1519 # Valid link forms:
1520 # Foobar -- normal
1521 # :Foobar -- override special treatment of prefix (images, language links)
1522 # /Foobar -- convert to CurrentPage/Foobar
1523 # /Foobar/ -- convert to CurrentPage/Foobar, strip the initial / from text
1524 # ../ -- convert to CurrentPage, from CurrentPage/CurrentSubPage
1525 # ../Foobar -- convert to CurrentPage/Foobar, from CurrentPage/CurrentSubPage
1526
1527 $fname = 'Parser::maybeDoSubpageLink';
1528 wfProfileIn( $fname );
1529 $ret = $target; # default return value is no change
1530
1531 # Some namespaces don't allow subpages,
1532 # so only perform processing if subpages are allowed
1533 if( $this->areSubpagesAllowed() ) {
1534 # Look at the first character
1535 if( $target != '' && $target{0} == '/' ) {
1536 # / at end means we don't want the slash to be shown
1537 if( substr( $target, -1, 1 ) == '/' ) {
1538 $target = substr( $target, 1, -1 );
1539 $noslash = $target;
1540 } else {
1541 $noslash = substr( $target, 1 );
1542 }
1543
1544 $ret = $this->mTitle->getPrefixedText(). '/' . trim($noslash);
1545 if( '' === $text ) {
1546 $text = $target;
1547 } # this might be changed for ugliness reasons
1548 } else {
1549 # check for .. subpage backlinks
1550 $dotdotcount = 0;
1551 $nodotdot = $target;
1552 while( strncmp( $nodotdot, "../", 3 ) == 0 ) {
1553 ++$dotdotcount;
1554 $nodotdot = substr( $nodotdot, 3 );
1555 }
1556 if($dotdotcount > 0) {
1557 $exploded = explode( '/', $this->mTitle->GetPrefixedText() );
1558 if( count( $exploded ) > $dotdotcount ) { # not allowed to go below top level page
1559 $ret = implode( '/', array_slice( $exploded, 0, -$dotdotcount ) );
1560 # / at the end means don't show full path
1561 if( substr( $nodotdot, -1, 1 ) == '/' ) {
1562 $nodotdot = substr( $nodotdot, 0, -1 );
1563 if( '' === $text ) {
1564 $text = $nodotdot;
1565 }
1566 }
1567 $nodotdot = trim( $nodotdot );
1568 if( $nodotdot != '' ) {
1569 $ret .= '/' . $nodotdot;
1570 }
1571 }
1572 }
1573 }
1574 }
1575
1576 wfProfileOut( $fname );
1577 return $ret;
1578 }
1579
1580 /**#@+
1581 * Used by doBlockLevels()
1582 * @access private
1583 */
1584 /* private */ function closeParagraph() {
1585 $result = '';
1586 if ( '' != $this->mLastSection ) {
1587 $result = '</' . $this->mLastSection . ">\n";
1588 }
1589 $this->mInPre = false;
1590 $this->mLastSection = '';
1591 return $result;
1592 }
1593 # getCommon() returns the length of the longest common substring
1594 # of both arguments, starting at the beginning of both.
1595 #
1596 /* private */ function getCommon( $st1, $st2 ) {
1597 $fl = strlen( $st1 );
1598 $shorter = strlen( $st2 );
1599 if ( $fl < $shorter ) { $shorter = $fl; }
1600
1601 for ( $i = 0; $i < $shorter; ++$i ) {
1602 if ( $st1{$i} != $st2{$i} ) { break; }
1603 }
1604 return $i;
1605 }
1606 # These next three functions open, continue, and close the list
1607 # element appropriate to the prefix character passed into them.
1608 #
1609 /* private */ function openList( $char ) {
1610 $result = $this->closeParagraph();
1611
1612 if ( '*' == $char ) { $result .= '<ul><li>'; }
1613 else if ( '#' == $char ) { $result .= '<ol><li>'; }
1614 else if ( ':' == $char ) { $result .= '<dl><dd>'; }
1615 else if ( ';' == $char ) {
1616 $result .= '<dl><dt>';
1617 $this->mDTopen = true;
1618 }
1619 else { $result = '<!-- ERR 1 -->'; }
1620
1621 return $result;
1622 }
1623
1624 /* private */ function nextItem( $char ) {
1625 if ( '*' == $char || '#' == $char ) { return '</li><li>'; }
1626 else if ( ':' == $char || ';' == $char ) {
1627 $close = '</dd>';
1628 if ( $this->mDTopen ) { $close = '</dt>'; }
1629 if ( ';' == $char ) {
1630 $this->mDTopen = true;
1631 return $close . '<dt>';
1632 } else {
1633 $this->mDTopen = false;
1634 return $close . '<dd>';
1635 }
1636 }
1637 return '<!-- ERR 2 -->';
1638 }
1639
1640 /* private */ function closeList( $char ) {
1641 if ( '*' == $char ) { $text = '</li></ul>'; }
1642 else if ( '#' == $char ) { $text = '</li></ol>'; }
1643 else if ( ':' == $char ) {
1644 if ( $this->mDTopen ) {
1645 $this->mDTopen = false;
1646 $text = '</dt></dl>';
1647 } else {
1648 $text = '</dd></dl>';
1649 }
1650 }
1651 else { return '<!-- ERR 3 -->'; }
1652 return $text."\n";
1653 }
1654 /**#@-*/
1655
1656 /**
1657 * Make lists from lines starting with ':', '*', '#', etc.
1658 *
1659 * @access private
1660 * @return string the lists rendered as HTML
1661 */
1662 function doBlockLevels( $text, $linestart ) {
1663 $fname = 'Parser::doBlockLevels';
1664 wfProfileIn( $fname );
1665
1666 # Parsing through the text line by line. The main thing
1667 # happening here is handling of block-level elements p, pre,
1668 # and making lists from lines starting with * # : etc.
1669 #
1670 $textLines = explode( "\n", $text );
1671
1672 $lastPrefix = $output = '';
1673 $this->mDTopen = $inBlockElem = false;
1674 $prefixLength = 0;
1675 $paragraphStack = false;
1676
1677 if ( !$linestart ) {
1678 $output .= array_shift( $textLines );
1679 }
1680 foreach ( $textLines as $oLine ) {
1681 $lastPrefixLength = strlen( $lastPrefix );
1682 $preCloseMatch = preg_match('/<\\/pre/i', $oLine );
1683 $preOpenMatch = preg_match('/<pre/i', $oLine );
1684 if ( !$this->mInPre ) {
1685 # Multiple prefixes may abut each other for nested lists.
1686 $prefixLength = strspn( $oLine, '*#:;' );
1687 $pref = substr( $oLine, 0, $prefixLength );
1688
1689 # eh?
1690 $pref2 = str_replace( ';', ':', $pref );
1691 $t = substr( $oLine, $prefixLength );
1692 $this->mInPre = !empty($preOpenMatch);
1693 } else {
1694 # Don't interpret any other prefixes in preformatted text
1695 $prefixLength = 0;
1696 $pref = $pref2 = '';
1697 $t = $oLine;
1698 }
1699
1700 # List generation
1701 if( $prefixLength && 0 == strcmp( $lastPrefix, $pref2 ) ) {
1702 # Same as the last item, so no need to deal with nesting or opening stuff
1703 $output .= $this->nextItem( substr( $pref, -1 ) );
1704 $paragraphStack = false;
1705
1706 if ( substr( $pref, -1 ) == ';') {
1707 # The one nasty exception: definition lists work like this:
1708 # ; title : definition text
1709 # So we check for : in the remainder text to split up the
1710 # title and definition, without b0rking links.
1711 $term = $t2 = '';
1712 if ($this->findColonNoLinks($t, $term, $t2) !== false) {
1713 $t = $t2;
1714 $output .= $term . $this->nextItem( ':' );
1715 }
1716 }
1717 } elseif( $prefixLength || $lastPrefixLength ) {
1718 # Either open or close a level...
1719 $commonPrefixLength = $this->getCommon( $pref, $lastPrefix );
1720 $paragraphStack = false;
1721
1722 while( $commonPrefixLength < $lastPrefixLength ) {
1723 $output .= $this->closeList( $lastPrefix{$lastPrefixLength-1} );
1724 --$lastPrefixLength;
1725 }
1726 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
1727 $output .= $this->nextItem( $pref{$commonPrefixLength-1} );
1728 }
1729 while ( $prefixLength > $commonPrefixLength ) {
1730 $char = substr( $pref, $commonPrefixLength, 1 );
1731 $output .= $this->openList( $char );
1732
1733 if ( ';' == $char ) {
1734 # FIXME: This is dupe of code above
1735 if ($this->findColonNoLinks($t, $term, $t2) !== false) {
1736 $t = $t2;
1737 $output .= $term . $this->nextItem( ':' );
1738 }
1739 }
1740 ++$commonPrefixLength;
1741 }
1742 $lastPrefix = $pref2;
1743 }
1744 if( 0 == $prefixLength ) {
1745 wfProfileIn( "$fname-paragraph" );
1746 # No prefix (not in list)--go to paragraph mode
1747 $uniq_prefix = UNIQ_PREFIX;
1748 // XXX: use a stack for nestable elements like span, table and div
1749 $openmatch = preg_match('/(<table|<blockquote|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|<p|<ul|<li|<\\/tr|<\\/td|<\\/th)/iS', $t );
1750 $closematch = preg_match(
1751 '/(<\\/table|<\\/blockquote|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'.
1752 '<td|<th|<div|<\\/div|<hr|<\\/pre|<\\/p|'.$uniq_prefix.'-pre|<\\/li|<\\/ul)/iS', $t );
1753 if ( $openmatch or $closematch ) {
1754 $paragraphStack = false;
1755 $output .= $this->closeParagraph();
1756 if($preOpenMatch and !$preCloseMatch) {
1757 $this->mInPre = true;
1758 }
1759 if ( $closematch ) {
1760 $inBlockElem = false;
1761 } else {
1762 $inBlockElem = true;
1763 }
1764 } else if ( !$inBlockElem && !$this->mInPre ) {
1765 if ( ' ' == $t{0} and ( $this->mLastSection == 'pre' or trim($t) != '' ) ) {
1766 // pre
1767 if ($this->mLastSection != 'pre') {
1768 $paragraphStack = false;
1769 $output .= $this->closeParagraph().'<pre>';
1770 $this->mLastSection = 'pre';
1771 }
1772 $t = substr( $t, 1 );
1773 } else {
1774 // paragraph
1775 if ( '' == trim($t) ) {
1776 if ( $paragraphStack ) {
1777 $output .= $paragraphStack.'<br />';
1778 $paragraphStack = false;
1779 $this->mLastSection = 'p';
1780 } else {
1781 if ($this->mLastSection != 'p' ) {
1782 $output .= $this->closeParagraph();
1783 $this->mLastSection = '';
1784 $paragraphStack = '<p>';
1785 } else {
1786 $paragraphStack = '</p><p>';
1787 }
1788 }
1789 } else {
1790 if ( $paragraphStack ) {
1791 $output .= $paragraphStack;
1792 $paragraphStack = false;
1793 $this->mLastSection = 'p';
1794 } else if ($this->mLastSection != 'p') {
1795 $output .= $this->closeParagraph().'<p>';
1796 $this->mLastSection = 'p';
1797 }
1798 }
1799 }
1800 }
1801 wfProfileOut( "$fname-paragraph" );
1802 }
1803 if ($paragraphStack === false) {
1804 $output .= $t."\n";
1805 }
1806 }
1807 while ( $prefixLength ) {
1808 $output .= $this->closeList( $pref2{$prefixLength-1} );
1809 --$prefixLength;
1810 }
1811 if ( '' != $this->mLastSection ) {
1812 $output .= '</' . $this->mLastSection . '>';
1813 $this->mLastSection = '';
1814 }
1815
1816 wfProfileOut( $fname );
1817 return $output;
1818 }
1819
1820 /**
1821 * Split up a string on ':', ignoring any occurences inside
1822 * <a>..</a> or <span>...</span>
1823 * @param string $str the string to split
1824 * @param string &$before set to everything before the ':'
1825 * @param string &$after set to everything after the ':'
1826 * return string the position of the ':', or false if none found
1827 */
1828 function findColonNoLinks($str, &$before, &$after) {
1829 # I wonder if we should make this count all tags, not just <a>
1830 # and <span>. That would prevent us from matching a ':' that
1831 # comes in the middle of italics other such formatting....
1832 # -- Wil
1833 $fname = 'Parser::findColonNoLinks';
1834 wfProfileIn( $fname );
1835 $pos = 0;
1836 do {
1837 $colon = strpos($str, ':', $pos);
1838
1839 if ($colon !== false) {
1840 $before = substr($str, 0, $colon);
1841 $after = substr($str, $colon + 1);
1842
1843 # Skip any ':' within <a> or <span> pairs
1844 $a = substr_count($before, '<a');
1845 $s = substr_count($before, '<span');
1846 $ca = substr_count($before, '</a>');
1847 $cs = substr_count($before, '</span>');
1848
1849 if ($a <= $ca and $s <= $cs) {
1850 # Tags are balanced before ':'; ok
1851 break;
1852 }
1853 $pos = $colon + 1;
1854 }
1855 } while ($colon !== false);
1856 wfProfileOut( $fname );
1857 return $colon;
1858 }
1859
1860 /**
1861 * Return value of a magic variable (like PAGENAME)
1862 *
1863 * @access private
1864 */
1865 function getVariableValue( $index ) {
1866 global $wgContLang, $wgSitename, $wgServer, $wgServerName, $wgArticle, $wgScriptPath;
1867
1868 /**
1869 * Some of these require message or data lookups and can be
1870 * expensive to check many times.
1871 */
1872 static $varCache = array();
1873 if( isset( $varCache[$index] ) ) return $varCache[$index];
1874
1875 switch ( $index ) {
1876 case MAG_CURRENTMONTH:
1877 return $varCache[$index] = $wgContLang->formatNum( date( 'm' ) );
1878 case MAG_CURRENTMONTHNAME:
1879 return $varCache[$index] = $wgContLang->getMonthName( date('n') );
1880 case MAG_CURRENTMONTHNAMEGEN:
1881 return $varCache[$index] = $wgContLang->getMonthNameGen( date('n') );
1882 case MAG_CURRENTMONTHABBREV:
1883 return $varCache[$index] = $wgContLang->getMonthAbbreviation( date('n') );
1884 case MAG_CURRENTDAY:
1885 return $varCache[$index] = $wgContLang->formatNum( date('j') );
1886 case MAG_PAGENAME:
1887 return $this->mTitle->getText();
1888 case MAG_PAGENAMEE:
1889 return $this->mTitle->getPartialURL();
1890 case MAG_REVISIONID:
1891 return $wgArticle->getRevIdFetched();
1892 case MAG_NAMESPACE:
1893 # return Namespace::getCanonicalName($this->mTitle->getNamespace());
1894 return $wgContLang->getNsText($this->mTitle->getNamespace()); # Patch by Dori
1895 case MAG_CURRENTDAYNAME:
1896 return $varCache[$index] = $wgContLang->getWeekdayName( date('w')+1 );
1897 case MAG_CURRENTYEAR:
1898 return $varCache[$index] = $wgContLang->formatNum( date( 'Y' ), true );
1899 case MAG_CURRENTTIME:
1900 return $varCache[$index] = $wgContLang->time( wfTimestampNow(), false );
1901 case MAG_CURRENTWEEK:
1902 return $varCache[$index] = $wgContLang->formatNum( date('W') );
1903 case MAG_CURRENTDOW:
1904 return $varCache[$index] = $wgContLang->formatNum( date('w') );
1905 case MAG_NUMBEROFARTICLES:
1906 return $varCache[$index] = $wgContLang->formatNum( wfNumberOfArticles() );
1907 case MAG_NUMBEROFFILES:
1908 return $varCache[$index] = $wgContLang->formatNum( wfNumberOfFiles() );
1909 case MAG_SITENAME:
1910 return $wgSitename;
1911 case MAG_SERVER:
1912 return $wgServer;
1913 case MAG_SERVERNAME:
1914 return $wgServerName;
1915 case MAG_SCRIPTPATH:
1916 return $wgScriptPath;
1917 default:
1918 return NULL;
1919 }
1920 }
1921
1922 /**
1923 * initialise the magic variables (like CURRENTMONTHNAME)
1924 *
1925 * @access private
1926 */
1927 function initialiseVariables() {
1928 $fname = 'Parser::initialiseVariables';
1929 wfProfileIn( $fname );
1930 global $wgVariableIDs;
1931 $this->mVariables = array();
1932 foreach ( $wgVariableIDs as $id ) {
1933 $mw =& MagicWord::get( $id );
1934 $mw->addToArray( $this->mVariables, $id );
1935 }
1936 wfProfileOut( $fname );
1937 }
1938
1939 /**
1940 * Replace magic variables, templates, and template arguments
1941 * with the appropriate text. Templates are substituted recursively,
1942 * taking care to avoid infinite loops.
1943 *
1944 * Note that the substitution depends on value of $mOutputType:
1945 * OT_WIKI: only {{subst:}} templates
1946 * OT_MSG: only magic variables
1947 * OT_HTML: all templates and magic variables
1948 *
1949 * @param string $tex The text to transform
1950 * @param array $args Key-value pairs representing template parameters to substitute
1951 * @access private
1952 */
1953 function replaceVariables( $text, $args = array() ) {
1954
1955 # Prevent too big inclusions
1956 if( strlen( $text ) > MAX_INCLUDE_SIZE ) {
1957 return $text;
1958 }
1959
1960 $fname = 'Parser::replaceVariables';
1961 wfProfileIn( $fname );
1962
1963 $titleChars = Title::legalChars();
1964
1965 # This function is called recursively. To keep track of arguments we need a stack:
1966 array_push( $this->mArgStack, $args );
1967
1968 # Variable substitution
1969 $text = preg_replace_callback( "/{{([$titleChars]*?)}}/", array( &$this, 'variableSubstitution' ), $text );
1970
1971 if ( $this->mOutputType == OT_HTML || $this->mOutputType == OT_WIKI ) {
1972 # Argument substitution
1973 $text = preg_replace_callback( "/{{{([$titleChars]*?)}}}/", array( &$this, 'argSubstitution' ), $text );
1974 }
1975 # Template substitution
1976 $regex = '/(\\n|{)?{{(['.$titleChars.']*)(\\|.*?|)}}/s';
1977 $text = preg_replace_callback( $regex, array( &$this, 'braceSubstitution' ), $text );
1978
1979 array_pop( $this->mArgStack );
1980
1981 wfProfileOut( $fname );
1982 return $text;
1983 }
1984
1985 /**
1986 * Replace magic variables
1987 * @access private
1988 */
1989 function variableSubstitution( $matches ) {
1990 $fname = 'parser::variableSubstitution';
1991 $varname = $matches[1];
1992 wfProfileIn( $fname );
1993 if ( !$this->mVariables ) {
1994 $this->initialiseVariables();
1995 }
1996 $skip = false;
1997 if ( $this->mOutputType == OT_WIKI ) {
1998 # Do only magic variables prefixed by SUBST
1999 $mwSubst =& MagicWord::get( MAG_SUBST );
2000 if (!$mwSubst->matchStartAndRemove( $varname ))
2001 $skip = true;
2002 # Note that if we don't substitute the variable below,
2003 # we don't remove the {{subst:}} magic word, in case
2004 # it is a template rather than a magic variable.
2005 }
2006 if ( !$skip && array_key_exists( $varname, $this->mVariables ) ) {
2007 $id = $this->mVariables[$varname];
2008 $text = $this->getVariableValue( $id );
2009 $this->mOutput->mContainsOldMagic = true;
2010 } else {
2011 $text = $matches[0];
2012 }
2013 wfProfileOut( $fname );
2014 return $text;
2015 }
2016
2017 # Split template arguments
2018 function getTemplateArgs( $argsString ) {
2019 if ( $argsString === '' ) {
2020 return array();
2021 }
2022
2023 $args = explode( '|', substr( $argsString, 1 ) );
2024
2025 # If any of the arguments contains a '[[' but no ']]', it needs to be
2026 # merged with the next arg because the '|' character between belongs
2027 # to the link syntax and not the template parameter syntax.
2028 $argc = count($args);
2029
2030 for ( $i = 0; $i < $argc-1; $i++ ) {
2031 if ( substr_count ( $args[$i], '[[' ) != substr_count ( $args[$i], ']]' ) ) {
2032 $args[$i] .= '|'.$args[$i+1];
2033 array_splice($args, $i+1, 1);
2034 $i--;
2035 $argc--;
2036 }
2037 }
2038
2039 return $args;
2040 }
2041
2042 /**
2043 * Return the text of a template, after recursively
2044 * replacing any variables or templates within the template.
2045 *
2046 * @param array $matches The parts of the template
2047 * $matches[1]: the title, i.e. the part before the |
2048 * $matches[2]: the parameters (including a leading |), if any
2049 * @return string the text of the template
2050 * @access private
2051 */
2052 function braceSubstitution( $matches ) {
2053 global $wgLinkCache, $wgContLang;
2054 $fname = 'Parser::braceSubstitution';
2055 wfProfileIn( $fname );
2056
2057 $found = false;
2058 $nowiki = false;
2059 $noparse = false;
2060
2061 $title = NULL;
2062
2063 # Need to know if the template comes at the start of a line,
2064 # to treat the beginning of the template like the beginning
2065 # of a line for tables and block-level elements.
2066 $linestart = $matches[1];
2067
2068 # $part1 is the bit before the first |, and must contain only title characters
2069 # $args is a list of arguments, starting from index 0, not including $part1
2070
2071 $part1 = $matches[2];
2072 # If the third subpattern matched anything, it will start with |
2073
2074 $args = $this->getTemplateArgs($matches[3]);
2075 $argc = count( $args );
2076
2077 # Don't parse {{{}}} because that's only for template arguments
2078 if ( $linestart === '{' ) {
2079 $text = $matches[0];
2080 $found = true;
2081 $noparse = true;
2082 }
2083
2084 # SUBST
2085 if ( !$found ) {
2086 $mwSubst =& MagicWord::get( MAG_SUBST );
2087 if ( $mwSubst->matchStartAndRemove( $part1 ) xor ($this->mOutputType == OT_WIKI) ) {
2088 # One of two possibilities is true:
2089 # 1) Found SUBST but not in the PST phase
2090 # 2) Didn't find SUBST and in the PST phase
2091 # In either case, return without further processing
2092 $text = $matches[0];
2093 $found = true;
2094 $noparse = true;
2095 }
2096 }
2097
2098 # MSG, MSGNW and INT
2099 if ( !$found ) {
2100 # Check for MSGNW:
2101 $mwMsgnw =& MagicWord::get( MAG_MSGNW );
2102 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
2103 $nowiki = true;
2104 } else {
2105 # Remove obsolete MSG:
2106 $mwMsg =& MagicWord::get( MAG_MSG );
2107 $mwMsg->matchStartAndRemove( $part1 );
2108 }
2109
2110 # Check if it is an internal message
2111 $mwInt =& MagicWord::get( MAG_INT );
2112 if ( $mwInt->matchStartAndRemove( $part1 ) ) {
2113 if ( $this->incrementIncludeCount( 'int:'.$part1 ) ) {
2114 $text = $linestart . wfMsgReal( $part1, $args, true );
2115 $found = true;
2116 }
2117 }
2118 }
2119
2120 # NS
2121 if ( !$found ) {
2122 # Check for NS: (namespace expansion)
2123 $mwNs = MagicWord::get( MAG_NS );
2124 if ( $mwNs->matchStartAndRemove( $part1 ) ) {
2125 if ( intval( $part1 ) ) {
2126 $text = $linestart . $wgContLang->getNsText( intval( $part1 ) );
2127 $found = true;
2128 } else {
2129 $index = Namespace::getCanonicalIndex( strtolower( $part1 ) );
2130 if ( !is_null( $index ) ) {
2131 $text = $linestart . $wgContLang->getNsText( $index );
2132 $found = true;
2133 }
2134 }
2135 }
2136 }
2137
2138 # LOCALURL and LOCALURLE
2139 if ( !$found ) {
2140 $mwLocal = MagicWord::get( MAG_LOCALURL );
2141 $mwLocalE = MagicWord::get( MAG_LOCALURLE );
2142
2143 if ( $mwLocal->matchStartAndRemove( $part1 ) ) {
2144 $func = 'getLocalURL';
2145 } elseif ( $mwLocalE->matchStartAndRemove( $part1 ) ) {
2146 $func = 'escapeLocalURL';
2147 } else {
2148 $func = '';
2149 }
2150
2151 if ( $func !== '' ) {
2152 $title = Title::newFromText( $part1 );
2153 if ( !is_null( $title ) ) {
2154 if ( $argc > 0 ) {
2155 $text = $linestart . $title->$func( $args[0] );
2156 } else {
2157 $text = $linestart . $title->$func();
2158 }
2159 $found = true;
2160 }
2161 }
2162 }
2163
2164 # GRAMMAR
2165 if ( !$found && $argc == 1 ) {
2166 $mwGrammar =& MagicWord::get( MAG_GRAMMAR );
2167 if ( $mwGrammar->matchStartAndRemove( $part1 ) ) {
2168 $text = $linestart . $wgContLang->convertGrammar( $args[0], $part1 );
2169 $found = true;
2170 }
2171 }
2172
2173 # Template table test
2174
2175 # Did we encounter this template already? If yes, it is in the cache
2176 # and we need to check for loops.
2177 if ( !$found && isset( $this->mTemplates[$part1] ) ) {
2178 $found = true;
2179
2180 # Infinite loop test
2181 if ( isset( $this->mTemplatePath[$part1] ) ) {
2182 $noparse = true;
2183 $found = true;
2184 $text = $linestart .
2185 "\{\{$part1}}" .
2186 '<!-- WARNING: template loop detected -->';
2187 wfDebug( "$fname: template loop broken at '$part1'\n" );
2188 } else {
2189 # set $text to cached message.
2190 $text = $linestart . $this->mTemplates[$part1];
2191 }
2192 }
2193
2194 # Load from database
2195 $replaceHeadings = false;
2196 $isHTML = false;
2197 $lastPathLevel = $this->mTemplatePath;
2198 if ( !$found ) {
2199 $ns = NS_TEMPLATE;
2200 $part1 = $this->maybeDoSubpageLink( $part1, $subpage='' );
2201 if ($subpage !== '') {
2202 $ns = $this->mTitle->getNamespace();
2203 }
2204 $title = Title::newFromText( $part1, $ns );
2205
2206 $interwiki = Title::getInterwikiLink($title->getInterwiki());
2207 if ($interwiki != '' && $title->isTrans()) {
2208 return $this->scarytransclude($title, $interwiki);
2209 }
2210
2211 if ( !is_null( $title ) && !$title->isExternal() ) {
2212 # Check for excessive inclusion
2213 $dbk = $title->getPrefixedDBkey();
2214 if ( $this->incrementIncludeCount( $dbk ) ) {
2215 if ( $title->getNamespace() == NS_SPECIAL && $this->mOptions->getAllowSpecialInclusion() ) {
2216 # Capture special page output
2217 $text = SpecialPage::capturePath( $title );
2218 if ( $text && !is_object( $text ) ) {
2219 $found = true;
2220 $noparse = true;
2221 $isHTML = true;
2222 $this->mOutput->setCacheTime( -1 );
2223 }
2224 } else {
2225 $article = new Article( $title );
2226 $articleContent = $article->getContentWithoutUsingSoManyDamnGlobals();
2227 if ( $articleContent !== false ) {
2228 $found = true;
2229 $text = $articleContent;
2230 $replaceHeadings = true;
2231 }
2232 }
2233 }
2234
2235 # If the title is valid but undisplayable, make a link to it
2236 if ( $this->mOutputType == OT_HTML && !$found ) {
2237 $text = '[['.$title->getPrefixedText().']]';
2238 $found = true;
2239 }
2240
2241 # Template cache array insertion
2242 if( $found ) {
2243 $this->mTemplates[$part1] = $text;
2244 $text = $linestart . $text;
2245 }
2246 }
2247 }
2248
2249 # Recursive parsing, escaping and link table handling
2250 # Only for HTML output
2251 if ( $nowiki && $found && $this->mOutputType == OT_HTML ) {
2252 $text = wfEscapeWikiText( $text );
2253 } elseif ( ($this->mOutputType == OT_HTML || $this->mOutputType == OT_WIKI) && $found && !$noparse) {
2254 # Clean up argument array
2255 $assocArgs = array();
2256 $index = 1;
2257 foreach( $args as $arg ) {
2258 $eqpos = strpos( $arg, '=' );
2259 if ( $eqpos === false ) {
2260 $assocArgs[$index++] = $arg;
2261 } else {
2262 $name = trim( substr( $arg, 0, $eqpos ) );
2263 $value = trim( substr( $arg, $eqpos+1 ) );
2264 if ( $value === false ) {
2265 $value = '';
2266 }
2267 if ( $name !== false ) {
2268 $assocArgs[$name] = $value;
2269 }
2270 }
2271 }
2272
2273 # Add a new element to the templace recursion path
2274 $this->mTemplatePath[$part1] = 1;
2275
2276 if( $this->mOutputType == OT_HTML ) {
2277 $text = $this->strip( $text, $this->mStripState );
2278 $text = Sanitizer::removeHTMLtags( $text, array( &$this, 'replaceVariables' ), $assocArgs );
2279 }
2280 $text = $this->replaceVariables( $text, $assocArgs );
2281
2282 # Resume the link cache and register the inclusion as a link
2283 if ( $this->mOutputType == OT_HTML && !is_null( $title ) ) {
2284 $wgLinkCache->addLinkObj( $title );
2285 }
2286
2287 # If the template begins with a table or block-level
2288 # element, it should be treated as beginning a new line.
2289 if ($linestart !== '\n' && preg_match('/^({\\||:|;|#|\*)/', $text)) {
2290 $text = "\n" . $text;
2291 }
2292 }
2293 # Prune lower levels off the recursion check path
2294 $this->mTemplatePath = $lastPathLevel;
2295
2296 if ( !$found ) {
2297 wfProfileOut( $fname );
2298 return $matches[0];
2299 } else {
2300 if ( $isHTML ) {
2301 # Replace raw HTML by a placeholder
2302 # Add a blank line preceding, to prevent it from mucking up
2303 # immediately preceding headings
2304 $text = "\n\n" . $this->insertStripItem( $text, $this->mStripState );
2305 } else {
2306 # replace ==section headers==
2307 # XXX this needs to go away once we have a better parser.
2308 if ( $this->mOutputType != OT_WIKI && $replaceHeadings ) {
2309 if( !is_null( $title ) )
2310 $encodedname = base64_encode($title->getPrefixedDBkey());
2311 else
2312 $encodedname = base64_encode("");
2313 $m = preg_split('/(^={1,6}.*?={1,6}\s*?$)/m', $text, -1,
2314 PREG_SPLIT_DELIM_CAPTURE);
2315 $text = '';
2316 $nsec = 0;
2317 for( $i = 0; $i < count($m); $i += 2 ) {
2318 $text .= $m[$i];
2319 if (!isset($m[$i + 1]) || $m[$i + 1] == "") continue;
2320 $hl = $m[$i + 1];
2321 if( strstr($hl, "<!--MWTEMPLATESECTION") ) {
2322 $text .= $hl;
2323 continue;
2324 }
2325 preg_match('/^(={1,6})(.*?)(={1,6})\s*?$/m', $hl, $m2);
2326 $text .= $m2[1] . $m2[2] . "<!--MWTEMPLATESECTION="
2327 . $encodedname . "&" . base64_encode("$nsec") . "-->" . $m2[3];
2328
2329 $nsec++;
2330 }
2331 }
2332 }
2333 }
2334
2335 # Prune lower levels off the recursion check path
2336 $this->mTemplatePath = $lastPathLevel;
2337
2338 if ( !$found ) {
2339 wfProfileOut( $fname );
2340 return $matches[0];
2341 } else {
2342 wfProfileOut( $fname );
2343 return $text;
2344 }
2345 }
2346
2347 /**
2348 * Translude an interwiki link.
2349 */
2350 function scarytransclude($title, $interwiki) {
2351 global $wgEnableScaryTranscluding;
2352
2353 if (!$wgEnableScaryTranscluding)
2354 return wfMsg('scarytranscludedisabled');
2355
2356 $articlename = "Template:" . $title->getDBkey();
2357 $url = str_replace('$1', urlencode($articlename), $interwiki);
2358 $text = $this->fetchScaryTemplateMaybeFromCache($url);
2359 $this->mIWTransData[] = $text;
2360 return "<!--IW_TRANSCLUDE ".(count($this->mIWTransData) - 1)."-->";
2361 }
2362
2363 function fetchScaryTemplateMaybeFromCache($url) {
2364 $dbr = wfGetDB(DB_SLAVE);
2365 $obj = $dbr->selectRow('transcache', array('tc_time', 'tc_contents'),
2366 array('tc_url' => $url));
2367 if ($obj) {
2368 $time = $obj->tc_time;
2369 $text = $obj->tc_contents;
2370 if ($time && $time < (time() + (60*60))) {
2371 return $text;
2372 }
2373 }
2374
2375 $text = wfGetHTTP($url . '?action=render');
2376 if (!$text)
2377 return wfMsg('scarytranscludefailed');
2378
2379 $dbw = wfGetDB(DB_MASTER);
2380 $dbw->replace('transcache', array(), array(
2381 'tc_url' => $url,
2382 'tc_time' => time(),
2383 'tc_contents' => $text));
2384 return $text;
2385 }
2386
2387
2388 /**
2389 * Triple brace replacement -- used for template arguments
2390 * @access private
2391 */
2392 function argSubstitution( $matches ) {
2393 $arg = trim( $matches[1] );
2394 $text = $matches[0];
2395 $inputArgs = end( $this->mArgStack );
2396
2397 if ( array_key_exists( $arg, $inputArgs ) ) {
2398 $text = $inputArgs[$arg];
2399 }
2400
2401 return $text;
2402 }
2403
2404 /**
2405 * Returns true if the function is allowed to include this entity
2406 * @access private
2407 */
2408 function incrementIncludeCount( $dbk ) {
2409 if ( !array_key_exists( $dbk, $this->mIncludeCount ) ) {
2410 $this->mIncludeCount[$dbk] = 0;
2411 }
2412 if ( ++$this->mIncludeCount[$dbk] <= MAX_INCLUDE_REPEAT ) {
2413 return true;
2414 } else {
2415 return false;
2416 }
2417 }
2418
2419 /**
2420 * This function accomplishes several tasks:
2421 * 1) Auto-number headings if that option is enabled
2422 * 2) Add an [edit] link to sections for logged in users who have enabled the option
2423 * 3) Add a Table of contents on the top for users who have enabled the option
2424 * 4) Auto-anchor headings
2425 *
2426 * It loops through all headlines, collects the necessary data, then splits up the
2427 * string and re-inserts the newly formatted headlines.
2428 *
2429 * @param string $text
2430 * @param boolean $isMain
2431 * @access private
2432 */
2433 function formatHeadings( $text, $isMain=true ) {
2434 global $wgMaxTocLevel, $wgContLang, $wgLinkHolders, $wgInterwikiLinkHolders;
2435
2436 $doNumberHeadings = $this->mOptions->getNumberHeadings();
2437 $doShowToc = true;
2438 $forceTocHere = false;
2439 if( !$this->mTitle->userCanEdit() ) {
2440 $showEditLink = 0;
2441 } else {
2442 $showEditLink = $this->mOptions->getEditSection();
2443 }
2444
2445 # Inhibit editsection links if requested in the page
2446 $esw =& MagicWord::get( MAG_NOEDITSECTION );
2447 if( $esw->matchAndRemove( $text ) ) {
2448 $showEditLink = 0;
2449 }
2450 # if the string __NOTOC__ (not case-sensitive) occurs in the HTML,
2451 # do not add TOC
2452 $mw =& MagicWord::get( MAG_NOTOC );
2453 if( $mw->matchAndRemove( $text ) ) {
2454 $doShowToc = false;
2455 }
2456
2457 # Get all headlines for numbering them and adding funky stuff like [edit]
2458 # links - this is for later, but we need the number of headlines right now
2459 $numMatches = preg_match_all( '/<H([1-6])(.*?'.'>)(.*?)<\/H[1-6] *>/i', $text, $matches );
2460
2461 # if there are fewer than 4 headlines in the article, do not show TOC
2462 if( $numMatches < 4 ) {
2463 $doShowToc = false;
2464 }
2465
2466 # if the string __TOC__ (not case-sensitive) occurs in the HTML,
2467 # override above conditions and always show TOC at that place
2468
2469 $mw =& MagicWord::get( MAG_TOC );
2470 if($mw->match( $text ) ) {
2471 $doShowToc = true;
2472 $forceTocHere = true;
2473 } else {
2474 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
2475 # override above conditions and always show TOC above first header
2476 $mw =& MagicWord::get( MAG_FORCETOC );
2477 if ($mw->matchAndRemove( $text ) ) {
2478 $doShowToc = true;
2479 }
2480 }
2481
2482 # Never ever show TOC if no headers
2483 if( $numMatches < 1 ) {
2484 $doShowToc = false;
2485 }
2486
2487 # We need this to perform operations on the HTML
2488 $sk =& $this->mOptions->getSkin();
2489
2490 # headline counter
2491 $headlineCount = 0;
2492 $sectionCount = 0; # headlineCount excluding template sections
2493
2494 # Ugh .. the TOC should have neat indentation levels which can be
2495 # passed to the skin functions. These are determined here
2496 $toc = '';
2497 $full = '';
2498 $head = array();
2499 $sublevelCount = array();
2500 $levelCount = array();
2501 $toclevel = 0;
2502 $level = 0;
2503 $prevlevel = 0;
2504 $toclevel = 0;
2505 $prevtoclevel = 0;
2506
2507 foreach( $matches[3] as $headline ) {
2508 $istemplate = 0;
2509 $templatetitle = '';
2510 $templatesection = 0;
2511 $numbering = '';
2512
2513 if (preg_match("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", $headline, $mat)) {
2514 $istemplate = 1;
2515 $templatetitle = base64_decode($mat[1]);
2516 $templatesection = 1 + (int)base64_decode($mat[2]);
2517 $headline = preg_replace("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", "", $headline);
2518 }
2519
2520 if( $toclevel ) {
2521 $prevlevel = $level;
2522 $prevtoclevel = $toclevel;
2523 }
2524 $level = $matches[1][$headlineCount];
2525
2526 if( $doNumberHeadings || $doShowToc ) {
2527
2528 if ( $level > $prevlevel ) {
2529 # Increase TOC level
2530 $toclevel++;
2531 $sublevelCount[$toclevel] = 0;
2532 $toc .= $sk->tocIndent();
2533 }
2534 elseif ( $level < $prevlevel && $toclevel > 1 ) {
2535 # Decrease TOC level, find level to jump to
2536
2537 if ( $toclevel == 2 && $level <= $levelCount[1] ) {
2538 # Can only go down to level 1
2539 $toclevel = 1;
2540 } else {
2541 for ($i = $toclevel; $i > 0; $i--) {
2542 if ( $levelCount[$i] == $level ) {
2543 # Found last matching level
2544 $toclevel = $i;
2545 break;
2546 }
2547 elseif ( $levelCount[$i] < $level ) {
2548 # Found first matching level below current level
2549 $toclevel = $i + 1;
2550 break;
2551 }
2552 }
2553 }
2554
2555 $toc .= $sk->tocUnindent( $prevtoclevel - $toclevel );
2556 }
2557 else {
2558 # No change in level, end TOC line
2559 $toc .= $sk->tocLineEnd();
2560 }
2561
2562 $levelCount[$toclevel] = $level;
2563
2564 # count number of headlines for each level
2565 @$sublevelCount[$toclevel]++;
2566 $dot = 0;
2567 for( $i = 1; $i <= $toclevel; $i++ ) {
2568 if( !empty( $sublevelCount[$i] ) ) {
2569 if( $dot ) {
2570 $numbering .= '.';
2571 }
2572 $numbering .= $wgContLang->formatNum( $sublevelCount[$i] );
2573 $dot = 1;
2574 }
2575 }
2576 }
2577
2578 # The canonized header is a version of the header text safe to use for links
2579 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
2580 $canonized_headline = $this->unstrip( $headline, $this->mStripState );
2581 $canonized_headline = $this->unstripNoWiki( $canonized_headline, $this->mStripState );
2582
2583 # Remove link placeholders by the link text.
2584 # <!--LINK number-->
2585 # turns into
2586 # link text with suffix
2587 $canonized_headline = preg_replace( '/<!--LINK ([0-9]*)-->/e',
2588 "\$this->mLinkHolders['texts'][\$1]",
2589 $canonized_headline );
2590 $canonized_headline = preg_replace( '/<!--IWLINK ([0-9]*)-->/e',
2591 "\$this->mInterwikiLinkHolders['texts'][\$1]",
2592 $canonized_headline );
2593
2594 # strip out HTML
2595 $canonized_headline = preg_replace( '/<.*?' . '>/','',$canonized_headline );
2596 $tocline = trim( $canonized_headline );
2597 $canonized_headline = urlencode( Sanitizer::decodeCharReferences( str_replace(' ', '_', $tocline) ) );
2598 $replacearray = array(
2599 '%3A' => ':',
2600 '%' => '.'
2601 );
2602 $canonized_headline = str_replace(array_keys($replacearray),array_values($replacearray),$canonized_headline);
2603 $refers[$headlineCount] = $canonized_headline;
2604
2605 # count how many in assoc. array so we can track dupes in anchors
2606 @$refers[$canonized_headline]++;
2607 $refcount[$headlineCount]=$refers[$canonized_headline];
2608
2609 # Don't number the heading if it is the only one (looks silly)
2610 if( $doNumberHeadings && count( $matches[3] ) > 1) {
2611 # the two are different if the line contains a link
2612 $headline=$numbering . ' ' . $headline;
2613 }
2614
2615 # Create the anchor for linking from the TOC to the section
2616 $anchor = $canonized_headline;
2617 if($refcount[$headlineCount] > 1 ) {
2618 $anchor .= '_' . $refcount[$headlineCount];
2619 }
2620 if( $doShowToc && ( !isset($wgMaxTocLevel) || $toclevel<$wgMaxTocLevel ) ) {
2621 $toc .= $sk->tocLine($anchor, $tocline, $numbering, $toclevel);
2622 }
2623 if( $showEditLink && ( !$istemplate || $templatetitle !== "" ) ) {
2624 if ( empty( $head[$headlineCount] ) ) {
2625 $head[$headlineCount] = '';
2626 }
2627 if( $istemplate )
2628 $head[$headlineCount] .= $sk->editSectionLinkForOther($templatetitle, $templatesection);
2629 else
2630 $head[$headlineCount] .= $sk->editSectionLink($this->mTitle, $sectionCount+1);
2631 }
2632
2633 # give headline the correct <h#> tag
2634 @$head[$headlineCount] .= "<a name=\"$anchor\"></a><h".$level.$matches[2][$headlineCount] .$headline.'</h'.$level.'>';
2635
2636 $headlineCount++;
2637 if( !$istemplate )
2638 $sectionCount++;
2639 }
2640
2641 if( $doShowToc ) {
2642 $toc .= $sk->tocUnindent( $toclevel - 1 );
2643 $toc = $sk->tocList( $toc );
2644 }
2645
2646 # split up and insert constructed headlines
2647
2648 $blocks = preg_split( '/<H[1-6].*?' . '>.*?<\/H[1-6]>/i', $text );
2649 $i = 0;
2650
2651 foreach( $blocks as $block ) {
2652 if( $showEditLink && $headlineCount > 0 && $i == 0 && $block != "\n" ) {
2653 # This is the [edit] link that appears for the top block of text when
2654 # section editing is enabled
2655
2656 # Disabled because it broke block formatting
2657 # For example, a bullet point in the top line
2658 # $full .= $sk->editSectionLink(0);
2659 }
2660 $full .= $block;
2661 if( $doShowToc && !$i && $isMain && !$forceTocHere) {
2662 # Top anchor now in skin
2663 $full = $full.$toc;
2664 }
2665
2666 if( !empty( $head[$i] ) ) {
2667 $full .= $head[$i];
2668 }
2669 $i++;
2670 }
2671 if($forceTocHere) {
2672 $mw =& MagicWord::get( MAG_TOC );
2673 return $mw->replace( $toc, $full );
2674 } else {
2675 return $full;
2676 }
2677 }
2678
2679 /**
2680 * Return an HTML link for the "ISBN 123456" text
2681 * @access private
2682 */
2683 function magicISBN( $text ) {
2684 $fname = 'Parser::magicISBN';
2685 wfProfileIn( $fname );
2686
2687 $a = split( 'ISBN ', ' '.$text );
2688 if ( count ( $a ) < 2 ) {
2689 wfProfileOut( $fname );
2690 return $text;
2691 }
2692 $text = substr( array_shift( $a ), 1);
2693 $valid = '0123456789-Xx';
2694
2695 foreach ( $a as $x ) {
2696 $isbn = $blank = '' ;
2697 while ( ' ' == $x{0} ) {
2698 $blank .= ' ';
2699 $x = substr( $x, 1 );
2700 }
2701 if ( $x == '' ) { # blank isbn
2702 $text .= "ISBN $blank";
2703 continue;
2704 }
2705 while ( strstr( $valid, $x{0} ) != false ) {
2706 $isbn .= $x{0};
2707 $x = substr( $x, 1 );
2708 }
2709 $num = str_replace( '-', '', $isbn );
2710 $num = str_replace( ' ', '', $num );
2711 $num = str_replace( 'x', 'X', $num );
2712
2713 if ( '' == $num ) {
2714 $text .= "ISBN $blank$x";
2715 } else {
2716 $titleObj = Title::makeTitle( NS_SPECIAL, 'Booksources' );
2717 $text .= '<a href="' .
2718 $titleObj->escapeLocalUrl( 'isbn='.$num ) .
2719 "\" class=\"internal\">ISBN $isbn</a>";
2720 $text .= $x;
2721 }
2722 }
2723 wfProfileOut( $fname );
2724 return $text;
2725 }
2726
2727 /**
2728 * Return an HTML link for the "RFC 1234" text
2729 *
2730 * @access private
2731 * @param string $text Text to be processed
2732 * @param string $keyword Magic keyword to use (default RFC)
2733 * @param string $urlmsg Interface message to use (default rfcurl)
2734 * @return string
2735 */
2736 function magicRFC( $text, $keyword='RFC ', $urlmsg='rfcurl' ) {
2737
2738 $valid = '0123456789';
2739 $internal = false;
2740
2741 $a = split( $keyword, ' '.$text );
2742 if ( count ( $a ) < 2 ) {
2743 return $text;
2744 }
2745 $text = substr( array_shift( $a ), 1);
2746
2747 /* Check if keyword is preceed by [[.
2748 * This test is made here cause of the array_shift above
2749 * that prevent the test to be done in the foreach.
2750 */
2751 if ( substr( $text, -2 ) == '[[' ) {
2752 $internal = true;
2753 }
2754
2755 foreach ( $a as $x ) {
2756 /* token might be empty if we have RFC RFC 1234 */
2757 if ( $x=='' ) {
2758 $text.=$keyword;
2759 continue;
2760 }
2761
2762 $id = $blank = '' ;
2763
2764 /** remove and save whitespaces in $blank */
2765 while ( $x{0} == ' ' ) {
2766 $blank .= ' ';
2767 $x = substr( $x, 1 );
2768 }
2769
2770 /** remove and save the rfc number in $id */
2771 while ( strstr( $valid, $x{0} ) != false ) {
2772 $id .= $x{0};
2773 $x = substr( $x, 1 );
2774 }
2775
2776 if ( $id == '' ) {
2777 /* call back stripped spaces*/
2778 $text .= $keyword.$blank.$x;
2779 } elseif( $internal ) {
2780 /* normal link */
2781 $text .= $keyword.$id.$x;
2782 } else {
2783 /* build the external link*/
2784 $url = wfMsg( $urlmsg, $id);
2785 $sk =& $this->mOptions->getSkin();
2786 $la = $sk->getExternalLinkAttributes( $url, $keyword.$id );
2787 $text .= "<a href='{$url}'{$la}>{$keyword}{$id}</a>{$x}";
2788 }
2789
2790 /* Check if the next RFC keyword is preceed by [[ */
2791 $internal = ( substr($x,-2) == '[[' );
2792 }
2793 return $text;
2794 }
2795
2796 /**
2797 * Transform wiki markup when saving a page by doing \r\n -> \n
2798 * conversion, substitting signatures, {{subst:}} templates, etc.
2799 *
2800 * @param string $text the text to transform
2801 * @param Title &$title the Title object for the current article
2802 * @param User &$user the User object describing the current user
2803 * @param ParserOptions $options parsing options
2804 * @param bool $clearState whether to clear the parser state first
2805 * @return string the altered wiki markup
2806 * @access public
2807 */
2808 function preSaveTransform( $text, &$title, &$user, $options, $clearState = true ) {
2809 $this->mOptions = $options;
2810 $this->mTitle =& $title;
2811 $this->mOutputType = OT_WIKI;
2812
2813 if ( $clearState ) {
2814 $this->clearState();
2815 }
2816
2817 $stripState = false;
2818 $pairs = array(
2819 "\r\n" => "\n",
2820 );
2821 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
2822 $text = $this->strip( $text, $stripState, false );
2823 $text = $this->pstPass2( $text, $user );
2824 $text = $this->unstrip( $text, $stripState );
2825 $text = $this->unstripNoWiki( $text, $stripState );
2826 return $text;
2827 }
2828
2829 /**
2830 * Pre-save transform helper function
2831 * @access private
2832 */
2833 function pstPass2( $text, &$user ) {
2834 global $wgContLang, $wgLocaltimezone;
2835
2836 # Variable replacement
2837 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
2838 $text = $this->replaceVariables( $text );
2839
2840 # Signatures
2841 #
2842 $n = $user->getName();
2843 $k = $user->getOption( 'nickname' );
2844 if ( '' == $k ) { $k = $n; }
2845 if ( isset( $wgLocaltimezone ) ) {
2846 $oldtz = getenv( 'TZ' );
2847 putenv( 'TZ='.$wgLocaltimezone );
2848 }
2849
2850 /* Note: This is the timestamp saved as hardcoded wikitext to
2851 * the database, we use $wgContLang here in order to give
2852 * everyone the same signiture and use the default one rather
2853 * than the one selected in each users preferences.
2854 */
2855 $d = $wgContLang->timeanddate( date( 'YmdHis' ), false, false) .
2856 ' (' . date( 'T' ) . ')';
2857 if ( isset( $wgLocaltimezone ) ) {
2858 putenv( 'TZ='.$oldtz );
2859 }
2860
2861 if( $user->getOption( 'fancysig' ) ) {
2862 $sigText = $k;
2863 } else {
2864 $sigText = '[[' . $wgContLang->getNsText( NS_USER ) . ":$n|$k]]";
2865 }
2866 $text = preg_replace( '/~~~~~/', $d, $text );
2867 $text = preg_replace( '/~~~~/', "$sigText $d", $text );
2868 $text = preg_replace( '/~~~/', $sigText, $text );
2869
2870 # Context links: [[|name]] and [[name (context)|]]
2871 #
2872 $tc = "[&;%\\-,.\\(\\)' _0-9A-Za-z\\/:\\x80-\\xff]";
2873 $np = "[&;%\\-,.' _0-9A-Za-z\\/:\\x80-\\xff]"; # No parens
2874 $namespacechar = '[ _0-9A-Za-z\x80-\xff]'; # Namespaces can use non-ascii!
2875 $conpat = "/^({$np}+) \\(({$tc}+)\\)$/";
2876
2877 $p1 = "/\[\[({$np}+) \\(({$np}+)\\)\\|]]/"; # [[page (context)|]]
2878 $p2 = "/\[\[\\|({$tc}+)]]/"; # [[|page]]
2879 $p3 = "/\[\[(:*$namespacechar+):({$np}+)\\|]]/"; # [[namespace:page|]] and [[:namespace:page|]]
2880 $p4 = "/\[\[(:*$namespacechar+):({$np}+) \\(({$np}+)\\)\\|]]/"; # [[ns:page (cont)|]] and [[:ns:page (cont)|]]
2881 $context = '';
2882 $t = $this->mTitle->getText();
2883 if ( preg_match( $conpat, $t, $m ) ) {
2884 $context = $m[2];
2885 }
2886 $text = preg_replace( $p4, '[[\\1:\\2 (\\3)|\\2]]', $text );
2887 $text = preg_replace( $p1, '[[\\1 (\\2)|\\1]]', $text );
2888 $text = preg_replace( $p3, '[[\\1:\\2|\\2]]', $text );
2889
2890 if ( '' == $context ) {
2891 $text = preg_replace( $p2, '[[\\1]]', $text );
2892 } else {
2893 $text = preg_replace( $p2, "[[\\1 ({$context})|\\1]]", $text );
2894 }
2895
2896 # Trim trailing whitespace
2897 # MAG_END (__END__) tag allows for trailing
2898 # whitespace to be deliberately included
2899 $text = rtrim( $text );
2900 $mw =& MagicWord::get( MAG_END );
2901 $mw->matchAndRemove( $text );
2902
2903 return $text;
2904 }
2905
2906 /**
2907 * Set up some variables which are usually set up in parse()
2908 * so that an external function can call some class members with confidence
2909 * @access public
2910 */
2911 function startExternalParse( &$title, $options, $outputType, $clearState = true ) {
2912 $this->mTitle =& $title;
2913 $this->mOptions = $options;
2914 $this->mOutputType = $outputType;
2915 if ( $clearState ) {
2916 $this->clearState();
2917 }
2918 }
2919
2920 /**
2921 * Transform a MediaWiki message by replacing magic variables.
2922 *
2923 * @param string $text the text to transform
2924 * @param ParserOptions $options options
2925 * @return string the text with variables substituted
2926 * @access public
2927 */
2928 function transformMsg( $text, $options ) {
2929 global $wgTitle;
2930 static $executing = false;
2931
2932 # Guard against infinite recursion
2933 if ( $executing ) {
2934 return $text;
2935 }
2936 $executing = true;
2937
2938 $this->mTitle = $wgTitle;
2939 $this->mOptions = $options;
2940 $this->mOutputType = OT_MSG;
2941 $this->clearState();
2942 $text = $this->replaceVariables( $text );
2943
2944 $executing = false;
2945 return $text;
2946 }
2947
2948 /**
2949 * Create an HTML-style tag, e.g. <yourtag>special text</yourtag>
2950 * Callback will be called with the text within
2951 * Transform and return the text within
2952 * @access public
2953 */
2954 function setHook( $tag, $callback ) {
2955 $oldVal = @$this->mTagHooks[$tag];
2956 $this->mTagHooks[$tag] = $callback;
2957 return $oldVal;
2958 }
2959
2960 /**
2961 * Replace <!--LINK--> link placeholders with actual links, in the buffer
2962 * Placeholders created in Skin::makeLinkObj()
2963 * Returns an array of links found, indexed by PDBK:
2964 * 0 - broken
2965 * 1 - normal link
2966 * 2 - stub
2967 * $options is a bit field, RLH_FOR_UPDATE to select for update
2968 */
2969 function replaceLinkHolders( &$text, $options = 0 ) {
2970 global $wgUser, $wgLinkCache;
2971 global $wgOutputReplace;
2972
2973 $fname = 'Parser::replaceLinkHolders';
2974 wfProfileIn( $fname );
2975
2976 $pdbks = array();
2977 $colours = array();
2978 $sk = $this->mOptions->getSkin();
2979
2980 if ( !empty( $this->mLinkHolders['namespaces'] ) ) {
2981 wfProfileIn( $fname.'-check' );
2982 $dbr =& wfGetDB( DB_SLAVE );
2983 $page = $dbr->tableName( 'page' );
2984 $threshold = $wgUser->getOption('stubthreshold');
2985
2986 # Sort by namespace
2987 asort( $this->mLinkHolders['namespaces'] );
2988
2989 # Generate query
2990 $query = false;
2991 foreach ( $this->mLinkHolders['namespaces'] as $key => $val ) {
2992 # Make title object
2993 $title = $this->mLinkHolders['titles'][$key];
2994
2995 # Skip invalid entries.
2996 # Result will be ugly, but prevents crash.
2997 if ( is_null( $title ) ) {
2998 continue;
2999 }
3000 $pdbk = $pdbks[$key] = $title->getPrefixedDBkey();
3001
3002 # Check if it's in the link cache already
3003 if ( $wgLinkCache->getGoodLinkID( $pdbk ) ) {
3004 $colours[$pdbk] = 1;
3005 } elseif ( $wgLinkCache->isBadLink( $pdbk ) ) {
3006 $colours[$pdbk] = 0;
3007 } else {
3008 # Not in the link cache, add it to the query
3009 if ( !isset( $current ) ) {
3010 $current = $val;
3011 $query = "SELECT page_id, page_namespace, page_title";
3012 if ( $threshold > 0 ) {
3013 $query .= ', page_len, page_is_redirect';
3014 }
3015 $query .= " FROM $page WHERE (page_namespace=$val AND page_title IN(";
3016 } elseif ( $current != $val ) {
3017 $current = $val;
3018 $query .= ")) OR (page_namespace=$val AND page_title IN(";
3019 } else {
3020 $query .= ', ';
3021 }
3022
3023 $query .= $dbr->addQuotes( $this->mLinkHolders['dbkeys'][$key] );
3024 }
3025 }
3026 if ( $query ) {
3027 $query .= '))';
3028 if ( $options & RLH_FOR_UPDATE ) {
3029 $query .= ' FOR UPDATE';
3030 }
3031
3032 $res = $dbr->query( $query, $fname );
3033
3034 # Fetch data and form into an associative array
3035 # non-existent = broken
3036 # 1 = known
3037 # 2 = stub
3038 while ( $s = $dbr->fetchObject($res) ) {
3039 $title = Title::makeTitle( $s->page_namespace, $s->page_title );
3040 $pdbk = $title->getPrefixedDBkey();
3041 $wgLinkCache->addGoodLinkObj( $s->page_id, $title );
3042
3043 if ( $threshold > 0 ) {
3044 $size = $s->page_len;
3045 if ( $s->page_is_redirect || $s->page_namespace != 0 || $size >= $threshold ) {
3046 $colours[$pdbk] = 1;
3047 } else {
3048 $colours[$pdbk] = 2;
3049 }
3050 } else {
3051 $colours[$pdbk] = 1;
3052 }
3053 }
3054 }
3055 wfProfileOut( $fname.'-check' );
3056
3057 # Construct search and replace arrays
3058 wfProfileIn( $fname.'-construct' );
3059 $wgOutputReplace = array();
3060 foreach ( $this->mLinkHolders['namespaces'] as $key => $ns ) {
3061 $pdbk = $pdbks[$key];
3062 $searchkey = "<!--LINK $key-->";
3063 $title = $this->mLinkHolders['titles'][$key];
3064 if ( empty( $colours[$pdbk] ) ) {
3065 $wgLinkCache->addBadLinkObj( $title );
3066 $colours[$pdbk] = 0;
3067 $wgOutputReplace[$searchkey] = $sk->makeBrokenLinkObj( $title,
3068 $this->mLinkHolders['texts'][$key],
3069 $this->mLinkHolders['queries'][$key] );
3070 } elseif ( $colours[$pdbk] == 1 ) {
3071 $wgOutputReplace[$searchkey] = $sk->makeKnownLinkObj( $title,
3072 $this->mLinkHolders['texts'][$key],
3073 $this->mLinkHolders['queries'][$key] );
3074 } elseif ( $colours[$pdbk] == 2 ) {
3075 $wgOutputReplace[$searchkey] = $sk->makeStubLinkObj( $title,
3076 $this->mLinkHolders['texts'][$key],
3077 $this->mLinkHolders['queries'][$key] );
3078 }
3079 }
3080 wfProfileOut( $fname.'-construct' );
3081
3082 # Do the thing
3083 wfProfileIn( $fname.'-replace' );
3084
3085 $text = preg_replace_callback(
3086 '/(<!--LINK .*?-->)/',
3087 "wfOutputReplaceMatches",
3088 $text);
3089
3090 wfProfileOut( $fname.'-replace' );
3091 }
3092
3093 # Now process interwiki link holders
3094 # This is quite a bit simpler than internal links
3095 if ( !empty( $this->mInterwikiLinkHolders['texts'] ) ) {
3096 wfProfileIn( $fname.'-interwiki' );
3097 # Make interwiki link HTML
3098 $wgOutputReplace = array();
3099 foreach( $this->mInterwikiLinkHolders['texts'] as $key => $link ) {
3100 $title = $this->mInterwikiLinkHolders['titles'][$key];
3101 $wgOutputReplace[$key] = $sk->makeLinkObj( $title, $link );
3102 }
3103
3104 $text = preg_replace_callback(
3105 '/<!--IWLINK (.*?)-->/',
3106 "wfOutputReplaceMatches",
3107 $text );
3108 wfProfileOut( $fname.'-interwiki' );
3109 }
3110
3111 wfProfileOut( $fname );
3112 return $colours;
3113 }
3114
3115 /**
3116 * Replace <!--LINK--> link placeholders with plain text of links
3117 * (not HTML-formatted).
3118 * @param string $text
3119 * @return string
3120 */
3121 function replaceLinkHoldersText( $text ) {
3122 global $wgUser, $wgLinkCache;
3123 global $wgOutputReplace;
3124
3125 $fname = 'Parser::replaceLinkHoldersText';
3126 wfProfileIn( $fname );
3127
3128 $text = preg_replace_callback(
3129 '/<!--(LINK|IWLINK) (.*?)-->/',
3130 array( &$this, 'replaceLinkHoldersTextCallback' ),
3131 $text );
3132
3133 wfProfileOut( $fname );
3134 return $text;
3135 }
3136
3137 /**
3138 * @param array $matches
3139 * @return string
3140 * @access private
3141 */
3142 function replaceLinkHoldersTextCallback( $matches ) {
3143 $type = $matches[1];
3144 $key = $matches[2];
3145 if( $type == 'LINK' ) {
3146 if( isset( $this->mLinkHolders['texts'][$key] ) ) {
3147 return $this->mLinkHolders['texts'][$key];
3148 }
3149 } elseif( $type == 'IWLINK' ) {
3150 if( isset( $this->mInterwikiLinkHolders['texts'][$key] ) ) {
3151 return $this->mInterwikiLinkHolders['texts'][$key];
3152 }
3153 }
3154 return $matches[0];
3155 }
3156
3157 /**
3158 * Renders an image gallery from a text with one line per image.
3159 * text labels may be given by using |-style alternative text. E.g.
3160 * Image:one.jpg|The number "1"
3161 * Image:tree.jpg|A tree
3162 * given as text will return the HTML of a gallery with two images,
3163 * labeled 'The number "1"' and
3164 * 'A tree'.
3165 *
3166 * @static
3167 */
3168 function renderImageGallery( $text ) {
3169 # Setup the parser
3170 global $wgUser, $wgTitle;
3171 $parserOptions = ParserOptions::newFromUser( $wgUser );
3172 $localParser = new Parser();
3173
3174 global $wgLinkCache;
3175 $ig = new ImageGallery();
3176 $ig->setShowBytes( false );
3177 $ig->setShowFilename( false );
3178 $lines = explode( "\n", $text );
3179
3180 foreach ( $lines as $line ) {
3181 # match lines like these:
3182 # Image:someimage.jpg|This is some image
3183 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
3184 # Skip empty lines
3185 if ( count( $matches ) == 0 ) {
3186 continue;
3187 }
3188 $nt = Title::newFromURL( $matches[1] );
3189 if( is_null( $nt ) ) {
3190 # Bogus title. Ignore these so we don't bomb out later.
3191 continue;
3192 }
3193 if ( isset( $matches[3] ) ) {
3194 $label = $matches[3];
3195 } else {
3196 $label = '';
3197 }
3198
3199 $html = $localParser->parse( $label , $wgTitle, $parserOptions );
3200 $html = $html->mText;
3201
3202 $ig->add( new Image( $nt ), $html );
3203 $wgLinkCache->addImageLinkObj( $nt );
3204 }
3205 return $ig->toHTML();
3206 }
3207
3208 /**
3209 * Parse image options text and use it to make an image
3210 */
3211 function makeImage( &$nt, $options ) {
3212 global $wgContLang, $wgUseImageResize;
3213 global $wgUser, $wgThumbLimits;
3214
3215 $align = '';
3216
3217 # Check if the options text is of the form "options|alt text"
3218 # Options are:
3219 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
3220 # * left no resizing, just left align. label is used for alt= only
3221 # * right same, but right aligned
3222 # * none same, but not aligned
3223 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
3224 # * center center the image
3225 # * framed Keep original image size, no magnify-button.
3226
3227 $part = explode( '|', $options);
3228
3229 $mwThumb =& MagicWord::get( MAG_IMG_THUMBNAIL );
3230 $mwLeft =& MagicWord::get( MAG_IMG_LEFT );
3231 $mwRight =& MagicWord::get( MAG_IMG_RIGHT );
3232 $mwNone =& MagicWord::get( MAG_IMG_NONE );
3233 $mwWidth =& MagicWord::get( MAG_IMG_WIDTH );
3234 $mwCenter =& MagicWord::get( MAG_IMG_CENTER );
3235 $mwFramed =& MagicWord::get( MAG_IMG_FRAMED );
3236 $caption = '';
3237
3238 $width = $height = $framed = $thumb = false;
3239 $manual_thumb = '' ;
3240
3241 foreach( $part as $key => $val ) {
3242 $val_parts = explode ( '=' , $val , 2 ) ;
3243 $left_part = array_shift ( $val_parts ) ;
3244 if ( $wgUseImageResize && ! is_null( $mwThumb->matchVariableStartToEnd($val) ) ) {
3245 $thumb=true;
3246 } elseif ( $wgUseImageResize && count ( $val_parts ) == 1 && ! is_null( $mwThumb->matchVariableStartToEnd($left_part) ) ) {
3247 # use manually specified thumbnail
3248 $thumb=true;
3249 $manual_thumb = array_shift ( $val_parts ) ;
3250 } elseif ( ! is_null( $mwRight->matchVariableStartToEnd($val) ) ) {
3251 # remember to set an alignment, don't render immediately
3252 $align = 'right';
3253 } elseif ( ! is_null( $mwLeft->matchVariableStartToEnd($val) ) ) {
3254 # remember to set an alignment, don't render immediately
3255 $align = 'left';
3256 } elseif ( ! is_null( $mwCenter->matchVariableStartToEnd($val) ) ) {
3257 # remember to set an alignment, don't render immediately
3258 $align = 'center';
3259 } elseif ( ! is_null( $mwNone->matchVariableStartToEnd($val) ) ) {
3260 # remember to set an alignment, don't render immediately
3261 $align = 'none';
3262 } elseif ( $wgUseImageResize && ! is_null( $match = $mwWidth->matchVariableStartToEnd($val) ) ) {
3263 wfDebug( "MAG_IMG_WIDTH match: $match\n" );
3264 # $match is the image width in pixels
3265 if ( preg_match( '/^([0-9]*)x([0-9]*)$/', $match, $m ) ) {
3266 $width = intval( $m[1] );
3267 $height = intval( $m[2] );
3268 } else {
3269 $width = intval($match);
3270 }
3271 } elseif ( ! is_null( $mwFramed->matchVariableStartToEnd($val) ) ) {
3272 $framed=true;
3273 } else {
3274 $caption = $val;
3275 }
3276 }
3277 # Strip bad stuff out of the alt text
3278 $alt = $this->replaceLinkHoldersText( $caption );
3279 $alt = Sanitizer::stripAllTags( $alt );
3280
3281 # Linker does the rest
3282 $sk =& $this->mOptions->getSkin();
3283 return $sk->makeImageLinkObj( $nt, $caption, $alt, $align, $width, $height, $framed, $thumb, $manual_thumb );
3284 }
3285 }
3286
3287 /**
3288 * @todo document
3289 * @package MediaWiki
3290 */
3291 class ParserOutput
3292 {
3293 var $mText, $mLanguageLinks, $mCategoryLinks, $mContainsOldMagic;
3294 var $mCacheTime; # Timestamp on this article, or -1 for uncacheable. Used in ParserCache.
3295 var $mVersion; # Compatibility check
3296 var $mTitleText; # title text of the chosen language variant
3297
3298 function ParserOutput( $text = '', $languageLinks = array(), $categoryLinks = array(),
3299 $containsOldMagic = false, $titletext = '' )
3300 {
3301 $this->mText = $text;
3302 $this->mLanguageLinks = $languageLinks;
3303 $this->mCategoryLinks = $categoryLinks;
3304 $this->mContainsOldMagic = $containsOldMagic;
3305 $this->mCacheTime = '';
3306 $this->mVersion = MW_PARSER_VERSION;
3307 $this->mTitleText = $titletext;
3308 }
3309
3310 function getText() { return $this->mText; }
3311 function getLanguageLinks() { return $this->mLanguageLinks; }
3312 function getCategoryLinks() { return array_keys( $this->mCategoryLinks ); }
3313 function getCacheTime() { return $this->mCacheTime; }
3314 function getTitleText() { return $this->mTitleText; }
3315 function containsOldMagic() { return $this->mContainsOldMagic; }
3316 function setText( $text ) { return wfSetVar( $this->mText, $text ); }
3317 function setLanguageLinks( $ll ) { return wfSetVar( $this->mLanguageLinks, $ll ); }
3318 function setCategoryLinks( $cl ) { return wfSetVar( $this->mCategoryLinks, $cl ); }
3319 function setContainsOldMagic( $com ) { return wfSetVar( $this->mContainsOldMagic, $com ); }
3320 function setCacheTime( $t ) { return wfSetVar( $this->mCacheTime, $t ); }
3321 function setTitleText( $t ) { return wfSetVar ($this->mTitleText, $t); }
3322
3323 function addCategoryLink( $c ) { $this->mCategoryLinks[$c] = 1; }
3324
3325 function merge( $other ) {
3326 $this->mLanguageLinks = array_merge( $this->mLanguageLinks, $other->mLanguageLinks );
3327 $this->mCategoryLinks = array_merge( $this->mCategoryLinks, $this->mLanguageLinks );
3328 $this->mContainsOldMagic = $this->mContainsOldMagic || $other->mContainsOldMagic;
3329 }
3330
3331 /**
3332 * Return true if this cached output object predates the global or
3333 * per-article cache invalidation timestamps, or if it comes from
3334 * an incompatible older version.
3335 *
3336 * @param string $touched the affected article's last touched timestamp
3337 * @return bool
3338 * @access public
3339 */
3340 function expired( $touched ) {
3341 global $wgCacheEpoch;
3342 return $this->getCacheTime() == -1 || // parser says it's uncacheable
3343 $this->getCacheTime() <= $touched ||
3344 $this->getCacheTime() <= $wgCacheEpoch ||
3345 !isset( $this->mVersion ) ||
3346 version_compare( $this->mVersion, MW_PARSER_VERSION, "lt" );
3347 }
3348 }
3349
3350 /**
3351 * Set options of the Parser
3352 * @todo document
3353 * @package MediaWiki
3354 */
3355 class ParserOptions
3356 {
3357 # All variables are private
3358 var $mUseTeX; # Use texvc to expand <math> tags
3359 var $mUseDynamicDates; # Use DateFormatter to format dates
3360 var $mInterwikiMagic; # Interlanguage links are removed and returned in an array
3361 var $mAllowExternalImages; # Allow external images inline
3362 var $mSkin; # Reference to the preferred skin
3363 var $mDateFormat; # Date format index
3364 var $mEditSection; # Create "edit section" links
3365 var $mNumberHeadings; # Automatically number headings
3366 var $mAllowSpecialInclusion; # Allow inclusion of special pages
3367
3368 function getUseTeX() { return $this->mUseTeX; }
3369 function getUseDynamicDates() { return $this->mUseDynamicDates; }
3370 function getInterwikiMagic() { return $this->mInterwikiMagic; }
3371 function getAllowExternalImages() { return $this->mAllowExternalImages; }
3372 function getSkin() { return $this->mSkin; }
3373 function getDateFormat() { return $this->mDateFormat; }
3374 function getEditSection() { return $this->mEditSection; }
3375 function getNumberHeadings() { return $this->mNumberHeadings; }
3376 function getAllowSpecialInclusion() { return $this->mAllowSpecialInclusion; }
3377
3378
3379 function setUseTeX( $x ) { return wfSetVar( $this->mUseTeX, $x ); }
3380 function setUseDynamicDates( $x ) { return wfSetVar( $this->mUseDynamicDates, $x ); }
3381 function setInterwikiMagic( $x ) { return wfSetVar( $this->mInterwikiMagic, $x ); }
3382 function setAllowExternalImages( $x ) { return wfSetVar( $this->mAllowExternalImages, $x ); }
3383 function setDateFormat( $x ) { return wfSetVar( $this->mDateFormat, $x ); }
3384 function setEditSection( $x ) { return wfSetVar( $this->mEditSection, $x ); }
3385 function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); }
3386 function setAllowSpecialInclusion( $x ) { return wfSetVar( $this->mAllowSpecialInclusion, $x ); }
3387
3388 function setSkin( &$x ) { $this->mSkin =& $x; }
3389
3390 function ParserOptions() {
3391 global $wgUser;
3392 $this->initialiseFromUser( $wgUser );
3393 }
3394
3395 /**
3396 * Get parser options
3397 * @static
3398 */
3399 function newFromUser( &$user ) {
3400 $popts = new ParserOptions;
3401 $popts->initialiseFromUser( $user );
3402 return $popts;
3403 }
3404
3405 /** Get user options */
3406 function initialiseFromUser( &$userInput ) {
3407 global $wgUseTeX, $wgUseDynamicDates, $wgInterwikiMagic, $wgAllowExternalImages,
3408 $wgAllowSpecialInclusion;
3409 $fname = 'ParserOptions::initialiseFromUser';
3410 wfProfileIn( $fname );
3411 if ( !$userInput ) {
3412 $user = new User;
3413 $user->setLoaded( true );
3414 } else {
3415 $user =& $userInput;
3416 }
3417
3418 $this->mUseTeX = $wgUseTeX;
3419 $this->mUseDynamicDates = $wgUseDynamicDates;
3420 $this->mInterwikiMagic = $wgInterwikiMagic;
3421 $this->mAllowExternalImages = $wgAllowExternalImages;
3422 wfProfileIn( $fname.'-skin' );
3423 $this->mSkin =& $user->getSkin();
3424 wfProfileOut( $fname.'-skin' );
3425 $this->mDateFormat = $user->getOption( 'date' );
3426 $this->mEditSection = $user->getOption( 'editsection' );
3427 $this->mNumberHeadings = $user->getOption( 'numberheadings' );
3428 $this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
3429 wfProfileOut( $fname );
3430 }
3431 }
3432
3433 /**
3434 * Callback function used by Parser::replaceLinkHolders()
3435 * to substitute link placeholders.
3436 */
3437 function &wfOutputReplaceMatches( $matches ) {
3438 global $wgOutputReplace;
3439 return $wgOutputReplace[$matches[1]];
3440 }
3441
3442 /**
3443 * Return the total number of articles
3444 */
3445 function wfNumberOfArticles() {
3446 global $wgNumberOfArticles;
3447
3448 wfLoadSiteStats();
3449 return $wgNumberOfArticles;
3450 }
3451
3452 /**
3453 * Return the number of files
3454 */
3455 function wfNumberOfFiles() {
3456 $fname = 'Parser::wfNumberOfFiles';
3457
3458 wfProfileIn( $fname );
3459 $dbr =& wfGetDB( DB_SLAVE );
3460 $res = $dbr->selectField('image', 'COUNT(*)', array(), $fname );
3461 wfProfileOut( $fname );
3462
3463 return $res;
3464 }
3465
3466 /**
3467 * Get various statistics from the database
3468 * @private
3469 */
3470 function wfLoadSiteStats() {
3471 global $wgNumberOfArticles, $wgTotalViews, $wgTotalEdits;
3472 $fname = 'wfLoadSiteStats';
3473
3474 if ( -1 != $wgNumberOfArticles ) return;
3475 $dbr =& wfGetDB( DB_SLAVE );
3476 $s = $dbr->selectRow( 'site_stats',
3477 array( 'ss_total_views', 'ss_total_edits', 'ss_good_articles' ),
3478 array( 'ss_row_id' => 1 ), $fname
3479 );
3480
3481 if ( $s === false ) {
3482 return;
3483 } else {
3484 $wgTotalViews = $s->ss_total_views;
3485 $wgTotalEdits = $s->ss_total_edits;
3486 $wgNumberOfArticles = $s->ss_good_articles;
3487 }
3488 }
3489
3490 /**
3491 * Escape html tags
3492 * Basicly replacing " > and < with HTML entities ( &quot;, &gt;, &lt;)
3493 *
3494 * @param string $in Text that might contain HTML tags
3495 * @return string Escaped string
3496 */
3497 function wfEscapeHTMLTagsOnly( $in ) {
3498 return str_replace(
3499 array( '"', '>', '<' ),
3500 array( '&quot;', '&gt;', '&lt;' ),
3501 $in );
3502 }
3503
3504 ?>