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