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