Unclutter ImagePage. Move EXIF data to the end of the page. Move image upload links...
[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 $dashReplace = array(
188 '/ - /' => "&nbsp;&ndash; ", # N dash
189 '/(?<=[0-9])-(?=[0-9])/' => "&ndash;", # N dash between numbers
190 '/ -- /' => "&nbsp;&mdash; " # M dash
191 );
192 $text = preg_replace( array_keys($dashReplace), array_values($dashReplace), $text );
193
194
195 $text = $this->unstrip( $text, $this->mStripState );
196
197 # Clean up special characters, only run once, next-to-last before doBlockLevels
198 $fixtags = array(
199 # french spaces, last one Guillemet-left
200 # only if there is something before the space
201 '/(.) (?=\\?|:|;|!|\\302\\273)/' => '\\1&nbsp;\\2',
202 # french spaces, Guillemet-right
203 '/(\\302\\253) /' => '\\1&nbsp;',
204 '/<hr *>/i' => '<hr />',
205 '/<br *>/i' => '<br />',
206 '/<center *>/i' => '<div class="center">',
207 '/<\\/center *>/i' => '</div>',
208 );
209 $text = preg_replace( array_keys($fixtags), array_values($fixtags), $text );
210
211 # only once and last
212 $text = $this->doBlockLevels( $text, $linestart );
213
214 $this->replaceLinkHolders( $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 = $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 } else {
2036 # Remove obsolete MSG:
2037 $mwMsg =& MagicWord::get( MAG_MSG );
2038 $mwMsg->matchStartAndRemove( $part1 );
2039 }
2040
2041 # Check if it is an internal message
2042 $mwInt =& MagicWord::get( MAG_INT );
2043 if ( $mwInt->matchStartAndRemove( $part1 ) ) {
2044 if ( $this->incrementIncludeCount( 'int:'.$part1 ) ) {
2045 $text = $linestart . wfMsgReal( $part1, $args, true );
2046 $found = true;
2047 }
2048 }
2049 }
2050
2051 # NS
2052 if ( !$found ) {
2053 # Check for NS: (namespace expansion)
2054 $mwNs = MagicWord::get( MAG_NS );
2055 if ( $mwNs->matchStartAndRemove( $part1 ) ) {
2056 if ( intval( $part1 ) ) {
2057 $text = $linestart . $wgContLang->getNsText( intval( $part1 ) );
2058 $found = true;
2059 } else {
2060 $index = Namespace::getCanonicalIndex( strtolower( $part1 ) );
2061 if ( !is_null( $index ) ) {
2062 $text = $linestart . $wgContLang->getNsText( $index );
2063 $found = true;
2064 }
2065 }
2066 }
2067 }
2068
2069 # LOCALURL and LOCALURLE
2070 if ( !$found ) {
2071 $mwLocal = MagicWord::get( MAG_LOCALURL );
2072 $mwLocalE = MagicWord::get( MAG_LOCALURLE );
2073
2074 if ( $mwLocal->matchStartAndRemove( $part1 ) ) {
2075 $func = 'getLocalURL';
2076 } elseif ( $mwLocalE->matchStartAndRemove( $part1 ) ) {
2077 $func = 'escapeLocalURL';
2078 } else {
2079 $func = '';
2080 }
2081
2082 if ( $func !== '' ) {
2083 $title = Title::newFromText( $part1 );
2084 if ( !is_null( $title ) ) {
2085 if ( $argc > 0 ) {
2086 $text = $linestart . $title->$func( $args[0] );
2087 } else {
2088 $text = $linestart . $title->$func();
2089 }
2090 $found = true;
2091 }
2092 }
2093 }
2094
2095 # GRAMMAR
2096 if ( !$found && $argc == 1 ) {
2097 $mwGrammar =& MagicWord::get( MAG_GRAMMAR );
2098 if ( $mwGrammar->matchStartAndRemove( $part1 ) ) {
2099 $text = $linestart . $wgContLang->convertGrammar( $args[0], $part1 );
2100 $found = true;
2101 }
2102 }
2103
2104 # Template table test
2105
2106 # Did we encounter this template already? If yes, it is in the cache
2107 # and we need to check for loops.
2108 if ( !$found && isset( $this->mTemplates[$part1] ) ) {
2109 $found = true;
2110
2111 # Infinite loop test
2112 if ( isset( $this->mTemplatePath[$part1] ) ) {
2113 $noparse = true;
2114 $found = true;
2115 $text = $linestart .
2116 "\{\{$part1}}" .
2117 '<!-- WARNING: template loop detected -->';
2118 wfDebug( "$fname: template loop broken at '$part1'\n" );
2119 } else {
2120 # set $text to cached message.
2121 $text = $linestart . $this->mTemplates[$part1];
2122 }
2123 }
2124
2125 # Load from database
2126 $itcamefromthedatabase = false;
2127 $lastPathLevel = $this->mTemplatePath;
2128 if ( !$found ) {
2129 $ns = NS_TEMPLATE;
2130 $part1 = $this->maybeDoSubpageLink( $part1, $subpage='' );
2131 if ($subpage !== '') {
2132 $ns = $this->mTitle->getNamespace();
2133 }
2134 $title = Title::newFromText( $part1, $ns );
2135 if ( !is_null( $title ) && !$title->isExternal() ) {
2136 # Check for excessive inclusion
2137 $dbk = $title->getPrefixedDBkey();
2138 if ( $this->incrementIncludeCount( $dbk ) ) {
2139 # This should never be reached.
2140 $article = new Article( $title );
2141 $articleContent = $article->getContentWithoutUsingSoManyDamnGlobals();
2142 if ( $articleContent !== false ) {
2143 $found = true;
2144 $text = $linestart . $articleContent;
2145 $itcamefromthedatabase = true;
2146 }
2147 }
2148
2149 # If the title is valid but undisplayable, make a link to it
2150 if ( $this->mOutputType == OT_HTML && !$found ) {
2151 $text = $linestart . '[['.$title->getPrefixedText().']]';
2152 $found = true;
2153 }
2154
2155 # Template cache array insertion
2156 if( $found ) {
2157 $this->mTemplates[$part1] = $text;
2158 }
2159 }
2160 }
2161
2162 # Recursive parsing, escaping and link table handling
2163 # Only for HTML output
2164 if ( $nowiki && $found && $this->mOutputType == OT_HTML ) {
2165 $text = wfEscapeWikiText( $text );
2166 } elseif ( ($this->mOutputType == OT_HTML || $this->mOutputType == OT_WIKI) && $found && !$noparse) {
2167 # Clean up argument array
2168 $assocArgs = array();
2169 $index = 1;
2170 foreach( $args as $arg ) {
2171 $eqpos = strpos( $arg, '=' );
2172 if ( $eqpos === false ) {
2173 $assocArgs[$index++] = $arg;
2174 } else {
2175 $name = trim( substr( $arg, 0, $eqpos ) );
2176 $value = trim( substr( $arg, $eqpos+1 ) );
2177 if ( $value === false ) {
2178 $value = '';
2179 }
2180 if ( $name !== false ) {
2181 $assocArgs[$name] = $value;
2182 }
2183 }
2184 }
2185
2186 # Add a new element to the templace recursion path
2187 $this->mTemplatePath[$part1] = 1;
2188
2189 if( $this->mOutputType == OT_HTML ) {
2190 $text = $this->strip( $text, $this->mStripState );
2191 $text = Sanitizer::removeHTMLtags( $text );
2192 }
2193 $text = $this->replaceVariables( $text, $assocArgs );
2194
2195 # Resume the link cache and register the inclusion as a link
2196 if ( $this->mOutputType == OT_HTML && !is_null( $title ) ) {
2197 $wgLinkCache->addLinkObj( $title );
2198 }
2199
2200 # If the template begins with a table or block-level
2201 # element, it should be treated as beginning a new line.
2202 if ($linestart !== '\n' && preg_match('/^({\\||:|;|#|\*)/', $text)) {
2203 $text = "\n" . $text;
2204 }
2205 }
2206 # Prune lower levels off the recursion check path
2207 $this->mTemplatePath = $lastPathLevel;
2208
2209 if ( !$found ) {
2210 wfProfileOut( $fname );
2211 return $matches[0];
2212 } else {
2213 # replace ==section headers==
2214 # XXX this needs to go away once we have a better parser.
2215 if ( $this->mOutputType != OT_WIKI && $itcamefromthedatabase ) {
2216 if( !is_null( $title ) )
2217 $encodedname = base64_encode($title->getPrefixedDBkey());
2218 else
2219 $encodedname = base64_encode("");
2220 $m = preg_split('/(^={1,6}.*?={1,6}\s*?$)/m', $text, -1,
2221 PREG_SPLIT_DELIM_CAPTURE);
2222 $text = '';
2223 $nsec = 0;
2224 for( $i = 0; $i < count($m); $i += 2 ) {
2225 $text .= $m[$i];
2226 if (!isset($m[$i + 1]) || $m[$i + 1] == "") continue;
2227 $hl = $m[$i + 1];
2228 if( strstr($hl, "<!--MWTEMPLATESECTION") ) {
2229 $text .= $hl;
2230 continue;
2231 }
2232 preg_match('/^(={1,6})(.*?)(={1,6})\s*?$/m', $hl, $m2);
2233 $text .= $m2[1] . $m2[2] . "<!--MWTEMPLATESECTION="
2234 . $encodedname . "&" . base64_encode("$nsec") . "-->" . $m2[3];
2235
2236 $nsec++;
2237 }
2238 }
2239 }
2240 # Prune lower levels off the recursion check path
2241 $this->mTemplatePath = $lastPathLevel;
2242
2243 if ( !$found ) {
2244 wfProfileOut( $fname );
2245 return $matches[0];
2246 } else {
2247 wfProfileOut( $fname );
2248 return $text;
2249 }
2250 }
2251
2252 /**
2253 * Triple brace replacement -- used for template arguments
2254 * @access private
2255 */
2256 function argSubstitution( $matches ) {
2257 $arg = trim( $matches[1] );
2258 $text = $matches[0];
2259 $inputArgs = end( $this->mArgStack );
2260
2261 if ( array_key_exists( $arg, $inputArgs ) ) {
2262 $text = $inputArgs[$arg];
2263 }
2264
2265 return $text;
2266 }
2267
2268 /**
2269 * Returns true if the function is allowed to include this entity
2270 * @access private
2271 */
2272 function incrementIncludeCount( $dbk ) {
2273 if ( !array_key_exists( $dbk, $this->mIncludeCount ) ) {
2274 $this->mIncludeCount[$dbk] = 0;
2275 }
2276 if ( ++$this->mIncludeCount[$dbk] <= MAX_INCLUDE_REPEAT ) {
2277 return true;
2278 } else {
2279 return false;
2280 }
2281 }
2282
2283 /**
2284 * This function accomplishes several tasks:
2285 * 1) Auto-number headings if that option is enabled
2286 * 2) Add an [edit] link to sections for logged in users who have enabled the option
2287 * 3) Add a Table of contents on the top for users who have enabled the option
2288 * 4) Auto-anchor headings
2289 *
2290 * It loops through all headlines, collects the necessary data, then splits up the
2291 * string and re-inserts the newly formatted headlines.
2292 *
2293 * @param string $text
2294 * @param boolean $isMain
2295 * @access private
2296 */
2297 function formatHeadings( $text, $isMain=true ) {
2298 global $wgInputEncoding, $wgMaxTocLevel, $wgContLang, $wgLinkHolders, $wgInterwikiLinkHolders;
2299
2300 $doNumberHeadings = $this->mOptions->getNumberHeadings();
2301 $doShowToc = true;
2302 $forceTocHere = false;
2303 if( !$this->mTitle->userCanEdit() ) {
2304 $showEditLink = 0;
2305 } else {
2306 $showEditLink = $this->mOptions->getEditSection();
2307 }
2308
2309 # Inhibit editsection links if requested in the page
2310 $esw =& MagicWord::get( MAG_NOEDITSECTION );
2311 if( $esw->matchAndRemove( $text ) ) {
2312 $showEditLink = 0;
2313 }
2314 # if the string __NOTOC__ (not case-sensitive) occurs in the HTML,
2315 # do not add TOC
2316 $mw =& MagicWord::get( MAG_NOTOC );
2317 if( $mw->matchAndRemove( $text ) ) {
2318 $doShowToc = false;
2319 }
2320
2321 # Get all headlines for numbering them and adding funky stuff like [edit]
2322 # links - this is for later, but we need the number of headlines right now
2323 $numMatches = preg_match_all( '/<H([1-6])(.*?'.'>)(.*?)<\/H[1-6] *>/i', $text, $matches );
2324
2325 # if there are fewer than 4 headlines in the article, do not show TOC
2326 if( $numMatches < 4 ) {
2327 $doShowToc = false;
2328 }
2329
2330 # if the string __TOC__ (not case-sensitive) occurs in the HTML,
2331 # override above conditions and always show TOC at that place
2332
2333 $mw =& MagicWord::get( MAG_TOC );
2334 if($mw->match( $text ) ) {
2335 $doShowToc = true;
2336 $forceTocHere = true;
2337 } else {
2338 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
2339 # override above conditions and always show TOC above first header
2340 $mw =& MagicWord::get( MAG_FORCETOC );
2341 if ($mw->matchAndRemove( $text ) ) {
2342 $doShowToc = true;
2343 }
2344 }
2345
2346 # Never ever show TOC if no headers
2347 if( $numMatches < 1 ) {
2348 $doShowToc = false;
2349 }
2350
2351 # We need this to perform operations on the HTML
2352 $sk =& $this->mOptions->getSkin();
2353
2354 # headline counter
2355 $headlineCount = 0;
2356 $sectionCount = 0; # headlineCount excluding template sections
2357
2358 # Ugh .. the TOC should have neat indentation levels which can be
2359 # passed to the skin functions. These are determined here
2360 $toc = '';
2361 $full = '';
2362 $head = array();
2363 $sublevelCount = array();
2364 $levelCount = array();
2365 $toclevel = 0;
2366 $level = 0;
2367 $prevlevel = 0;
2368 $toclevel = 0;
2369 $prevtoclevel = 0;
2370
2371 foreach( $matches[3] as $headline ) {
2372 $istemplate = 0;
2373 $templatetitle = '';
2374 $templatesection = 0;
2375 $numbering = '';
2376
2377 if (preg_match("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", $headline, $mat)) {
2378 $istemplate = 1;
2379 $templatetitle = base64_decode($mat[1]);
2380 $templatesection = 1 + (int)base64_decode($mat[2]);
2381 $headline = preg_replace("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", "", $headline);
2382 }
2383
2384 if( $toclevel ) {
2385 $prevlevel = $level;
2386 $prevtoclevel = $toclevel;
2387 }
2388 $level = $matches[1][$headlineCount];
2389
2390 if( $doNumberHeadings || $doShowToc ) {
2391
2392 if ( $level > $prevlevel ) {
2393 # Increase TOC level
2394 $toclevel++;
2395 $sublevelCount[$toclevel] = 0;
2396 $toc .= $sk->tocIndent();
2397 }
2398 elseif ( $level < $prevlevel && $toclevel > 1 ) {
2399 # Decrease TOC level, find level to jump to
2400
2401 if ( $toclevel == 2 && $level <= $levelCount[1] ) {
2402 # Can only go down to level 1
2403 $toclevel = 1;
2404 } else {
2405 for ($i = $toclevel; $i > 0; $i--) {
2406 if ( $levelCount[$i] == $level ) {
2407 # Found last matching level
2408 $toclevel = $i;
2409 break;
2410 }
2411 elseif ( $levelCount[$i] < $level ) {
2412 # Found first matching level below current level
2413 $toclevel = $i + 1;
2414 break;
2415 }
2416 }
2417 }
2418
2419 $toc .= $sk->tocUnindent( $prevtoclevel - $toclevel );
2420 }
2421 else {
2422 # No change in level, end TOC line
2423 $toc .= $sk->tocLineEnd();
2424 }
2425
2426 $levelCount[$toclevel] = $level;
2427
2428 # count number of headlines for each level
2429 @$sublevelCount[$toclevel]++;
2430 $dot = 0;
2431 for( $i = 1; $i <= $toclevel; $i++ ) {
2432 if( !empty( $sublevelCount[$i] ) ) {
2433 if( $dot ) {
2434 $numbering .= '.';
2435 }
2436 $numbering .= $wgContLang->formatNum( $sublevelCount[$i] );
2437 $dot = 1;
2438 }
2439 }
2440 }
2441
2442 # The canonized header is a version of the header text safe to use for links
2443 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
2444 $canonized_headline = $this->unstrip( $headline, $this->mStripState );
2445 $canonized_headline = $this->unstripNoWiki( $canonized_headline, $this->mStripState );
2446
2447 # Remove link placeholders by the link text.
2448 # <!--LINK number-->
2449 # turns into
2450 # link text with suffix
2451 $canonized_headline = preg_replace( '/<!--LINK ([0-9]*)-->/e',
2452 "\$this->mLinkHolders['texts'][\$1]",
2453 $canonized_headline );
2454 $canonized_headline = preg_replace( '/<!--IWLINK ([0-9]*)-->/e',
2455 "\$this->mInterwikiLinkHolders[\$1][1]",
2456 $canonized_headline );
2457
2458 # strip out HTML
2459 $canonized_headline = preg_replace( '/<.*?' . '>/','',$canonized_headline );
2460 $tocline = trim( $canonized_headline );
2461 $canonized_headline = urlencode( do_html_entity_decode( str_replace(' ', '_', $tocline), ENT_COMPAT, $wgInputEncoding ) );
2462 $replacearray = array(
2463 '%3A' => ':',
2464 '%' => '.'
2465 );
2466 $canonized_headline = str_replace(array_keys($replacearray),array_values($replacearray),$canonized_headline);
2467 $refers[$headlineCount] = $canonized_headline;
2468
2469 # count how many in assoc. array so we can track dupes in anchors
2470 @$refers[$canonized_headline]++;
2471 $refcount[$headlineCount]=$refers[$canonized_headline];
2472
2473 # Don't number the heading if it is the only one (looks silly)
2474 if( $doNumberHeadings && count( $matches[3] ) > 1) {
2475 # the two are different if the line contains a link
2476 $headline=$numbering . ' ' . $headline;
2477 }
2478
2479 # Create the anchor for linking from the TOC to the section
2480 $anchor = $canonized_headline;
2481 if($refcount[$headlineCount] > 1 ) {
2482 $anchor .= '_' . $refcount[$headlineCount];
2483 }
2484 if( $doShowToc && ( !isset($wgMaxTocLevel) || $toclevel<$wgMaxTocLevel ) ) {
2485 $toc .= $sk->tocLine($anchor, $tocline, $numbering, $toclevel);
2486 }
2487 if( $showEditLink && ( !$istemplate || $templatetitle !== "" ) ) {
2488 if ( empty( $head[$headlineCount] ) ) {
2489 $head[$headlineCount] = '';
2490 }
2491 if( $istemplate )
2492 $head[$headlineCount] .= $sk->editSectionLinkForOther($templatetitle, $templatesection);
2493 else
2494 $head[$headlineCount] .= $sk->editSectionLink($this->mTitle, $sectionCount+1);
2495 }
2496
2497 # give headline the correct <h#> tag
2498 @$head[$headlineCount] .= "<a name=\"$anchor\"></a><h".$level.$matches[2][$headlineCount] .$headline.'</h'.$level.'>';
2499
2500 $headlineCount++;
2501 if( !$istemplate )
2502 $sectionCount++;
2503 }
2504
2505 if( $doShowToc ) {
2506 $toc .= $sk->tocUnindent( $toclevel - 1 );
2507 $toc = $sk->tocList( $toc );
2508 }
2509
2510 # split up and insert constructed headlines
2511
2512 $blocks = preg_split( '/<H[1-6].*?' . '>.*?<\/H[1-6]>/i', $text );
2513 $i = 0;
2514
2515 foreach( $blocks as $block ) {
2516 if( $showEditLink && $headlineCount > 0 && $i == 0 && $block != "\n" ) {
2517 # This is the [edit] link that appears for the top block of text when
2518 # section editing is enabled
2519
2520 # Disabled because it broke block formatting
2521 # For example, a bullet point in the top line
2522 # $full .= $sk->editSectionLink(0);
2523 }
2524 $full .= $block;
2525 if( $doShowToc && !$i && $isMain && !$forceTocHere) {
2526 # Top anchor now in skin
2527 $full = $full.$toc;
2528 }
2529
2530 if( !empty( $head[$i] ) ) {
2531 $full .= $head[$i];
2532 }
2533 $i++;
2534 }
2535 if($forceTocHere) {
2536 $mw =& MagicWord::get( MAG_TOC );
2537 return $mw->replace( $toc, $full );
2538 } else {
2539 return $full;
2540 }
2541 }
2542
2543 /**
2544 * Return an HTML link for the "ISBN 123456" text
2545 * @access private
2546 */
2547 function magicISBN( $text ) {
2548 $fname = 'Parser::magicISBN';
2549 wfProfileIn( $fname );
2550
2551 $a = split( 'ISBN ', ' '.$text );
2552 if ( count ( $a ) < 2 ) {
2553 wfProfileOut( $fname );
2554 return $text;
2555 }
2556 $text = substr( array_shift( $a ), 1);
2557 $valid = '0123456789-Xx';
2558
2559 foreach ( $a as $x ) {
2560 $isbn = $blank = '' ;
2561 while ( ' ' == $x{0} ) {
2562 $blank .= ' ';
2563 $x = substr( $x, 1 );
2564 }
2565 if ( $x == '' ) { # blank isbn
2566 $text .= "ISBN $blank";
2567 continue;
2568 }
2569 while ( strstr( $valid, $x{0} ) != false ) {
2570 $isbn .= $x{0};
2571 $x = substr( $x, 1 );
2572 }
2573 $num = str_replace( '-', '', $isbn );
2574 $num = str_replace( ' ', '', $num );
2575 $num = str_replace( 'x', 'X', $num );
2576
2577 if ( '' == $num ) {
2578 $text .= "ISBN $blank$x";
2579 } else {
2580 $titleObj = Title::makeTitle( NS_SPECIAL, 'Booksources' );
2581 $text .= '<a href="' .
2582 $titleObj->escapeLocalUrl( 'isbn='.$num ) .
2583 "\" class=\"internal\">ISBN $isbn</a>";
2584 $text .= $x;
2585 }
2586 }
2587 wfProfileOut( $fname );
2588 return $text;
2589 }
2590
2591 /**
2592 * Return an HTML link for the "RFC 1234" text
2593 *
2594 * @access private
2595 * @param string $text Text to be processed
2596 * @param string $keyword Magic keyword to use (default RFC)
2597 * @param string $urlmsg Interface message to use (default rfcurl)
2598 * @return string
2599 */
2600 function magicRFC( $text, $keyword='RFC ', $urlmsg='rfcurl' ) {
2601
2602 $valid = '0123456789';
2603 $internal = false;
2604
2605 $a = split( $keyword, ' '.$text );
2606 if ( count ( $a ) < 2 ) {
2607 return $text;
2608 }
2609 $text = substr( array_shift( $a ), 1);
2610
2611 /* Check if keyword is preceed by [[.
2612 * This test is made here cause of the array_shift above
2613 * that prevent the test to be done in the foreach.
2614 */
2615 if ( substr( $text, -2 ) == '[[' ) {
2616 $internal = true;
2617 }
2618
2619 foreach ( $a as $x ) {
2620 /* token might be empty if we have RFC RFC 1234 */
2621 if ( $x=='' ) {
2622 $text.=$keyword;
2623 continue;
2624 }
2625
2626 $id = $blank = '' ;
2627
2628 /** remove and save whitespaces in $blank */
2629 while ( $x{0} == ' ' ) {
2630 $blank .= ' ';
2631 $x = substr( $x, 1 );
2632 }
2633
2634 /** remove and save the rfc number in $id */
2635 while ( strstr( $valid, $x{0} ) != false ) {
2636 $id .= $x{0};
2637 $x = substr( $x, 1 );
2638 }
2639
2640 if ( $id == '' ) {
2641 /* call back stripped spaces*/
2642 $text .= $keyword.$blank.$x;
2643 } elseif( $internal ) {
2644 /* normal link */
2645 $text .= $keyword.$id.$x;
2646 } else {
2647 /* build the external link*/
2648 $url = wfMsg( $urlmsg, $id);
2649 $sk =& $this->mOptions->getSkin();
2650 $la = $sk->getExternalLinkAttributes( $url, $keyword.$id );
2651 $text .= "<a href='{$url}'{$la}>{$keyword}{$id}</a>{$x}";
2652 }
2653
2654 /* Check if the next RFC keyword is preceed by [[ */
2655 $internal = ( substr($x,-2) == '[[' );
2656 }
2657 return $text;
2658 }
2659
2660 /**
2661 * Transform wiki markup when saving a page by doing \r\n -> \n
2662 * conversion, substitting signatures, {{subst:}} templates, etc.
2663 *
2664 * @param string $text the text to transform
2665 * @param Title &$title the Title object for the current article
2666 * @param User &$user the User object describing the current user
2667 * @param ParserOptions $options parsing options
2668 * @param bool $clearState whether to clear the parser state first
2669 * @return string the altered wiki markup
2670 * @access public
2671 */
2672 function preSaveTransform( $text, &$title, &$user, $options, $clearState = true ) {
2673 $this->mOptions = $options;
2674 $this->mTitle =& $title;
2675 $this->mOutputType = OT_WIKI;
2676
2677 if ( $clearState ) {
2678 $this->clearState();
2679 }
2680
2681 $stripState = false;
2682 $pairs = array(
2683 "\r\n" => "\n",
2684 );
2685 $text = str_replace( array_keys( $pairs ), array_values( $pairs ), $text );
2686 $text = $this->strip( $text, $stripState, false );
2687 $text = $this->pstPass2( $text, $user );
2688 $text = $this->unstrip( $text, $stripState );
2689 $text = $this->unstripNoWiki( $text, $stripState );
2690 return $text;
2691 }
2692
2693 /**
2694 * Pre-save transform helper function
2695 * @access private
2696 */
2697 function pstPass2( $text, &$user ) {
2698 global $wgContLang, $wgLocaltimezone;
2699
2700 # Variable replacement
2701 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
2702 $text = $this->replaceVariables( $text );
2703
2704 # Signatures
2705 #
2706 $n = $user->getName();
2707 $k = $user->getOption( 'nickname' );
2708 if ( '' == $k ) { $k = $n; }
2709 if ( isset( $wgLocaltimezone ) ) {
2710 $oldtz = getenv( 'TZ' );
2711 putenv( 'TZ='.$wgLocaltimezone );
2712 }
2713
2714 /* Note: This is the timestamp saved as hardcoded wikitext to
2715 * the database, we use $wgContLang here in order to give
2716 * everyone the same signiture and use the default one rather
2717 * than the one selected in each users preferences.
2718 */
2719 $d = $wgContLang->timeanddate( wfTimestampNow(), false, false) .
2720 ' (' . date( 'T' ) . ')';
2721 if ( isset( $wgLocaltimezone ) ) {
2722 putenv( 'TZ='.$oldtz );
2723 }
2724
2725 if( $user->getOption( 'fancysig' ) ) {
2726 $sigText = $k;
2727 } else {
2728 $sigText = '[[' . $wgContLang->getNsText( NS_USER ) . ":$n|$k]]";
2729 }
2730 $text = preg_replace( '/~~~~~/', $d, $text );
2731 $text = preg_replace( '/~~~~/', "$sigText $d", $text );
2732 $text = preg_replace( '/~~~/', $sigText, $text );
2733
2734 # Context links: [[|name]] and [[name (context)|]]
2735 #
2736 $tc = "[&;%\\-,.\\(\\)' _0-9A-Za-z\\/:\\x80-\\xff]";
2737 $np = "[&;%\\-,.' _0-9A-Za-z\\/:\\x80-\\xff]"; # No parens
2738 $namespacechar = '[ _0-9A-Za-z\x80-\xff]'; # Namespaces can use non-ascii!
2739 $conpat = "/^({$np}+) \\(({$tc}+)\\)$/";
2740
2741 $p1 = "/\[\[({$np}+) \\(({$np}+)\\)\\|]]/"; # [[page (context)|]]
2742 $p2 = "/\[\[\\|({$tc}+)]]/"; # [[|page]]
2743 $p3 = "/\[\[(:*$namespacechar+):({$np}+)\\|]]/"; # [[namespace:page|]] and [[:namespace:page|]]
2744 $p4 = "/\[\[(:*$namespacechar+):({$np}+) \\(({$np}+)\\)\\|]]/"; # [[ns:page (cont)|]] and [[:ns:page (cont)|]]
2745 $context = '';
2746 $t = $this->mTitle->getText();
2747 if ( preg_match( $conpat, $t, $m ) ) {
2748 $context = $m[2];
2749 }
2750 $text = preg_replace( $p4, '[[\\1:\\2 (\\3)|\\2]]', $text );
2751 $text = preg_replace( $p1, '[[\\1 (\\2)|\\1]]', $text );
2752 $text = preg_replace( $p3, '[[\\1:\\2|\\2]]', $text );
2753
2754 if ( '' == $context ) {
2755 $text = preg_replace( $p2, '[[\\1]]', $text );
2756 } else {
2757 $text = preg_replace( $p2, "[[\\1 ({$context})|\\1]]", $text );
2758 }
2759
2760 # Trim trailing whitespace
2761 # MAG_END (__END__) tag allows for trailing
2762 # whitespace to be deliberately included
2763 $text = rtrim( $text );
2764 $mw =& MagicWord::get( MAG_END );
2765 $mw->matchAndRemove( $text );
2766
2767 return $text;
2768 }
2769
2770 /**
2771 * Set up some variables which are usually set up in parse()
2772 * so that an external function can call some class members with confidence
2773 * @access public
2774 */
2775 function startExternalParse( &$title, $options, $outputType, $clearState = true ) {
2776 $this->mTitle =& $title;
2777 $this->mOptions = $options;
2778 $this->mOutputType = $outputType;
2779 if ( $clearState ) {
2780 $this->clearState();
2781 }
2782 }
2783
2784 /**
2785 * Transform a MediaWiki message by replacing magic variables.
2786 *
2787 * @param string $text the text to transform
2788 * @param ParserOptions $options options
2789 * @return string the text with variables substituted
2790 * @access public
2791 */
2792 function transformMsg( $text, $options ) {
2793 global $wgTitle;
2794 static $executing = false;
2795
2796 # Guard against infinite recursion
2797 if ( $executing ) {
2798 return $text;
2799 }
2800 $executing = true;
2801
2802 $this->mTitle = $wgTitle;
2803 $this->mOptions = $options;
2804 $this->mOutputType = OT_MSG;
2805 $this->clearState();
2806 $text = $this->replaceVariables( $text );
2807
2808 $executing = false;
2809 return $text;
2810 }
2811
2812 /**
2813 * Create an HTML-style tag, e.g. <yourtag>special text</yourtag>
2814 * Callback will be called with the text within
2815 * Transform and return the text within
2816 * @access public
2817 */
2818 function setHook( $tag, $callback ) {
2819 $oldVal = @$this->mTagHooks[$tag];
2820 $this->mTagHooks[$tag] = $callback;
2821 return $oldVal;
2822 }
2823
2824 /**
2825 * Replace <!--LINK--> link placeholders with actual links, in the buffer
2826 * Placeholders created in Skin::makeLinkObj()
2827 * Returns an array of links found, indexed by PDBK:
2828 * 0 - broken
2829 * 1 - normal link
2830 * 2 - stub
2831 * $options is a bit field, RLH_FOR_UPDATE to select for update
2832 */
2833 function replaceLinkHolders( &$text, $options = 0 ) {
2834 global $wgUser, $wgLinkCache;
2835 global $wgOutputReplace;
2836
2837 $fname = 'Parser::replaceLinkHolders';
2838 wfProfileIn( $fname );
2839
2840 $pdbks = array();
2841 $colours = array();
2842 $sk = $this->mOptions->getSkin();
2843
2844 if ( !empty( $this->mLinkHolders['namespaces'] ) ) {
2845 wfProfileIn( $fname.'-check' );
2846 $dbr =& wfGetDB( DB_SLAVE );
2847 $page = $dbr->tableName( 'page' );
2848 $threshold = $wgUser->getOption('stubthreshold');
2849
2850 # Sort by namespace
2851 asort( $this->mLinkHolders['namespaces'] );
2852
2853 # Generate query
2854 $query = false;
2855 foreach ( $this->mLinkHolders['namespaces'] as $key => $val ) {
2856 # Make title object
2857 $title = $this->mLinkHolders['titles'][$key];
2858
2859 # Skip invalid entries.
2860 # Result will be ugly, but prevents crash.
2861 if ( is_null( $title ) ) {
2862 continue;
2863 }
2864 $pdbk = $pdbks[$key] = $title->getPrefixedDBkey();
2865
2866 # Check if it's in the link cache already
2867 if ( $wgLinkCache->getGoodLinkID( $pdbk ) ) {
2868 $colours[$pdbk] = 1;
2869 } elseif ( $wgLinkCache->isBadLink( $pdbk ) ) {
2870 $colours[$pdbk] = 0;
2871 } else {
2872 # Not in the link cache, add it to the query
2873 if ( !isset( $current ) ) {
2874 $current = $val;
2875 $query = "SELECT page_id, page_namespace, page_title";
2876 if ( $threshold > 0 ) {
2877 $query .= ', page_len, page_is_redirect';
2878 }
2879 $query .= " FROM $page WHERE (page_namespace=$val AND page_title IN(";
2880 } elseif ( $current != $val ) {
2881 $current = $val;
2882 $query .= ")) OR (page_namespace=$val AND page_title IN(";
2883 } else {
2884 $query .= ', ';
2885 }
2886
2887 $query .= $dbr->addQuotes( $this->mLinkHolders['dbkeys'][$key] );
2888 }
2889 }
2890 if ( $query ) {
2891 $query .= '))';
2892 if ( $options & RLH_FOR_UPDATE ) {
2893 $query .= ' FOR UPDATE';
2894 }
2895
2896 $res = $dbr->query( $query, $fname );
2897
2898 # Fetch data and form into an associative array
2899 # non-existent = broken
2900 # 1 = known
2901 # 2 = stub
2902 while ( $s = $dbr->fetchObject($res) ) {
2903 $title = Title::makeTitle( $s->page_namespace, $s->page_title );
2904 $pdbk = $title->getPrefixedDBkey();
2905 $wgLinkCache->addGoodLink( $s->page_id, $pdbk );
2906
2907 if ( $threshold > 0 ) {
2908 $size = $s->page_len;
2909 if ( $s->page_is_redirect || $s->page_namespace != 0 || $size >= $threshold ) {
2910 $colours[$pdbk] = 1;
2911 } else {
2912 $colours[$pdbk] = 2;
2913 }
2914 } else {
2915 $colours[$pdbk] = 1;
2916 }
2917 }
2918 }
2919 wfProfileOut( $fname.'-check' );
2920
2921 # Construct search and replace arrays
2922 wfProfileIn( $fname.'-construct' );
2923 $wgOutputReplace = array();
2924 foreach ( $this->mLinkHolders['namespaces'] as $key => $ns ) {
2925 $pdbk = $pdbks[$key];
2926 $searchkey = "<!--LINK $key-->";
2927 $title = $this->mLinkHolders['titles'][$key];
2928 if ( empty( $colours[$pdbk] ) ) {
2929 $wgLinkCache->addBadLink( $pdbk );
2930 $colours[$pdbk] = 0;
2931 $wgOutputReplace[$searchkey] = $sk->makeBrokenLinkObj( $title,
2932 $this->mLinkHolders['texts'][$key],
2933 $this->mLinkHolders['queries'][$key] );
2934 } elseif ( $colours[$pdbk] == 1 ) {
2935 $wgOutputReplace[$searchkey] = $sk->makeKnownLinkObj( $title,
2936 $this->mLinkHolders['texts'][$key],
2937 $this->mLinkHolders['queries'][$key] );
2938 } elseif ( $colours[$pdbk] == 2 ) {
2939 $wgOutputReplace[$searchkey] = $sk->makeStubLinkObj( $title,
2940 $this->mLinkHolders['texts'][$key],
2941 $this->mLinkHolders['queries'][$key] );
2942 }
2943 }
2944 wfProfileOut( $fname.'-construct' );
2945
2946 # Do the thing
2947 wfProfileIn( $fname.'-replace' );
2948
2949 $text = preg_replace_callback(
2950 '/(<!--LINK .*?-->)/',
2951 "wfOutputReplaceMatches",
2952 $text);
2953
2954 wfProfileOut( $fname.'-replace' );
2955 }
2956
2957 # Now process interwiki link holders
2958 # This is quite a bit simpler than internal links
2959 if ( !empty( $this->mInterwikiLinkHolders ) ) {
2960 wfProfileIn( $fname.'-interwiki' );
2961 # Make interwiki link HTML
2962 $wgOutputReplace = array();
2963 foreach( $this->mInterwikiLinkHolders as $i => $lh ) {
2964 $s = $sk->makeLink( $lh[0], $lh[1] );
2965 $wgOutputReplace[] = $s;
2966 }
2967
2968 $text = preg_replace_callback(
2969 '/<!--IWLINK (.*?)-->/',
2970 "wfOutputReplaceMatches",
2971 $text );
2972 wfProfileOut( $fname.'-interwiki' );
2973 }
2974
2975 wfProfileOut( $fname );
2976 return $colours;
2977 }
2978
2979 /**
2980 * Renders an image gallery from a text with one line per image.
2981 * text labels may be given by using |-style alternative text. E.g.
2982 * Image:one.jpg|The number "1"
2983 * Image:tree.jpg|A tree
2984 * given as text will return the HTML of a gallery with two images,
2985 * labeled 'The number "1"' and
2986 * 'A tree'.
2987 *
2988 * @static
2989 */
2990 function renderImageGallery( $text ) {
2991 # Setup the parser
2992 global $wgUser, $wgParser, $wgTitle;
2993 $parserOptions = ParserOptions::newFromUser( $wgUser );
2994
2995 global $wgLinkCache;
2996 $ig = new ImageGallery();
2997 $ig->setShowBytes( false );
2998 $ig->setShowFilename( false );
2999 $lines = explode( "\n", $text );
3000
3001 foreach ( $lines as $line ) {
3002 # match lines like these:
3003 # Image:someimage.jpg|This is some image
3004 preg_match( "/^([^|]+)(\\|(.*))?$/", $line, $matches );
3005 # Skip empty lines
3006 if ( count( $matches ) == 0 ) {
3007 continue;
3008 }
3009 $nt = Title::newFromURL( $matches[1] );
3010 if( is_null( $nt ) ) {
3011 # Bogus title. Ignore these so we don't bomb out later.
3012 continue;
3013 }
3014 if ( isset( $matches[3] ) ) {
3015 $label = $matches[3];
3016 } else {
3017 $label = '';
3018 }
3019
3020 $html = $wgParser->parse( $label , $wgTitle, $parserOptions );
3021 $html = $html->mText;
3022
3023 $ig->add( new Image( $nt ), $html );
3024 $wgLinkCache->addImageLinkObj( $nt );
3025 }
3026 return $ig->toHTML();
3027 }
3028
3029 /**
3030 * Parse image options text and use it to make an image
3031 */
3032 function makeImage( &$nt, $options ) {
3033 global $wgContLang, $wgUseImageResize;
3034 global $wgUser, $wgThumbLimits;
3035
3036 $align = '';
3037
3038 # Check if the options text is of the form "options|alt text"
3039 # Options are:
3040 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
3041 # * left no resizing, just left align. label is used for alt= only
3042 # * right same, but right aligned
3043 # * none same, but not aligned
3044 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
3045 # * center center the image
3046 # * framed Keep original image size, no magnify-button.
3047
3048 $part = explode( '|', $options);
3049
3050 $mwThumb =& MagicWord::get( MAG_IMG_THUMBNAIL );
3051 $mwLeft =& MagicWord::get( MAG_IMG_LEFT );
3052 $mwRight =& MagicWord::get( MAG_IMG_RIGHT );
3053 $mwNone =& MagicWord::get( MAG_IMG_NONE );
3054 $mwWidth =& MagicWord::get( MAG_IMG_WIDTH );
3055 $mwCenter =& MagicWord::get( MAG_IMG_CENTER );
3056 $mwFramed =& MagicWord::get( MAG_IMG_FRAMED );
3057 $caption = '';
3058
3059 $width = $height = $framed = $thumb = false;
3060 $manual_thumb = "" ;
3061
3062 foreach( $part as $key => $val ) {
3063 $val_parts = explode ( "=" , $val , 2 ) ;
3064 $left_part = array_shift ( $val_parts ) ;
3065 if ( $wgUseImageResize && ! is_null( $mwThumb->matchVariableStartToEnd($val) ) ) {
3066 $thumb=true;
3067 } elseif ( $wgUseImageResize && count ( $val_parts ) == 1 && ! is_null( $mwThumb->matchVariableStartToEnd($left_part) ) ) {
3068 # use manually specified thumbnail
3069 $thumb=true;
3070 $manual_thumb = array_shift ( $val_parts ) ;
3071 } elseif ( ! is_null( $mwRight->matchVariableStartToEnd($val) ) ) {
3072 # remember to set an alignment, don't render immediately
3073 $align = 'right';
3074 } elseif ( ! is_null( $mwLeft->matchVariableStartToEnd($val) ) ) {
3075 # remember to set an alignment, don't render immediately
3076 $align = 'left';
3077 } elseif ( ! is_null( $mwCenter->matchVariableStartToEnd($val) ) ) {
3078 # remember to set an alignment, don't render immediately
3079 $align = 'center';
3080 } elseif ( ! is_null( $mwNone->matchVariableStartToEnd($val) ) ) {
3081 # remember to set an alignment, don't render immediately
3082 $align = 'none';
3083 } elseif ( $wgUseImageResize && ! is_null( $match = $mwWidth->matchVariableStartToEnd($val) ) ) {
3084 # $match is the image width in pixels
3085 if ( preg_match( '/^([0-9]*)x([0-9]*)$/', $match, $m ) ) {
3086 $width = intval( $m[1] );
3087 $height = intval( $m[2] );
3088 } else {
3089 $width = intval($match);
3090 }
3091 } elseif ( ! is_null( $mwFramed->matchVariableStartToEnd($val) ) ) {
3092 $framed=true;
3093 } else {
3094 $caption = $val;
3095 }
3096 }
3097 # Strip bad stuff out of the alt text
3098 $alt = $caption;
3099 $this->replaceLinkHolders( $alt );
3100 $alt = Sanitizer::stripAllTags( $alt );
3101
3102 # Linker does the rest
3103 $sk =& $this->mOptions->getSkin();
3104 return $sk->makeImageLinkObj( $nt, $caption, $alt, $align, $width, $height, $framed, $thumb, $manual_thumb );
3105 }
3106 }
3107
3108 /**
3109 * @todo document
3110 * @package MediaWiki
3111 */
3112 class ParserOutput
3113 {
3114 var $mText, $mLanguageLinks, $mCategoryLinks, $mContainsOldMagic;
3115 var $mCacheTime; # Used in ParserCache
3116 var $mVersion; # Compatibility check
3117 var $mTitleText; # title text of the chosen language variant
3118
3119 function ParserOutput( $text = '', $languageLinks = array(), $categoryLinks = array(),
3120 $containsOldMagic = false, $titletext = '' )
3121 {
3122 $this->mText = $text;
3123 $this->mLanguageLinks = $languageLinks;
3124 $this->mCategoryLinks = $categoryLinks;
3125 $this->mContainsOldMagic = $containsOldMagic;
3126 $this->mCacheTime = '';
3127 $this->mVersion = MW_PARSER_VERSION;
3128 $this->mTitleText = $titletext;
3129 }
3130
3131 function getText() { return $this->mText; }
3132 function getLanguageLinks() { return $this->mLanguageLinks; }
3133 function getCategoryLinks() { return array_keys( $this->mCategoryLinks ); }
3134 function getCacheTime() { return $this->mCacheTime; }
3135 function getTitleText() { return $this->mTitleText; }
3136 function containsOldMagic() { return $this->mContainsOldMagic; }
3137 function setText( $text ) { return wfSetVar( $this->mText, $text ); }
3138 function setLanguageLinks( $ll ) { return wfSetVar( $this->mLanguageLinks, $ll ); }
3139 function setCategoryLinks( $cl ) { return wfSetVar( $this->mCategoryLinks, $cl ); }
3140 function setContainsOldMagic( $com ) { return wfSetVar( $this->mContainsOldMagic, $com ); }
3141 function setCacheTime( $t ) { return wfSetVar( $this->mCacheTime, $t ); }
3142 function setTitleText( $t ) { return wfSetVar ($this->mTitleText, $t); }
3143
3144 function addCategoryLink( $c ) { $this->mCategoryLinks[$c] = 1; }
3145
3146 function merge( $other ) {
3147 $this->mLanguageLinks = array_merge( $this->mLanguageLinks, $other->mLanguageLinks );
3148 $this->mCategoryLinks = array_merge( $this->mCategoryLinks, $this->mLanguageLinks );
3149 $this->mContainsOldMagic = $this->mContainsOldMagic || $other->mContainsOldMagic;
3150 }
3151
3152 /**
3153 * Return true if this cached output object predates the global or
3154 * per-article cache invalidation timestamps, or if it comes from
3155 * an incompatible older version.
3156 *
3157 * @param string $touched the affected article's last touched timestamp
3158 * @return bool
3159 * @access public
3160 */
3161 function expired( $touched ) {
3162 global $wgCacheEpoch;
3163 return $this->getCacheTime() <= $touched ||
3164 $this->getCacheTime() <= $wgCacheEpoch ||
3165 !isset( $this->mVersion ) ||
3166 version_compare( $this->mVersion, MW_PARSER_VERSION, "lt" );
3167 }
3168 }
3169
3170 /**
3171 * Set options of the Parser
3172 * @todo document
3173 * @package MediaWiki
3174 */
3175 class ParserOptions
3176 {
3177 # All variables are private
3178 var $mUseTeX; # Use texvc to expand <math> tags
3179 var $mUseDynamicDates; # Use DateFormatter to format dates
3180 var $mInterwikiMagic; # Interlanguage links are removed and returned in an array
3181 var $mAllowExternalImages; # Allow external images inline
3182 var $mSkin; # Reference to the preferred skin
3183 var $mDateFormat; # Date format index
3184 var $mEditSection; # Create "edit section" links
3185 var $mNumberHeadings; # Automatically number headings
3186
3187 function getUseTeX() { return $this->mUseTeX; }
3188 function getUseDynamicDates() { return $this->mUseDynamicDates; }
3189 function getInterwikiMagic() { return $this->mInterwikiMagic; }
3190 function getAllowExternalImages() { return $this->mAllowExternalImages; }
3191 function getSkin() { return $this->mSkin; }
3192 function getDateFormat() { return $this->mDateFormat; }
3193 function getEditSection() { return $this->mEditSection; }
3194 function getNumberHeadings() { return $this->mNumberHeadings; }
3195
3196 function setUseTeX( $x ) { return wfSetVar( $this->mUseTeX, $x ); }
3197 function setUseDynamicDates( $x ) { return wfSetVar( $this->mUseDynamicDates, $x ); }
3198 function setInterwikiMagic( $x ) { return wfSetVar( $this->mInterwikiMagic, $x ); }
3199 function setAllowExternalImages( $x ) { return wfSetVar( $this->mAllowExternalImages, $x ); }
3200 function setDateFormat( $x ) { return wfSetVar( $this->mDateFormat, $x ); }
3201 function setEditSection( $x ) { return wfSetVar( $this->mEditSection, $x ); }
3202 function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); }
3203
3204 function setSkin( &$x ) { $this->mSkin =& $x; }
3205
3206 /**
3207 * Get parser options
3208 * @static
3209 */
3210 function newFromUser( &$user ) {
3211 $popts = new ParserOptions;
3212 $popts->initialiseFromUser( $user );
3213 return $popts;
3214 }
3215
3216 /** Get user options */
3217 function initialiseFromUser( &$userInput ) {
3218 global $wgUseTeX, $wgUseDynamicDates, $wgInterwikiMagic, $wgAllowExternalImages;
3219 $fname = 'ParserOptions::initialiseFromUser';
3220 wfProfileIn( $fname );
3221 if ( !$userInput ) {
3222 $user = new User;
3223 $user->setLoaded( true );
3224 } else {
3225 $user =& $userInput;
3226 }
3227
3228 $this->mUseTeX = $wgUseTeX;
3229 $this->mUseDynamicDates = $wgUseDynamicDates;
3230 $this->mInterwikiMagic = $wgInterwikiMagic;
3231 $this->mAllowExternalImages = $wgAllowExternalImages;
3232 wfProfileIn( $fname.'-skin' );
3233 $this->mSkin =& $user->getSkin();
3234 wfProfileOut( $fname.'-skin' );
3235 $this->mDateFormat = $user->getOption( 'date' );
3236 $this->mEditSection = $user->getOption( 'editsection' );
3237 $this->mNumberHeadings = $user->getOption( 'numberheadings' );
3238 wfProfileOut( $fname );
3239 }
3240 }
3241
3242 /**
3243 * Callback function used by Parser::replaceLinkHolders()
3244 * to substitute link placeholders.
3245 */
3246 function &wfOutputReplaceMatches( $matches ) {
3247 global $wgOutputReplace;
3248 return $wgOutputReplace[$matches[1]];
3249 }
3250
3251 /**
3252 * Return the total number of articles
3253 */
3254 function wfNumberOfArticles() {
3255 global $wgNumberOfArticles;
3256
3257 wfLoadSiteStats();
3258 return $wgNumberOfArticles;
3259 }
3260
3261 /**
3262 * Get various statistics from the database
3263 * @private
3264 */
3265 function wfLoadSiteStats() {
3266 global $wgNumberOfArticles, $wgTotalViews, $wgTotalEdits;
3267 $fname = 'wfLoadSiteStats';
3268
3269 if ( -1 != $wgNumberOfArticles ) return;
3270 $dbr =& wfGetDB( DB_SLAVE );
3271 $s = $dbr->selectRow( 'site_stats',
3272 array( 'ss_total_views', 'ss_total_edits', 'ss_good_articles' ),
3273 array( 'ss_row_id' => 1 ), $fname
3274 );
3275
3276 if ( $s === false ) {
3277 return;
3278 } else {
3279 $wgTotalViews = $s->ss_total_views;
3280 $wgTotalEdits = $s->ss_total_edits;
3281 $wgNumberOfArticles = $s->ss_good_articles;
3282 }
3283 }
3284
3285 /**
3286 * Escape html tags
3287 * Basicly replacing " > and < with HTML entities ( &quot;, &gt;, &lt;)
3288 *
3289 * @param string $in Text that might contain HTML tags
3290 * @return string Escaped string
3291 */
3292 function wfEscapeHTMLTagsOnly( $in ) {
3293 return str_replace(
3294 array( '"', '>', '<' ),
3295 array( '&quot;', '&gt;', '&lt;' ),
3296 $in );
3297 }
3298
3299 ?>