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