Tell regexp parser to use extra analysis on external link regexp;
[lhc/web/wiklou.git] / includes / Skin.php
1 <?php
2
3 /**
4 *
5 * @package MediaWiki
6 * @subpackage Skins
7 */
8
9 /**
10 * This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
11 */
12 if( defined( "MEDIAWIKI" ) ) {
13
14 # See skin.doc
15 require_once( 'Image.php' );
16
17 # Get a list of all skins available in /skins/
18 # Build using the regular expression '^(.*).php$'
19 # Array keys are all lower case, array value keep the case used by filename
20 #
21
22 $skinDir = dir($IP.'/skins');
23
24 # while code from www.php.net
25 while (false !== ($file = $skinDir->read())) {
26 if(preg_match('/^([^.].*)\.php$/',$file, $matches)) {
27 $aSkin = $matches[1];
28 $wgValidSkinNames[strtolower($aSkin)] = $aSkin;
29 }
30 }
31 $skinDir->close();
32 unset($matches);
33
34 require_once( 'RecentChange.php' );
35
36 global $wgLinkHolders;
37 $wgLinkHolders = array(
38 'namespaces' => array(),
39 'dbkeys' => array(),
40 'queries' => array(),
41 'texts' => array(),
42 'titles' => array()
43 );
44 global $wgInterwikiLinkHolders;
45 $wgInterwikiLinkHolders = array();
46
47 /**
48 * @todo document
49 * @package MediaWiki
50 */
51 class RCCacheEntry extends RecentChange
52 {
53 var $secureName, $link;
54 var $curlink , $difflink, $lastlink , $usertalklink , $versionlink ;
55 var $userlink, $timestamp, $watched;
56
57 function newFromParent( $rc )
58 {
59 $rc2 = new RCCacheEntry;
60 $rc2->mAttribs = $rc->mAttribs;
61 $rc2->mExtra = $rc->mExtra;
62 return $rc2;
63 }
64 } ;
65
66
67 /**
68 * The main skin class that provide methods and properties for all other skins
69 * including PHPTal skins.
70 * This base class is also the "Standard" skin.
71 * @package MediaWiki
72 */
73 class Skin {
74 /**#@+
75 * @access private
76 */
77 var $lastdate, $lastline;
78 var $linktrail ; # linktrail regexp
79 var $rc_cache ; # Cache for Enhanced Recent Changes
80 var $rcCacheIndex ; # Recent Changes Cache Counter for visibility toggle
81 var $rcMoveIndex;
82 var $postParseLinkColour = false;
83 /**#@-*/
84
85 function Skin() {
86 $this->linktrail = wfMsgForContent('linktrail');
87 }
88
89 function getSkinNames() {
90 global $wgValidSkinNames;
91 return $wgValidSkinNames;
92 }
93
94 function getStylesheet() {
95 return 'common/wikistandard.css';
96 }
97
98 function getSkinName() {
99 return 'standard';
100 }
101
102 /**
103 * Get/set accessor for delayed link colouring
104 */
105 function postParseLinkColour( $setting = NULL ) {
106 return wfSetVar( $this->postParseLinkColour, $setting );
107 }
108
109 function qbSetting() {
110 global $wgOut, $wgUser;
111
112 if ( $wgOut->isQuickbarSuppressed() ) { return 0; }
113 $q = $wgUser->getOption( 'quickbar' );
114 if ( '' == $q ) { $q = 0; }
115 return $q;
116 }
117
118 function initPage( &$out ) {
119 $fname = 'Skin::initPage';
120 wfProfileIn( $fname );
121
122 $out->addLink( array( 'rel' => 'shortcut icon', 'href' => '/favicon.ico' ) );
123
124 $this->addMetadataLinks($out);
125
126 wfProfileOut( $fname );
127 }
128
129 function addMetadataLinks( &$out ) {
130 global $wgTitle, $wgEnableDublinCoreRdf, $wgEnableCreativeCommonsRdf, $wgRdfMimeType, $action;
131 global $wgRightsPage, $wgRightsUrl;
132
133 if( $out->isArticleRelated() ) {
134 # note: buggy CC software only reads first "meta" link
135 if( $wgEnableCreativeCommonsRdf ) {
136 $out->addMetadataLink( array(
137 'title' => 'Creative Commons',
138 'type' => 'application/rdf+xml',
139 'href' => $wgTitle->getLocalURL( 'action=creativecommons') ) );
140 }
141 if( $wgEnableDublinCoreRdf ) {
142 $out->addMetadataLink( array(
143 'title' => 'Dublin Core',
144 'type' => 'application/rdf+xml',
145 'href' => $wgTitle->getLocalURL( 'action=dublincore' ) ) );
146 }
147 }
148 $copyright = '';
149 if( $wgRightsPage ) {
150 $copy = Title::newFromText( $wgRightsPage );
151 if( $copy ) {
152 $copyright = $copy->getLocalURL();
153 }
154 }
155 if( !$copyright && $wgRightsUrl ) {
156 $copyright = $wgRightsUrl;
157 }
158 if( $copyright ) {
159 $out->addLink( array(
160 'rel' => 'copyright',
161 'href' => $copyright ) );
162 }
163 }
164
165 function outputPage( &$out ) {
166 global $wgDebugComments;
167
168 wfProfileIn( 'Skin::outputPage' );
169 $this->initPage( $out );
170 $out->out( $out->headElement() );
171
172 $out->out( "\n<body" );
173 $ops = $this->getBodyOptions();
174 foreach ( $ops as $name => $val ) {
175 $out->out( " $name='$val'" );
176 }
177 $out->out( ">\n" );
178 if ( $wgDebugComments ) {
179 $out->out( "<!-- Wiki debugging output:\n" .
180 $out->mDebugtext . "-->\n" );
181 }
182 $out->out( $this->beforeContent() );
183
184 $out->out( $out->mBodytext . "\n" );
185
186 $out->out( $this->afterContent() );
187
188 wfProfileClose();
189 $out->out( $out->reportTime() );
190
191 $out->out( "\n</body></html>" );
192 }
193
194 function getHeadScripts() {
195 global $wgStylePath, $wgUser, $wgContLang, $wgAllowUserJs;
196 $r = "<script type=\"text/javascript\" src=\"{$wgStylePath}/common/wikibits.js\"></script>\n";
197 if( $wgAllowUserJs && $wgUser->getID() != 0 ) { # logged in
198 $userpage = $wgContLang->getNsText( Namespace::getUser() ) . ":" . $wgUser->getName();
199 $userjs = htmlspecialchars($this->makeUrl($userpage.'/'.$this->getSkinName().'.js', 'action=raw&ctype=text/javascript'));
200 $r .= '<script type="text/javascript" src="'.$userjs."\"></script>\n";
201 }
202 return $r;
203 }
204
205 # get the user/site-specific stylesheet, SkinPHPTal called from RawPage.php (settings are cached that way)
206 function getUserStylesheet() {
207 global $wgOut, $wgStylePath, $wgContLang, $wgUser, $wgRequest, $wgTitle, $wgAllowUserCss;
208 $sheet = $this->getStylesheet();
209 $action = $wgRequest->getText('action');
210 $s = "@import \"$wgStylePath/$sheet\";\n";
211 if($wgContLang->isRTL()) $s .= "@import \"$wgStylePath/common/common_rtl.css\";\n";
212 if( $wgAllowUserCss && $wgUser->getID() != 0 ) { # logged in
213 if($wgTitle->isCssSubpage() and $action == 'submit' and $wgTitle->userCanEditCssJsSubpage()) {
214 $s .= $wgRequest->getText('wpTextbox1');
215 } else {
216 $userpage = $wgContLang->getNsText( Namespace::getUser() ) . ":" . $wgUser->getName();
217 $s.= '@import "'.$this->makeUrl($userpage.'/'.$this->getSkinName().'.css', 'action=raw&ctype=text/css').'";'."\n";
218 }
219 }
220 $s .= $this->doGetUserStyles();
221 return $s."\n";
222 }
223
224 /**
225 * placeholder, returns generated js in monobook
226 */
227 function getUserJs() { return; }
228
229 /**
230 * Return html code that include User stylesheets
231 */
232 function getUserStyles() {
233 global $wgOut, $wgStylePath, $wgLang;
234 $s = "<style type='text/css'>\n";
235 $s .= "/*/*/ /*<![CDATA[*/\n"; # <-- Hide the styles from Netscape 4 without hiding them from IE/Mac
236 $s .= $this->getUserStylesheet();
237 $s .= "/*]]>*/ /* */\n";
238 $s .= "</style>\n";
239 return $s;
240 }
241
242 /**
243 * Some styles that are set by user through the user settings interface.
244 */
245 function doGetUserStyles() {
246 global $wgUser, $wgContLang;
247
248 $csspage = $wgContLang->getNsText( NS_MEDIAWIKI ) . ':' . $this->getSkinName() . '.css';
249 $s = '@import "'.$this->makeUrl($csspage, 'action=raw&ctype=text/css')."\";\n";
250
251 if ( 1 == $wgUser->getOption( 'underline' ) ) {
252 # Don't override browser settings
253 } else {
254 # CHECK MERGE @@@
255 # Force no underline
256 $s .= "a { text-decoration: none; }\n";
257 }
258 if ( 1 == $wgUser->getOption( 'highlightbroken' ) ) {
259 $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";
260 }
261 if ( 1 == $wgUser->getOption( 'justify' ) ) {
262 $s .= "#article { text-align: justify; }\n";
263 }
264 return $s;
265 }
266
267 function getBodyOptions() {
268 global $wgUser, $wgTitle, $wgNamespaceBackgrounds, $wgOut, $wgRequest;
269
270 extract( $wgRequest->getValues( 'oldid', 'redirect', 'diff' ) );
271
272 if ( 0 != $wgTitle->getNamespace() ) {
273 $a = array( 'bgcolor' => '#ffffec' );
274 }
275 else $a = array( 'bgcolor' => '#FFFFFF' );
276 if($wgOut->isArticle() && $wgUser->getOption('editondblclick') &&
277 (!$wgTitle->isProtected() || $wgUser->isAllowed('protect')) ) {
278 $t = wfMsg( 'editthispage' );
279 $oid = $red = '';
280 if ( !empty($redirect) && $redirect == 'no' ) {
281 $red = "&redirect={$redirect}";
282 }
283 if ( !empty($oldid) && ! isset( $diff ) ) {
284 $oid = "&oldid=" . IntVal( $oldid );
285 }
286 $s = $wgTitle->getFullURL( "action=edit{$oid}{$red}" );
287 $s = 'document.location = "' .$s .'";';
288 $a += array ('ondblclick' => $s);
289
290 }
291 $a['onload'] = $wgOut->getOnloadHandler();
292 return $a;
293 }
294
295 function getExternalLinkAttributes( $link, $text, $class='' ) {
296 global $wgUser, $wgOut, $wgContLang;
297
298 $same = ($link == $text);
299 $link = urldecode( $link );
300 $link = $wgContLang->checkTitleEncoding( $link );
301 $link = str_replace( '_', ' ', $link );
302 $link = htmlspecialchars( $link );
303
304 $r = ($class != '') ? " class='$class'" : " class='external'";
305
306 if ( !$same && $wgUser->getOption( 'hover' ) ) {
307 $r .= " title=\"{$link}\"";
308 }
309 return $r;
310 }
311
312 function getInternalLinkAttributes( $link, $text, $broken = false ) {
313 global $wgUser, $wgOut;
314
315 $link = urldecode( $link );
316 $link = str_replace( '_', ' ', $link );
317 $link = htmlspecialchars( $link );
318
319 if ( $broken == 'stub' ) {
320 $r = ' class="stub"';
321 } else if ( $broken == 'yes' ) {
322 $r = ' class="new"';
323 } else {
324 $r = '';
325 }
326
327 if ( 1 == $wgUser->getOption( 'hover' ) ) {
328 $r .= " title=\"{$link}\"";
329 }
330 return $r;
331 }
332
333 /**
334 * @param bool $broken
335 */
336 function getInternalLinkAttributesObj( &$nt, $text, $broken = false ) {
337 global $wgUser, $wgOut;
338
339 if ( $broken == 'stub' ) {
340 $r = ' class="stub"';
341 } else if ( $broken == 'yes' ) {
342 $r = ' class="new"';
343 } else {
344 $r = '';
345 }
346
347 if ( 1 == $wgUser->getOption( 'hover' ) ) {
348 $r .= ' title="' . $nt->getEscapedText() . '"';
349 }
350 return $r;
351 }
352
353 /**
354 * URL to the logo
355 */
356 function getLogo() {
357 global $wgLogo;
358 return $wgLogo;
359 }
360
361 /**
362 * This will be called immediately after the <body> tag. Split into
363 * two functions to make it easier to subclass.
364 */
365 function beforeContent() {
366 global $wgUser, $wgOut;
367
368 return $this->doBeforeContent();
369 }
370
371 function doBeforeContent() {
372 global $wgUser, $wgOut, $wgTitle, $wgContLang, $wgSiteNotice;
373 $fname = 'Skin::doBeforeContent';
374 wfProfileIn( $fname );
375
376 $s = '';
377 $qb = $this->qbSetting();
378
379 if( $langlinks = $this->otherLanguages() ) {
380 $rows = 2;
381 $borderhack = '';
382 } else {
383 $rows = 1;
384 $langlinks = false;
385 $borderhack = 'class="top"';
386 }
387
388 $s .= "\n<div id='content'>\n<div id='topbar'>\n" .
389 "<table border='0' cellspacing='0' width='98%'>\n<tr>\n";
390
391 $shove = ($qb != 0);
392 $left = ($qb == 1 || $qb == 3);
393 if($wgContLang->isRTL()) $left = !$left;
394
395 if ( !$shove ) {
396 $s .= "<td class='top' align='left' valign='top' rowspan='{$rows}'>\n" .
397 $this->logoText() . '</td>';
398 } elseif( $left ) {
399 $s .= $this->getQuickbarCompensator( $rows );
400 }
401 $l = $wgContLang->isRTL() ? 'right' : 'left';
402 $s .= "<td {$borderhack} align='$l' valign='top'>\n";
403
404 $s .= $this->topLinks() ;
405 $s .= "<p class='subtitle'>" . $this->pageTitleLinks() . "</p>\n";
406
407 $r = $wgContLang->isRTL() ? "left" : "right";
408 $s .= "</td>\n<td {$borderhack} valign='top' align='$r' nowrap='nowrap'>";
409 $s .= $this->nameAndLogin();
410 $s .= "\n<br />" . $this->searchForm() . "</td>";
411
412 if ( $langlinks ) {
413 $s .= "</tr>\n<tr>\n<td class='top' colspan=\"2\">$langlinks</td>\n";
414 }
415
416 if ( $shove && !$left ) { # Right
417 $s .= $this->getQuickbarCompensator( $rows );
418 }
419 $s .= "</tr>\n</table>\n</div>\n";
420 $s .= "\n<div id='article'>\n";
421
422 if( $wgSiteNotice ) {
423 $s .= "\n<div id='siteNotice'>$wgSiteNotice</div>\n";
424 }
425 $s .= $this->pageTitle();
426 $s .= $this->pageSubtitle() ;
427 $s .= $this->getCategories();
428 wfProfileOut( $fname );
429 return $s;
430 }
431
432
433 function getCategoryLinks () {
434 global $wgOut, $wgTitle, $wgUser, $wgParser;
435 global $wgUseCategoryMagic, $wgUseCategoryBrowser, $wgLang;
436
437 if( !$wgUseCategoryMagic ) return '' ;
438 if( count( $wgOut->mCategoryLinks ) == 0 ) return '';
439
440 # Taken out so that they will be displayed in previews -- TS
441 #if( !$wgOut->isArticle() ) return '';
442
443 $t = implode ( ' | ' , $wgOut->mCategoryLinks ) ;
444 $s = $this->makeKnownLink( 'Special:Categories',
445 wfMsg( 'categories' ), 'article=' . urlencode( $wgTitle->getPrefixedDBkey() ) )
446 . ': ' . $t;
447
448 # optional 'dmoz-like' category browser. Will be shown under the list
449 # of categories an article belong to
450 if($wgUseCategoryBrowser) {
451 $s .= '<br/><hr/>';
452
453 # get a big array of the parents tree
454 $parenttree = $wgTitle->getParentCategoryTree();
455
456 # Render the array as a serie of links
457 function walkThrough ($tree) {
458 global $wgUser;
459 $sk = $wgUser->getSkin();
460 $return = '';
461 foreach($tree as $element => $parent) {
462 if(empty($parent)) {
463 # element start a new list
464 $return .= '<br />';
465 } else {
466 # grab the others elements
467 $return .= walkThrough($parent);
468 }
469 # add our current element to the list
470 $eltitle = Title::NewFromText($element);
471 # FIXME : should be makeLink() [AV]
472 $return .= $sk->makeLink($element, $eltitle->getText()).' &gt; ';
473 }
474 return $return;
475 }
476
477 $s .= walkThrough($parenttree);
478 }
479
480 return $s;
481 }
482
483 function getCategories() {
484 $catlinks=$this->getCategoryLinks();
485 if(!empty($catlinks)) {
486 return "<p class='catlinks'>{$catlinks}</p>";
487 }
488 }
489
490 function getQuickbarCompensator( $rows = 1 ) {
491 return "<td width='152' rowspan='{$rows}'>&nbsp;</td>";
492 }
493
494 # This gets called immediately before the </body> tag.
495 #
496 function afterContent() {
497 global $wgUser, $wgOut, $wgServer;
498 global $wgTitle, $wgLang;
499
500 $printfooter = "<div class=\"printfooter\">\n" . $this->printFooter() . "</div>\n";
501 return $printfooter . $this->doAfterContent();
502 }
503
504 function printSource() {
505 global $wgTitle;
506 $url = htmlspecialchars( $wgTitle->getFullURL() );
507 return wfMsg( "retrievedfrom", "<a href=\"$url\">$url</a>" );
508 }
509
510 function printFooter() {
511 return "<p>" . $this->printSource() .
512 "</p>\n\n<p>" . $this->pageStats() . "</p>\n";
513 }
514
515 function doAfterContent() {
516 # overloaded by derived classes
517 }
518
519 function pageTitleLinks() {
520 global $wgOut, $wgTitle, $wgUser, $wgContLang, $wgUseApproval, $wgRequest;
521
522 extract( $wgRequest->getValues( 'oldid', 'diff' ) );
523 $action = $wgRequest->getText( 'action' );
524
525 $s = $this->printableLink();
526 $disclaimer = $this->disclaimerLink(); # may be empty
527 if( $disclaimer ) {
528 $s .= ' | ' . $disclaimer;
529 }
530
531 if ( $wgOut->isArticleRelated() ) {
532 if ( $wgTitle->getNamespace() == Namespace::getImage() ) {
533 $name = $wgTitle->getDBkey();
534 $link = htmlspecialchars( Image::wfImageUrl( $name ) );
535 $style = $this->getInternalLinkAttributes( $link, $name );
536 $s .= " | <a href=\"{$link}\"{$style}>{$name}</a>";
537 }
538 # This will show the "Approve" link if $wgUseApproval=true;
539 if ( isset ( $wgUseApproval ) && $wgUseApproval )
540 {
541 $t = $wgTitle->getDBkey();
542 $name = 'Approve this article' ;
543 $link = "http://test.wikipedia.org/w/magnus/wiki.phtml?title={$t}&action=submit&doit=1" ;
544 #htmlspecialchars( wfImageUrl( $name ) );
545 $style = $this->getExternalLinkAttributes( $link, $name );
546 $s .= " | <a href=\"{$link}\"{$style}>{$name}</a>" ;
547 }
548 }
549 if ( 'history' == $action || isset( $diff ) || isset( $oldid ) ) {
550 $s .= ' | ' . $this->makeKnownLink( $wgTitle->getPrefixedText(),
551 wfMsg( 'currentrev' ) );
552 }
553
554 if ( $wgUser->getNewtalk() ) {
555 # do not show "You have new messages" text when we are viewing our
556 # own talk page
557
558 if(!(strcmp($wgTitle->getText(),$wgUser->getName()) == 0 &&
559 $wgTitle->getNamespace()==Namespace::getTalk(Namespace::getUser()))) {
560 $n =$wgUser->getName();
561 $tl = $this->makeKnownLink( $wgContLang->getNsText(
562 Namespace::getTalk( Namespace::getUser() ) ) . ":{$n}",
563 wfMsg('newmessageslink') );
564 $s.= ' | <strong>'. wfMsg( 'newmessages', $tl ) . '</strong>';
565 # disable caching
566 $wgOut->setSquidMaxage(0);
567 $wgOut->enableClientCache(false);
568 }
569 }
570
571 $undelete = $this->getUndeleteLink();
572 if( !empty( $undelete ) ) {
573 $s .= ' | '.$undelete;
574 }
575 return $s;
576 }
577
578 function getUndeleteLink() {
579 global $wgUser, $wgTitle, $wgContLang, $action;
580 if( $wgUser->isAllowed('rollback') &&
581 (($wgTitle->getArticleId() == 0) || ($action == "history")) &&
582 ($n = $wgTitle->isDeleted() ) ) {
583 return wfMsg( 'thisisdeleted',
584 $this->makeKnownLink(
585 $wgContLang->SpecialPage( 'Undelete/' . $wgTitle->getPrefixedDBkey() ),
586 wfMsg( 'restorelink', $n ) ) );
587 }
588 return '';
589 }
590
591 function printableLink() {
592 global $wgOut, $wgFeedClasses, $wgRequest;
593
594 $baseurl = $_SERVER['REQUEST_URI'];
595 if( strpos( '?', $baseurl ) == false ) {
596 $baseurl .= '?';
597 } else {
598 $baseurl .= '&';
599 }
600 $baseurl = htmlspecialchars( $baseurl );
601 $printurl = $wgRequest->escapeAppendQuery( 'printable=yes' );
602
603 $s = "<a href=\"$printurl\">" . wfMsg( 'printableversion' ) . '</a>';
604 if( $wgOut->isSyndicated() ) {
605 foreach( $wgFeedClasses as $format => $class ) {
606 $feedurl = $wgRequest->escapeAppendQuery( "feed=$format" );
607 $s .= " | <a href=\"$feedurl\">{$format}</a>";
608 }
609 }
610 return $s;
611 }
612
613 function pageTitle() {
614 global $wgOut, $wgTitle, $wgUser;
615
616 $s = '<h1 class="pagetitle">' . htmlspecialchars( $wgOut->getPageTitle() ) . '</h1>';
617 if($wgUser->getOption( 'editsectiononrightclick' ) && $wgTitle->userCanEdit()) { $s=$this->editSectionScript($wgTitle, 0,$s);}
618 return $s;
619 }
620
621 function pageSubtitle() {
622 global $wgOut;
623
624 $sub = $wgOut->getSubtitle();
625 if ( '' == $sub ) {
626 global $wgExtraSubtitle;
627 $sub = wfMsg( 'tagline' ) . $wgExtraSubtitle;
628 }
629 $subpages = $this->subPageSubtitle();
630 $sub .= !empty($subpages)?"</p><p class='subpages'>$subpages":'';
631 $s = "<p class='subtitle'>{$sub}</p>\n";
632 return $s;
633 }
634
635 function subPageSubtitle() {
636 global $wgOut,$wgTitle,$wgNamespacesWithSubpages;
637 $subpages = '';
638 if($wgOut->isArticle() && !empty($wgNamespacesWithSubpages[$wgTitle->getNamespace()])) {
639 $ptext=$wgTitle->getPrefixedText();
640 if(preg_match('/\//',$ptext)) {
641 $links = explode('/',$ptext);
642 $c = 0;
643 $growinglink = '';
644 foreach($links as $link) {
645 $c++;
646 if ($c<count($links)) {
647 $growinglink .= $link;
648 $getlink = $this->makeLink( $growinglink, $link );
649 if(preg_match('/class="new"/i',$getlink)) { break; } # this is a hack, but it saves time
650 if ($c>1) {
651 $subpages .= ' | ';
652 } else {
653 $subpages .= '&lt; ';
654 }
655 $subpages .= $getlink;
656 $growinglink .= '/';
657 }
658 }
659 }
660 }
661 return $subpages;
662 }
663
664 function nameAndLogin() {
665 global $wgUser, $wgTitle, $wgLang, $wgContLang, $wgShowIPinHeader, $wgIP;
666
667 $li = $wgContLang->specialPage( 'Userlogin' );
668 $lo = $wgContLang->specialPage( 'Userlogout' );
669
670 $s = '';
671 if ( 0 == $wgUser->getID() ) {
672 if( $wgShowIPinHeader && isset( $_COOKIE[ini_get('session.name')] ) ) {
673 $n = $wgIP;
674
675 $tl = $this->makeKnownLink( $wgContLang->getNsText(
676 Namespace::getTalk( Namespace::getUser() ) ) . ":{$n}",
677 $wgContLang->getNsText( Namespace::getTalk( 0 ) ) );
678
679 $s .= $n . ' ('.$tl.')';
680 } else {
681 $s .= wfMsg('notloggedin');
682 }
683
684 $rt = $wgTitle->getPrefixedURL();
685 if ( 0 == strcasecmp( urlencode( $lo ), $rt ) ) {
686 $q = '';
687 } else { $q = "returnto={$rt}"; }
688
689 $s .= "\n<br />" . $this->makeKnownLink( $li,
690 wfMsg( 'login' ), $q );
691 } else {
692 $n = $wgUser->getName();
693 $rt = $wgTitle->getPrefixedURL();
694 $tl = $this->makeKnownLink( $wgContLang->getNsText(
695 Namespace::getTalk( Namespace::getUser() ) ) . ":{$n}",
696 $wgContLang->getNsText( Namespace::getTalk( 0 ) ) );
697
698 $tl = " ({$tl})";
699
700 $s .= $this->makeKnownLink( $wgContLang->getNsText(
701 Namespace::getUser() ) . ":{$n}", $n ) . "{$tl}<br />" .
702 $this->makeKnownLink( $lo, wfMsg( 'logout' ),
703 "returnto={$rt}" ) . ' | ' .
704 $this->specialLink( 'preferences' );
705 }
706 $s .= ' | ' . $this->makeKnownLink( wfMsgForContent( 'helppage' ),
707 wfMsg( 'help' ) );
708
709 return $s;
710 }
711
712 function getSearchLink() {
713 $searchPage =& Title::makeTitle( NS_SPECIAL, 'Search' );
714 return $searchPage->getLocalURL();
715 }
716
717 function escapeSearchLink() {
718 return htmlspecialchars( $this->getSearchLink() );
719 }
720
721 function searchForm() {
722 global $wgRequest;
723 $search = $wgRequest->getText( 'search' );
724
725 $s = '<form name="search" class="inline" method="post" action="'
726 . $this->escapeSearchLink() . "\">\n"
727 . '<input type="text" name="search" size="19" value="'
728 . htmlspecialchars(substr($search,0,256)) . "\" />\n"
729 . '<input type="submit" name="go" value="' . wfMsg ('go') . '" />&nbsp;'
730 . '<input type="submit" name="fulltext" value="' . wfMsg ('search') . "\" />\n</form>";
731
732 return $s;
733 }
734
735 function topLinks() {
736 global $wgOut;
737 $sep = " |\n";
738
739 $s = $this->mainPageLink() . $sep
740 . $this->specialLink( 'recentchanges' );
741
742 if ( $wgOut->isArticleRelated() ) {
743 $s .= $sep . $this->editThisPage()
744 . $sep . $this->historyLink();
745 }
746 # Many people don't like this dropdown box
747 #$s .= $sep . $this->specialPagesList();
748
749 return $s;
750 }
751
752 function bottomLinks() {
753 global $wgOut, $wgUser, $wgTitle;
754 $sep = " |\n";
755
756 $s = '';
757 if ( $wgOut->isArticleRelated() ) {
758 $s .= '<strong>' . $this->editThisPage() . '</strong>';
759 if ( 0 != $wgUser->getID() ) {
760 $s .= $sep . $this->watchThisPage();
761 }
762 $s .= $sep . $this->talkLink()
763 . $sep . $this->historyLink()
764 . $sep . $this->whatLinksHere()
765 . $sep . $this->watchPageLinksLink();
766
767 if ( $wgTitle->getNamespace() == Namespace::getUser()
768 || $wgTitle->getNamespace() == Namespace::getTalk(Namespace::getUser()) )
769
770 {
771 $id=User::idFromName($wgTitle->getText());
772 $ip=User::isIP($wgTitle->getText());
773
774 if($id || $ip) { # both anons and non-anons have contri list
775 $s .= $sep . $this->userContribsLink();
776 }
777 if( $this->showEmailUser( $id ) ) {
778 $s .= $sep . $this->emailUserLink();
779 }
780 }
781 if ( $wgTitle->getArticleId() ) {
782 $s .= "\n<br />";
783 if($wgUser->isAllowed('delete')) { $s .= $this->deleteThisPage(); }
784 if($wgUser->isAllowed('protect')) { $s .= $sep . $this->protectThisPage(); }
785 if($wgUser->isAllowed('move')) { $s .= $sep . $this->moveThisPage(); }
786 }
787 $s .= "<br />\n" . $this->otherLanguages();
788 }
789 return $s;
790 }
791
792 function pageStats() {
793 global $wgOut, $wgLang, $wgArticle, $wgRequest;
794 global $wgDisableCounters, $wgMaxCredits, $wgShowCreditsIfMax;
795
796 extract( $wgRequest->getValues( 'oldid', 'diff' ) );
797 if ( ! $wgOut->isArticle() ) { return ''; }
798 if ( isset( $oldid ) || isset( $diff ) ) { return ''; }
799 if ( 0 == $wgArticle->getID() ) { return ''; }
800
801 $s = '';
802 if ( !$wgDisableCounters ) {
803 $count = $wgLang->formatNum( $wgArticle->getCount() );
804 if ( $count ) {
805 $s = wfMsg( 'viewcount', $count );
806 }
807 }
808
809 if (isset($wgMaxCredits) && $wgMaxCredits != 0) {
810 require_once("Credits.php");
811 $s .= ' ' . getCredits($wgArticle, $wgMaxCredits, $wgShowCreditsIfMax);
812 } else {
813 $s .= $this->lastModified();
814 }
815
816 return $s . ' ' . $this->getCopyright();
817 }
818
819 function getCopyright() {
820 global $wgRightsPage, $wgRightsUrl, $wgRightsText, $wgRequest;
821
822
823 $oldid = $wgRequest->getVal( 'oldid' );
824 $diff = $wgRequest->getVal( 'diff' );
825
826 if ( !is_null( $oldid ) && is_null( $diff ) && wfMsgForContent( 'history_copyright' ) !== '-' ) {
827 $msg = 'history_copyright';
828 } else {
829 $msg = 'copyright';
830 }
831
832 $out = '';
833 if( $wgRightsPage ) {
834 $link = $this->makeKnownLink( $wgRightsPage, $wgRightsText );
835 } elseif( $wgRightsUrl ) {
836 $link = $this->makeExternalLink( $wgRightsUrl, $wgRightsText );
837 } else {
838 # Give up now
839 return $out;
840 }
841 $out .= wfMsgForContent( $msg, $link );
842 return $out;
843 }
844
845 function getCopyrightIcon() {
846 global $wgRightsPage, $wgRightsUrl, $wgRightsText, $wgRightsIcon;
847 $out = '';
848 if( $wgRightsIcon ) {
849 $icon = htmlspecialchars( $wgRightsIcon );
850 if( $wgRightsUrl ) {
851 $url = htmlspecialchars( $wgRightsUrl );
852 $out .= '<a href="'.$url.'">';
853 }
854 $text = htmlspecialchars( $wgRightsText );
855 $out .= "<img src=\"$icon\" alt='$text' />";
856 if( $wgRightsUrl ) {
857 $out .= '</a>';
858 }
859 }
860 return $out;
861 }
862
863 function getPoweredBy() {
864 global $wgStylePath;
865 $url = htmlspecialchars( "$wgStylePath/common/images/poweredby_mediawiki_88x31.png" );
866 $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="MediaWiki" /></a>';
867 return $img;
868 }
869
870 function lastModified() {
871 global $wgLang, $wgArticle;
872
873 $timestamp = $wgArticle->getTimestamp();
874 if ( $timestamp ) {
875 $d = $wgLang->timeanddate( $wgArticle->getTimestamp(), true );
876 $s = ' ' . wfMsg( 'lastmodified', $d );
877 } else {
878 $s = '';
879 }
880 return $s;
881 }
882
883 function logoText( $align = '' ) {
884 if ( '' != $align ) { $a = " align='{$align}'"; }
885 else { $a = ''; }
886
887 $mp = wfMsg( 'mainpage' );
888 $titleObj = Title::newFromText( $mp );
889 if ( is_object( $titleObj ) ) {
890 $url = $titleObj->escapeLocalURL();
891 } else {
892 $url = '';
893 }
894
895 $logourl = $this->getLogo();
896 $s = "<a href='{$url}'><img{$a} src='{$logourl}' alt='[{$mp}]' /></a>";
897 return $s;
898 }
899
900 /**
901 * show a drop-down box of special pages
902 * @TODO crash bug913. Need to be rewrote completly.
903 */
904 function specialPagesList() {
905 global $wgUser, $wgOut, $wgContLang, $wgServer, $wgRedirectScript;
906 require_once('SpecialPage.php');
907 $a = array();
908 $pages = SpecialPage::getPages();
909
910 foreach ( $pages[''] as $name => $page ) {
911 $a[$name] = $page->getDescription();
912 }
913 if ( $wgUser->isSysop() )
914 {
915 foreach ( $pages['sysop'] as $name => $page ) {
916 $a[$name] = $page->getDescription();
917 }
918 }
919 if ( $wgUser->isDeveloper() )
920 {
921 foreach ( $pages['developer'] as $name => $page ) {
922 $a[$name] = $page->getDescription() ;
923 }
924 }
925 $go = wfMsg( 'go' );
926 $sp = wfMsg( 'specialpages' );
927 $spp = $wgContLang->specialPage( 'Specialpages' );
928
929 $s = '<form id="specialpages" method="get" class="inline" ' .
930 'action="' . htmlspecialchars( "{$wgServer}{$wgRedirectScript}" ) . "\">\n";
931 $s .= "<select name=\"wpDropdown\">\n";
932 $s .= "<option value=\"{$spp}\">{$sp}</option>\n";
933
934 foreach ( $a as $name => $desc ) {
935 $p = $wgContLang->specialPage( $name );
936 $s .= "<option value=\"{$p}\">{$desc}</option>\n";
937 }
938 $s .= "</select>\n";
939 $s .= "<input type='submit' value=\"{$go}\" name='redirect' />\n";
940 $s .= "</form>\n";
941 return $s;
942 }
943
944 function mainPageLink() {
945 $mp = wfMsgForContent( 'mainpage' );
946 $mptxt = wfMsg( 'mainpage');
947 $s = $this->makeKnownLink( $mp, $mptxt );
948 return $s;
949 }
950
951 function copyrightLink() {
952 $s = $this->makeKnownLink( wfMsgForContent( 'copyrightpage' ),
953 wfMsg( 'copyrightpagename' ) );
954 return $s;
955 }
956
957 function aboutLink() {
958 $s = $this->makeKnownLink( wfMsgForContent( 'aboutpage' ),
959 wfMsg( 'aboutsite' ) );
960 return $s;
961 }
962
963
964 function disclaimerLink() {
965 $disclaimers = wfMsg( 'disclaimers' );
966 if ($disclaimers == '-') {
967 return "";
968 } else {
969 return $this->makeKnownLink( wfMsgForContent( 'disclaimerpage' ),
970 $disclaimers );
971 }
972 }
973
974 function editThisPage() {
975 global $wgOut, $wgTitle, $wgRequest;
976
977 $oldid = $wgRequest->getVal( 'oldid' );
978 $diff = $wgRequest->getVal( 'diff' );
979 $redirect = $wgRequest->getVal( 'redirect' );
980
981 if ( ! $wgOut->isArticleRelated() ) {
982 $s = wfMsg( 'protectedpage' );
983 } else {
984 $n = $wgTitle->getPrefixedText();
985 if ( $wgTitle->userCanEdit() ) {
986 $t = wfMsg( 'editthispage' );
987 } else {
988 #$t = wfMsg( "protectedpage" );
989 $t = wfMsg( 'viewsource' );
990 }
991 $oid = $red = '';
992
993 if ( !is_null( $redirect ) ) { $red = "&redirect={$redirect}"; }
994 if ( $oldid && ! isset( $diff ) ) {
995 $oid = '&oldid='.$oldid;
996 }
997 $s = $this->makeKnownLink( $n, $t, "action=edit{$oid}{$red}" );
998 }
999 return $s;
1000 }
1001
1002 function deleteThisPage() {
1003 global $wgUser, $wgOut, $wgTitle, $wgRequest;
1004
1005 $diff = $wgRequest->getVal( 'diff' );
1006 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('delete') ) {
1007 $n = $wgTitle->getPrefixedText();
1008 $t = wfMsg( 'deletethispage' );
1009
1010 $s = $this->makeKnownLink( $n, $t, 'action=delete' );
1011 } else {
1012 $s = '';
1013 }
1014 return $s;
1015 }
1016
1017 function protectThisPage() {
1018 global $wgUser, $wgOut, $wgTitle, $wgRequest;
1019
1020 $diff = $wgRequest->getVal( 'diff' );
1021 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('protect') ) {
1022 $n = $wgTitle->getPrefixedText();
1023
1024 if ( $wgTitle->isProtected() ) {
1025 $t = wfMsg( 'unprotectthispage' );
1026 $q = 'action=unprotect';
1027 } else {
1028 $t = wfMsg( 'protectthispage' );
1029 $q = 'action=protect';
1030 }
1031 $s = $this->makeKnownLink( $n, $t, $q );
1032 } else {
1033 $s = '';
1034 }
1035 return $s;
1036 }
1037
1038 function watchThisPage() {
1039 global $wgUser, $wgOut, $wgTitle;
1040
1041 if ( $wgOut->isArticleRelated() ) {
1042 $n = $wgTitle->getPrefixedText();
1043
1044 if ( $wgTitle->userIsWatching() ) {
1045 $t = wfMsg( 'unwatchthispage' );
1046 $q = 'action=unwatch';
1047 } else {
1048 $t = wfMsg( 'watchthispage' );
1049 $q = 'action=watch';
1050 }
1051 $s = $this->makeKnownLink( $n, $t, $q );
1052 } else {
1053 $s = wfMsg( 'notanarticle' );
1054 }
1055 return $s;
1056 }
1057
1058 function moveThisPage() {
1059 global $wgTitle, $wgContLang;
1060
1061 if ( $wgTitle->userCanMove() ) {
1062 $s = $this->makeKnownLink( $wgContLang->specialPage( 'Movepage' ),
1063 wfMsg( 'movethispage' ), 'target=' . $wgTitle->getPrefixedURL() );
1064 } // no message if page is protected - would be redundant
1065 return $s;
1066 }
1067
1068 function historyLink() {
1069 global $wgTitle;
1070
1071 $s = $this->makeKnownLink( $wgTitle->getPrefixedText(),
1072 wfMsg( 'history' ), 'action=history' );
1073 return $s;
1074 }
1075
1076 function whatLinksHere() {
1077 global $wgTitle, $wgContLang;
1078
1079 $s = $this->makeKnownLink( $wgContLang->specialPage( 'Whatlinkshere' ),
1080 wfMsg( 'whatlinkshere' ), 'target=' . $wgTitle->getPrefixedURL() );
1081 return $s;
1082 }
1083
1084 function userContribsLink() {
1085 global $wgTitle, $wgContLang;
1086
1087 $s = $this->makeKnownLink( $wgContLang->specialPage( 'Contributions' ),
1088 wfMsg( 'contributions' ), 'target=' . $wgTitle->getPartialURL() );
1089 return $s;
1090 }
1091
1092 function showEmailUser( $id ) {
1093 global $wgEnableEmail, $wgEnableUserEmail, $wgUser;
1094 return $wgEnableEmail &&
1095 $wgEnableUserEmail &&
1096 0 != $wgUser->getID() && # show only to signed in users
1097 0 != $id; # can only email non-anons
1098 }
1099
1100 function emailUserLink() {
1101 global $wgTitle, $wgContLang;
1102
1103 $s = $this->makeKnownLink( $wgContLang->specialPage( 'Emailuser' ),
1104 wfMsg( 'emailuser' ), 'target=' . $wgTitle->getPartialURL() );
1105 return $s;
1106 }
1107
1108 function watchPageLinksLink() {
1109 global $wgOut, $wgTitle, $wgContLang;
1110
1111 if ( ! $wgOut->isArticleRelated() ) {
1112 $s = '(' . wfMsg( 'notanarticle' ) . ')';
1113 } else {
1114 $s = $this->makeKnownLink( $wgContLang->specialPage(
1115 'Recentchangeslinked' ), wfMsg( 'recentchangeslinked' ),
1116 'target=' . $wgTitle->getPrefixedURL() );
1117 }
1118 return $s;
1119 }
1120
1121 function otherLanguages() {
1122 global $wgOut, $wgContLang, $wgTitle, $wgUseNewInterlanguage;
1123
1124 $a = $wgOut->getLanguageLinks();
1125 if ( 0 == count( $a ) ) {
1126 if ( !$wgUseNewInterlanguage ) return '';
1127 $ns = $wgContLang->getNsIndex ( $wgTitle->getNamespace () ) ;
1128 if ( $ns != 0 AND $ns != 1 ) return '' ;
1129 $pn = 'Intl' ;
1130 $x = 'mode=addlink&xt='.$wgTitle->getDBkey() ;
1131 return $this->makeKnownLink( $wgContLang->specialPage( $pn ),
1132 wfMsg( 'intl' ) , $x );
1133 }
1134
1135 if ( !$wgUseNewInterlanguage ) {
1136 $s = wfMsg( 'otherlanguages' ) . ': ';
1137 } else {
1138 global $wgContLanguageCode ;
1139 $x = 'mode=zoom&xt='.$wgTitle->getDBkey() ;
1140 $x .= '&xl='.$wgContLanguageCode ;
1141 $s = $this->makeKnownLink( $wgContLang->specialPage( 'Intl' ),
1142 wfMsg( 'otherlanguages' ) , $x ) . ': ' ;
1143 }
1144
1145 $s = wfMsg( 'otherlanguages' ) . ': ';
1146 $first = true;
1147 if($wgContLang->isRTL()) $s .= '<span dir="LTR">';
1148 foreach( $a as $l ) {
1149 if ( ! $first ) { $s .= ' | '; }
1150 $first = false;
1151
1152 $nt = Title::newFromText( $l );
1153 $url = $nt->getFullURL();
1154 $text = $wgContLang->getLanguageName( $nt->getInterwiki() );
1155
1156 if ( '' == $text ) { $text = $l; }
1157 $style = $this->getExternalLinkAttributes( $l, $text );
1158 $s .= "<a href=\"{$url}\"{$style}>{$text}</a>";
1159 }
1160 if($wgContLang->isRTL()) $s .= '</span>';
1161 return $s;
1162 }
1163
1164 function bugReportsLink() {
1165 $s = $this->makeKnownLink( wfMsgForContent( 'bugreportspage' ),
1166 wfMsg( 'bugreports' ) );
1167 return $s;
1168 }
1169
1170 function dateLink() {
1171 global $wgLinkCache;
1172 $t1 = Title::newFromText( gmdate( 'F j' ) );
1173 $t2 = Title::newFromText( gmdate( 'Y' ) );
1174
1175 $wgLinkCache->suspend();
1176 $id = $t1->getArticleID();
1177 $wgLinkCache->resume();
1178
1179 if ( 0 == $id ) {
1180 $s = $this->makeBrokenLink( $t1->getText() );
1181 } else {
1182 $s = $this->makeKnownLink( $t1->getText() );
1183 }
1184 $s .= ', ';
1185
1186 $wgLinkCache->suspend();
1187 $id = $t2->getArticleID();
1188 $wgLinkCache->resume();
1189
1190 if ( 0 == $id ) {
1191 $s .= $this->makeBrokenLink( $t2->getText() );
1192 } else {
1193 $s .= $this->makeKnownLink( $t2->getText() );
1194 }
1195 return $s;
1196 }
1197
1198 function talkLink() {
1199 global $wgContLang, $wgTitle, $wgLinkCache;
1200
1201 $tns = $wgTitle->getNamespace();
1202 if ( -1 == $tns ) { return ''; }
1203
1204 $pn = $wgTitle->getText();
1205 $tp = wfMsg( 'talkpage' );
1206 if ( Namespace::isTalk( $tns ) ) {
1207 $lns = Namespace::getSubject( $tns );
1208 switch($tns) {
1209 case 1:
1210 $text = wfMsg('articlepage');
1211 break;
1212 case 3:
1213 $text = wfMsg('userpage');
1214 break;
1215 case 5:
1216 $text = wfMsg('wikipediapage');
1217 break;
1218 case 7:
1219 $text = wfMsg('imagepage');
1220 break;
1221 default:
1222 $text= wfMsg('articlepage');
1223 }
1224 } else {
1225
1226 $lns = Namespace::getTalk( $tns );
1227 $text=$tp;
1228 }
1229 $n = $wgContLang->getNsText( $lns );
1230 if ( '' == $n ) { $link = $pn; }
1231 else { $link = $n.':'.$pn; }
1232
1233 $wgLinkCache->suspend();
1234 $s = $this->makeLink( $link, $text );
1235 $wgLinkCache->resume();
1236
1237 return $s;
1238 }
1239
1240 function commentLink() {
1241 global $wgContLang, $wgTitle, $wgLinkCache;
1242
1243 $tns = $wgTitle->getNamespace();
1244 if ( -1 == $tns ) { return ''; }
1245
1246 $lns = ( Namespace::isTalk( $tns ) ) ? $tns : Namespace::getTalk( $tns );
1247
1248 # assert Namespace::isTalk( $lns )
1249
1250 $n = $wgContLang->getNsText( $lns );
1251 $pn = $wgTitle->getText();
1252
1253 $link = $n.':'.$pn;
1254
1255 $wgLinkCache->suspend();
1256 $s = $this->makeKnownLink($link, wfMsg('postcomment'), 'action=edit&section=new');
1257 $wgLinkCache->resume();
1258
1259 return $s;
1260 }
1261
1262 /**
1263 * After all the page content is transformed into HTML, it makes
1264 * a final pass through here for things like table backgrounds.
1265 * @todo probably deprecated [AV]
1266 */
1267 function transformContent( $text ) {
1268 return $text;
1269 }
1270
1271 /**
1272 * Note: This function MUST call getArticleID() on the link,
1273 * otherwise the cache won't get updated properly. See LINKCACHE.DOC.
1274 */
1275 function makeLink( $title, $text = '', $query = '', $trail = '' ) {
1276 wfProfileIn( 'Skin::makeLink' );
1277 $nt = Title::newFromText( $title );
1278 if ($nt) {
1279 $result = $this->makeLinkObj( Title::newFromText( $title ), $text, $query, $trail );
1280 } else {
1281 wfDebug( 'Invalid title passed to Skin::makeLink(): "'.$title."\"\n" );
1282 $result = $text == "" ? $title : $text;
1283 }
1284
1285 wfProfileOut( 'Skin::makeLink' );
1286 return $result;
1287 }
1288
1289 function makeKnownLink( $title, $text = '', $query = '', $trail = '', $prefix = '',$aprops = '') {
1290 $nt = Title::newFromText( $title );
1291 if ($nt) {
1292 return $this->makeKnownLinkObj( Title::newFromText( $title ), $text, $query, $trail, $prefix , $aprops );
1293 } else {
1294 wfDebug( 'Invalid title passed to Skin::makeKnownLink(): "'.$title."\"\n" );
1295 return $text == '' ? $title : $text;
1296 }
1297 }
1298
1299 function makeBrokenLink( $title, $text = '', $query = '', $trail = '' ) {
1300 $nt = Title::newFromText( $title );
1301 if ($nt) {
1302 return $this->makeBrokenLinkObj( Title::newFromText( $title ), $text, $query, $trail );
1303 } else {
1304 wfDebug( 'Invalid title passed to Skin::makeBrokenLink(): "'.$title."\"\n" );
1305 return $text == '' ? $title : $text;
1306 }
1307 }
1308
1309 function makeStubLink( $title, $text = '', $query = '', $trail = '' ) {
1310 $nt = Title::newFromText( $title );
1311 if ($nt) {
1312 return $this->makeStubLinkObj( Title::newFromText( $title ), $text, $query, $trail );
1313 } else {
1314 wfDebug( 'Invalid title passed to Skin::makeStubLink(): "'.$title."\"\n" );
1315 return $text == '' ? $title : $text;
1316 }
1317 }
1318
1319 /**
1320 * Pass a title object, not a title string
1321 */
1322 function makeLinkObj( &$nt, $text= '', $query = '', $trail = '', $prefix = '' ) {
1323 global $wgOut, $wgUser, $wgLinkHolders;
1324 $fname = 'Skin::makeLinkObj';
1325
1326 # Fail gracefully
1327 if ( ! isset($nt) ) {
1328 # wfDebugDieBacktrace();
1329 return "<!-- ERROR -->{$prefix}{$text}{$trail}";
1330 }
1331
1332 if ( $nt->isExternal() ) {
1333 $u = $nt->getFullURL();
1334 $link = $nt->getPrefixedURL();
1335 if ( '' == $text ) { $text = $nt->getPrefixedText(); }
1336 $style = $this->getExternalLinkAttributes( $link, $text, 'extiw' );
1337
1338 $inside = '';
1339 if ( '' != $trail ) {
1340 if ( preg_match( '/^([a-z]+)(.*)$$/sD', $trail, $m ) ) {
1341 $inside = $m[1];
1342 $trail = $m[2];
1343 }
1344 }
1345 # Assume $this->postParseLinkColour(). This prevents
1346 # interwiki links from being parsed as external links.
1347 global $wgInterwikiLinkHolders;
1348 $t = "<a href=\"{$u}\"{$style}>{$text}{$inside}</a>";
1349 $nr = array_push($wgInterwikiLinkHolders, $t);
1350 $retVal = '<!--IWLINK '. ($nr-1) ."-->{$trail}";
1351 } elseif ( 0 == $nt->getNamespace() && "" == $nt->getText() ) {
1352 $retVal = $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix );
1353 } elseif ( ( -1 == $nt->getNamespace() ) ||
1354 ( NS_IMAGE == $nt->getNamespace() ) ) {
1355 $retVal = $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix );
1356 } else {
1357 if ( $this->postParseLinkColour() ) {
1358 $inside = '';
1359 if ( '' != $trail ) {
1360 if ( preg_match( $this->linktrail, $trail, $m ) ) {
1361 $inside = $m[1];
1362 $trail = $m[2];
1363 }
1364 }
1365
1366 # Allows wiki to bypass using linkcache, see OutputPage::parseLinkHolders()
1367 $nr = array_push( $wgLinkHolders['namespaces'], $nt->getNamespace() );
1368 $wgLinkHolders['dbkeys'][] = $nt->getDBkey();
1369 $wgLinkHolders['queries'][] = $query;
1370 $wgLinkHolders['texts'][] = $prefix.$text.$inside;
1371 $wgLinkHolders['titles'][] = $nt;
1372
1373 $retVal = '<!--LINK '. ($nr-1) ."-->{$trail}";
1374 } else {
1375 # Work out link colour immediately
1376 $aid = $nt->getArticleID() ;
1377 if ( 0 == $aid ) {
1378 $retVal = $this->makeBrokenLinkObj( $nt, $text, $query, $trail, $prefix );
1379 } else {
1380 $threshold = $wgUser->getOption('stubthreshold') ;
1381 if ( $threshold > 0 ) {
1382 $dbr =& wfGetDB( DB_SLAVE );
1383 $s = $dbr->selectRow( 'cur', array( 'LENGTH(cur_text) AS x', 'cur_namespace',
1384 'cur_is_redirect' ), array( 'cur_id' => $aid ), $fname ) ;
1385 if ( $s !== false ) {
1386 $size = $s->x;
1387 if ( $s->cur_is_redirect OR $s->cur_namespace != 0 ) {
1388 $size = $threshold*2 ; # Really big
1389 }
1390 $dbr->freeResult( $res );
1391 } else {
1392 $size = $threshold*2 ; # Really big
1393 }
1394 } else {
1395 $size = 1 ;
1396 }
1397 if ( $size < $threshold ) {
1398 $retVal = $this->makeStubLinkObj( $nt, $text, $query, $trail, $prefix );
1399 } else {
1400 $retVal = $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix );
1401 }
1402 }
1403 }
1404 }
1405 return $retVal;
1406 }
1407
1408 /**
1409 * Pass a title object, not a title string
1410 */
1411 function makeKnownLinkObj( &$nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '' ) {
1412 global $wgOut, $wgTitle, $wgInputEncoding;
1413
1414 $fname = 'Skin::makeKnownLinkObj';
1415 wfProfileIn( $fname );
1416
1417 if ( !is_object( $nt ) ) {
1418 wfProfileIn( $fname );
1419 return $text;
1420 }
1421
1422 $u = $nt->escapeLocalURL( $query );
1423 if ( '' != $nt->getFragment() ) {
1424 if( $nt->getPrefixedDbkey() == '' ) {
1425 $u = '';
1426 if ( '' == $text ) {
1427 $text = htmlspecialchars( $nt->getFragment() );
1428 }
1429 }
1430 $anchor = urlencode( do_html_entity_decode( str_replace(' ', '_', $nt->getFragment()), ENT_COMPAT, $wgInputEncoding ) );
1431 $replacearray = array(
1432 '%3A' => ':',
1433 '%' => '.'
1434 );
1435 $u .= '#' . str_replace(array_keys($replacearray),array_values($replacearray),$anchor);
1436 }
1437 if ( '' == $text ) {
1438 $text = htmlspecialchars( $nt->getPrefixedText() );
1439 }
1440 $style = $this->getInternalLinkAttributesObj( $nt, $text );
1441
1442 $inside = '';
1443 if ( '' != $trail ) {
1444 if ( preg_match( $this->linktrail, $trail, $m ) ) {
1445 $inside = $m[1];
1446 $trail = $m[2];
1447 }
1448 }
1449 $r = "<a href=\"{$u}\"{$style}{$aprops}>{$prefix}{$text}{$inside}</a>{$trail}";
1450 wfProfileOut( $fname );
1451 return $r;
1452 }
1453
1454 /**
1455 * Pass a title object, not a title string
1456 */
1457 function makeBrokenLinkObj( &$nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
1458 global $wgOut, $wgUser;
1459
1460 # Fail gracefully
1461 if ( ! isset($nt) ) {
1462 # wfDebugDieBacktrace();
1463 return "<!-- ERROR -->{$prefix}{$text}{$trail}";
1464 }
1465
1466 $fname = 'Skin::makeBrokenLinkObj';
1467 wfProfileIn( $fname );
1468
1469 if ( '' == $query ) {
1470 $q = 'action=edit';
1471 } else {
1472 $q = 'action=edit&'.$query;
1473 }
1474 $u = $nt->escapeLocalURL( $q );
1475
1476 if ( '' == $text ) {
1477 $text = htmlspecialchars( $nt->getPrefixedText() );
1478 }
1479 $style = $this->getInternalLinkAttributesObj( $nt, $text, "yes" );
1480
1481 $inside = '';
1482 if ( '' != $trail ) {
1483 if ( preg_match( $this->linktrail, $trail, $m ) ) {
1484 $inside = $m[1];
1485 $trail = $m[2];
1486 }
1487 }
1488 if ( $wgUser->getOption( 'highlightbroken' ) ) {
1489 $s = "<a href=\"{$u}\"{$style}>{$prefix}{$text}{$inside}</a>{$trail}";
1490 } else {
1491 $s = "{$prefix}{$text}{$inside}<a href=\"{$u}\"{$style}>?</a>{$trail}";
1492 }
1493
1494 wfProfileOut( $fname );
1495 return $s;
1496 }
1497
1498 /**
1499 * Pass a title object, not a title string
1500 */
1501 function makeStubLinkObj( &$nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
1502 global $wgOut, $wgUser;
1503
1504 $link = $nt->getPrefixedURL();
1505
1506 $u = $nt->escapeLocalURL( $query );
1507
1508 if ( '' == $text ) {
1509 $text = htmlspecialchars( $nt->getPrefixedText() );
1510 }
1511 $style = $this->getInternalLinkAttributesObj( $nt, $text, 'stub' );
1512
1513 $inside = '';
1514 if ( '' != $trail ) {
1515 if ( preg_match( $this->linktrail, $trail, $m ) ) {
1516 $inside = $m[1];
1517 $trail = $m[2];
1518 }
1519 }
1520 if ( $wgUser->getOption( 'highlightbroken' ) ) {
1521 $s = "<a href=\"{$u}\"{$style}>{$prefix}{$text}{$inside}</a>{$trail}";
1522 } else {
1523 $s = "{$prefix}{$text}{$inside}<a href=\"{$u}\"{$style}>!</a>{$trail}";
1524 }
1525 return $s;
1526 }
1527
1528 function makeSelfLinkObj( &$nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
1529 $u = $nt->escapeLocalURL( $query );
1530 if ( '' == $text ) {
1531 $text = htmlspecialchars( $nt->getPrefixedText() );
1532 }
1533 $inside = '';
1534 if ( '' != $trail ) {
1535 if ( preg_match( $this->linktrail, $trail, $m ) ) {
1536 $inside = $m[1];
1537 $trail = $m[2];
1538 }
1539 }
1540 return "<strong>{$prefix}{$text}{$inside}</strong>{$trail}";
1541 }
1542
1543 /* these are used extensively in SkinPHPTal, but also some other places */
1544 /*static*/ function makeSpecialUrl( $name, $urlaction='' ) {
1545 $title = Title::makeTitle( NS_SPECIAL, $name );
1546 $this->checkTitle($title, $name);
1547 return $title->getLocalURL( $urlaction );
1548 }
1549 /*static*/ function makeTalkUrl ( $name, $urlaction='' ) {
1550 $title = Title::newFromText( $name );
1551 $title = $title->getTalkPage();
1552 $this->checkTitle($title, $name);
1553 return $title->getLocalURL( $urlaction );
1554 }
1555 /*static*/ function makeArticleUrl ( $name, $urlaction='' ) {
1556 $title = Title::newFromText( $name );
1557 $title= $title->getSubjectPage();
1558 $this->checkTitle($title, $name);
1559 return $title->getLocalURL( $urlaction );
1560 }
1561 /*static*/ function makeI18nUrl ( $name, $urlaction='' ) {
1562 $title = Title::newFromText( wfMsgForContent($name) );
1563 $this->checkTitle($title, $name);
1564 return $title->getLocalURL( $urlaction );
1565 }
1566 /*static*/ function makeUrl ( $name, $urlaction='' ) {
1567 $title = Title::newFromText( $name );
1568 $this->checkTitle($title, $name);
1569 return $title->getLocalURL( $urlaction );
1570 }
1571
1572 # If url string starts with http, consider as external URL, else
1573 # internal
1574 /*static*/ function makeInternalOrExternalUrl( $name ) {
1575 if ( strncmp( $name, 'http', 4 ) == 0 ) {
1576 return $name;
1577 } else {
1578 return $this->makeUrl( $name );
1579 }
1580 }
1581
1582 # this can be passed the NS number as defined in Language.php
1583 /*static*/ function makeNSUrl( $name, $urlaction='', $namespace=0 ) {
1584 $title = Title::makeTitleSafe( $namespace, $name );
1585 $this->checkTitle($title, $name);
1586 return $title->getLocalURL( $urlaction );
1587 }
1588
1589 /* these return an array with the 'href' and boolean 'exists' */
1590 /*static*/ function makeUrlDetails ( $name, $urlaction='' ) {
1591 $title = Title::newFromText( $name );
1592 $this->checkTitle($title, $name);
1593 return array(
1594 'href' => $title->getLocalURL( $urlaction ),
1595 'exists' => $title->getArticleID() != 0?true:false
1596 );
1597 }
1598 /*static*/ function makeTalkUrlDetails ( $name, $urlaction='' ) {
1599 $title = Title::newFromText( $name );
1600 $title = $title->getTalkPage();
1601 $this->checkTitle($title, $name);
1602 return array(
1603 'href' => $title->getLocalURL( $urlaction ),
1604 'exists' => $title->getArticleID() != 0?true:false
1605 );
1606 }
1607 /*static*/ function makeArticleUrlDetails ( $name, $urlaction='' ) {
1608 $title = Title::newFromText( $name );
1609 $title= $title->getSubjectPage();
1610 $this->checkTitle($title, $name);
1611 return array(
1612 'href' => $title->getLocalURL( $urlaction ),
1613 'exists' => $title->getArticleID() != 0?true:false
1614 );
1615 }
1616 /*static*/ function makeI18nUrlDetails ( $name, $urlaction='' ) {
1617 $title = Title::newFromText( wfMsgForContent($name) );
1618 $this->checkTitle($title, $name);
1619 return array(
1620 'href' => $title->getLocalURL( $urlaction ),
1621 'exists' => $title->getArticleID() != 0?true:false
1622 );
1623 }
1624
1625 # make sure we have some title to operate on
1626 /*static*/ function checkTitle ( &$title, &$name ) {
1627 if(!is_object($title)) {
1628 $title = Title::newFromText( $name );
1629 if(!is_object($title)) {
1630 $title = Title::newFromText( '--error: link target missing--' );
1631 }
1632 }
1633 }
1634
1635 function fnamePart( $url ) {
1636 $basename = strrchr( $url, '/' );
1637 if ( false === $basename ) {
1638 $basename = $url;
1639 } else {
1640 $basename = substr( $basename, 1 );
1641 }
1642 return htmlspecialchars( $basename );
1643 }
1644
1645 function makeImage( $url, $alt = '' ) {
1646 global $wgOut;
1647 if ( '' == $alt ) {
1648 $alt = $this->fnamePart( $url );
1649 }
1650 $s = '<img src="'.$url.'" alt="'.$alt.'" />';
1651 return $s;
1652 }
1653
1654 function makeImageLink( $name, $url, $alt = '' ) {
1655 $nt = Title::makeTitleSafe( NS_IMAGE, $name );
1656 return $this->makeImageLinkObj( $nt, $alt );
1657 }
1658
1659 function makeImageLinkObj( $nt, $alt = '' ) {
1660 global $wgContLang, $wgUseImageResize;
1661 $img = Image::newFromTitle( $nt );
1662 $url = $img->getViewURL();
1663
1664 $align = '';
1665 $prefix = $postfix = '';
1666
1667 # Check if the alt text is of the form "options|alt text"
1668 # Options are:
1669 # * thumbnail make a thumbnail with enlarge-icon and caption, alignment depends on lang
1670 # * left no resizing, just left align. label is used for alt= only
1671 # * right same, but right aligned
1672 # * none same, but not aligned
1673 # * ___px scale to ___ pixels width, no aligning. e.g. use in taxobox
1674 # * center center the image
1675 # * framed Keep original image size, no magnify-button.
1676
1677 $part = explode( '|', $alt);
1678
1679 $mwThumb =& MagicWord::get( MAG_IMG_THUMBNAIL );
1680 $mwLeft =& MagicWord::get( MAG_IMG_LEFT );
1681 $mwRight =& MagicWord::get( MAG_IMG_RIGHT );
1682 $mwNone =& MagicWord::get( MAG_IMG_NONE );
1683 $mwWidth =& MagicWord::get( MAG_IMG_WIDTH );
1684 $mwCenter =& MagicWord::get( MAG_IMG_CENTER );
1685 $mwFramed =& MagicWord::get( MAG_IMG_FRAMED );
1686 $alt = '';
1687
1688 $height = $framed = $thumb = false;
1689 $manual_thumb = "" ;
1690
1691 foreach( $part as $key => $val ) {
1692 $val_parts = explode ( "=" , $val , 2 ) ;
1693 $left_part = array_shift ( $val_parts ) ;
1694 if ( $wgUseImageResize && ! is_null( $mwThumb->matchVariableStartToEnd($val) ) ) {
1695 $thumb=true;
1696 } elseif ( $wgUseImageResize && count ( $val_parts ) == 1 && ! is_null( $mwThumb->matchVariableStartToEnd($left_part) ) ) {
1697 # use manually specified thumbnail
1698 $thumb=true;
1699 $manual_thumb = array_shift ( $val_parts ) ;
1700 } elseif ( ! is_null( $mwRight->matchVariableStartToEnd($val) ) ) {
1701 # remember to set an alignment, don't render immediately
1702 $align = 'right';
1703 } elseif ( ! is_null( $mwLeft->matchVariableStartToEnd($val) ) ) {
1704 # remember to set an alignment, don't render immediately
1705 $align = 'left';
1706 } elseif ( ! is_null( $mwCenter->matchVariableStartToEnd($val) ) ) {
1707 # remember to set an alignment, don't render immediately
1708 $align = 'center';
1709 } elseif ( ! is_null( $mwNone->matchVariableStartToEnd($val) ) ) {
1710 # remember to set an alignment, don't render immediately
1711 $align = 'none';
1712 } elseif ( $wgUseImageResize && ! is_null( $match = $mwWidth->matchVariableStartToEnd($val) ) ) {
1713 # $match is the image width in pixels
1714 if ( preg_match( '/^([0-9]*)x([0-9]*)$/', $match, $m ) ) {
1715 $width = intval( $m[1] );
1716 $height = intval( $m[2] );
1717 } else {
1718 $width = intval($match);
1719 }
1720 } elseif ( ! is_null( $mwFramed->matchVariableStartToEnd($val) ) ) {
1721 $framed=true;
1722 } else {
1723 $alt = $val;
1724 }
1725 }
1726 if ( 'center' == $align )
1727 {
1728 $prefix = '<div class="center">';
1729 $postfix = '</div>';
1730 $align = 'none';
1731 }
1732
1733 if ( $thumb || $framed ) {
1734
1735 # Create a thumbnail. Alignment depends on language
1736 # writing direction, # right aligned for left-to-right-
1737 # languages ("Western languages"), left-aligned
1738 # for right-to-left-languages ("Semitic languages")
1739 #
1740 # If thumbnail width has not been provided, it is set
1741 # here to 180 pixels
1742 if ( $align == '' ) {
1743 $align = $wgContLang->isRTL() ? 'left' : 'right';
1744 }
1745 if ( ! isset($width) ) {
1746 $width = 180;
1747 }
1748 return $prefix.$this->makeThumbLinkObj( $img, $alt, $align, $width, $height, $framed, $manual_thumb ).$postfix;
1749
1750 } elseif ( isset($width) ) {
1751
1752 # Create a resized image, without the additional thumbnail
1753 # features
1754
1755 if ( ( ! $height === false )
1756 && ( $img->getHeight() * $width / $img->getWidth() > $height ) ) {
1757 $width = $img->getWidth() * $height / $img->getHeight();
1758 }
1759 if ( '' == $manual_thumb ) $url = $img->createThumb( $width );
1760 }
1761
1762 $alt = preg_replace( '/<[^>]*>/', '', $alt );
1763 $alt = preg_replace('/&(?!:amp;|#[Xx][0-9A-fa-f]+;|#[0-9]+;|[a-zA-Z0-9]+;)/', '&amp;', $alt);
1764 $alt = str_replace( array('<', '>', '"'), array('&lt;', '&gt;', '&quot;'), $alt );
1765
1766 $u = $nt->escapeLocalURL();
1767 if ( $url == '' ) {
1768 $s = wfMsg( 'missingimage', $img->getName() );
1769 $s .= "<br>{$alt}<br>{$url}<br>\n";
1770 } else {
1771 $s = '<a href="'.$u.'" class="image" title="'.$alt.'">' .
1772 '<img src="'.$url.'" alt="'.$alt.'" longdesc="'.$u.'" /></a>';
1773 }
1774 if ( '' != $align ) {
1775 $s = "<div class=\"float{$align}\"><span>{$s}</span></div>";
1776 }
1777 return str_replace("\n", ' ',$prefix.$s.$postfix);
1778 }
1779
1780 /**
1781 * Make HTML for a thumbnail including image, border and caption
1782 * $img is an Image object
1783 */
1784 function makeThumbLinkObj( $img, $label = '', $align = 'right', $boxwidth = 180, $boxheight=false, $framed=false , $manual_thumb = "" ) {
1785 global $wgStylePath, $wgContLang;
1786 # $image = Title::makeTitleSafe( NS_IMAGE, $name );
1787 $url = $img->getViewURL();
1788
1789 #$label = htmlspecialchars( $label );
1790 $alt = preg_replace( '/<[^>]*>/', '', $label);
1791 $alt = preg_replace('/&(?!:amp;|#[Xx][0-9A-fa-f]+;|#[0-9]+;|[a-zA-Z0-9]+;)/', '&amp;', $alt);
1792 $alt = str_replace( array('<', '>', '"'), array('&lt;', '&gt;', '&quot;'), $alt );
1793
1794 $width = $height = 0;
1795 if ( $img->exists() )
1796 {
1797 $width = $img->getWidth();
1798 $height = $img->getHeight();
1799 }
1800 if ( 0 == $width || 0 == $height )
1801 {
1802 $width = $height = 200;
1803 }
1804 if ( $boxwidth == 0 )
1805 {
1806 $boxwidth = 200;
1807 }
1808 if ( $framed )
1809 {
1810 // Use image dimensions, don't scale
1811 $boxwidth = $width;
1812 $oboxwidth = $boxwidth + 2;
1813 $boxheight = $height;
1814 $thumbUrl = $url;
1815 } else {
1816 $h = intval( $height/($width/$boxwidth) );
1817 $oboxwidth = $boxwidth + 2;
1818 if ( ( ! $boxheight === false ) && ( $h > $boxheight ) )
1819 {
1820 $boxwidth *= $boxheight/$h;
1821 } else {
1822 $boxheight = $h;
1823 }
1824 if ( '' == $manual_thumb ) $thumbUrl = $img->createThumb( $boxwidth );
1825 }
1826
1827 if ( $manual_thumb != '' ) # Use manually specified thumbnail
1828 {
1829 $manual_title = Title::makeTitleSafe( NS_IMAGE, $manual_thumb ); #new Title ( $manual_thumb ) ;
1830 $manual_img = Image::newFromTitle( $manual_title );
1831 $thumbUrl = $manual_img->getViewURL();
1832 if ( $manual_img->exists() )
1833 {
1834 $width = $manual_img->getWidth();
1835 $height = $manual_img->getHeight();
1836 $boxwidth = $width ;
1837 $boxheight = $height ;
1838 $oboxwidth = $boxwidth + 2 ;
1839 }
1840 }
1841
1842 $u = $img->getEscapeLocalURL();
1843
1844 $more = htmlspecialchars( wfMsg( 'thumbnail-more' ) );
1845 $magnifyalign = $wgContLang->isRTL() ? 'left' : 'right';
1846 $textalign = $wgContLang->isRTL() ? ' style="text-align:right"' : '';
1847
1848 $s = "<div class=\"thumb t{$align}\"><div style=\"width:{$oboxwidth}px;\">";
1849 if ( $thumbUrl == '' ) {
1850 $s .= wfMsg( 'missingimage', $img->getName() );
1851 $zoomicon = '';
1852 } else {
1853 $s .= '<a href="'.$u.'" class="internal" title="'.$alt.'">'.
1854 '<img src="'.$thumbUrl.'" alt="'.$alt.'" ' .
1855 'width="'.$boxwidth.'" height="'.$boxheight.'" ' .
1856 'longdesc="'.$u.'" /></a>';
1857 if ( $framed ) {
1858 $zoomicon="";
1859 } else {
1860 $zoomicon = '<div class="magnify" style="float:'.$magnifyalign.'">'.
1861 '<a href="'.$u.'" class="internal" title="'.$more.'">'.
1862 '<img src="'.$wgStylePath.'/common/images/magnify-clip.png" ' .
1863 'width="15" height="11" alt="'.$more.'" /></a></div>';
1864 }
1865 }
1866 $s .= ' <div class="thumbcaption" '.$textalign.'>'.$zoomicon.$label."</div></div></div>";
1867 return str_replace("\n", ' ', $s);
1868 }
1869
1870 function makeMediaLink( $name, $url, $alt = '' ) {
1871 $nt = Title::makeTitleSafe( NS_IMAGE, $name );
1872 return $this->makeMediaLinkObj( $nt, $alt );
1873 }
1874
1875 function makeMediaLinkObj( $nt, $alt = '', $nourl=false ) {
1876 if ( ! isset( $nt ) )
1877 {
1878 ### HOTFIX. Instead of breaking, return empty string.
1879 $s = $alt;
1880 } else {
1881 $name = $nt->getDBKey();
1882 $img = Image::newFromTitle( $nt );
1883 $url = $img->getURL();
1884 # $nourl can be set by the parser
1885 # this is a hack to mask absolute URLs, so the parser doesn't
1886 # linkify them (it is currently not context-aware)
1887 # 2004-10-25
1888 if ($nourl) { $url=str_replace("http://","http-noparse://",$url) ; }
1889 if ( empty( $alt ) ) {
1890 $alt = preg_replace( '/\.(.+?)^/', '', $name );
1891 }
1892 $u = htmlspecialchars( $url );
1893 $s = "<a href=\"{$u}\" class='internal' title=\"{$alt}\">{$alt}</a>";
1894 }
1895 return $s;
1896 }
1897
1898 function specialLink( $name, $key = '' ) {
1899 global $wgContLang;
1900
1901 if ( '' == $key ) { $key = strtolower( $name ); }
1902 $pn = $wgContLang->ucfirst( $name );
1903 return $this->makeKnownLink( $wgContLang->specialPage( $pn ),
1904 wfMsg( $key ) );
1905 }
1906
1907 function makeExternalLink( $url, $text, $escape = true ) {
1908 $style = $this->getExternalLinkAttributes( $url, $text );
1909 $url = htmlspecialchars( $url );
1910 if( $escape ) {
1911 $text = htmlspecialchars( $text );
1912 }
1913 return '<a href="'.$url.'"'.$style.'>'.$text.'</a>';
1914 }
1915
1916
1917 /**
1918 * This function is called by all recent changes variants, by the page history,
1919 * and by the user contributions list. It is responsible for formatting edit
1920 * comments. It escapes any HTML in the comment, but adds some CSS to format
1921 * auto-generated comments (from section editing) and formats [[wikilinks]].
1922 *
1923 * The &$title parameter must be a title OBJECT. It is used to generate a
1924 * direct link to the section in the autocomment.
1925 * @author Erik Moeller <moeller@scireview.de>
1926 *
1927 * Note: there's not always a title to pass to this function.
1928 * Since you can't set a default parameter for a reference, I've turned it
1929 * temporarily to a value pass. Should be adjusted further. --brion
1930 */
1931 function formatComment($comment, $title = NULL) {
1932 $fname = 'Skin::formatComment';
1933 wfProfileIn( $fname );
1934
1935 global $wgContLang;
1936 $comment = htmlspecialchars( $comment );
1937
1938 # The pattern for autogen comments is / * foo * /, which makes for
1939 # some nasty regex.
1940 # We look for all comments, match any text before and after the comment,
1941 # add a separator where needed and format the comment itself with CSS
1942 while (preg_match('/(.*)\/\*\s*(.*?)\s*\*\/(.*)/', $comment,$match)) {
1943 $pre=$match[1];
1944 $auto=$match[2];
1945 $post=$match[3];
1946 $link='';
1947 if($title) {
1948 $section=$auto;
1949
1950 # This is hackish but should work in most cases.
1951 $section=str_replace('[[','',$section);
1952 $section=str_replace(']]','',$section);
1953 $title->mFragment=$section;
1954 $link=$this->makeKnownLinkObj($title,wfMsg('sectionlink'));
1955 }
1956 $sep='-';
1957 $auto=$link.$auto;
1958 if($pre) { $auto = $sep.' '.$auto; }
1959 if($post) { $auto .= ' '.$sep; }
1960 $auto='<span class="autocomment">'.$auto.'</span>';
1961 $comment=$pre.$auto.$post;
1962 }
1963
1964 # format regular and media links - all other wiki formatting
1965 # is ignored
1966 $medians = $wgContLang->getNsText(Namespace::getMedia()).':';
1967 while(preg_match('/\[\[(.*?)(\|(.*?))*\]\](.*)$/',$comment,$match)) {
1968 # Handle link renaming [[foo|text]] will show link as "text"
1969 if( "" != $match[3] ) {
1970 $text = $match[3];
1971 } else {
1972 $text = $match[1];
1973 }
1974 if( preg_match( '/^' . $medians . '(.*)$/i', $match[1], $submatch ) ) {
1975 # Media link; trail not supported.
1976 $linkRegexp = '/\[\[(.*?)\]\]/';
1977 $thelink = $this->makeMediaLink( $submatch[1], "", $text );
1978 } else {
1979 # Other kind of link
1980 if( preg_match( wfMsgForContent( "linktrail" ), $match[4], $submatch ) ) {
1981 $trail = $submatch[1];
1982 } else {
1983 $trail = "";
1984 }
1985 $linkRegexp = '/\[\[(.*?)\]\]' . preg_quote( $trail, '/' ) . '/';
1986 if ($match[1][0] == ':')
1987 $match[1] = substr($match[1], 1);
1988 $thelink = $this->makeLink( $match[1], $text, "", $trail );
1989 }
1990 $comment = preg_replace( $linkRegexp, $thelink, $comment, 1 );
1991 }
1992 wfProfileOut( $fname );
1993 return $comment;
1994 }
1995
1996 function tocIndent($level) {
1997 return str_repeat( '<div class="tocindent">'."\n", $level>0 ? $level : 0 );
1998 }
1999
2000 function tocUnindent($level) {
2001 return str_repeat( "</div>\n", $level>0 ? $level : 0 );
2002 }
2003
2004 /**
2005 * parameter level defines if we are on an indentation level
2006 */
2007 function tocLine( $anchor, $tocline, $level ) {
2008 $link = '<a href="#'.$anchor.'">'.$tocline.'</a><br />';
2009 if($level) {
2010 return $link."\n";
2011 } else {
2012 return '<div class="tocline">'.$link."</div>\n";
2013 }
2014
2015 }
2016
2017 function tocTable($toc) {
2018 # note to CSS fanatics: putting this in a div does not work -- div won't auto-expand
2019 # try min-width & co when somebody gets a chance
2020 $hideline = ' <script type="text/javascript">showTocToggle("' . addslashes( wfMsg('showtoc') ) . '","' . addslashes( wfMsg('hidetoc') ) . '")</script>';
2021 return
2022 '<table border="0" id="toc"><tr id="toctitle"><td align="center">'."\n".
2023 '<b>'.wfMsgForContent('toc').'</b>' .
2024 $hideline .
2025 '</td></tr><tr id="tocinside"><td>'."\n".
2026 $toc."</td></tr></table>\n";
2027 }
2028
2029 /**
2030 * These two do not check for permissions: check $wgTitle->userCanEdit
2031 * before calling them
2032 */
2033 function editSectionScriptForOther( $title, $section, $head ) {
2034 $ttl = Title::newFromText( $title );
2035 $url = $ttl->escapeLocalURL( 'action=edit&section='.$section );
2036 return '<span oncontextmenu=\'document.location="'.$url.'";return false;\'>'.$head.'</span>';
2037 }
2038
2039 function editSectionScript( $nt, $section, $head ) {
2040 global $wgRequest;
2041 if( $wgRequest->getInt( 'oldid' ) && ( $wgRequest->getVal( 'diff' ) != '0' ) ) {
2042 return $head;
2043 }
2044 $url = $nt->escapeLocalURL( 'action=edit&section='.$section );
2045 return '<span oncontextmenu=\'document.location="'.$url.'";return false;\'>'.$head.'</span>';
2046 }
2047
2048 function editSectionLinkForOther( $title, $section ) {
2049 global $wgRequest;
2050 global $wgContLang;
2051
2052 $title = Title::newFromText($title);
2053 $editurl = '&section='.$section;
2054 $url = $this->makeKnownLink($title->getPrefixedText(),wfMsg('editsection'),'action=edit'.$editurl);
2055
2056 if( $wgContLang->isRTL() ) {
2057 $farside = 'left';
2058 $nearside = 'right';
2059 } else {
2060 $farside = 'right';
2061 $nearside = 'left';
2062 }
2063 return "<div class=\"editsection\" style=\"float:$farside;margin-$nearside:5px;\">[".$url."]</div>";
2064
2065 }
2066
2067 function editSectionLink( $nt, $section ) {
2068 global $wgRequest;
2069 global $wgContLang;
2070
2071 if( $wgRequest->getInt( 'oldid' ) && ( $wgRequest->getVal( 'diff' ) != '0' ) ) {
2072 # Section edit links would be out of sync on an old page.
2073 # But, if we're diffing to the current page, they'll be
2074 # correct.
2075 return '';
2076 }
2077
2078 $editurl = '&section='.$section;
2079 $url = $this->makeKnownLink($nt->getPrefixedText(),wfMsg('editsection'),'action=edit'.$editurl);
2080
2081 if( $wgContLang->isRTL() ) {
2082 $farside = 'left';
2083 $nearside = 'right';
2084 } else {
2085 $farside = 'right';
2086 $nearside = 'left';
2087 }
2088 return "<div class=\"editsection\" style=\"float:$farside;margin-$nearside:5px;\">[".$url."]</div>";
2089
2090 }
2091
2092 /**
2093 * @access public
2094 */
2095 function suppressUrlExpansion() {
2096 return false;
2097 }
2098 }
2099
2100 }
2101 ?>