* (bug 153) Adjust thumbnail size calculations to match consistently;
[lhc/web/wiklou.git] / includes / Linker.php
1 <?php
2 /**
3 * Split off some of the internal bits from Skin.php.
4 * These functions are used for primarily page content:
5 * links, embedded images, table of contents. Links are
6 * also used in the skin.
7 * @package MediaWiki
8 */
9
10 /**
11 * For the moment, Skin is a descendent class of Linker.
12 * In the future, it should probably be further split
13 * so that ever other bit of the wiki doesn't have to
14 * go loading up Skin to get at it.
15 *
16 * @package MediaWiki
17 */
18 class Linker {
19
20 function Linker() {}
21
22 /**
23 * @deprecated
24 */
25 function postParseLinkColour( $s = NULL ) {
26 return NULL;
27 }
28
29 /** @todo document */
30 function getExternalLinkAttributes( $link, $text, $class='' ) {
31 global $wgContLang;
32
33 $same = ($link == $text);
34 $link = urldecode( $link );
35 $link = $wgContLang->checkTitleEncoding( $link );
36 $link = preg_replace( '/[\\x00-\\x1f_]/', ' ', $link );
37 $link = htmlspecialchars( $link );
38
39 $r = ($class != '') ? " class='$class'" : " class='external'";
40
41 $r .= " title=\"{$link}\"";
42 return $r;
43 }
44
45 /** @todo document */
46 function getInternalLinkAttributes( $link, $text, $broken = false ) {
47 $link = urldecode( $link );
48 $link = str_replace( '_', ' ', $link );
49 $link = htmlspecialchars( $link );
50
51 if( $broken == 'stub' ) {
52 $r = ' class="stub"';
53 } else if ( $broken == 'yes' ) {
54 $r = ' class="new"';
55 } else {
56 $r = '';
57 }
58
59 $r .= " title=\"{$link}\"";
60 return $r;
61 }
62
63 /**
64 * @param bool $broken
65 */
66 function getInternalLinkAttributesObj( &$nt, $text, $broken = false ) {
67 if( $broken == 'stub' ) {
68 $r = ' class="stub"';
69 } else if ( $broken == 'yes' ) {
70 $r = ' class="new"';
71 } else {
72 $r = '';
73 }
74
75 $r .= ' title="' . $nt->getEscapedText() . '"';
76 return $r;
77 }
78
79 /**
80 * Note: This function MUST call getArticleID() on the link,
81 * otherwise the cache won't get updated properly. See LINKCACHE.DOC.
82 */
83 function makeLink( $title, $text = '', $query = '', $trail = '' ) {
84 wfProfileIn( 'Linker::makeLink' );
85 $nt = Title::newFromText( $title );
86 if ($nt) {
87 $result = $this->makeLinkObj( Title::newFromText( $title ), $text, $query, $trail );
88 } else {
89 wfDebug( 'Invalid title passed to Linker::makeLink(): "'.$title."\"\n" );
90 $result = $text == "" ? $title : $text;
91 }
92
93 wfProfileOut( 'Linker::makeLink' );
94 return $result;
95 }
96
97 /** @todo document */
98 function makeKnownLink( $title, $text = '', $query = '', $trail = '', $prefix = '',$aprops = '') {
99 $nt = Title::newFromText( $title );
100 if ($nt) {
101 return $this->makeKnownLinkObj( Title::newFromText( $title ), $text, $query, $trail, $prefix , $aprops );
102 } else {
103 wfDebug( 'Invalid title passed to Linker::makeKnownLink(): "'.$title."\"\n" );
104 return $text == '' ? $title : $text;
105 }
106 }
107
108 /** @todo document */
109 function makeBrokenLink( $title, $text = '', $query = '', $trail = '' ) {
110 $nt = Title::newFromText( $title );
111 if ($nt) {
112 return $this->makeBrokenLinkObj( Title::newFromText( $title ), $text, $query, $trail );
113 } else {
114 wfDebug( 'Invalid title passed to Linker::makeBrokenLink(): "'.$title."\"\n" );
115 return $text == '' ? $title : $text;
116 }
117 }
118
119 /** @todo document */
120 function makeStubLink( $title, $text = '', $query = '', $trail = '' ) {
121 $nt = Title::newFromText( $title );
122 if ($nt) {
123 return $this->makeStubLinkObj( Title::newFromText( $title ), $text, $query, $trail );
124 } else {
125 wfDebug( 'Invalid title passed to Linker::makeStubLink(): "'.$title."\"\n" );
126 return $text == '' ? $title : $text;
127 }
128 }
129
130 /**
131 * Pass a title object, not a title string
132 */
133 function makeLinkObj( $nt, $text= '', $query = '', $trail = '', $prefix = '' ) {
134 global $wgUser;
135 $fname = 'Linker::makeLinkObj';
136 wfProfileIn( $fname );
137
138 # Fail gracefully
139 if ( ! is_object($nt) ) {
140 # wfDebugDieBacktrace();
141 wfProfileOut( $fname );
142 return "<!-- ERROR -->{$prefix}{$text}{$trail}";
143 }
144
145 $ns = $nt->getNamespace();
146 $dbkey = $nt->getDBkey();
147 if ( $nt->isExternal() ) {
148 $u = $nt->getFullURL();
149 $link = $nt->getPrefixedURL();
150 if ( '' == $text ) { $text = $nt->getPrefixedText(); }
151 $style = $this->getExternalLinkAttributes( $link, $text, 'extiw' );
152
153 $inside = '';
154 if ( '' != $trail ) {
155 if ( preg_match( '/^([a-z]+)(.*)$$/sD', $trail, $m ) ) {
156 $inside = $m[1];
157 $trail = $m[2];
158 }
159 }
160
161 # Check for anchors, normalize the anchor
162
163 $parts = explode( '#', $u, 2 );
164 if ( count( $parts ) == 2 ) {
165 $anchor = urlencode( Sanitizer::decodeCharReferences( str_replace(' ', '_', $parts[1] ) ) );
166 $replacearray = array(
167 '%3A' => ':',
168 '%' => '.'
169 );
170 $u = $parts[0] . '#' .
171 str_replace( array_keys( $replacearray ),
172 array_values( $replacearray ),
173 $anchor );
174 }
175
176 $t = "<a href=\"{$u}\"{$style}>{$text}{$inside}</a>";
177
178 wfProfileOut( $fname );
179 return $t;
180 } elseif ( $nt->isAlwaysKnown() ) {
181 # Image links, special page links and self-links with fragements are always known.
182 $retVal = $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix );
183 } else {
184 wfProfileIn( $fname.'-immediate' );
185 # Work out link colour immediately
186 $aid = $nt->getArticleID() ;
187 if ( 0 == $aid ) {
188 $retVal = $this->makeBrokenLinkObj( $nt, $text, $query, $trail, $prefix );
189 } else {
190 $threshold = $wgUser->getOption('stubthreshold') ;
191 if ( $threshold > 0 ) {
192 $dbr =& wfGetDB( DB_SLAVE );
193 $s = $dbr->selectRow(
194 array( 'page' ),
195 array( 'page_len',
196 'page_namespace',
197 'page_is_redirect' ),
198 array( 'page_id' => $aid ), $fname ) ;
199 if ( $s !== false ) {
200 $size = $s->page_len;
201 if ( $s->page_is_redirect OR $s->page_namespace != NS_MAIN ) {
202 $size = $threshold*2 ; # Really big
203 }
204 } else {
205 $size = $threshold*2 ; # Really big
206 }
207 } else {
208 $size = 1 ;
209 }
210 if ( $size < $threshold ) {
211 $retVal = $this->makeStubLinkObj( $nt, $text, $query, $trail, $prefix );
212 } else {
213 $retVal = $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix );
214 }
215 }
216 wfProfileOut( $fname.'-immediate' );
217 }
218 wfProfileOut( $fname );
219 return $retVal;
220 }
221
222 /**
223 * Pass a title object, not a title string
224 * @param object Title of target page
225 * @param string Text to replace the title
226 * @param string Link target
227 * @param string Text after link
228 * @param string Text before link text
229 * @param string Extra attributes to the a-element
230 * @return the a-element
231 */
232 function makeKnownLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '' ) {
233 global $wgTitle;
234
235 $fname = 'Linker::makeKnownLinkObj';
236 wfProfileIn( $fname );
237
238 if ( !is_object( $nt ) ) {
239 wfProfileOut( $fname );
240 return $text;
241 }
242
243 $u = $nt->escapeLocalURL( $query );
244 if ( '' != $nt->getFragment() ) {
245 if( $nt->getPrefixedDbkey() == '' ) {
246 $u = '';
247 if ( '' == $text ) {
248 $text = htmlspecialchars( $nt->getFragment() );
249 }
250 }
251 $anchor = urlencode( Sanitizer::decodeCharReferences( str_replace( ' ', '_', $nt->getFragment() ) ) );
252 $replacearray = array(
253 '%3A' => ':',
254 '%' => '.'
255 );
256 $u .= '#' . str_replace(array_keys($replacearray),array_values($replacearray),$anchor);
257 }
258 if ( '' == $text ) {
259 $text = htmlspecialchars( $nt->getPrefixedText() );
260 }
261 $style = $this->getInternalLinkAttributesObj( $nt, $text );
262
263 if ( $aprops !== '' ) $aprops = ' ' . $aprops;
264
265 list( $inside, $trail ) = Linker::splitTrail( $trail );
266 $r = "<a href=\"{$u}\"{$style}{$aprops}>{$prefix}{$text}{$inside}</a>{$trail}";
267 wfProfileOut( $fname );
268 return $r;
269 }
270
271 /**
272 * Pass a title object, not a title string
273 */
274 function makeBrokenLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
275 # Fail gracefully
276 if ( ! isset($nt) ) {
277 # wfDebugDieBacktrace();
278 return "<!-- ERROR -->{$prefix}{$text}{$trail}";
279 }
280
281 $fname = 'Linker::makeBrokenLinkObj';
282 wfProfileIn( $fname );
283
284 if ( '' == $query ) {
285 $q = 'action=edit';
286 } else {
287 $q = 'action=edit&'.$query;
288 }
289 $u = $nt->escapeLocalURL( $q );
290
291 if ( '' == $text ) {
292 $text = htmlspecialchars( $nt->getPrefixedText() );
293 }
294 $style = $this->getInternalLinkAttributesObj( $nt, $text, "yes" );
295
296 list( $inside, $trail ) = Linker::splitTrail( $trail );
297 $s = "<a href=\"{$u}\"{$style}>{$prefix}{$text}{$inside}</a>{$trail}";
298
299 wfProfileOut( $fname );
300 return $s;
301 }
302
303 /**
304 * Pass a title object, not a title string
305 */
306 function makeStubLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
307 $link = $nt->getPrefixedURL();
308
309 $u = $nt->escapeLocalURL( $query );
310
311 if ( '' == $text ) {
312 $text = htmlspecialchars( $nt->getPrefixedText() );
313 }
314 $style = $this->getInternalLinkAttributesObj( $nt, $text, 'stub' );
315
316 list( $inside, $trail ) = Linker::splitTrail( $trail );
317 $s = "<a href=\"{$u}\"{$style}>{$prefix}{$text}{$inside}</a>{$trail}";
318 return $s;
319 }
320
321 /**
322 * Generate either a normal exists-style link or a stub link, depending
323 * on the given page size.
324 *
325 * @param int $size
326 * @param Title $nt
327 * @param string $text
328 * @param string $query
329 * @param string $trail
330 * @param string $prefix
331 * @return string HTML of link
332 */
333 function makeSizeLinkObj( $size, $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
334 global $wgUser;
335 $threshold = intval( $wgUser->getOption( 'stubthreshold' ) );
336 if( $size < $threshold ) {
337 return $this->makeStubLinkObj( $nt, $text, $query, $trail, $prefix );
338 } else {
339 return $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix );
340 }
341 }
342
343 /** @todo document */
344 function makeSelfLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
345 $u = $nt->escapeLocalURL( $query );
346 if ( '' == $text ) {
347 $text = htmlspecialchars( $nt->getPrefixedText() );
348 }
349 list( $inside, $trail ) = Linker::splitTrail( $trail );
350 return "<strong>{$prefix}{$text}{$inside}</strong>{$trail}";
351 }
352
353 /** @todo document */
354 function fnamePart( $url ) {
355 $basename = strrchr( $url, '/' );
356 if ( false === $basename ) {
357 $basename = $url;
358 } else {
359 $basename = substr( $basename, 1 );
360 }
361 return htmlspecialchars( $basename );
362 }
363
364 /** Obsolete alias */
365 function makeImage( $url, $alt = '' ) {
366 return $this->makeExternalImage( $url, $alt );
367 }
368
369 /** @todo document */
370 function makeExternalImage( $url, $alt = '' ) {
371 if ( '' == $alt ) {
372 $alt = $this->fnamePart( $url );
373 }
374 $s = '<img src="'.$url.'" alt="'.$alt.'" />';
375 return $s;
376 }
377
378 /** @todo document */
379 function makeImageLinkObj( $nt, $label, $alt, $align = '', $width = false, $height = false, $framed = false,
380 $thumb = false, $manual_thumb = '' )
381 {
382 global $wgContLang, $wgUser, $wgThumbLimits;
383
384 $img = new Image( $nt );
385 $url = $img->getViewURL();
386 $prefix = $postfix = '';
387
388 wfDebug( "makeImageLinkObj: '$width'x'$height'\n" );
389
390 if ( 'center' == $align )
391 {
392 $prefix = '<div class="center">';
393 $postfix = '</div>';
394 $align = 'none';
395 }
396
397 if ( $thumb || $framed ) {
398
399 # Create a thumbnail. Alignment depends on language
400 # writing direction, # right aligned for left-to-right-
401 # languages ("Western languages"), left-aligned
402 # for right-to-left-languages ("Semitic languages")
403 #
404 # If thumbnail width has not been provided, it is set
405 # to the default user option as specified in Language*.php
406 if ( $align == '' ) {
407 $align = $wgContLang->isRTL() ? 'left' : 'right';
408 }
409
410
411 if ( $width === false ) {
412 $wopt = $wgUser->getOption( 'thumbsize' );
413
414 if( !isset( $wgThumbLimits[$wopt] ) ) {
415 $wopt = User::getDefaultOption( 'thumbsize' );
416 }
417
418 $width = min( $img->getWidth(), $wgThumbLimits[$wopt] );
419 }
420
421 return $prefix.$this->makeThumbLinkObj( $img, $label, $alt, $align, $width, $height, $framed, $manual_thumb ).$postfix;
422 }
423
424 if ( $width && $img->exists() ) {
425
426 # Create a resized image, without the additional thumbnail
427 # features
428
429 if ( $height == false )
430 $height = -1;
431 if ( $manual_thumb == '') {
432 $thumb = $img->getThumbnail( $width, $height );
433 if ( $thumb ) {
434 if( $width > $img->width && ( $height == -1 || $height > $img->height )) {
435 // Requested a display size larger than the actual image;
436 // fake it up!
437 $height = round($thumb->height * $width / $thumb->width);
438 wfDebug( "makeImageLinkObj: client-size height set to '$height'\n" );
439 } else {
440 $width = $thumb->width;
441 $height = $thumb->height;
442 wfDebug( "makeImageLinkObj: thumb height set to '$height'\n" );
443 }
444 $url = $thumb->getUrl();
445 }
446 }
447 } else {
448 $width = $img->width;
449 $height = $img->height;
450 }
451
452 wfDebug( "makeImageLinkObj2: '$width'x'$height'\n" );
453 $u = $nt->escapeLocalURL();
454 if ( $url == '' ) {
455 $s = $this->makeBrokenImageLinkObj( $img->getTitle() );
456 //$s .= "<br />{$alt}<br />{$url}<br />\n";
457 } else {
458 $s = '<a href="'.$u.'" class="image" title="'.$alt.'">' .
459 '<img src="'.$url.'" alt="'.$alt.'" ' .
460 ( $width
461 ? ( 'width="'.$width.'" height="'.$height.'" ' )
462 : '' ) .
463 'longdesc="'.$u.'" /></a>';
464 }
465 if ( '' != $align ) {
466 $s = "<div class=\"float{$align}\"><span>{$s}</span></div>";
467 }
468 return str_replace("\n", ' ',$prefix.$s.$postfix);
469 }
470
471 /**
472 * Make HTML for a thumbnail including image, border and caption
473 * $img is an Image object
474 */
475 function makeThumbLinkObj( $img, $label = '', $alt, $align = 'right', $boxwidth = 180, $boxheight=false, $framed=false , $manual_thumb = "" ) {
476 global $wgStylePath, $wgContLang;
477 $url = $img->getViewURL();
478
479 $width = $height = 0;
480 if ( $img->exists() )
481 {
482 $width = $img->getWidth();
483 $height = $img->getHeight();
484 }
485 if ( 0 == $width || 0 == $height )
486 {
487 $width = $height = 200;
488 }
489 if ( $boxwidth == 0 )
490 {
491 $boxwidth = 200;
492 }
493 if ( $framed )
494 {
495 // Use image dimensions, don't scale
496 $boxwidth = $width;
497 $boxheight = $height;
498 $thumbUrl = $url;
499 } else {
500 if ( $boxheight === false )
501 $boxheight = -1;
502 if ( '' == $manual_thumb ) {
503 $thumb = $img->getThumbnail( $boxwidth, $boxheight );
504 $thumbUrl = $thumb->getUrl();
505 $boxwidth = $thumb->width;
506 $boxheight = $thumb->height;
507 }
508 }
509 $oboxwidth = $boxwidth + 2;
510
511 if ( $manual_thumb != '' ) # Use manually specified thumbnail
512 {
513 $manual_title = Title::makeTitleSafe( NS_IMAGE, $manual_thumb ); #new Title ( $manual_thumb ) ;
514 $manual_img = new Image( $manual_title );
515 $thumbUrl = $manual_img->getViewURL();
516 if ( $manual_img->exists() )
517 {
518 $width = $manual_img->getWidth();
519 $height = $manual_img->getHeight();
520 $boxwidth = $width ;
521 $boxheight = $height ;
522 $oboxwidth = $boxwidth + 2 ;
523 }
524 }
525
526 $u = $img->getEscapeLocalURL();
527
528 $more = htmlspecialchars( wfMsg( 'thumbnail-more' ) );
529 $magnifyalign = $wgContLang->isRTL() ? 'left' : 'right';
530 $textalign = $wgContLang->isRTL() ? ' style="text-align:right"' : '';
531
532 $s = "<div class=\"thumb t{$align}\"><div style=\"width:{$oboxwidth}px;\">";
533 if( $thumbUrl == '' ) {
534 // Couldn't generate thumbnail? Scale the image client-side.
535 $thumbUrl = $url;
536 }
537 if( !$img->exists() ) {
538 $s .= $this->makeBrokenImageLinkObj( $img->getTitle() );
539 $zoomicon = '';
540 } else {
541 $s .= '<a href="'.$u.'" class="internal" title="'.$alt.'">'.
542 '<img src="'.$thumbUrl.'" alt="'.$alt.'" ' .
543 'width="'.$boxwidth.'" height="'.$boxheight.'" ' .
544 'longdesc="'.$u.'" /></a>';
545 if ( $framed ) {
546 $zoomicon="";
547 } else {
548 $zoomicon = '<div class="magnify" style="float:'.$magnifyalign.'">'.
549 '<a href="'.$u.'" class="internal" title="'.$more.'">'.
550 '<img src="'.$wgStylePath.'/common/images/magnify-clip.png" ' .
551 'width="15" height="11" alt="'.$more.'" /></a></div>';
552 }
553 }
554 $s .= ' <div class="thumbcaption" '.$textalign.'>'.$zoomicon.$label."</div></div></div>";
555 return str_replace("\n", ' ', $s);
556 }
557
558 /**
559 * Pass a title object, not a title string
560 */
561 function makeBrokenImageLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
562 # Fail gracefully
563 if ( ! isset($nt) ) {
564 # wfDebugDieBacktrace();
565 return "<!-- ERROR -->{$prefix}{$text}{$trail}";
566 }
567
568 $fname = 'Linker::makeBrokenImageLinkObj';
569 wfProfileIn( $fname );
570
571 $q = 'wpDestFile=' . urlencode( $nt->getDBkey() );
572 if ( '' != $query ) {
573 $q .= "&$query";
574 }
575 $uploadTitle = Title::makeTitle( NS_SPECIAL, 'Upload' );
576 $url = $uploadTitle->escapeLocalURL( $q );
577
578 if ( '' == $text ) {
579 $text = htmlspecialchars( $nt->getPrefixedText() );
580 }
581 $style = $this->getInternalLinkAttributesObj( $nt, $text, "yes" );
582 list( $inside, $trail ) = Linker::splitTrail( $trail );
583 $s = "<a href=\"{$url}\"{$style}>{$prefix}{$text}{$inside}</a>{$trail}";
584
585 wfProfileOut( $fname );
586 return $s;
587 }
588
589 /** @todo document */
590 function makeMediaLink( $name, /* wtf?! */ $url, $alt = '' ) {
591 $nt = Title::makeTitleSafe( NS_IMAGE, $name );
592 return $this->makeMediaLinkObj( $nt, $alt );
593 }
594
595 /**
596 * Create a direct link to a given uploaded file.
597 *
598 * @param Title $title
599 * @param string $text pre-sanitized HTML
600 * @param bool $nourl Mask absolute URLs, so the parser doesn't
601 * linkify them (it is currently not context-aware)
602 * @return string HTML
603 *
604 * @access public
605 * @todo Handle invalid or missing images better.
606 */
607 function makeMediaLinkObj( $title, $text = '', $nourl=false ) {
608 if( is_null( $title ) ) {
609 ### HOTFIX. Instead of breaking, return empty string.
610 return $text;
611 } else {
612 $name = $title->getDBKey();
613 $img = new Image( $title );
614 if( $img->exists() ) {
615 $url = $img->getURL();
616 if( $nourl ) {
617 $url = str_replace( "http://", UNIQ_PREFIX . "NOPARSEhttp://", $url );
618 }
619 $class = 'internal';
620 } else {
621 $upload = Title::makeTitle( NS_SPECIAL, 'Upload' );
622 $url = $upload->getLocalUrl( 'wpDestFile=' . urlencode( $img->getName() ) );
623 $class = 'new';
624 }
625 $alt = htmlspecialchars( $title->getText() );
626 if( $text == '' ) {
627 $text = $alt;
628 }
629 $u = htmlspecialchars( $url );
630 return "<a href=\"{$u}\" class='$class' title=\"{$alt}\">{$text}</a>";
631 }
632 }
633
634 /** @todo document */
635 function specialLink( $name, $key = '' ) {
636 global $wgContLang;
637
638 if ( '' == $key ) { $key = strtolower( $name ); }
639 $pn = $wgContLang->ucfirst( $name );
640 return $this->makeKnownLink( $wgContLang->specialPage( $pn ),
641 wfMsg( $key ) );
642 }
643
644 /** @todo document */
645 function makeExternalLink( $url, $text, $escape = true, $linktype = '' ) {
646 $style = $this->getExternalLinkAttributes( $url, $text, 'external ' . $linktype );
647 global $wgNoFollowLinks;
648 if( $wgNoFollowLinks ) {
649 $style .= ' rel="nofollow"';
650 }
651 $url = htmlspecialchars( $url );
652 if( $escape ) {
653 $text = htmlspecialchars( $text );
654 }
655 return '<a href="'.$url.'"'.$style.'>'.$text.'</a>';
656 }
657
658 /**
659 * This function is called by all recent changes variants, by the page history,
660 * and by the user contributions list. It is responsible for formatting edit
661 * comments. It escapes any HTML in the comment, but adds some CSS to format
662 * auto-generated comments (from section editing) and formats [[wikilinks]].
663 *
664 * The &$title parameter must be a title OBJECT. It is used to generate a
665 * direct link to the section in the autocomment.
666 * @author Erik Moeller <moeller@scireview.de>
667 *
668 * Note: there's not always a title to pass to this function.
669 * Since you can't set a default parameter for a reference, I've turned it
670 * temporarily to a value pass. Should be adjusted further. --brion
671 */
672 function formatComment($comment, $title = NULL) {
673 $fname = 'Linker::formatComment';
674 wfProfileIn( $fname );
675
676 global $wgContLang;
677 $comment = str_replace( "\n", " ", $comment );
678 $comment = htmlspecialchars( $comment );
679
680 # The pattern for autogen comments is / * foo * /, which makes for
681 # some nasty regex.
682 # We look for all comments, match any text before and after the comment,
683 # add a separator where needed and format the comment itself with CSS
684 while (preg_match('/(.*)\/\*\s*(.*?)\s*\*\/(.*)/', $comment,$match)) {
685 $pre=$match[1];
686 $auto=$match[2];
687 $post=$match[3];
688 $link='';
689 if($title) {
690 $section=$auto;
691
692 # This is hackish but should work in most cases.
693 $section=str_replace('[[','',$section);
694 $section=str_replace(']]','',$section);
695 $title->mFragment=$section;
696 $link=$this->makeKnownLinkObj($title,wfMsg('sectionlink'));
697 }
698 $sep='-';
699 $auto=$link.$auto;
700 if($pre) { $auto = $sep.' '.$auto; }
701 if($post) { $auto .= ' '.$sep; }
702 $auto='<span class="autocomment">'.$auto.'</span>';
703 $comment=$pre.$auto.$post;
704 }
705
706 # format regular and media links - all other wiki formatting
707 # is ignored
708 $medians = $wgContLang->getNsText( NS_MEDIA ) . ':';
709 while(preg_match('/\[\[(.*?)(\|(.*?))*\]\](.*)$/',$comment,$match)) {
710 # Handle link renaming [[foo|text]] will show link as "text"
711 if( "" != $match[3] ) {
712 $text = $match[3];
713 } else {
714 $text = $match[1];
715 }
716 if( preg_match( '/^' . $medians . '(.*)$/i', $match[1], $submatch ) ) {
717 # Media link; trail not supported.
718 $linkRegexp = '/\[\[(.*?)\]\]/';
719 $thelink = $this->makeMediaLink( $submatch[1], "", $text );
720 } else {
721 # Other kind of link
722 if( preg_match( $wgContLang->linkTrail(), $match[4], $submatch ) ) {
723 $trail = $submatch[1];
724 } else {
725 $trail = "";
726 }
727 $linkRegexp = '/\[\[(.*?)\]\]' . preg_quote( $trail, '/' ) . '/';
728 if ($match[1][0] == ':')
729 $match[1] = substr($match[1], 1);
730 $thelink = $this->makeLink( $match[1], $text, "", $trail );
731 }
732 # Quote backreferences, then run preg_replace
733 $thelink = strtr( $thelink, array( "\\" => "\\\\", '$' => "\\$" ) );
734 $comment = preg_replace( $linkRegexp, $thelink, $comment, 1 );
735 }
736 wfProfileOut( $fname );
737 return $comment;
738 }
739
740 /**
741 * Wrap a comment in standard punctuation and formatting if
742 * it's non-empty, otherwise return empty string.
743 *
744 * @param string $comment
745 * @param Title $title
746 * @return string
747 * @access public
748 */
749 function commentBlock( $comment, $title = NULL ) {
750 if( $comment == '' || $comment == '*' ) {
751 return '';
752 } else {
753 $formatted = $this->formatComment( $comment, $title );
754 return " <span class='comment'>($formatted)</span>";
755 }
756 }
757
758 /** @todo document */
759 function tocIndent() {
760 return "\n<ul>";
761 }
762
763 /** @todo document */
764 function tocUnindent($level) {
765 return "</li>\n" . str_repeat( "</ul>\n</li>\n", $level>0 ? $level : 0 );
766 }
767
768 /**
769 * parameter level defines if we are on an indentation level
770 */
771 function tocLine( $anchor, $tocline, $tocnumber, $level ) {
772 return "\n<li class='toclevel-$level'><a href=\"#" .
773 $anchor . '"><span class="tocnumber">' .
774 $tocnumber . '</span> <span class="toctext">' .
775 $tocline . '</span></a>';
776 }
777
778 /** @todo document */
779 function tocLineEnd() {
780 return "</li>\n";
781 }
782
783 /** @todo document */
784 function tocList($toc) {
785 global $wgJsMimeType;
786 $title = wfMsgForContent('toc') ;
787 return
788 '<table id="toc" class="toc" summary="' . $title .'"><tr><td>'
789 . '<div id="toctitle"><h2>' . $title . "</h2></div>\n"
790 . $toc
791 . "</ul>\n</td></tr></table>\n"
792 . '<script type="' . $wgJsMimeType . '">'
793 . ' if (window.showTocToggle) {'
794 . ' var tocShowText = "' . wfEscapeJsString( wfMsgForContent('showtoc') ) . '";'
795 . ' var tocHideText = "' . wfEscapeJsString( wfMsgForContent('hidetoc') ) . '";'
796 . ' showTocToggle();'
797 . ' } '
798 . "</script>\n";
799 }
800
801 /** @todo document */
802 function editSectionLinkForOther( $title, $section ) {
803 global $wgRequest;
804 global $wgContLang;
805
806 $title = Title::newFromText($title);
807 $editurl = '&section='.$section;
808 $url = $this->makeKnownLink($title->getPrefixedText(),wfMsg('editsection'),'action=edit'.$editurl);
809
810 if( $wgContLang->isRTL() ) {
811 $farside = 'left';
812 $nearside = 'right';
813 } else {
814 $farside = 'right';
815 $nearside = 'left';
816 }
817 return "<div class=\"editsection\" style=\"float:$farside;margin-$nearside:5px;\">[".$url."]</div>";
818
819 }
820
821 /** @todo document */
822 function editSectionLink( $nt, $section ) {
823 global $wgContLang;
824
825 $editurl = '&section='.$section;
826 $url = $this->makeKnownLink($nt->getPrefixedText(),wfMsg('editsection'),'action=edit'.$editurl);
827
828 if( $wgContLang->isRTL() ) {
829 $farside = 'left';
830 $nearside = 'right';
831 } else {
832 $farside = 'right';
833 $nearside = 'left';
834 }
835 return "<div class=\"editsection\" style=\"float:$farside;margin-$nearside:5px;\">[".$url."]</div>";
836 }
837
838 /**
839 * Split a link trail, return the "inside" portion and the remainder of the trail
840 * as a two-element array
841 *
842 * @static
843 */
844 function splitTrail( $trail ) {
845 static $regex = false;
846 if ( $regex === false ) {
847 global $wgContLang;
848 $regex = $wgContLang->linkTrail();
849 }
850 $inside = '';
851 if ( '' != $trail ) {
852 if ( preg_match( $regex, $trail, $m ) ) {
853 $inside = $m[1];
854 $trail = $m[2];
855 }
856 }
857 return array( $inside, $trail );
858 }
859
860 }
861 ?>