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