remove extraneous wfDebug
[lhc/web/wiklou.git] / includes / Parser.php
1 <?php
2
3 // require_once('Tokenizer.php');
4
5 /**
6 * File for Parser and related classes
7 *
8 * @package MediaWiki
9 * @version $Id$
10 */
11
12 /**
13 * Variable substitution O(N^2) attack
14 *
15 * Without countermeasures, it would be possible to attack the parser by saving
16 * a page filled with a large number of inclusions of large pages. The size of
17 * the generated page would be proportional to the square of the input size.
18 * Hence, we limit the number of inclusions of any given page, thus bringing any
19 * attack back to O(N).
20 */
21 define( 'MAX_INCLUDE_REPEAT', 100 );
22 define( 'MAX_INCLUDE_SIZE', 1000000 ); // 1 Million
23
24 # Allowed values for $mOutputType
25 define( 'OT_HTML', 1 );
26 define( 'OT_WIKI', 2 );
27 define( 'OT_MSG' , 3 );
28
29 # string parameter for extractTags which will cause it
30 # to strip HTML comments in addition to regular
31 # <XML>-style tags. This should not be anything we
32 # may want to use in wikisyntax
33 define( 'STRIP_COMMENTS', 'HTMLCommentStrip' );
34
35 # prefix for escaping, used in two functions at least
36 define( 'UNIQ_PREFIX', 'NaodW29');
37
38 # Constants needed for external link processing
39 define( 'URL_PROTOCOLS', 'http|https|ftp|irc|gopher|news|mailto' );
40 define( 'HTTP_PROTOCOLS', 'http|https' );
41 # Everything except bracket, space, or control characters
42 define( 'EXT_LINK_URL_CLASS', '[^]\\x00-\\x20\\x7F]' );
43 define( 'INVERSE_EXT_LINK_URL_CLASS', '[\]\\x00-\\x20\\x7F]' );
44 # Including space
45 define( 'EXT_LINK_TEXT_CLASS', '[^\]\\x00-\\x1F\\x7F]' );
46 define( 'EXT_IMAGE_FNAME_CLASS', '[A-Za-z0-9_.,~%\\-+&;#*?!=()@\\x80-\\xFF]' );
47 define( 'EXT_IMAGE_EXTENSIONS', 'gif|png|jpg|jpeg' );
48 define( 'EXT_LINK_BRACKETED', '/\[(('.URL_PROTOCOLS.'):'.EXT_LINK_URL_CLASS.'+) *('.EXT_LINK_TEXT_CLASS.'*?)\]/S' );
49 define( 'EXT_IMAGE_REGEX',
50 '/^('.HTTP_PROTOCOLS.':)'. # Protocol
51 '('.EXT_LINK_URL_CLASS.'+)\\/'. # Hostname and path
52 '('.EXT_IMAGE_FNAME_CLASS.'+)\\.((?i)'.EXT_IMAGE_EXTENSIONS.')$/S' # Filename
53 );
54
55 /**
56 * PHP Parser
57 *
58 * Processes wiki markup
59 *
60 * <pre>
61 * There are three main entry points into the Parser class:
62 * parse()
63 * produces HTML output
64 * preSaveTransform().
65 * produces altered wiki markup.
66 * transformMsg()
67 * performs brace substitution on MediaWiki messages
68 *
69 * Globals used:
70 * objects: $wgLang, $wgDateFormatter, $wgLinkCache, $wgCurParser
71 *
72 * NOT $wgArticle, $wgUser or $wgTitle. Keep them away!
73 *
74 * settings:
75 * $wgUseTex*, $wgUseDynamicDates*, $wgInterwikiMagic*,
76 * $wgNamespacesWithSubpages, $wgAllowExternalImages*,
77 * $wgLocaltimezone
78 *
79 * * only within ParserOptions
80 * </pre>
81 *
82 * @package MediaWiki
83 */
84 class Parser
85 {
86 /**#@+
87 * @access private
88 */
89 # Persistent:
90 var $mTagHooks;
91
92 # Cleared with clearState():
93 var $mOutput, $mAutonumber, $mDTopen, $mStripState = array();
94 var $mVariables, $mIncludeCount, $mArgStack, $mLastSection, $mInPre;
95
96 # Temporary:
97 var $mOptions, $mTitle, $mOutputType,
98 $mTemplates, // cache of already loaded templates, avoids
99 // multiple SQL queries for the same string
100 $mTemplatePath; // stores an unsorted hash of all the templates already loaded
101 // in this path. Used for loop detection.
102
103 /**#@-*/
104
105 /**
106 * Constructor
107 *
108 * @access public
109 */
110 function Parser() {
111 $this->mTemplates = array();
112 $this->mTemplatePath = array();
113 $this->mTagHooks = array();
114 $this->clearState();
115 }
116
117 /**
118 * Clear Parser state
119 *
120 * @access private
121 */
122 function clearState() {
123 $this->mOutput = new ParserOutput;
124 $this->mAutonumber = 0;
125 $this->mLastSection = "";
126 $this->mDTopen = false;
127 $this->mVariables = false;
128 $this->mIncludeCount = array();
129 $this->mStripState = array();
130 $this->mArgStack = array();
131 $this->mInPre = false;
132 }
133
134 /**
135 * First pass--just handle <nowiki> sections, pass the rest off
136 * to internalParse() which does all the real work.
137 *
138 * @access private
139 * @return ParserOutput a ParserOutput
140 */
141 function parse( $text, &$title, $options, $linestart = true, $clearState = true ) {
142 global $wgUseTidy;
143 $fname = 'Parser::parse';
144 wfProfileIn( $fname );
145
146 if ( $clearState ) {
147 $this->clearState();
148 }
149
150 $this->mOptions = $options;
151 $this->mTitle =& $title;
152 $this->mOutputType = OT_HTML;
153
154 $stripState = NULL;
155 $text = $this->strip( $text, $this->mStripState );
156 $text = $this->internalParse( $text, $linestart );
157 $text = $this->unstrip( $text, $this->mStripState );
158 # Clean up special characters, only run once, next-to-last before doBlockLevels
159 if(!$wgUseTidy) {
160 $fixtags = array(
161 # french spaces, last one Guillemet-left
162 # only if there is something before the space
163 '/(.) (?=\\?|:|;|!|\\302\\273)/i' => '\\1&nbsp;\\2',
164 # french spaces, Guillemet-right
165 "/(\\302\\253) /i"=>"\\1&nbsp;",
166 '/<hr *>/i' => '<hr />',
167 '/<br *>/i' => '<br />',
168 '/<center *>/i' => '<div class="center">',
169 '/<\\/center *>/i' => '</div>',
170 # Clean up spare ampersands; note that we probably ought to be
171 # more careful about named entities.
172 '/&(?!:amp;|#[Xx][0-9A-fa-f]+;|#[0-9]+;|[a-zA-Z0-9]+;)/' => '&amp;'
173 );
174 $text = preg_replace( array_keys($fixtags), array_values($fixtags), $text );
175 } else {
176 $fixtags = array(
177 # french spaces, last one Guillemet-left
178 '/ (\\?|:|;|!|\\302\\273)/i' => '&nbsp;\\1',
179 # french spaces, Guillemet-right
180 '/(\\302\\253) /i' => '\\1&nbsp;',
181 '/<center *>/i' => '<div class="center">',
182 '/<\\/center *>/i' => '</div>'
183 );
184 $text = preg_replace( array_keys($fixtags), array_values($fixtags), $text );
185 }
186 # only once and last
187 $text = $this->doBlockLevels( $text, $linestart );
188 $text = $this->unstripNoWiki( $text, $this->mStripState );
189 if($wgUseTidy) {
190 $text = $this->tidy($text);
191 }
192 $this->mOutput->setText( $text );
193 wfProfileOut( $fname );
194 return $this->mOutput;
195 }
196
197 /**
198 * Get a random string
199 *
200 * @access private
201 * @static
202 */
203 function getRandomString() {
204 return dechex(mt_rand(0, 0x7fffffff)) . dechex(mt_rand(0, 0x7fffffff));
205 }
206
207 /**
208 * Replaces all occurrences of <$tag>content</$tag> in the text
209 * with a random marker and returns the new text. the output parameter
210 * $content will be an associative array filled with data on the form
211 * $unique_marker => content.
212 *
213 * If $content is already set, the additional entries will be appended
214 * If $tag is set to STRIP_COMMENTS, the function will extract
215 * <!-- HTML comments -->
216 *
217 * @access private
218 * @static
219 */
220 function extractTags($tag, $text, &$content, $uniq_prefix = ''){
221 $rnd = $uniq_prefix . '-' . $tag . Parser::getRandomString();
222 if ( !$content ) {
223 $content = array( );
224 }
225 $n = 1;
226 $stripped = '';
227
228 while ( '' != $text ) {
229 if($tag==STRIP_COMMENTS) {
230 $p = preg_split( '/<!--/i', $text, 2 );
231 } else {
232 $p = preg_split( "/<\\s*$tag\\s*>/i", $text, 2 );
233 }
234 $stripped .= $p[0];
235 if ( ( count( $p ) < 2 ) || ( '' == $p[1] ) ) {
236 $text = '';
237 } else {
238 if($tag==STRIP_COMMENTS) {
239 $q = preg_split( '/-->/i', $p[1], 2 );
240 } else {
241 $q = preg_split( "/<\\/\\s*$tag\\s*>/i", $p[1], 2 );
242 }
243 $marker = $rnd . sprintf('%08X', $n++);
244 $content[$marker] = $q[0];
245 $stripped .= $marker;
246 $text = $q[1];
247 }
248 }
249 return $stripped;
250 }
251
252 /**
253 * Strips and renders nowiki, pre, math, hiero
254 * If $render is set, performs necessary rendering operations on plugins
255 * Returns the text, and fills an array with data needed in unstrip()
256 * If the $state is already a valid strip state, it adds to the state
257 *
258 * @param bool $stripcomments when set, HTML comments <!-- like this -->
259 * will be stripped in addition to other tags. This is important
260 * for section editing, where these comments cause confusion when
261 * counting the sections in the wikisource
262 *
263 * @access private
264 */
265 function strip( $text, &$state, $stripcomments = false ) {
266 $render = ($this->mOutputType == OT_HTML);
267 $html_content = array();
268 $nowiki_content = array();
269 $math_content = array();
270 $pre_content = array();
271 $comment_content = array();
272 $ext_content = array();
273
274 # Replace any instances of the placeholders
275 $uniq_prefix = UNIQ_PREFIX;
276 #$text = str_replace( $uniq_prefix, wfHtmlEscapeFirst( $uniq_prefix ), $text );
277
278 # html
279 global $wgRawHtml, $wgWhitelistEdit;
280 if( $wgRawHtml && $wgWhitelistEdit ) {
281 $text = Parser::extractTags('html', $text, $html_content, $uniq_prefix);
282 foreach( $html_content as $marker => $content ) {
283 if ($render ) {
284 # Raw and unchecked for validity.
285 $html_content[$marker] = $content;
286 } else {
287 $html_content[$marker] = '<html>'.$content.'</html>';
288 }
289 }
290 }
291
292 # nowiki
293 $text = Parser::extractTags('nowiki', $text, $nowiki_content, $uniq_prefix);
294 foreach( $nowiki_content as $marker => $content ) {
295 if( $render ){
296 $nowiki_content[$marker] = wfEscapeHTMLTagsOnly( $content );
297 } else {
298 $nowiki_content[$marker] = '<nowiki>'.$content.'</nowiki>';
299 }
300 }
301
302 # math
303 $text = Parser::extractTags('math', $text, $math_content, $uniq_prefix);
304 foreach( $math_content as $marker => $content ){
305 if( $render ) {
306 if( $this->mOptions->getUseTeX() ) {
307 $math_content[$marker] = renderMath( $content );
308 } else {
309 $math_content[$marker] = '&lt;math&gt;'.$content.'&lt;math&gt;';
310 }
311 } else {
312 $math_content[$marker] = '<math>'.$content.'</math>';
313 }
314 }
315
316 # pre
317 $text = Parser::extractTags('pre', $text, $pre_content, $uniq_prefix);
318 foreach( $pre_content as $marker => $content ){
319 if( $render ){
320 $pre_content[$marker] = '<pre>' . wfEscapeHTMLTagsOnly( $content ) . '</pre>';
321 } else {
322 $pre_content[$marker] = '<pre>'.$content.'</pre>';
323 }
324 }
325
326 # Comments
327 if($stripcomments) {
328 $text = Parser::extractTags(STRIP_COMMENTS, $text, $comment_content, $uniq_prefix);
329 foreach( $comment_content as $marker => $content ){
330 $comment_content[$marker] = '<!--'.$content.'-->';
331 }
332 }
333
334 # Extensions
335 foreach ( $this->mTagHooks as $tag => $callback ) {
336 $ext_contents[$tag] = array();
337 $text = Parser::extractTags( $tag, $text, $ext_content[$tag], $uniq_prefix );
338 foreach( $ext_content[$tag] as $marker => $content ) {
339 if ( $render ) {
340 $ext_content[$tag][$marker] = $callback( $content );
341 } else {
342 $ext_content[$tag][$marker] = "<$tag>$content</$tag>";
343 }
344 }
345 }
346
347 # Merge state with the pre-existing state, if there is one
348 if ( $state ) {
349 $state['html'] = $state['html'] + $html_content;
350 $state['nowiki'] = $state['nowiki'] + $nowiki_content;
351 $state['math'] = $state['math'] + $math_content;
352 $state['pre'] = $state['pre'] + $pre_content;
353 $state['comment'] = $state['comment'] + $comment_content;
354
355 foreach( $ext_content as $tag => $array ) {
356 if ( array_key_exists( $tag, $state ) ) {
357 $state[$tag] = $state[$tag] + $array;
358 }
359 }
360 } else {
361 $state = array(
362 'html' => $html_content,
363 'nowiki' => $nowiki_content,
364 'math' => $math_content,
365 'pre' => $pre_content,
366 'comment' => $comment_content,
367 ) + $ext_content;
368 }
369 return $text;
370 }
371
372 /**
373 * restores pre, math, and heiro removed by strip()
374 *
375 * always call unstripNoWiki() after this one
376 * @access private
377 */
378 function unstrip( $text, &$state ) {
379 # Must expand in reverse order, otherwise nested tags will be corrupted
380 $contentDict = end( $state );
381 for ( $contentDict = end( $state ); $contentDict !== false; $contentDict = prev( $state ) ) {
382 if( key($state) != 'nowiki' && key($state) != 'html') {
383 for ( $content = end( $contentDict ); $content !== false; $content = prev( $contentDict ) ) {
384 $text = str_replace( key( $contentDict ), $content, $text );
385 }
386 }
387 }
388
389 return $text;
390 }
391
392 /**
393 * always call this after unstrip() to preserve the order
394 *
395 * @access private
396 */
397 function unstripNoWiki( $text, &$state ) {
398 # Must expand in reverse order, otherwise nested tags will be corrupted
399 for ( $content = end($state['nowiki']); $content !== false; $content = prev( $state['nowiki'] ) ) {
400 $text = str_replace( key( $state['nowiki'] ), $content, $text );
401 }
402
403 global $wgRawHtml;
404 if ($wgRawHtml) {
405 for ( $content = end($state['html']); $content !== false; $content = prev( $state['html'] ) ) {
406 $text = str_replace( key( $state['html'] ), $content, $text );
407 }
408 }
409
410 return $text;
411 }
412
413 /**
414 * Add an item to the strip state
415 * Returns the unique tag which must be inserted into the stripped text
416 * The tag will be replaced with the original text in unstrip()
417 *
418 * @access private
419 */
420 function insertStripItem( $text, &$state ) {
421 $rnd = UNIQ_PREFIX . '-item' . Parser::getRandomString();
422 if ( !$state ) {
423 $state = array(
424 'html' => array(),
425 'nowiki' => array(),
426 'math' => array(),
427 'pre' => array()
428 );
429 }
430 $state['item'][$rnd] = $text;
431 return $rnd;
432 }
433
434 /**
435 * Return allowed HTML attributes
436 *
437 * @access private
438 */
439 function getHTMLattrs () {
440 $htmlattrs = array( # Allowed attributes--no scripting, etc.
441 'title', 'align', 'lang', 'dir', 'width', 'height',
442 'bgcolor', 'clear', /* BR */ 'noshade', /* HR */
443 'cite', /* BLOCKQUOTE, Q */ 'size', 'face', 'color',
444 /* FONT */ 'type', 'start', 'value', 'compact',
445 /* For various lists, mostly deprecated but safe */
446 'summary', 'width', 'border', 'frame', 'rules',
447 'cellspacing', 'cellpadding', 'valign', 'char',
448 'charoff', 'colgroup', 'col', 'span', 'abbr', 'axis',
449 'headers', 'scope', 'rowspan', 'colspan', /* Tables */
450 'id', 'class', 'name', 'style' /* For CSS */
451 );
452 return $htmlattrs ;
453 }
454
455 /**
456 * Remove non approved attributes and javascript in css
457 *
458 * @access private
459 */
460 function fixTagAttributes ( $t ) {
461 if ( trim ( $t ) == '' ) return '' ; # Saves runtime ;-)
462 $htmlattrs = $this->getHTMLattrs() ;
463
464 # Strip non-approved attributes from the tag
465 $t = preg_replace(
466 '/(\\w+)(\\s*=\\s*([^\\s\">]+|\"[^\">]*\"))?/e',
467 "(in_array(strtolower(\"\$1\"),\$htmlattrs)?(\"\$1\".((\"x\$3\" != \"x\")?\"=\$3\":'')):'')",
468 $t);
469
470 $t = str_replace ( '<></>' , '' , $t ) ; # This should fix bug 980557
471
472 # Strip javascript "expression" from stylesheets. Brute force approach:
473 # If anythin offensive is found, all attributes of the HTML tag are dropped
474
475 if( preg_match(
476 '/style\\s*=.*(expression|tps*:\/\/|url\\s*\().*/is',
477 wfMungeToUtf8( $t ) ) )
478 {
479 $t='';
480 }
481
482 return trim ( $t ) ;
483 }
484
485 /**
486 * interface with html tidy, used if $wgUseTidy = true
487 *
488 * @access private
489 */
490 function tidy ( $text ) {
491 global $wgTidyConf, $wgTidyBin, $wgTidyOpts;
492 global $wgInputEncoding, $wgOutputEncoding;
493 $fname = 'Parser::tidy';
494 wfProfileIn( $fname );
495
496 $cleansource = '';
497 switch(strtoupper($wgOutputEncoding)) {
498 case 'ISO-8859-1':
499 $wgTidyOpts .= ($wgInputEncoding == $wgOutputEncoding)? ' -latin1':' -raw';
500 break;
501 case 'UTF-8':
502 $wgTidyOpts .= ($wgInputEncoding == $wgOutputEncoding)? ' -utf8':' -raw';
503 break;
504 default:
505 $wgTidyOpts .= ' -raw';
506 }
507
508 $wrappedtext = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'.
509 ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>'.
510 '<head><title>test</title></head><body>'.$text.'</body></html>';
511 $descriptorspec = array(
512 0 => array('pipe', 'r'),
513 1 => array('pipe', 'w'),
514 2 => array('file', '/dev/null', 'a')
515 );
516 $process = proc_open("$wgTidyBin -config $wgTidyConf $wgTidyOpts", $descriptorspec, $pipes);
517 if (is_resource($process)) {
518 fwrite($pipes[0], $wrappedtext);
519 fclose($pipes[0]);
520 while (!feof($pipes[1])) {
521 $cleansource .= fgets($pipes[1], 1024);
522 }
523 fclose($pipes[1]);
524 $return_value = proc_close($process);
525 }
526
527 wfProfileOut( $fname );
528
529 if( $cleansource == '' && $text != '') {
530 wfDebug( "Tidy error detected!\n" );
531 return $text . "\n<!-- Tidy found serious XHTML errors -->\n";
532 } else {
533 return $cleansource;
534 }
535 }
536
537 /**
538 * parse the wiki syntax used to render tables
539 *
540 * @access private
541 */
542 function doTableStuff ( $t ) {
543 $fname = 'Parser::doTableStuff';
544 wfProfileIn( $fname );
545
546 $t = explode ( "\n" , $t ) ;
547 $td = array () ; # Is currently a td tag open?
548 $ltd = array () ; # Was it TD or TH?
549 $tr = array () ; # Is currently a tr tag open?
550 $ltr = array () ; # tr attributes
551 $indent_level = 0; # indent level of the table
552 foreach ( $t AS $k => $x )
553 {
554 $x = trim ( $x ) ;
555 $fc = substr ( $x , 0 , 1 ) ;
556 if ( preg_match( '/^(:*)\{\|(.*)$/', $x, $matches ) ) {
557 $indent_level = strlen( $matches[1] );
558 $t[$k] = "\n" .
559 str_repeat( '<dl><dd>', $indent_level ) .
560 '<table ' . $this->fixTagAttributes ( $matches[2] ) . '>' ;
561 array_push ( $td , false ) ;
562 array_push ( $ltd , '' ) ;
563 array_push ( $tr , false ) ;
564 array_push ( $ltr , '' ) ;
565 }
566 else if ( count ( $td ) == 0 ) { } # Don't do any of the following
567 else if ( '|}' == substr ( $x , 0 , 2 ) ) {
568 $z = "</table>\n" ;
569 $l = array_pop ( $ltd ) ;
570 if ( array_pop ( $tr ) ) $z = '</tr>' . $z ;
571 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
572 array_pop ( $ltr ) ;
573 $t[$k] = $z . str_repeat( '</dd></dl>', $indent_level );
574 }
575 else if ( '|-' == substr ( $x , 0 , 2 ) ) { # Allows for |---------------
576 $x = substr ( $x , 1 ) ;
577 while ( $x != '' && substr ( $x , 0 , 1 ) == '-' ) $x = substr ( $x , 1 ) ;
578 $z = '' ;
579 $l = array_pop ( $ltd ) ;
580 if ( array_pop ( $tr ) ) $z = '</tr>' . $z ;
581 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
582 array_pop ( $ltr ) ;
583 $t[$k] = $z ;
584 array_push ( $tr , false ) ;
585 array_push ( $td , false ) ;
586 array_push ( $ltd , '' ) ;
587 array_push ( $ltr , $this->fixTagAttributes ( $x ) ) ;
588 }
589 else if ( '|' == $fc || '!' == $fc || '|+' == substr ( $x , 0 , 2 ) ) { # Caption
590 if ( '|+' == substr ( $x , 0 , 2 ) ) {
591 $fc = '+' ;
592 $x = substr ( $x , 1 ) ;
593 }
594 $after = substr ( $x , 1 ) ;
595 if ( $fc == '!' ) $after = str_replace ( '!!' , '||' , $after ) ;
596 $after = explode ( '||' , $after ) ;
597 $t[$k] = '' ;
598 foreach ( $after AS $theline )
599 {
600 $z = '' ;
601 if ( $fc != '+' )
602 {
603 $tra = array_pop ( $ltr ) ;
604 if ( !array_pop ( $tr ) ) $z = '<tr '.$tra.">\n" ;
605 array_push ( $tr , true ) ;
606 array_push ( $ltr , '' ) ;
607 }
608
609 $l = array_pop ( $ltd ) ;
610 if ( array_pop ( $td ) ) $z = '</'.$l.'>' . $z ;
611 if ( $fc == '|' ) $l = 'td' ;
612 else if ( $fc == '!' ) $l = 'th' ;
613 else if ( $fc == '+' ) $l = 'caption' ;
614 else $l = '' ;
615 array_push ( $ltd , $l ) ;
616 $y = explode ( '|' , $theline , 2 ) ;
617 if ( count ( $y ) == 1 ) $y = "{$z}<{$l}>{$y[0]}" ;
618 else $y = $y = "{$z}<{$l} ".$this->fixTagAttributes($y[0]).">{$y[1]}" ;
619 $t[$k] .= $y ;
620 array_push ( $td , true ) ;
621 }
622 }
623 }
624
625 # Closing open td, tr && table
626 while ( count ( $td ) > 0 )
627 {
628 if ( array_pop ( $td ) ) $t[] = '</td>' ;
629 if ( array_pop ( $tr ) ) $t[] = '</tr>' ;
630 $t[] = '</table>' ;
631 }
632
633 $t = implode ( "\n" , $t ) ;
634 # $t = $this->removeHTMLtags( $t );
635 wfProfileOut( $fname );
636 return $t ;
637 }
638
639 /**
640 * Helper function for parse() that transforms wiki markup into
641 * HTML. Only called for $mOutputType == OT_HTML.
642 *
643 * @access private
644 */
645 function internalParse( $text, $linestart, $args = array(), $isMain=true ) {
646 global $wgLang;
647
648 $fname = 'Parser::internalParse';
649 wfProfileIn( $fname );
650
651 $text = $this->removeHTMLtags( $text );
652 $text = $this->replaceVariables( $text, $args );
653
654 $text = $wgLang->convert($text);
655
656 $text = preg_replace( '/(^|\n)-----*/', '\\1<hr />', $text );
657
658 $text = $this->doHeadings( $text );
659 if($this->mOptions->getUseDynamicDates()) {
660 global $wgDateFormatter;
661 $text = $wgDateFormatter->reformat( $this->mOptions->getDateFormat(), $text );
662 }
663 $text = $this->doAllQuotes( $text );
664 $text = $this->replaceExternalLinks( $text );
665 $text = $this->doMagicLinks( $text );
666 $text = $this->replaceInternalLinks ( $text );
667 # Another call to replace links and images inside captions of images
668 $text = $this->replaceInternalLinks ( $text );
669
670 $text = $this->unstrip( $text, $this->mStripState );
671 $text = $this->unstripNoWiki( $text, $this->mStripState );
672
673 $text = $this->doTableStuff( $text );
674 $text = $this->formatHeadings( $text, $isMain );
675 $sk =& $this->mOptions->getSkin();
676 $text = $sk->transformContent( $text );
677
678 wfProfileOut( $fname );
679 return $text;
680 }
681
682 /**
683 * Replace special strings like "ISBN xxx" and "RFC xxx" with
684 * magic external links.
685 *
686 * @access private
687 */
688 function &doMagicLinks( &$text ) {
689 global $wgUseGeoMode;
690 $text = $this->magicISBN( $text );
691 if ( isset( $wgUseGeoMode ) && $wgUseGeoMode ) {
692 $text = $this->magicGEO( $text );
693 }
694 $text = $this->magicRFC( $text );
695 return $text;
696 }
697
698 /**
699 * Parse ^^ tokens and return html
700 *
701 * @access private
702 */
703 function doExponent ( $text ) {
704 $fname = 'Parser::doExponent';
705 wfProfileIn( $fname);
706 $text = preg_replace('/\^\^(.*)\^\^/','<small><sup>\\1</sup></small>', $text);
707 wfProfileOut( $fname);
708 return $text;
709 }
710
711 /**
712 * Parse headers and return html
713 *
714 * @access private
715 */
716 function doHeadings( $text ) {
717 $fname = 'Parser::doHeadings';
718 wfProfileIn( $fname );
719 for ( $i = 6; $i >= 1; --$i ) {
720 $h = substr( '======', 0, $i );
721 $text = preg_replace( "/^{$h}(.+){$h}(\\s|$)/m",
722 "<h{$i}>\\1</h{$i}>\\2", $text );
723 }
724 wfProfileOut( $fname );
725 return $text;
726 }
727
728 /**
729 * Replace single quotes with HTML markup
730 * @access private
731 * @return string the altered text
732 */
733 function doAllQuotes( $text ) {
734 $fname = 'Parser::doAllQuotes';
735 wfProfileIn( $fname );
736 $outtext = '';
737 $lines = explode( "\n", $text );
738 foreach ( $lines as $line ) {
739 $outtext .= $this->doQuotes ( $line ) . "\n";
740 }
741 $outtext = substr($outtext, 0,-1);
742 wfProfileOut( $fname );
743 return $outtext;
744 }
745
746 /**
747 * Helper function for doAllQuotes()
748 * @access private
749 */
750 function doQuotes( $text ) {
751 $arr = preg_split ("/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE);
752 if (count ($arr) == 1)
753 return $text;
754 else
755 {
756 # First, do some preliminary work. This may shift some apostrophes from
757 # being mark-up to being text. It also counts the number of occurrences
758 # of bold and italics mark-ups.
759 $i = 0;
760 $numbold = 0;
761 $numitalics = 0;
762 foreach ($arr as $r)
763 {
764 if (($i % 2) == 1)
765 {
766 # If there are ever four apostrophes, assume the first is supposed to
767 # be text, and the remaining three constitute mark-up for bold text.
768 if (strlen ($arr[$i]) == 4)
769 {
770 $arr[$i-1] .= "'";
771 $arr[$i] = "'''";
772 }
773 # If there are more than 5 apostrophes in a row, assume they're all
774 # text except for the last 5.
775 else if (strlen ($arr[$i]) > 5)
776 {
777 $arr[$i-1] .= str_repeat ("'", strlen ($arr[$i]) - 5);
778 $arr[$i] = "'''''";
779 }
780 # Count the number of occurrences of bold and italics mark-ups.
781 # We are not counting sequences of five apostrophes.
782 if (strlen ($arr[$i]) == 2) $numitalics++; else
783 if (strlen ($arr[$i]) == 3) $numbold++; else
784 if (strlen ($arr[$i]) == 5) { $numitalics++; $numbold++; }
785 }
786 $i++;
787 }
788
789 # If there is an odd number of both bold and italics, it is likely
790 # that one of the bold ones was meant to be an apostrophe followed
791 # by italics. Which one we cannot know for certain, but it is more
792 # likely to be one that has a single-letter word before it.
793 if (($numbold % 2 == 1) && ($numitalics % 2 == 1))
794 {
795 $i = 0;
796 $firstsingleletterword = -1;
797 $firstmultiletterword = -1;
798 $firstspace = -1;
799 foreach ($arr as $r)
800 {
801 if (($i % 2 == 1) and (strlen ($r) == 3))
802 {
803 $x1 = substr ($arr[$i-1], -1);
804 $x2 = substr ($arr[$i-1], -2, 1);
805 if ($x1 == ' ') {
806 if ($firstspace == -1) $firstspace = $i;
807 } else if ($x2 == ' ') {
808 if ($firstsingleletterword == -1) $firstsingleletterword = $i;
809 } else {
810 if ($firstmultiletterword == -1) $firstmultiletterword = $i;
811 }
812 }
813 $i++;
814 }
815
816 # If there is a single-letter word, use it!
817 if ($firstsingleletterword > -1)
818 {
819 $arr [ $firstsingleletterword ] = "''";
820 $arr [ $firstsingleletterword-1 ] .= "'";
821 }
822 # If not, but there's a multi-letter word, use that one.
823 else if ($firstmultiletterword > -1)
824 {
825 $arr [ $firstmultiletterword ] = "''";
826 $arr [ $firstmultiletterword-1 ] .= "'";
827 }
828 # ... otherwise use the first one that has neither.
829 # (notice that it is possible for all three to be -1 if, for example,
830 # there is only one pentuple-apostrophe in the line)
831 else if ($firstspace > -1)
832 {
833 $arr [ $firstspace ] = "''";
834 $arr [ $firstspace-1 ] .= "'";
835 }
836 }
837
838 # Now let's actually convert our apostrophic mush to HTML!
839 $output = '';
840 $buffer = '';
841 $state = '';
842 $i = 0;
843 foreach ($arr as $r)
844 {
845 if (($i % 2) == 0)
846 {
847 if ($state == 'both')
848 $buffer .= $r;
849 else
850 $output .= $r;
851 }
852 else
853 {
854 if (strlen ($r) == 2)
855 {
856 if ($state == 'i')
857 { $output .= '</i>'; $state = ''; }
858 else if ($state == 'bi')
859 { $output .= '</i>'; $state = 'b'; }
860 else if ($state == 'ib')
861 { $output .= '</b></i><b>'; $state = 'b'; }
862 else if ($state == 'both')
863 { $output .= '<b><i>'.$buffer.'</i>'; $state = 'b'; }
864 else # $state can be 'b' or ''
865 { $output .= '<i>'; $state .= 'i'; }
866 }
867 else if (strlen ($r) == 3)
868 {
869 if ($state == 'b')
870 { $output .= '</b>'; $state = ''; }
871 else if ($state == 'bi')
872 { $output .= '</i></b><i>'; $state = 'i'; }
873 else if ($state == 'ib')
874 { $output .= '</b>'; $state = 'i'; }
875 else if ($state == 'both')
876 { $output .= '<i><b>'.$buffer.'</b>'; $state = 'i'; }
877 else # $state can be 'i' or ''
878 { $output .= '<b>'; $state .= 'b'; }
879 }
880 else if (strlen ($r) == 5)
881 {
882 if ($state == 'b')
883 { $output .= '</b><i>'; $state = 'i'; }
884 else if ($state == 'i')
885 { $output .= '</i><b>'; $state = 'b'; }
886 else if ($state == 'bi')
887 { $output .= '</i></b>'; $state = ''; }
888 else if ($state == 'ib')
889 { $output .= '</b></i>'; $state = ''; }
890 else if ($state == 'both')
891 { $output .= '<i><b>'.$buffer.'</b></i>'; $state = ''; }
892 else # ($state == '')
893 { $buffer = ''; $state = 'both'; }
894 }
895 }
896 $i++;
897 }
898 # Now close all remaining tags. Notice that the order is important.
899 if ($state == 'b' || $state == 'ib')
900 $output .= '</b>';
901 if ($state == 'i' || $state == 'bi' || $state == 'ib')
902 $output .= '</i>';
903 if ($state == 'bi')
904 $output .= '</b>';
905 if ($state == 'both')
906 $output .= '<b><i>'.$buffer.'</i></b>';
907 return $output;
908 }
909 }
910
911 /**
912 * Replace external links
913 *
914 * Note: we have to do external links before the internal ones,
915 * and otherwise take great care in the order of things here, so
916 * that we don't end up interpreting some URLs twice.
917 *
918 * @access private
919 */
920 function replaceExternalLinks( $text ) {
921 $fname = 'Parser::replaceExternalLinks';
922 wfProfileIn( $fname );
923
924 $sk =& $this->mOptions->getSkin();
925 $linktrail = wfMsg('linktrail');
926 $bits = preg_split( EXT_LINK_BRACKETED, $text, -1, PREG_SPLIT_DELIM_CAPTURE );
927
928 $s = $this->replaceFreeExternalLinks( array_shift( $bits ) );
929
930 $i = 0;
931 while ( $i<count( $bits ) ) {
932 $url = $bits[$i++];
933 $protocol = $bits[$i++];
934 $text = $bits[$i++];
935 $trail = $bits[$i++];
936
937 # If the link text is an image URL, replace it with an <img> tag
938 # This happened by accident in the original parser, but some people used it extensively
939 $img = $this->maybeMakeImageLink( $text );
940 if ( $img !== false ) {
941 $text = $img;
942 }
943
944 $dtrail = '';
945
946 # No link text, e.g. [http://domain.tld/some.link]
947 if ( $text == '' ) {
948 # Autonumber if allowed
949 if ( strpos( HTTP_PROTOCOLS, $protocol ) !== false ) {
950 $text = '[' . ++$this->mAutonumber . ']';
951 } else {
952 # Otherwise just use the URL
953 $text = htmlspecialchars( $url );
954 }
955 } else {
956 # Have link text, e.g. [http://domain.tld/some.link text]s
957 # Check for trail
958 if ( preg_match( $linktrail, $trail, $m2 ) ) {
959 $dtrail = $m2[1];
960 $trail = $m2[2];
961 }
962 }
963
964 $encUrl = htmlspecialchars( $url );
965 # Bit in parentheses showing the URL for the printable version
966 if( $url == $text || preg_match( "!$protocol://" . preg_quote( $text, '/' ) . "/?$!", $url ) ) {
967 $paren = '';
968 } else {
969 # Expand the URL for printable version
970 if ( ! $sk->suppressUrlExpansion() ) {
971 $paren = "<span class='urlexpansion'> (<i>" . htmlspecialchars ( $encUrl ) . "</i>)</span>";
972 } else {
973 $paren = '';
974 }
975 }
976
977 # Process the trail (i.e. everything after this link up until start of the next link),
978 # replacing any non-bracketed links
979 $trail = $this->replaceFreeExternalLinks( $trail );
980
981 $la = $sk->getExternalLinkAttributes( $url, $text );
982
983 # Use the encoded URL
984 # This means that users can paste URLs directly into the text
985 # Funny characters like &ouml; aren't valid in URLs anyway
986 # This was changed in August 2004
987 $s .= "<a href=\"{$url}\" {$la}>{$text}</a>{$dtrail}{$paren}{$trail}";
988 }
989
990 wfProfileOut( $fname );
991 return $s;
992 }
993
994 /**
995 * Replace anything that looks like a URL with a link
996 * @access private
997 */
998 function replaceFreeExternalLinks( $text ) {
999 $bits = preg_split( '/((?:'.URL_PROTOCOLS.'):)/', $text, -1, PREG_SPLIT_DELIM_CAPTURE );
1000 $s = array_shift( $bits );
1001 $i = 0;
1002
1003 $sk =& $this->mOptions->getSkin();
1004
1005 while ( $i < count( $bits ) ){
1006 $protocol = $bits[$i++];
1007 $remainder = $bits[$i++];
1008
1009 if ( preg_match( '/^('.EXT_LINK_URL_CLASS.'+)(.*)$/s', $remainder, $m ) ) {
1010 # Found some characters after the protocol that look promising
1011 $url = $protocol . $m[1];
1012 $trail = $m[2];
1013
1014 # Move trailing punctuation to $trail
1015 $sep = ',;\.:!?';
1016 # If there is no left bracket, then consider right brackets fair game too
1017 if ( strpos( $url, '(' ) === false ) {
1018 $sep .= ')';
1019 }
1020
1021 $numSepChars = strspn( strrev( $url ), $sep );
1022 if ( $numSepChars ) {
1023 $trail = substr( $url, -$numSepChars ) . $trail;
1024 $url = substr( $url, 0, -$numSepChars );
1025 }
1026
1027 # Replace &amp; from obsolete syntax with &
1028 $url = str_replace( '&amp;', '&', $url );
1029
1030 # Is this an external image?
1031 $text = $this->maybeMakeImageLink( $url );
1032 if ( $text === false ) {
1033 # Not an image, make a link
1034 $text = $sk->makeExternalLink( $url, $url );
1035 }
1036 $s .= $text . $trail;
1037 } else {
1038 $s .= $protocol . $remainder;
1039 }
1040 }
1041 return $s;
1042 }
1043
1044 /**
1045 * make an image if it's allowed
1046 * @access private
1047 */
1048 function maybeMakeImageLink( $url ) {
1049 $sk =& $this->mOptions->getSkin();
1050 $text = false;
1051 if ( $this->mOptions->getAllowExternalImages() ) {
1052 if ( preg_match( EXT_IMAGE_REGEX, $url ) ) {
1053 # Image found
1054 $text = $sk->makeImage( htmlspecialchars( $url ) );
1055 }
1056 }
1057 return $text;
1058 }
1059
1060 /**
1061 * Process [[ ]] wikilinks
1062 *
1063 * @access private
1064 */
1065 function replaceInternalLinks( $s ) {
1066 global $wgLang, $wgLinkCache;
1067 global $wgNamespacesWithSubpages;
1068 static $fname = 'Parser::replaceInternalLinks' ;
1069 wfProfileIn( $fname );
1070
1071 wfProfileIn( $fname.'-setup' );
1072 static $tc = FALSE;
1073 # the % is needed to support urlencoded titles as well
1074 if ( !$tc ) { $tc = Title::legalChars() . '#%'; }
1075 $sk =& $this->mOptions->getSkin();
1076
1077 $redirect = MagicWord::get ( MAG_REDIRECT ) ;
1078
1079 $a = explode( '[[', ' ' . $s );
1080 $s = array_shift( $a );
1081 $s = substr( $s, 1 );
1082
1083 # Match a link having the form [[namespace:link|alternate]]trail
1084 static $e1 = FALSE;
1085 if ( !$e1 ) { $e1 = "/^([{$tc}]+)(?:\\|([^]]+))?]](.*)\$/sD"; }
1086 # Match the end of a line for a word that's not followed by whitespace,
1087 # e.g. in the case of 'The Arab al[[Razi]]', 'al' will be matched
1088 static $e2 = '/^(.*?)([a-zA-Z\x80-\xff]+)$/sD';
1089
1090 $useLinkPrefixExtension = $wgLang->linkPrefixExtension();
1091 # Special and Media are pseudo-namespaces; no pages actually exist in them
1092
1093 $nottalk = !Namespace::isTalk( $this->mTitle->getNamespace() );
1094
1095 if ( $useLinkPrefixExtension ) {
1096 if ( preg_match( $e2, $s, $m ) ) {
1097 $first_prefix = $m[2];
1098 $s = $m[1];
1099 } else {
1100 $first_prefix = false;
1101 }
1102 } else {
1103 $prefix = '';
1104 }
1105
1106 wfProfileOut( $fname.'-setup' );
1107
1108 # start procedeeding each line
1109 foreach ( $a as $line ) {
1110 wfProfileIn( $fname.'-prefixhandling' );
1111 if ( $useLinkPrefixExtension ) {
1112 if ( preg_match( $e2, $s, $m ) ) {
1113 $prefix = $m[2];
1114 $s = $m[1];
1115 } else {
1116 $prefix='';
1117 }
1118 # first link
1119 if($first_prefix) {
1120 $prefix = $first_prefix;
1121 $first_prefix = false;
1122 }
1123 }
1124 wfProfileOut( $fname.'-prefixhandling' );
1125
1126 if ( preg_match( $e1, $line, $m ) ) { # page with normal text or alt
1127 $text = $m[2];
1128 # fix up urlencoded title texts
1129 if(preg_match('/%/', $m[1] )) $m[1] = urldecode($m[1]);
1130 $trail = $m[3];
1131 } else { # Invalid form; output directly
1132 $s .= $prefix . '[[' . $line ;
1133 continue;
1134 }
1135
1136 # Valid link forms:
1137 # Foobar -- normal
1138 # :Foobar -- override special treatment of prefix (images, language links)
1139 # /Foobar -- convert to CurrentPage/Foobar
1140 # /Foobar/ -- convert to CurrentPage/Foobar, strip the initial / from text
1141
1142 # Look at the first character
1143 $c = substr($m[1],0,1);
1144 $noforce = ($c != ':');
1145
1146 # subpage
1147 if( $c == '/' ) {
1148 # / at end means we don't want the slash to be shown
1149 if(substr($m[1],-1,1)=='/') {
1150 $m[1]=substr($m[1],1,strlen($m[1])-2);
1151 $noslash=$m[1];
1152 } else {
1153 $noslash=substr($m[1],1);
1154 }
1155
1156 # Some namespaces don't allow subpages
1157 if(!empty($wgNamespacesWithSubpages[$this->mTitle->getNamespace()])) {
1158 # subpages allowed here
1159 $link = $this->mTitle->getPrefixedText(). '/' . trim($noslash);
1160 if( '' == $text ) {
1161 $text= $m[1];
1162 } # this might be changed for ugliness reasons
1163 } else {
1164 # no subpage allowed, use standard link
1165 $link = $noslash;
1166 }
1167
1168 } elseif( $noforce ) { # no subpage
1169 $link = $m[1];
1170 } else {
1171 # We don't want to keep the first character
1172 $link = substr( $m[1], 1 );
1173 }
1174
1175 $wasblank = ( '' == $text );
1176 if( $wasblank ) $text = $link;
1177
1178 $nt = Title::newFromText( $link );
1179 if( !$nt ) {
1180 $s .= $prefix . '[[' . $line;
1181 continue;
1182 }
1183
1184 $ns = $nt->getNamespace();
1185 $iw = $nt->getInterWiki();
1186
1187 # Link not escaped by : , create the various objects
1188 if( $noforce ) {
1189
1190 # Interwikis
1191 if( $iw && $this->mOptions->getInterwikiMagic() && $nottalk && $wgLang->getLanguageName( $iw ) ) {
1192 array_push( $this->mOutput->mLanguageLinks, $nt->getFullText() );
1193 $tmp = $prefix . $trail ;
1194 $s .= (trim($tmp) == '')? '': $tmp;
1195 continue;
1196 }
1197
1198 if ( $ns == NS_IMAGE ) {
1199 $s .= $prefix . $sk->makeImageLinkObj( $nt, $text ) . $trail;
1200 $wgLinkCache->addImageLinkObj( $nt );
1201 continue;
1202 }
1203
1204 if ( $ns == NS_CATEGORY ) {
1205 $t = $nt->getText() ;
1206 $nnt = Title::newFromText ( Namespace::getCanonicalName(NS_CATEGORY).':'.$t ) ;
1207
1208 $wgLinkCache->suspend(); # Don't save in links/brokenlinks
1209 $pPLC=$sk->postParseLinkColour();
1210 $sk->postParseLinkColour( false );
1211 $t = $sk->makeLinkObj( $nnt, $t, '', '' , $prefix );
1212 $sk->postParseLinkColour( $pPLC );
1213 $wgLinkCache->resume();
1214
1215 if ( $wasblank ) {
1216 if ( $this->mTitle->getNamespace() == NS_CATEGORY ) {
1217 $sortkey = $this->mTitle->getText();
1218 } else {
1219 $sortkey = $this->mTitle->getPrefixedText();
1220 }
1221 } else {
1222 $sortkey = $text;
1223 }
1224 $wgLinkCache->addCategoryLinkObj( $nt, $sortkey );
1225 $this->mOutput->mCategoryLinks[] = $t ;
1226 $s .= $prefix . $trail ;
1227 continue;
1228 }
1229 }
1230
1231 if( ( $nt->getPrefixedText() === $this->mTitle->getPrefixedText() ) &&
1232 ( strpos( $link, '#' ) === FALSE ) ) {
1233 # Self-links are handled specially; generally de-link and change to bold.
1234 $s .= $prefix . $sk->makeSelfLinkObj( $nt, $text, '', $trail );
1235 continue;
1236 }
1237
1238 if( $ns == NS_MEDIA ) {
1239 $s .= $prefix . $sk->makeMediaLinkObj( $nt, $text ) . $trail;
1240 $wgLinkCache->addImageLinkObj( $nt );
1241 continue;
1242 } elseif( $ns == NS_SPECIAL ) {
1243 $s .= $prefix . $sk->makeKnownLinkObj( $nt, $text, '', $trail );
1244 continue;
1245 }
1246 $s .= $sk->makeLinkObj( $nt, $text, '', $trail, $prefix );
1247 }
1248 wfProfileOut( $fname );
1249 return $s;
1250 }
1251
1252 /**#@+
1253 * Used by doBlockLevels()
1254 * @access private
1255 */
1256 /* private */ function closeParagraph() {
1257 $result = '';
1258 if ( '' != $this->mLastSection ) {
1259 $result = '</' . $this->mLastSection . ">\n";
1260 }
1261 $this->mInPre = false;
1262 $this->mLastSection = '';
1263 return $result;
1264 }
1265 # getCommon() returns the length of the longest common substring
1266 # of both arguments, starting at the beginning of both.
1267 #
1268 /* private */ function getCommon( $st1, $st2 ) {
1269 $fl = strlen( $st1 );
1270 $shorter = strlen( $st2 );
1271 if ( $fl < $shorter ) { $shorter = $fl; }
1272
1273 for ( $i = 0; $i < $shorter; ++$i ) {
1274 if ( $st1{$i} != $st2{$i} ) { break; }
1275 }
1276 return $i;
1277 }
1278 # These next three functions open, continue, and close the list
1279 # element appropriate to the prefix character passed into them.
1280 #
1281 /* private */ function openList( $char ) {
1282 $result = $this->closeParagraph();
1283
1284 if ( '*' == $char ) { $result .= '<ul><li>'; }
1285 else if ( '#' == $char ) { $result .= '<ol><li>'; }
1286 else if ( ':' == $char ) { $result .= '<dl><dd>'; }
1287 else if ( ';' == $char ) {
1288 $result .= '<dl><dt>';
1289 $this->mDTopen = true;
1290 }
1291 else { $result = '<!-- ERR 1 -->'; }
1292
1293 return $result;
1294 }
1295
1296 /* private */ function nextItem( $char ) {
1297 if ( '*' == $char || '#' == $char ) { return '</li><li>'; }
1298 else if ( ':' == $char || ';' == $char ) {
1299 $close = '</dd>';
1300 if ( $this->mDTopen ) { $close = '</dt>'; }
1301 if ( ';' == $char ) {
1302 $this->mDTopen = true;
1303 return $close . '<dt>';
1304 } else {
1305 $this->mDTopen = false;
1306 return $close . '<dd>';
1307 }
1308 }
1309 return '<!-- ERR 2 -->';
1310 }
1311
1312 /* private */ function closeList( $char ) {
1313 if ( '*' == $char ) { $text = '</li></ul>'; }
1314 else if ( '#' == $char ) { $text = '</li></ol>'; }
1315 else if ( ':' == $char ) {
1316 if ( $this->mDTopen ) {
1317 $this->mDTopen = false;
1318 $text = '</dt></dl>';
1319 } else {
1320 $text = '</dd></dl>';
1321 }
1322 }
1323 else { return '<!-- ERR 3 -->'; }
1324 return $text."\n";
1325 }
1326 /**#@-*/
1327
1328 /**
1329 * Make lists from lines starting with ':', '*', '#', etc.
1330 *
1331 * @access private
1332 * @return string the lists rendered as HTML
1333 */
1334 function doBlockLevels( $text, $linestart ) {
1335 $fname = 'Parser::doBlockLevels';
1336 wfProfileIn( $fname );
1337
1338 # Parsing through the text line by line. The main thing
1339 # happening here is handling of block-level elements p, pre,
1340 # and making lists from lines starting with * # : etc.
1341 #
1342 $textLines = explode( "\n", $text );
1343
1344 $lastPrefix = $output = $lastLine = '';
1345 $this->mDTopen = $inBlockElem = false;
1346 $prefixLength = 0;
1347 $paragraphStack = false;
1348
1349 if ( !$linestart ) {
1350 $output .= array_shift( $textLines );
1351 }
1352 foreach ( $textLines as $oLine ) {
1353 $lastPrefixLength = strlen( $lastPrefix );
1354 $preCloseMatch = preg_match('/<\\/pre/i', $oLine );
1355 $preOpenMatch = preg_match('/<pre/i', $oLine );
1356 if ( !$this->mInPre ) {
1357 # Multiple prefixes may abut each other for nested lists.
1358 $prefixLength = strspn( $oLine, '*#:;' );
1359 $pref = substr( $oLine, 0, $prefixLength );
1360
1361 # eh?
1362 $pref2 = str_replace( ';', ':', $pref );
1363 $t = substr( $oLine, $prefixLength );
1364 $this->mInPre = !empty($preOpenMatch);
1365 } else {
1366 # Don't interpret any other prefixes in preformatted text
1367 $prefixLength = 0;
1368 $pref = $pref2 = '';
1369 $t = $oLine;
1370 }
1371
1372 # List generation
1373 if( $prefixLength && 0 == strcmp( $lastPrefix, $pref2 ) ) {
1374 # Same as the last item, so no need to deal with nesting or opening stuff
1375 $output .= $this->nextItem( substr( $pref, -1 ) );
1376 $paragraphStack = false;
1377
1378 if ( substr( $pref, -1 ) == ';') {
1379 # The one nasty exception: definition lists work like this:
1380 # ; title : definition text
1381 # So we check for : in the remainder text to split up the
1382 # title and definition, without b0rking links.
1383 # FIXME: This is not foolproof. Something better in Tokenizer might help.
1384 if( preg_match( '/^(.*?(?:\s|&nbsp;)):(.*)$/', $t, $match ) ) {
1385 $term = $match[1];
1386 $output .= $term . $this->nextItem( ':' );
1387 $t = $match[2];
1388 }
1389 }
1390 } elseif( $prefixLength || $lastPrefixLength ) {
1391 # Either open or close a level...
1392 $commonPrefixLength = $this->getCommon( $pref, $lastPrefix );
1393 $paragraphStack = false;
1394
1395 while( $commonPrefixLength < $lastPrefixLength ) {
1396 $output .= $this->closeList( $lastPrefix{$lastPrefixLength-1} );
1397 --$lastPrefixLength;
1398 }
1399 if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
1400 $output .= $this->nextItem( $pref{$commonPrefixLength-1} );
1401 }
1402 while ( $prefixLength > $commonPrefixLength ) {
1403 $char = substr( $pref, $commonPrefixLength, 1 );
1404 $output .= $this->openList( $char );
1405
1406 if ( ';' == $char ) {
1407 # FIXME: This is dupe of code above
1408 if( preg_match( '/^(.*?(?:\s|&nbsp;)):(.*)$/', $t, $match ) ) {
1409 $term = $match[1];
1410 $output .= $term . $this->nextItem( ':' );
1411 $t = $match[2];
1412 }
1413 }
1414 ++$commonPrefixLength;
1415 }
1416 $lastPrefix = $pref2;
1417 }
1418 if( 0 == $prefixLength ) {
1419 # No prefix (not in list)--go to paragraph mode
1420 $uniq_prefix = UNIQ_PREFIX;
1421 // XXX: use a stack for nestable elements like span, table and div
1422 $openmatch = preg_match('/(<table|<blockquote|<h1|<h2|<h3|<h4|<h5|<h6|<pre|<tr|<p|<ul|<li|<\\/tr|<\\/td|<\\/th)/i', $t );
1423 $closematch = preg_match(
1424 '/(<\\/table|<\\/blockquote|<\\/h1|<\\/h2|<\\/h3|<\\/h4|<\\/h5|<\\/h6|'.
1425 '<td|<th|<div|<\\/div|<hr|<\\/pre|<\\/p|'.$uniq_prefix.'-pre|<\\/li|<\\/ul)/i', $t );
1426 if ( $openmatch or $closematch ) {
1427 $paragraphStack = false;
1428 $output .= $this->closeParagraph();
1429 if($preOpenMatch and !$preCloseMatch) {
1430 $this->mInPre = true;
1431 }
1432 if ( $closematch ) {
1433 $inBlockElem = false;
1434 } else {
1435 $inBlockElem = true;
1436 }
1437 } else if ( !$inBlockElem && !$this->mInPre ) {
1438 if ( ' ' == $t{0} and ( $this->mLastSection == 'pre' or trim($t) != '' ) ) {
1439 // pre
1440 if ($this->mLastSection != 'pre') {
1441 $paragraphStack = false;
1442 $output .= $this->closeParagraph().'<pre>';
1443 $this->mLastSection = 'pre';
1444 }
1445 $t = substr( $t, 1 );
1446 } else {
1447 // paragraph
1448 if ( '' == trim($t) ) {
1449 if ( $paragraphStack ) {
1450 $output .= $paragraphStack.'<br />';
1451 $paragraphStack = false;
1452 $this->mLastSection = 'p';
1453 } else {
1454 if ($this->mLastSection != 'p' ) {
1455 $output .= $this->closeParagraph();
1456 $this->mLastSection = '';
1457 $paragraphStack = '<p>';
1458 } else {
1459 $paragraphStack = '</p><p>';
1460 }
1461 }
1462 } else {
1463 if ( $paragraphStack ) {
1464 $output .= $paragraphStack;
1465 $paragraphStack = false;
1466 $this->mLastSection = 'p';
1467 } else if ($this->mLastSection != 'p') {
1468 $output .= $this->closeParagraph().'<p>';
1469 $this->mLastSection = 'p';
1470 }
1471 }
1472 }
1473 }
1474 }
1475 if ($paragraphStack === false) {
1476 $output .= $t."\n";
1477 }
1478 }
1479 while ( $prefixLength ) {
1480 $output .= $this->closeList( $pref2{$prefixLength-1} );
1481 --$prefixLength;
1482 }
1483 if ( '' != $this->mLastSection ) {
1484 $output .= '</' . $this->mLastSection . '>';
1485 $this->mLastSection = '';
1486 }
1487
1488 wfProfileOut( $fname );
1489 return $output;
1490 }
1491
1492 /**
1493 * Return value of a magic variable (like PAGENAME)
1494 *
1495 * @access private
1496 */
1497 function getVariableValue( $index ) {
1498 global $wgLang, $wgSitename, $wgServer;
1499
1500 switch ( $index ) {
1501 case MAG_CURRENTMONTH:
1502 return $wgLang->formatNum( date( 'm' ) );
1503 case MAG_CURRENTMONTHNAME:
1504 return $wgLang->getMonthName( date('n') );
1505 case MAG_CURRENTMONTHNAMEGEN:
1506 return $wgLang->getMonthNameGen( date('n') );
1507 case MAG_CURRENTDAY:
1508 return $wgLang->formatNum( date('j') );
1509 case MAG_PAGENAME:
1510 return $this->mTitle->getText();
1511 case MAG_PAGENAMEE:
1512 return $this->mTitle->getPartialURL();
1513 case MAG_NAMESPACE:
1514 # return Namespace::getCanonicalName($this->mTitle->getNamespace());
1515 return $wgLang->getNsText($this->mTitle->getNamespace()); # Patch by Dori
1516 case MAG_CURRENTDAYNAME:
1517 return $wgLang->getWeekdayName( date('w')+1 );
1518 case MAG_CURRENTYEAR:
1519 return $wgLang->formatNum( date( 'Y' ) );
1520 case MAG_CURRENTTIME:
1521 return $wgLang->time( wfTimestampNow(), false );
1522 case MAG_NUMBEROFARTICLES:
1523 return $wgLang->formatNum( wfNumberOfArticles() );
1524 case MAG_SITENAME:
1525 return $wgSitename;
1526 case MAG_SERVER:
1527 return $wgServer;
1528 default:
1529 return NULL;
1530 }
1531 }
1532
1533 /**
1534 * initialise the magic variables (like CURRENTMONTHNAME)
1535 *
1536 * @access private
1537 */
1538 function initialiseVariables() {
1539 global $wgVariableIDs;
1540 $this->mVariables = array();
1541 foreach ( $wgVariableIDs as $id ) {
1542 $mw =& MagicWord::get( $id );
1543 $mw->addToArray( $this->mVariables, $this->getVariableValue( $id ) );
1544 }
1545 }
1546
1547 /**
1548 * Replace magic variables, templates, and template arguments
1549 * with the appropriate text. Templates are substituted recursively,
1550 * taking care to avoid infinite loops.
1551 *
1552 * Note that the substitution depends on value of $mOutputType:
1553 * OT_WIKI: only {{subst:}} templates
1554 * OT_MSG: only magic variables
1555 * OT_HTML: all templates and magic variables
1556 *
1557 * @param string $tex The text to transform
1558 * @param array $args Key-value pairs representing template parameters to substitute
1559 * @access private
1560 */
1561 function replaceVariables( $text, $args = array() ) {
1562 global $wgLang, $wgScript, $wgArticlePath;
1563
1564 # Prevent too big inclusions
1565 if(strlen($text)> MAX_INCLUDE_SIZE)
1566 return $text;
1567
1568 $fname = 'Parser::replaceVariables';
1569 wfProfileIn( $fname );
1570
1571 $titleChars = Title::legalChars();
1572
1573 # This function is called recursively. To keep track of arguments we need a stack:
1574 array_push( $this->mArgStack, $args );
1575
1576 # PHP global rebinding syntax is a bit weird, need to use the GLOBALS array
1577 $GLOBALS['wgCurParser'] =& $this;
1578
1579 if ( $this->mOutputType == OT_HTML ) {
1580 # Argument substitution
1581 $text = preg_replace_callback( "/{{{([$titleChars]*?)}}}/", 'wfArgSubstitution', $text );
1582 }
1583 # Template substitution
1584 $regex = '/{{(['.$titleChars.']*)(\\|.*?|)}}/s';
1585 $text = preg_replace_callback( $regex, 'wfBraceSubstitution', $text );
1586
1587 array_pop( $this->mArgStack );
1588
1589 wfProfileOut( $fname );
1590 return $text;
1591 }
1592
1593 # Split template arguments
1594 function getTemplateArgs( $argsString ) {
1595 if ( $argsString === '' ) {
1596 return array();
1597 }
1598
1599 $args = explode( '|', substr( $argsString, 1 ) );
1600
1601 # If any of the arguments contains a '[[' but no ']]', it needs to be
1602 # merged with the next arg because the '|' character between belongs
1603 # to the link syntax and not the template parameter syntax.
1604 $argc = count($args);
1605 $i = 0;
1606 for ( $i = 0; $i < $argc-1; $i++ ) {
1607 if ( substr_count ( $args[$i], '[[' ) != substr_count ( $args[$i], ']]' ) ) {
1608 $args[$i] .= '|'.$args[$i+1];
1609 array_splice($args, $i+1, 1);
1610 $i--;
1611 $argc--;
1612 }
1613 }
1614
1615 return $args;
1616 }
1617
1618 /**
1619 * Return the text of a template, after recursively
1620 * replacing any variables or templates within the template.
1621 *
1622 * @param array $matches The parts of the template
1623 * $matches[1]: the title, i.e. the part before the |
1624 * $matches[2]: the parameters (including a leading |), if any
1625 * @return string the text of the template
1626 * @access private
1627 */
1628 function braceSubstitution( $matches ) {
1629 global $wgLinkCache, $wgLang;
1630 $fname = 'Parser::braceSubstitution';
1631 $found = false;
1632 $nowiki = false;
1633 $noparse = false;
1634 $itcamefromthedatabase = false;
1635
1636 $title = NULL;
1637
1638 # $part1 is the bit before the first |, and must contain only title characters
1639 # $args is a list of arguments, starting from index 0, not including $part1
1640
1641 $part1 = $matches[1];
1642 # If the second subpattern matched anything, it will start with |
1643
1644 $args = $this->getTemplateArgs($matches[2]);
1645 $argc = count( $args );
1646
1647 # {{{}}}
1648 if ( strpos( $matches[0], '{{{' ) !== false ) {
1649 $text = $matches[0];
1650 $found = true;
1651 $noparse = true;
1652 }
1653
1654 # SUBST
1655 if ( !$found ) {
1656 $mwSubst =& MagicWord::get( MAG_SUBST );
1657 if ( $mwSubst->matchStartAndRemove( $part1 ) ) {
1658 if ( $this->mOutputType != OT_WIKI ) {
1659 # Invalid SUBST not replaced at PST time
1660 # Return without further processing
1661 $text = $matches[0];
1662 $found = true;
1663 $noparse= true;
1664 }
1665 } elseif ( $this->mOutputType == OT_WIKI ) {
1666 # SUBST not found in PST pass, do nothing
1667 $text = $matches[0];
1668 $found = true;
1669 }
1670 }
1671
1672 # MSG, MSGNW and INT
1673 if ( !$found ) {
1674 # Check for MSGNW:
1675 $mwMsgnw =& MagicWord::get( MAG_MSGNW );
1676 if ( $mwMsgnw->matchStartAndRemove( $part1 ) ) {
1677 $nowiki = true;
1678 } else {
1679 # Remove obsolete MSG:
1680 $mwMsg =& MagicWord::get( MAG_MSG );
1681 $mwMsg->matchStartAndRemove( $part1 );
1682 }
1683
1684 # Check if it is an internal message
1685 $mwInt =& MagicWord::get( MAG_INT );
1686 if ( $mwInt->matchStartAndRemove( $part1 ) ) {
1687 if ( $this->incrementIncludeCount( 'int:'.$part1 ) ) {
1688 $text = wfMsgReal( $part1, $args, true );
1689 $found = true;
1690 }
1691 }
1692 }
1693
1694 # NS
1695 if ( !$found ) {
1696 # Check for NS: (namespace expansion)
1697 $mwNs = MagicWord::get( MAG_NS );
1698 if ( $mwNs->matchStartAndRemove( $part1 ) ) {
1699 if ( intval( $part1 ) ) {
1700 $text = $wgLang->getNsText( intval( $part1 ) );
1701 $found = true;
1702 } else {
1703 $index = Namespace::getCanonicalIndex( strtolower( $part1 ) );
1704 if ( !is_null( $index ) ) {
1705 $text = $wgLang->getNsText( $index );
1706 $found = true;
1707 }
1708 }
1709 }
1710 }
1711
1712 # LOCALURL and LOCALURLE
1713 if ( !$found ) {
1714 $mwLocal = MagicWord::get( MAG_LOCALURL );
1715 $mwLocalE = MagicWord::get( MAG_LOCALURLE );
1716
1717 if ( $mwLocal->matchStartAndRemove( $part1 ) ) {
1718 $func = 'getLocalURL';
1719 } elseif ( $mwLocalE->matchStartAndRemove( $part1 ) ) {
1720 $func = 'escapeLocalURL';
1721 } else {
1722 $func = '';
1723 }
1724
1725 if ( $func !== '' ) {
1726 $title = Title::newFromText( $part1 );
1727 if ( !is_null( $title ) ) {
1728 if ( $argc > 0 ) {
1729 $text = $title->$func( $args[0] );
1730 } else {
1731 $text = $title->$func();
1732 }
1733 $found = true;
1734 }
1735 }
1736 }
1737
1738 # Internal variables
1739 if ( !$this->mVariables ) {
1740 $this->initialiseVariables();
1741 }
1742 if ( !$found && array_key_exists( $part1, $this->mVariables ) ) {
1743 $text = $this->mVariables[$part1];
1744 $found = true;
1745 $this->mOutput->mContainsOldMagic = true;
1746 }
1747
1748 # GRAMMAR
1749 if ( !$found && $argc == 1 ) {
1750 $mwGrammar =& MagicWord::get( MAG_GRAMMAR );
1751 if ( $mwGrammar->matchStartAndRemove( $part1 ) ) {
1752 $text = $wgLang->convertGrammar( $args[0], $part1 );
1753 $found = true;
1754 }
1755 }
1756
1757 # Template table test
1758
1759 # Did we encounter this template already? If yes, it is in the cache
1760 # and we need to check for loops.
1761 if ( isset( $this->mTemplates[$part1] ) ) {
1762 # Infinite loop test
1763 if ( isset( $this->mTemplatePath[$part1] ) ) {
1764 $noparse = true;
1765 $found = true;
1766 }
1767 # set $text to cached message.
1768 $text = $this->mTemplates[$part1];
1769 $found = true;
1770 }
1771
1772 # Load from database
1773 if ( !$found ) {
1774 $title = Title::newFromText( $part1, NS_TEMPLATE );
1775 if ( !is_null( $title ) && !$title->isExternal() ) {
1776 # Check for excessive inclusion
1777 $dbk = $title->getPrefixedDBkey();
1778 if ( $this->incrementIncludeCount( $dbk ) ) {
1779 # This should never be reached.
1780 $article = new Article( $title );
1781 $articleContent = $article->getContentWithoutUsingSoManyDamnGlobals();
1782 if ( $articleContent !== false ) {
1783 $found = true;
1784 $text = $articleContent;
1785 $itcamefromthedatabase = true;
1786 }
1787 }
1788
1789 # If the title is valid but undisplayable, make a link to it
1790 if ( $this->mOutputType == OT_HTML && !$found ) {
1791 $text = '[['.$title->getPrefixedText().']]';
1792 $found = true;
1793 }
1794
1795 # Template cache array insertion
1796 $this->mTemplates[$part1] = $text;
1797 }
1798 }
1799
1800 # Recursive parsing, escaping and link table handling
1801 # Only for HTML output
1802 if ( $nowiki && $found && $this->mOutputType == OT_HTML ) {
1803 $text = wfEscapeWikiText( $text );
1804 } elseif ( $this->mOutputType == OT_HTML && $found && !$noparse) {
1805 # Clean up argument array
1806 $assocArgs = array();
1807 $index = 1;
1808 foreach( $args as $arg ) {
1809 $eqpos = strpos( $arg, '=' );
1810 if ( $eqpos === false ) {
1811 $assocArgs[$index++] = $arg;
1812 } else {
1813 $name = trim( substr( $arg, 0, $eqpos ) );
1814 $value = trim( substr( $arg, $eqpos+1 ) );
1815 if ( $value === false ) {
1816 $value = '';
1817 }
1818 if ( $name !== false ) {
1819 $assocArgs[$name] = $value;
1820 }
1821 }
1822 }
1823
1824 # Do not enter included links in link table
1825 if ( !is_null( $title ) ) {
1826 $wgLinkCache->suspend();
1827 }
1828
1829 # Add a new element to the templace recursion path
1830 $this->mTemplatePath[$part1] = 1;
1831
1832 $text = $this->strip( $text, $this->mStripState );
1833 $text = $this->removeHTMLtags( $text );
1834 $text = $this->replaceVariables( $text, $assocArgs );
1835
1836 # Resume the link cache and register the inclusion as a link
1837 if ( !is_null( $title ) ) {
1838 $wgLinkCache->resume();
1839 $wgLinkCache->addLinkObj( $title );
1840 }
1841 }
1842
1843 # Empties the template path
1844 $this->mTemplatePath = array();
1845 if ( !$found ) {
1846 return $matches[0];
1847 } else {
1848 # replace ==section headers==
1849 # XXX this needs to go away once we have a better parser.
1850 if ( $this->mOutputType != OT_WIKI && $itcamefromthedatabase ) {
1851 if( !is_null( $title ) )
1852 $encodedname = base64_encode($title->getPrefixedDBkey());
1853 else
1854 $encodedname = base64_encode("");
1855 $matches = preg_split('/(^={1,6}.*?={1,6}\s*?$)/m', $text, -1,
1856 PREG_SPLIT_DELIM_CAPTURE);
1857 $text = '';
1858 $nsec = 0;
1859 for( $i = 0; $i < count($matches); $i += 2 ) {
1860 $text .= $matches[$i];
1861 if (!isset($matches[$i + 1]) || $matches[$i + 1] == "") continue;
1862 $hl = $matches[$i + 1];
1863 if( strstr($hl, "<!--MWTEMPLATESECTION") ) {
1864 $text .= $hl;
1865 continue;
1866 }
1867 preg_match('/^(={1,6})(.*?)(={1,6})\s*?$/m', $hl, $m2);
1868 $text .= $m2[1] . $m2[2] . "<!--MWTEMPLATESECTION="
1869 . $encodedname . "&" . base64_encode("$nsec") . "-->" . $m2[3];
1870
1871 $nsec++;
1872 }
1873 }
1874 return $text;
1875 }
1876 }
1877
1878 /**
1879 * Triple brace replacement -- used for template arguments
1880 * @access private
1881 */
1882 function argSubstitution( $matches ) {
1883 $arg = trim( $matches[1] );
1884 $text = $matches[0];
1885 $inputArgs = end( $this->mArgStack );
1886
1887 if ( array_key_exists( $arg, $inputArgs ) ) {
1888 $text = $this->strip( $inputArgs[$arg], $this->mStripState );
1889 $text = $this->removeHTMLtags( $text );
1890 $text = $this->replaceVariables( $text, array() );
1891 }
1892
1893 return $text;
1894 }
1895
1896 /**
1897 * Returns true if the function is allowed to include this entity
1898 * @access private
1899 */
1900 function incrementIncludeCount( $dbk ) {
1901 if ( !array_key_exists( $dbk, $this->mIncludeCount ) ) {
1902 $this->mIncludeCount[$dbk] = 0;
1903 }
1904 if ( ++$this->mIncludeCount[$dbk] <= MAX_INCLUDE_REPEAT ) {
1905 return true;
1906 } else {
1907 return false;
1908 }
1909 }
1910
1911
1912 /**
1913 * Cleans up HTML, removes dangerous tags and attributes, and
1914 * removes HTML comments
1915 * @access private
1916 */
1917 function removeHTMLtags( $text ) {
1918 global $wgUseTidy, $wgUserHtml;
1919 $fname = 'Parser::removeHTMLtags';
1920 wfProfileIn( $fname );
1921
1922 if( $wgUserHtml ) {
1923 $htmlpairs = array( # Tags that must be closed
1924 'b', 'del', 'i', 'ins', 'u', 'font', 'big', 'small', 'sub', 'sup', 'h1',
1925 'h2', 'h3', 'h4', 'h5', 'h6', 'cite', 'code', 'em', 's',
1926 'strike', 'strong', 'tt', 'var', 'div', 'center',
1927 'blockquote', 'ol', 'ul', 'dl', 'table', 'caption', 'pre',
1928 'ruby', 'rt' , 'rb' , 'rp', 'p'
1929 );
1930 $htmlsingle = array(
1931 'br', 'hr', 'li', 'dt', 'dd'
1932 );
1933 $htmlnest = array( # Tags that can be nested--??
1934 'table', 'tr', 'td', 'th', 'div', 'blockquote', 'ol', 'ul',
1935 'dl', 'font', 'big', 'small', 'sub', 'sup'
1936 );
1937 $tabletags = array( # Can only appear inside table
1938 'td', 'th', 'tr'
1939 );
1940 } else {
1941 $htmlpairs = array();
1942 $htmlsingle = array();
1943 $htmlnest = array();
1944 $tabletags = array();
1945 }
1946
1947 $htmlsingle = array_merge( $tabletags, $htmlsingle );
1948 $htmlelements = array_merge( $htmlsingle, $htmlpairs );
1949
1950 $htmlattrs = $this->getHTMLattrs () ;
1951
1952 # Remove HTML comments
1953 $text = $this->removeHTMLcomments( $text );
1954
1955 $bits = explode( '<', $text );
1956 $text = array_shift( $bits );
1957 if(!$wgUseTidy) {
1958 $tagstack = array(); $tablestack = array();
1959 foreach ( $bits as $x ) {
1960 $prev = error_reporting( E_ALL & ~( E_NOTICE | E_WARNING ) );
1961 preg_match( '/^(\\/?)(\\w+)([^>]*)(\\/{0,1}>)([^<]*)$/',
1962 $x, $regs );
1963 list( $qbar, $slash, $t, $params, $brace, $rest ) = $regs;
1964 error_reporting( $prev );
1965
1966 $badtag = 0 ;
1967 if ( in_array( $t = strtolower( $t ), $htmlelements ) ) {
1968 # Check our stack
1969 if ( $slash ) {
1970 # Closing a tag...
1971 if ( ! in_array( $t, $htmlsingle ) &&
1972 ( $ot = @array_pop( $tagstack ) ) != $t ) {
1973 @array_push( $tagstack, $ot );
1974 $badtag = 1;
1975 } else {
1976 if ( $t == 'table' ) {
1977 $tagstack = array_pop( $tablestack );
1978 }
1979 $newparams = '';
1980 }
1981 } else {
1982 # Keep track for later
1983 if ( in_array( $t, $tabletags ) &&
1984 ! in_array( 'table', $tagstack ) ) {
1985 $badtag = 1;
1986 } else if ( in_array( $t, $tagstack ) &&
1987 ! in_array ( $t , $htmlnest ) ) {
1988 $badtag = 1 ;
1989 } else if ( ! in_array( $t, $htmlsingle ) ) {
1990 if ( $t == 'table' ) {
1991 array_push( $tablestack, $tagstack );
1992 $tagstack = array();
1993 }
1994 array_push( $tagstack, $t );
1995 }
1996 # Strip non-approved attributes from the tag
1997 $newparams = $this->fixTagAttributes($params);
1998
1999 }
2000 if ( ! $badtag ) {
2001 $rest = str_replace( '>', '&gt;', $rest );
2002 $text .= "<$slash$t $newparams$brace$rest";
2003 continue;
2004 }
2005 }
2006 $text .= '&lt;' . str_replace( '>', '&gt;', $x);
2007 }
2008 # Close off any remaining tags
2009 while ( is_array( $tagstack ) && ($t = array_pop( $tagstack )) ) {
2010 $text .= "</$t>\n";
2011 if ( $t == 'table' ) { $tagstack = array_pop( $tablestack ); }
2012 }
2013 } else {
2014 # this might be possible using tidy itself
2015 foreach ( $bits as $x ) {
2016 preg_match( '/^(\\/?)(\\w+)([^>]*)(\\/{0,1}>)([^<]*)$/',
2017 $x, $regs );
2018 @list( $qbar, $slash, $t, $params, $brace, $rest ) = $regs;
2019 if ( in_array( $t = strtolower( $t ), $htmlelements ) ) {
2020 $newparams = $this->fixTagAttributes($params);
2021 $rest = str_replace( '>', '&gt;', $rest );
2022 $text .= "<$slash$t $newparams$brace$rest";
2023 } else {
2024 $text .= '&lt;' . str_replace( '>', '&gt;', $x);
2025 }
2026 }
2027 }
2028 wfProfileOut( $fname );
2029 return $text;
2030 }
2031
2032 /**
2033 * Remove '<!--', '-->', and everything between.
2034 * To avoid leaving blank lines, when a comment is both preceded
2035 * and followed by a newline (ignoring spaces), trim leading and
2036 * trailing spaces and one of the newlines.
2037 *
2038 * @access private
2039 */
2040 function removeHTMLcomments( $text ) {
2041 $fname='Parser::removeHTMLcomments';
2042 wfProfileIn( $fname );
2043 while (($start = strpos($text, '<!--')) !== false) {
2044 $end = strpos($text, '-->', $start + 4);
2045 if ($end === false) {
2046 # Unterminated comment; bail out
2047 break;
2048 }
2049
2050 $end += 3;
2051
2052 # Trim space and newline if the comment is both
2053 # preceded and followed by a newline
2054 $spaceStart = max($start - 1, 0);
2055 $spaceLen = $end - $spaceStart;
2056 while (substr($text, $spaceStart, 1) === ' ' && $spaceStart > 0) {
2057 $spaceStart--;
2058 $spaceLen++;
2059 }
2060 while (substr($text, $spaceStart + $spaceLen, 1) === ' ')
2061 $spaceLen++;
2062 if (substr($text, $spaceStart, 1) === "\n" and substr($text, $spaceStart + $spaceLen, 1) === "\n") {
2063 # Remove the comment, leading and trailing
2064 # spaces, and leave only one newline.
2065 $text = substr_replace($text, "\n", $spaceStart, $spaceLen + 1);
2066 }
2067 else {
2068 # Remove just the comment.
2069 $text = substr_replace($text, '', $start, $end - $start);
2070 }
2071 }
2072 wfProfileOut( $fname );
2073 return $text;
2074 }
2075
2076 /**
2077 * This function accomplishes several tasks:
2078 * 1) Auto-number headings if that option is enabled
2079 * 2) Add an [edit] link to sections for logged in users who have enabled the option
2080 * 3) Add a Table of contents on the top for users who have enabled the option
2081 * 4) Auto-anchor headings
2082 *
2083 * It loops through all headlines, collects the necessary data, then splits up the
2084 * string and re-inserts the newly formatted headlines.
2085 * @access private
2086 */
2087 /* private */ function formatHeadings( $text, $isMain=true ) {
2088 global $wgInputEncoding, $wgMaxTocLevel, $wgLang, $wgLinkHolders;
2089
2090 $doNumberHeadings = $this->mOptions->getNumberHeadings();
2091 $doShowToc = $this->mOptions->getShowToc();
2092 $forceTocHere = false;
2093 if( !$this->mTitle->userCanEdit() ) {
2094 $showEditLink = 0;
2095 $rightClickHack = 0;
2096 } else {
2097 $showEditLink = $this->mOptions->getEditSection();
2098 $rightClickHack = $this->mOptions->getEditSectionOnRightClick();
2099 }
2100
2101 # Inhibit editsection links if requested in the page
2102 $esw =& MagicWord::get( MAG_NOEDITSECTION );
2103 if( $esw->matchAndRemove( $text ) ) {
2104 $showEditLink = 0;
2105 }
2106 # if the string __NOTOC__ (not case-sensitive) occurs in the HTML,
2107 # do not add TOC
2108 $mw =& MagicWord::get( MAG_NOTOC );
2109 if( $mw->matchAndRemove( $text ) ) {
2110 $doShowToc = 0;
2111 }
2112
2113 # never add the TOC to the Main Page. This is an entry page that should not
2114 # be more than 1-2 screens large anyway
2115 if( $this->mTitle->getPrefixedText() == wfMsg('mainpage') ) {
2116 $doShowToc = 0;
2117 }
2118
2119 # Get all headlines for numbering them and adding funky stuff like [edit]
2120 # links - this is for later, but we need the number of headlines right now
2121 $numMatches = preg_match_all( '/<H([1-6])(.*?' . '>)(.*?)<\/H[1-6]>/i', $text, $matches );
2122
2123 # if there are fewer than 4 headlines in the article, do not show TOC
2124 if( $numMatches < 4 ) {
2125 $doShowToc = 0;
2126 }
2127
2128 # if the string __TOC__ (not case-sensitive) occurs in the HTML,
2129 # override above conditions and always show TOC at that place
2130 $mw =& MagicWord::get( MAG_TOC );
2131 if ($mw->match( $text ) ) {
2132 $doShowToc = 1;
2133 $forceTocHere = true;
2134 } else {
2135 # if the string __FORCETOC__ (not case-sensitive) occurs in the HTML,
2136 # override above conditions and always show TOC above first header
2137 $mw =& MagicWord::get( MAG_FORCETOC );
2138 if ($mw->matchAndRemove( $text ) ) {
2139 $doShowToc = 1;
2140 }
2141 }
2142
2143
2144
2145 # We need this to perform operations on the HTML
2146 $sk =& $this->mOptions->getSkin();
2147
2148 # headline counter
2149 $headlineCount = 0;
2150 $sectionCount = 0; # headlineCount excluding template sections
2151
2152 # Ugh .. the TOC should have neat indentation levels which can be
2153 # passed to the skin functions. These are determined here
2154 $toclevel = 0;
2155 $toc = '';
2156 $full = '';
2157 $head = array();
2158 $sublevelCount = array();
2159 $level = 0;
2160 $prevlevel = 0;
2161 foreach( $matches[3] as $headline ) {
2162 $istemplate = 0;
2163 $templatetitle = "";
2164 $templatesection = 0;
2165
2166 if (preg_match("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", $headline, $mat)) {
2167 $istemplate = 1;
2168 $templatetitle = base64_decode($mat[1]);
2169 $templatesection = 1 + (int)base64_decode($mat[2]);
2170 $headline = preg_replace("/<!--MWTEMPLATESECTION=([^&]+)&([^_]+)-->/", "", $headline);
2171 }
2172
2173 $numbering = '';
2174 if( $level ) {
2175 $prevlevel = $level;
2176 }
2177 $level = $matches[1][$headlineCount];
2178 if( ( $doNumberHeadings || $doShowToc ) && $prevlevel && $level > $prevlevel ) {
2179 # reset when we enter a new level
2180 $sublevelCount[$level] = 0;
2181 $toc .= $sk->tocIndent( $level - $prevlevel );
2182 $toclevel += $level - $prevlevel;
2183 }
2184 if( ( $doNumberHeadings || $doShowToc ) && $level < $prevlevel ) {
2185 # reset when we step back a level
2186 $sublevelCount[$level+1]=0;
2187 $toc .= $sk->tocUnindent( $prevlevel - $level );
2188 $toclevel -= $prevlevel - $level;
2189 }
2190 # count number of headlines for each level
2191 @$sublevelCount[$level]++;
2192 if( $doNumberHeadings || $doShowToc ) {
2193 $dot = 0;
2194 for( $i = 1; $i <= $level; $i++ ) {
2195 if( !empty( $sublevelCount[$i] ) ) {
2196 if( $dot ) {
2197 $numbering .= '.';
2198 }
2199 $numbering .= $wgLang->formatNum( $sublevelCount[$i] );
2200 $dot = 1;
2201 }
2202 }
2203 }
2204
2205 # The canonized header is a version of the header text safe to use for links
2206 # Avoid insertion of weird stuff like <math> by expanding the relevant sections
2207 $canonized_headline = $this->unstrip( $headline, $this->mStripState );
2208 $canonized_headline = $this->unstripNoWiki( $headline, $this->mStripState );
2209
2210 # Remove link placeholders by the link text.
2211 # <!--LINK number-->
2212 # turns into
2213 # link text with suffix
2214 $canonized_headline = preg_replace( '/<!--LINK ([0-9]*)-->/e',
2215 "\$wgLinkHolders['texts'][\$1]",
2216 $canonized_headline );
2217
2218 # strip out HTML
2219 $canonized_headline = preg_replace( '/<.*?' . '>/','',$canonized_headline );
2220 $tocline = trim( $canonized_headline );
2221 $canonized_headline = urlencode( do_html_entity_decode( str_replace(' ', '_', $tocline), ENT_COMPAT, $wgInputEncoding ) );
2222 $replacearray = array(
2223 '%3A' => ':',
2224 '%' => '.'
2225 );
2226 $canonized_headline = str_replace(array_keys($replacearray),array_values($replacearray),$canonized_headline);
2227 $refer[$headlineCount] = $canonized_headline;
2228
2229 # count how many in assoc. array so we can track dupes in anchors
2230 @$refers[$canonized_headline]++;
2231 $refcount[$headlineCount]=$refers[$canonized_headline];
2232
2233 # Prepend the number to the heading text
2234
2235 if( $doNumberHeadings || $doShowToc ) {
2236 $tocline = $numbering . ' ' . $tocline;
2237
2238 # Don't number the heading if it is the only one (looks silly)
2239 if( $doNumberHeadings && count( $matches[3] ) > 1) {
2240 # the two are different if the line contains a link
2241 $headline=$numbering . ' ' . $headline;
2242 }
2243 }
2244
2245 # Create the anchor for linking from the TOC to the section
2246 $anchor = $canonized_headline;
2247 if($refcount[$headlineCount] > 1 ) {
2248 $anchor .= '_' . $refcount[$headlineCount];
2249 }
2250 if( $doShowToc && ( !isset($wgMaxTocLevel) || $toclevel<$wgMaxTocLevel ) ) {
2251 $toc .= $sk->tocLine($anchor,$tocline,$toclevel);
2252 }
2253 if( $showEditLink && ( !$istemplate || $templatetitle !== "" ) ) {
2254 if ( empty( $head[$headlineCount] ) ) {
2255 $head[$headlineCount] = '';
2256 }
2257 if( $istemplate )
2258 $head[$headlineCount] .= $sk->editSectionLinkForOther($templatetitle, $templatesection);
2259 else
2260 $head[$headlineCount] .= $sk->editSectionLink($sectionCount+1);
2261 }
2262
2263 # Add the edit section span
2264 if( $rightClickHack ) {
2265 if( $istemplate )
2266 $headline = $sk->editSectionScriptForOther($templatetitle, $templatesection, $headline);
2267 else
2268 $headline = $sk->editSectionScript($sectionCount+1,$headline);
2269 }
2270
2271 # give headline the correct <h#> tag
2272 @$head[$headlineCount] .= "<a name=\"$anchor\"></a><h".$level.$matches[2][$headlineCount] .$headline.'</h'.$level.'>';
2273
2274 $headlineCount++;
2275 if( !$istemplate )
2276 $sectionCount++;
2277 }
2278
2279 if( $doShowToc ) {
2280 $toclines = $headlineCount;
2281 $toc .= $sk->tocUnindent( $toclevel );
2282 $toc = $sk->tocTable( $toc );
2283 }
2284
2285 # split up and insert constructed headlines
2286
2287 $blocks = preg_split( '/<H[1-6].*?' . '>.*?<\/H[1-6]>/i', $text );
2288 $i = 0;
2289
2290 foreach( $blocks as $block ) {
2291 if( $showEditLink && $headlineCount > 0 && $i == 0 && $block != "\n" ) {
2292 # This is the [edit] link that appears for the top block of text when
2293 # section editing is enabled
2294
2295 # Disabled because it broke block formatting
2296 # For example, a bullet point in the top line
2297 # $full .= $sk->editSectionLink(0);
2298 }
2299 $full .= $block;
2300 if( $doShowToc && !$i && $isMain && !$forceTocHere) {
2301 # Top anchor now in skin
2302 $full = $full.$toc;
2303 }
2304
2305 if( !empty( $head[$i] ) ) {
2306 $full .= $head[$i];
2307 }
2308 $i++;
2309 }
2310 if($forceTocHere) {
2311 $mw =& MagicWord::get( MAG_TOC );
2312 return $mw->replace( $toc, $full );
2313 } else {
2314 return $full;
2315 }
2316 }
2317
2318 /**
2319 * Return an HTML link for the "ISBN 123456" text
2320 * @access private
2321 */
2322 function magicISBN( $text ) {
2323 global $wgLang;
2324 $fname = 'Parser::magicISBN';
2325 wfProfileIn( $fname );
2326
2327 $a = split( 'ISBN ', ' '.$text );
2328 if ( count ( $a ) < 2 ) {
2329 wfProfileOut( $fname );
2330 return $text;
2331 }
2332 $text = substr( array_shift( $a ), 1);
2333 $valid = '0123456789-ABCDEFGHIJKLMNOPQRSTUVWXYZ';
2334
2335 foreach ( $a as $x ) {
2336 $isbn = $blank = '' ;
2337 while ( ' ' == $x{0} ) {
2338 $blank .= ' ';
2339 $x = substr( $x, 1 );
2340 }
2341 if ( $x == '' ) { # blank isbn
2342 $text .= "ISBN $blank";
2343 continue;
2344 }
2345 while ( strstr( $valid, $x{0} ) != false ) {
2346 $isbn .= $x{0};
2347 $x = substr( $x, 1 );
2348 }
2349 $num = str_replace( '-', '', $isbn );
2350 $num = str_replace( ' ', '', $num );
2351
2352 if ( '' == $num ) {
2353 $text .= "ISBN $blank$x";
2354 } else {
2355 $titleObj = Title::makeTitle( NS_SPECIAL, 'Booksources' );
2356 $text .= '<a href="' .
2357 $titleObj->escapeLocalUrl( 'isbn='.$num ) .
2358 "\" class=\"internal\">ISBN $isbn</a>";
2359 $text .= $x;
2360 }
2361 }
2362 wfProfileOut( $fname );
2363 return $text;
2364 }
2365
2366 /**
2367 * Return an HTML link for the "GEO ..." text
2368 * @access private
2369 */
2370 function magicGEO( $text ) {
2371 global $wgLang, $wgUseGeoMode;
2372 $fname = 'Parser::magicGEO';
2373 wfProfileIn( $fname );
2374
2375 # These next five lines are only for the ~35000 U.S. Census Rambot pages...
2376 $directions = array ( 'N' => 'North' , 'S' => 'South' , 'E' => 'East' , 'W' => 'West' ) ;
2377 $text = preg_replace ( "/(\d+)&deg;(\d+)'(\d+)\" {$directions['N']}, (\d+)&deg;(\d+)'(\d+)\" {$directions['W']}/" , "(GEO +\$1.\$2.\$3:-\$4.\$5.\$6)" , $text ) ;
2378 $text = preg_replace ( "/(\d+)&deg;(\d+)'(\d+)\" {$directions['N']}, (\d+)&deg;(\d+)'(\d+)\" {$directions['E']}/" , "(GEO +\$1.\$2.\$3:+\$4.\$5.\$6)" , $text ) ;
2379 $text = preg_replace ( "/(\d+)&deg;(\d+)'(\d+)\" {$directions['S']}, (\d+)&deg;(\d+)'(\d+)\" {$directions['W']}/" , "(GEO +\$1.\$2.\$3:-\$4.\$5.\$6)" , $text ) ;
2380 $text = preg_replace ( "/(\d+)&deg;(\d+)'(\d+)\" {$directions['S']}, (\d+)&deg;(\d+)'(\d+)\" {$directions['E']}/" , "(GEO +\$1.\$2.\$3:+\$4.\$5.\$6)" , $text ) ;
2381
2382 $a = split( 'GEO ', ' '.$text );
2383 if ( count ( $a ) < 2 ) {
2384 wfProfileOut( $fname );
2385 return $text;
2386 }
2387 $text = substr( array_shift( $a ), 1);
2388 $valid = '0123456789.+-:';
2389
2390 foreach ( $a as $x ) {
2391 $geo = $blank = '' ;
2392 while ( ' ' == $x{0} ) {
2393 $blank .= ' ';
2394 $x = substr( $x, 1 );
2395 }
2396 while ( strstr( $valid, $x{0} ) != false ) {
2397 $geo .= $x{0};
2398 $x = substr( $x, 1 );
2399 }
2400 $num = str_replace( '+', '', $geo );
2401 $num = str_replace( ' ', '', $num );
2402
2403 if ( '' == $num || count ( explode ( ':' , $num , 3 ) ) < 2 ) {
2404 $text .= "GEO $blank$x";
2405 } else {
2406 $titleObj = Title::makeTitle( NS_SPECIAL, 'Geo' );
2407 $text .= '<a href="' .
2408 $titleObj->escapeLocalUrl( 'coordinates='.$num ) .
2409 "\" class=\"internal\">GEO $geo</a>";
2410 $text .= $x;
2411 }
2412 }
2413 wfProfileOut( $fname );
2414 return $text;
2415 }
2416
2417 /**
2418 * Return an HTML link for the "RFC 1234" text
2419 * @access private
2420 * @param string $text text to be processed
2421 */
2422 function magicRFC( $text ) {
2423 global $wgLang;
2424
2425 $valid = '0123456789';
2426 $internal = false;
2427
2428 $a = split( 'RFC ', ' '.$text );
2429 if ( count ( $a ) < 2 ) return $text;
2430 $text = substr( array_shift( $a ), 1);
2431
2432 /* Check if RFC keyword is preceed by [[.
2433 * This test is made here cause of the array_shift above
2434 * that prevent the test to be done in the foreach.
2435 */
2436 if(substr($text, -2) == '[[') { $internal = true; }
2437
2438 foreach ( $a as $x ) {
2439 /* token might be empty if we have RFC RFC 1234 */
2440 if($x=='') {
2441 $text.='RFC ';
2442 continue;
2443 }
2444
2445 $rfc = $blank = '' ;
2446
2447 /** remove and save whitespaces in $blank */
2448 while ( $x{0} == ' ' ) {
2449 $blank .= ' ';
2450 $x = substr( $x, 1 );
2451 }
2452
2453 /** remove and save the rfc number in $rfc */
2454 while ( strstr( $valid, $x{0} ) != false ) {
2455 $rfc .= $x{0};
2456 $x = substr( $x, 1 );
2457 }
2458
2459 if ( $rfc == '') {
2460 /* call back stripped spaces*/
2461 $text .= "RFC $blank$x";
2462 } elseif( $internal) {
2463 /* normal link */
2464 $text .= "RFC $rfc$x";
2465 } else {
2466 /* build the external link*/
2467 $url = wfmsg( 'rfcurl' );
2468 $url = str_replace( '$1', $rfc, $url);
2469 $sk =& $this->mOptions->getSkin();
2470 $la = $sk->getExternalLinkAttributes( $url, 'RFC '.$rfc );
2471 $text .= "<a href='{$url}'{$la}>RFC {$rfc}</a>{$x}";
2472 }
2473
2474 /* Check if the next RFC keyword is preceed by [[ */
2475 $internal = (substr($x,-2) == '[[');
2476 }
2477 return $text;
2478 }
2479
2480 /**
2481 * Transform wiki markup when saving a page by doing \r\n -> \n
2482 * conversion, substitting signatures, {{subst:}} templates, etc.
2483 *
2484 * @param string $text the text to transform
2485 * @param Title &$title the Title object for the current article
2486 * @param User &$user the User object describing the current user
2487 * @param ParserOptions $options parsing options
2488 * @param bool $clearState whether to clear the parser state first
2489 * @return string the altered wiki markup
2490 * @access public
2491 */
2492 function preSaveTransform( $text, &$title, &$user, $options, $clearState = true ) {
2493 $this->mOptions = $options;
2494 $this->mTitle =& $title;
2495 $this->mOutputType = OT_WIKI;
2496
2497 if ( $clearState ) {
2498 $this->clearState();
2499 }
2500
2501 $stripState = false;
2502 $pairs = array(
2503 "\r\n" => "\n",
2504 );
2505 $text = str_replace(array_keys($pairs), array_values($pairs), $text);
2506 // now with regexes
2507 /*
2508 $pairs = array(
2509 "/<br.+(clear|break)=[\"']?(all|both)[\"']?\\/?>/i" => '<br style="clear:both;"/>',
2510 "/<br *?>/i" => "<br />",
2511 );
2512 $text = preg_replace(array_keys($pairs), array_values($pairs), $text);
2513 */
2514 $text = $this->strip( $text, $stripState, false );
2515 $text = $this->pstPass2( $text, $user );
2516 $text = $this->unstrip( $text, $stripState );
2517 $text = $this->unstripNoWiki( $text, $stripState );
2518 return $text;
2519 }
2520
2521 /**
2522 * Pre-save transform helper function
2523 * @access private
2524 */
2525 function pstPass2( $text, &$user ) {
2526 global $wgLang, $wgLocaltimezone, $wgCurParser;
2527
2528 # Variable replacement
2529 # Because mOutputType is OT_WIKI, this will only process {{subst:xxx}} type tags
2530 $text = $this->replaceVariables( $text );
2531
2532 # Signatures
2533 #
2534 $n = $user->getName();
2535 $k = $user->getOption( 'nickname' );
2536 if ( '' == $k ) { $k = $n; }
2537 if(isset($wgLocaltimezone)) {
2538 $oldtz = getenv('TZ'); putenv('TZ='.$wgLocaltimezone);
2539 }
2540 /* Note: this is an ugly timezone hack for the European wikis */
2541 $d = $wgLang->timeanddate( date( 'YmdHis' ), false ) .
2542 ' (' . date( 'T' ) . ')';
2543 if(isset($wgLocaltimezone)) putenv('TZ='.$oldtzs);
2544
2545 $text = preg_replace( '/~~~~~/', $d, $text );
2546 $text = preg_replace( '/~~~~/', '[[' . $wgLang->getNsText( NS_USER ) . ":$n|$k]] $d", $text );
2547 $text = preg_replace( '/~~~/', '[[' . $wgLang->getNsText( NS_USER ) . ":$n|$k]]", $text );
2548
2549 # Context links: [[|name]] and [[name (context)|]]
2550 #
2551 $tc = "[&;%\\-,.\\(\\)' _0-9A-Za-z\\/:\\x80-\\xff]";
2552 $np = "[&;%\\-,.' _0-9A-Za-z\\/:\\x80-\\xff]"; # No parens
2553 $namespacechar = '[ _0-9A-Za-z\x80-\xff]'; # Namespaces can use non-ascii!
2554 $conpat = "/^({$np}+) \\(({$tc}+)\\)$/";
2555
2556 $p1 = "/\[\[({$np}+) \\(({$np}+)\\)\\|]]/"; # [[page (context)|]]
2557 $p2 = "/\[\[\\|({$tc}+)]]/"; # [[|page]]
2558 $p3 = "/\[\[(:*$namespacechar+):({$np}+)\\|]]/"; # [[namespace:page|]] and [[:namespace:page|]]
2559 $p4 = "/\[\[(:*$namespacechar+):({$np}+) \\(({$np}+)\\)\\|]]/"; # [[ns:page (cont)|]] and [[:ns:page (cont)|]]
2560 $context = '';
2561 $t = $this->mTitle->getText();
2562 if ( preg_match( $conpat, $t, $m ) ) {
2563 $context = $m[2];
2564 }
2565 $text = preg_replace( $p4, '[[\\1:\\2 (\\3)|\\2]]', $text );
2566 $text = preg_replace( $p1, '[[\\1 (\\2)|\\1]]', $text );
2567 $text = preg_replace( $p3, '[[\\1:\\2|\\2]]', $text );
2568
2569 if ( '' == $context ) {
2570 $text = preg_replace( $p2, '[[\\1]]', $text );
2571 } else {
2572 $text = preg_replace( $p2, "[[\\1 ({$context})|\\1]]", $text );
2573 }
2574
2575 /*
2576 $mw =& MagicWord::get( MAG_SUBST );
2577 $wgCurParser = $this->fork();
2578 $text = $mw->substituteCallback( $text, "wfBraceSubstitution" );
2579 $this->merge( $wgCurParser );
2580 */
2581
2582 # Trim trailing whitespace
2583 # MAG_END (__END__) tag allows for trailing
2584 # whitespace to be deliberately included
2585 $text = rtrim( $text );
2586 $mw =& MagicWord::get( MAG_END );
2587 $mw->matchAndRemove( $text );
2588
2589 return $text;
2590 }
2591
2592 /**
2593 * Set up some variables which are usually set up in parse()
2594 * so that an external function can call some class members with confidence
2595 * @access public
2596 */
2597 function startExternalParse( &$title, $options, $outputType, $clearState = true ) {
2598 $this->mTitle =& $title;
2599 $this->mOptions = $options;
2600 $this->mOutputType = $outputType;
2601 if ( $clearState ) {
2602 $this->clearState();
2603 }
2604 }
2605
2606 /**
2607 * Transform a MediaWiki message by replacing magic variables.
2608 *
2609 * @param string $text the text to transform
2610 * @param ParserOptions $options options
2611 * @return string the text with variables substituted
2612 * @access public
2613 */
2614 function transformMsg( $text, $options ) {
2615 global $wgTitle;
2616 static $executing = false;
2617
2618 # Guard against infinite recursion
2619 if ( $executing ) {
2620 return $text;
2621 }
2622 $executing = true;
2623
2624 $this->mTitle = $wgTitle;
2625 $this->mOptions = $options;
2626 $this->mOutputType = OT_MSG;
2627 $this->clearState();
2628 $text = $this->replaceVariables( $text );
2629
2630 $executing = false;
2631 return $text;
2632 }
2633
2634 /**
2635 * Create an HTML-style tag, e.g. <yourtag>special text</yourtag>
2636 * Callback will be called with the text within
2637 * Transform and return the text within
2638 * @access public
2639 */
2640 function setHook( $tag, $callback ) {
2641 $oldVal = @$this->mTagHooks[$tag];
2642 $this->mTagHooks[$tag] = $callback;
2643 return $oldVal;
2644 }
2645 }
2646
2647 /**
2648 * @todo document
2649 * @package MediaWiki
2650 */
2651 class ParserOutput
2652 {
2653 var $mText, $mLanguageLinks, $mCategoryLinks, $mContainsOldMagic;
2654 var $mCacheTime; # Used in ParserCache
2655
2656 function ParserOutput( $text = '', $languageLinks = array(), $categoryLinks = array(),
2657 $containsOldMagic = false )
2658 {
2659 $this->mText = $text;
2660 $this->mLanguageLinks = $languageLinks;
2661 $this->mCategoryLinks = $categoryLinks;
2662 $this->mContainsOldMagic = $containsOldMagic;
2663 $this->mCacheTime = '';
2664 }
2665
2666 function getText() { return $this->mText; }
2667 function getLanguageLinks() { return $this->mLanguageLinks; }
2668 function getCategoryLinks() { return $this->mCategoryLinks; }
2669 function getCacheTime() { return $this->mCacheTime; }
2670 function containsOldMagic() { return $this->mContainsOldMagic; }
2671 function setText( $text ) { return wfSetVar( $this->mText, $text ); }
2672 function setLanguageLinks( $ll ) { return wfSetVar( $this->mLanguageLinks, $ll ); }
2673 function setCategoryLinks( $cl ) { return wfSetVar( $this->mCategoryLinks, $cl ); }
2674 function setContainsOldMagic( $com ) { return wfSetVar( $this->mContainsOldMagic, $com ); }
2675 function setCacheTime( $t ) { return wfSetVar( $this->mCacheTime, $t ); }
2676
2677 function merge( $other ) {
2678 $this->mLanguageLinks = array_merge( $this->mLanguageLinks, $other->mLanguageLinks );
2679 $this->mCategoryLinks = array_merge( $this->mCategoryLinks, $this->mLanguageLinks );
2680 $this->mContainsOldMagic = $this->mContainsOldMagic || $other->mContainsOldMagic;
2681 }
2682
2683 }
2684
2685 /**
2686 * Set options of the Parser
2687 * @todo document
2688 * @package MediaWiki
2689 */
2690 class ParserOptions
2691 {
2692 # All variables are private
2693 var $mUseTeX; # Use texvc to expand <math> tags
2694 var $mUseDynamicDates; # Use $wgDateFormatter to format dates
2695 var $mInterwikiMagic; # Interlanguage links are removed and returned in an array
2696 var $mAllowExternalImages; # Allow external images inline
2697 var $mSkin; # Reference to the preferred skin
2698 var $mDateFormat; # Date format index
2699 var $mEditSection; # Create "edit section" links
2700 var $mEditSectionOnRightClick; # Generate JavaScript to edit section on right click
2701 var $mNumberHeadings; # Automatically number headings
2702 var $mShowToc; # Show table of contents
2703
2704 function getUseTeX() { return $this->mUseTeX; }
2705 function getUseDynamicDates() { return $this->mUseDynamicDates; }
2706 function getInterwikiMagic() { return $this->mInterwikiMagic; }
2707 function getAllowExternalImages() { return $this->mAllowExternalImages; }
2708 function getSkin() { return $this->mSkin; }
2709 function getDateFormat() { return $this->mDateFormat; }
2710 function getEditSection() { return $this->mEditSection; }
2711 function getEditSectionOnRightClick() { return $this->mEditSectionOnRightClick; }
2712 function getNumberHeadings() { return $this->mNumberHeadings; }
2713 function getShowToc() { return $this->mShowToc; }
2714
2715 function setUseTeX( $x ) { return wfSetVar( $this->mUseTeX, $x ); }
2716 function setUseDynamicDates( $x ) { return wfSetVar( $this->mUseDynamicDates, $x ); }
2717 function setInterwikiMagic( $x ) { return wfSetVar( $this->mInterwikiMagic, $x ); }
2718 function setAllowExternalImages( $x ) { return wfSetVar( $this->mAllowExternalImages, $x ); }
2719 function setDateFormat( $x ) { return wfSetVar( $this->mDateFormat, $x ); }
2720 function setEditSection( $x ) { return wfSetVar( $this->mEditSection, $x ); }
2721 function setEditSectionOnRightClick( $x ) { return wfSetVar( $this->mEditSectionOnRightClick, $x ); }
2722 function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); }
2723 function setShowToc( $x ) { return wfSetVar( $this->mShowToc, $x ); }
2724
2725 function setSkin( &$x ) { $this->mSkin =& $x; }
2726
2727 # Get parser options
2728 /* static */ function newFromUser( &$user ) {
2729 $popts = new ParserOptions;
2730 $popts->initialiseFromUser( $user );
2731 return $popts;
2732 }
2733
2734 # Get user options
2735 function initialiseFromUser( &$userInput ) {
2736 global $wgUseTeX, $wgUseDynamicDates, $wgInterwikiMagic, $wgAllowExternalImages;
2737
2738 $fname = 'ParserOptions::initialiseFromUser';
2739 wfProfileIn( $fname );
2740 if ( !$userInput ) {
2741 $user = new User;
2742 $user->setLoaded( true );
2743 } else {
2744 $user =& $userInput;
2745 }
2746
2747 $this->mUseTeX = $wgUseTeX;
2748 $this->mUseDynamicDates = $wgUseDynamicDates;
2749 $this->mInterwikiMagic = $wgInterwikiMagic;
2750 $this->mAllowExternalImages = $wgAllowExternalImages;
2751 wfProfileIn( $fname.'-skin' );
2752 $this->mSkin =& $user->getSkin();
2753 wfProfileOut( $fname.'-skin' );
2754 $this->mDateFormat = $user->getOption( 'date' );
2755 $this->mEditSection = $user->getOption( 'editsection' );
2756 $this->mEditSectionOnRightClick = $user->getOption( 'editsectiononrightclick' );
2757 $this->mNumberHeadings = $user->getOption( 'numberheadings' );
2758 $this->mShowToc = $user->getOption( 'showtoc' );
2759 wfProfileOut( $fname );
2760 }
2761
2762
2763 }
2764
2765 # Regex callbacks, used in Parser::replaceVariables
2766 function wfBraceSubstitution( $matches ) {
2767 global $wgCurParser;
2768 return $wgCurParser->braceSubstitution( $matches );
2769 }
2770
2771 function wfArgSubstitution( $matches ) {
2772 global $wgCurParser;
2773 return $wgCurParser->argSubstitution( $matches );
2774 }
2775
2776 /**
2777 * Return the total number of articles
2778 */
2779 function wfNumberOfArticles() {
2780 global $wgNumberOfArticles;
2781
2782 wfLoadSiteStats();
2783 return $wgNumberOfArticles;
2784 }
2785
2786 /**
2787 * Get various statistics from the database
2788 * @private
2789 */
2790 function wfLoadSiteStats() {
2791 global $wgNumberOfArticles, $wgTotalViews, $wgTotalEdits;
2792 $fname = 'wfLoadSiteStats';
2793
2794 if ( -1 != $wgNumberOfArticles ) return;
2795 $dbr =& wfGetDB( DB_SLAVE );
2796 $s = $dbr->getArray( 'site_stats',
2797 array( 'ss_total_views', 'ss_total_edits', 'ss_good_articles' ),
2798 array( 'ss_row_id' => 1 ), $fname
2799 );
2800
2801 if ( $s === false ) {
2802 return;
2803 } else {
2804 $wgTotalViews = $s->ss_total_views;
2805 $wgTotalEdits = $s->ss_total_edits;
2806 $wgNumberOfArticles = $s->ss_good_articles;
2807 }
2808 }
2809
2810 function wfEscapeHTMLTagsOnly( $in ) {
2811 return str_replace(
2812 array( '"', '>', '<' ),
2813 array( '&quot;', '&gt;', '&lt;' ),
2814 $in );
2815 }
2816
2817 ?>