remove no longer needed line for Parser_OldPP (now banished!)
[lhc/web/wiklou.git] / includes / Skin.php
1 <?php
2 /**
3 * @defgroup Skins Skins
4 */
5
6 if ( ! defined( 'MEDIAWIKI' ) )
7 die( 1 );
8
9 /**
10 * The main skin class that provide methods and properties for all other skins.
11 * This base class is also the "Standard" skin.
12 *
13 * See docs/skin.txt for more information.
14 *
15 * @ingroup Skins
16 */
17 class Skin extends Linker {
18 /**#@+
19 * @private
20 */
21 var $mWatchLinkNum = 0; // Appended to end of watch link id's
22 // How many search boxes have we made? Avoid duplicate id's.
23 protected $searchboxes = '';
24 /**#@-*/
25 protected $mRevisionId; // The revision ID we're looking at, null if not applicable.
26 protected $skinname = 'standard' ;
27
28 /** Constructor, call parent constructor */
29 function Skin() { parent::__construct(); }
30
31 /**
32 * Fetch the set of available skins.
33 * @return array of strings
34 * @static
35 */
36 static function getSkinNames() {
37 global $wgValidSkinNames;
38 static $skinsInitialised = false;
39 if ( !$skinsInitialised ) {
40 # Get a list of available skins
41 # Build using the regular expression '^(.*).php$'
42 # Array keys are all lower case, array value keep the case used by filename
43 #
44 wfProfileIn( __METHOD__ . '-init' );
45 global $wgStyleDirectory;
46 $skinDir = dir( $wgStyleDirectory );
47
48 # while code from www.php.net
49 while (false !== ($file = $skinDir->read())) {
50 // Skip non-PHP files, hidden files, and '.dep' includes
51 $matches = array();
52 if(preg_match('/^([^.]*)\.php$/',$file, $matches)) {
53 $aSkin = $matches[1];
54 $wgValidSkinNames[strtolower($aSkin)] = $aSkin;
55 }
56 }
57 $skinDir->close();
58 $skinsInitialised = true;
59 wfProfileOut( __METHOD__ . '-init' );
60 }
61 return $wgValidSkinNames;
62 }
63
64 /**
65 * Fetch the list of usable skins in regards to $wgSkipSkins.
66 * Useful for Special:Preferences and other places where you
67 * only want to show skins users _can_ use.
68 * @return array of strings
69 */
70 public static function getUsableSkins() {
71 global $wgSkipSkins;
72 $usableSkins = self::getSkinNames();
73 foreach ( $wgSkipSkins as $skip ) {
74 unset( $usableSkins[$skip] );
75 }
76 return $usableSkins;
77 }
78
79 /**
80 * Normalize a skin preference value to a form that can be loaded.
81 * If a skin can't be found, it will fall back to the configured
82 * default (or the old 'Classic' skin if that's broken).
83 * @param string $key
84 * @return string
85 * @static
86 */
87 static function normalizeKey( $key ) {
88 global $wgDefaultSkin;
89 $skinNames = Skin::getSkinNames();
90
91 if( $key == '' ) {
92 // Don't return the default immediately;
93 // in a misconfiguration we need to fall back.
94 $key = $wgDefaultSkin;
95 }
96
97 if( isset( $skinNames[$key] ) ) {
98 return $key;
99 }
100
101 // Older versions of the software used a numeric setting
102 // in the user preferences.
103 $fallback = array(
104 0 => $wgDefaultSkin,
105 1 => 'nostalgia',
106 2 => 'cologneblue' );
107
108 if( isset( $fallback[$key] ) ){
109 $key = $fallback[$key];
110 }
111
112 if( isset( $skinNames[$key] ) ) {
113 return $key;
114 } else {
115 return 'monobook';
116 }
117 }
118
119 /**
120 * Factory method for loading a skin of a given type
121 * @param string $key 'monobook', 'standard', etc
122 * @return Skin
123 * @static
124 */
125 static function &newFromKey( $key ) {
126 global $wgStyleDirectory;
127
128 $key = Skin::normalizeKey( $key );
129
130 $skinNames = Skin::getSkinNames();
131 $skinName = $skinNames[$key];
132 $className = 'Skin'.ucfirst($key);
133
134 # Grab the skin class and initialise it.
135 if ( !class_exists( $className ) ) {
136 // Preload base classes to work around APC/PHP5 bug
137 $deps = "{$wgStyleDirectory}/{$skinName}.deps.php";
138 if( file_exists( $deps ) ) include_once( $deps );
139 require_once( "{$wgStyleDirectory}/{$skinName}.php" );
140
141 # Check if we got if not failback to default skin
142 if( !class_exists( $className ) ) {
143 # DO NOT die if the class isn't found. This breaks maintenance
144 # scripts and can cause a user account to be unrecoverable
145 # except by SQL manipulation if a previously valid skin name
146 # is no longer valid.
147 wfDebug( "Skin class does not exist: $className\n" );
148 $className = 'SkinMonobook';
149 require_once( "{$wgStyleDirectory}/MonoBook.php" );
150 }
151 }
152 $skin = new $className;
153 return $skin;
154 }
155
156 /** @return string path to the skin stylesheet */
157 function getStylesheet() {
158 return 'common/wikistandard.css';
159 }
160
161 /** @return string skin name */
162 public function getSkinName() {
163 return $this->skinname;
164 }
165
166 function qbSetting() {
167 global $wgOut, $wgUser;
168
169 if ( $wgOut->isQuickbarSuppressed() ) { return 0; }
170 $q = $wgUser->getOption( 'quickbar', 0 );
171 return $q;
172 }
173
174 function initPage( OutputPage $out ) {
175 global $wgFavicon, $wgAppleTouchIcon;
176
177 wfProfileIn( __METHOD__ );
178
179 # Generally the order of the favicon and apple-touch-icon links
180 # should not matter, but Konqueror (3.5.9 at least) incorrectly
181 # uses whichever one appears later in the HTML source. Make sure
182 # apple-touch-icon is specified first to avoid this.
183 if( false !== $wgAppleTouchIcon ) {
184 $out->addLink( array( 'rel' => 'apple-touch-icon', 'href' => $wgAppleTouchIcon ) );
185 }
186
187 if( false !== $wgFavicon ) {
188 $out->addLink( array( 'rel' => 'shortcut icon', 'href' => $wgFavicon ) );
189 }
190
191 # OpenSearch description link
192 $out->addLink( array(
193 'rel' => 'search',
194 'type' => 'application/opensearchdescription+xml',
195 'href' => wfScript( 'opensearch_desc' ),
196 'title' => wfMsgForContent( 'opensearch-desc' ),
197 ));
198
199 $this->addMetadataLinks($out);
200
201 $this->mRevisionId = $out->mRevisionId;
202
203 $this->preloadExistence();
204
205 wfProfileOut( __METHOD__ );
206 }
207
208 /**
209 * Preload the existence of three commonly-requested pages in a single query
210 */
211 function preloadExistence() {
212 global $wgUser, $wgTitle;
213
214 // User/talk link
215 $titles = array( $wgUser->getUserPage(), $wgUser->getTalkPage() );
216
217 // Other tab link
218 if ( $wgTitle->getNamespace() == NS_SPECIAL ) {
219 // nothing
220 } elseif ( $wgTitle->isTalkPage() ) {
221 $titles[] = $wgTitle->getSubjectPage();
222 } else {
223 $titles[] = $wgTitle->getTalkPage();
224 }
225
226 $lb = new LinkBatch( $titles );
227 $lb->execute();
228 }
229
230 function addMetadataLinks( OutputPage $out ) {
231 global $wgTitle, $wgEnableDublinCoreRdf, $wgEnableCreativeCommonsRdf;
232 global $wgRightsPage, $wgRightsUrl;
233
234 if( $out->isArticleRelated() ) {
235 # note: buggy CC software only reads first "meta" link
236 if( $wgEnableCreativeCommonsRdf ) {
237 $out->addMetadataLink( array(
238 'title' => 'Creative Commons',
239 'type' => 'application/rdf+xml',
240 'href' => $wgTitle->getLocalURL( 'action=creativecommons') ) );
241 }
242 if( $wgEnableDublinCoreRdf ) {
243 $out->addMetadataLink( array(
244 'title' => 'Dublin Core',
245 'type' => 'application/rdf+xml',
246 'href' => $wgTitle->getLocalURL( 'action=dublincore' ) ) );
247 }
248 }
249 $copyright = '';
250 if( $wgRightsPage ) {
251 $copy = Title::newFromText( $wgRightsPage );
252 if( $copy ) {
253 $copyright = $copy->getLocalURL();
254 }
255 }
256 if( !$copyright && $wgRightsUrl ) {
257 $copyright = $wgRightsUrl;
258 }
259 if( $copyright ) {
260 $out->addLink( array(
261 'rel' => 'copyright',
262 'href' => $copyright ) );
263 }
264 }
265
266 function setMembers(){
267 global $wgTitle, $wgUser;
268 $this->mTitle = $wgTitle;
269 $this->mUser = $wgUser;
270 $this->userpage = $wgUser->getUserPage()->getPrefixedText();
271 $this->usercss = false;
272 }
273
274 function outputPage( OutputPage $out ) {
275 global $wgDebugComments;
276 wfProfileIn( __METHOD__ );
277
278 $this->setMembers();
279 $this->initPage( $out );
280
281 // See self::afterContentHook() for documentation
282 $afterContent = $this->afterContentHook();
283
284 $out->out( $out->headElement( $this ) );
285
286 $out->out( "\n<body" );
287 $ops = $this->getBodyOptions();
288 foreach ( $ops as $name => $val ) {
289 $out->out( " $name='$val'" );
290 }
291 $out->out( ">\n" );
292 if ( $wgDebugComments ) {
293 $out->out( "<!-- Wiki debugging output:\n" .
294 $out->mDebugtext . "-->\n" );
295 }
296
297 $out->out( $this->beforeContent() );
298
299 $out->out( $out->mBodytext . "\n" );
300
301 $out->out( $this->afterContent() );
302
303 $out->out( $afterContent );
304
305 $out->out( $this->bottomScripts() );
306
307 $out->out( wfReportTime() );
308
309 $out->out( "\n</body></html>" );
310 wfProfileOut( __METHOD__ );
311 }
312
313 static function makeVariablesScript( $data ) {
314 global $wgJsMimeType;
315
316 $r = array( "<script type= \"$wgJsMimeType\">/*<![CDATA[*/" );
317 foreach ( $data as $name => $value ) {
318 $encValue = Xml::encodeJsVar( $value );
319 $r[] = "var $name = $encValue;";
320 }
321 $r[] = "/*]]>*/</script>\n";
322
323 return implode( "\n\t\t", $r );
324 }
325
326 /**
327 * Make a <script> tag containing global variables
328 * @param array $data Associative array containing one element:
329 * skinname => the skin name
330 * The odd calling convention is for backwards compatibility
331 */
332 static function makeGlobalVariablesScript( $data ) {
333 global $wgScript, $wgStylePath, $wgUser;
334 global $wgArticlePath, $wgScriptPath, $wgServer, $wgContLang, $wgLang;
335 global $wgTitle, $wgCanonicalNamespaceNames, $wgOut, $wgArticle;
336 global $wgBreakFrames, $wgRequest, $wgVariantArticlePath, $wgActionPaths;
337 global $wgUseAjax, $wgAjaxWatch;
338 global $wgVersion, $wgEnableAPI, $wgEnableWriteAPI;
339 global $wgRestrictionTypes, $wgLivePreview;
340 global $wgMWSuggestTemplate, $wgDBname, $wgEnableMWSuggest;
341
342 $ns = $wgTitle->getNamespace();
343 $nsname = isset( $wgCanonicalNamespaceNames[ $ns ] ) ? $wgCanonicalNamespaceNames[ $ns ] : $wgTitle->getNsText();
344 $separatorTransTable = $wgContLang->separatorTransformTable();
345 $separatorTransTable = $separatorTransTable ? $separatorTransTable : array();
346 $compactSeparatorTransTable = array(
347 implode( "\t", array_keys( $separatorTransTable ) ),
348 implode( "\t", $separatorTransTable ),
349 );
350 $digitTransTable = $wgContLang->digitTransformTable();
351 $digitTransTable = $digitTransTable ? $digitTransTable : array();
352 $compactDigitTransTable = array(
353 implode( "\t", array_keys( $digitTransTable ) ),
354 implode( "\t", $digitTransTable ),
355 );
356
357 $vars = array(
358 'skin' => $data['skinname'],
359 'stylepath' => $wgStylePath,
360 'wgArticlePath' => $wgArticlePath,
361 'wgScriptPath' => $wgScriptPath,
362 'wgScript' => $wgScript,
363 'wgVariantArticlePath' => $wgVariantArticlePath,
364 'wgActionPaths' => (object)$wgActionPaths,
365 'wgServer' => $wgServer,
366 'wgCanonicalNamespace' => $nsname,
367 'wgCanonicalSpecialPageName' => SpecialPage::resolveAlias( $wgTitle->getDBkey() ),
368 'wgNamespaceNumber' => $wgTitle->getNamespace(),
369 'wgPageName' => $wgTitle->getPrefixedDBKey(),
370 'wgTitle' => $wgTitle->getText(),
371 'wgAction' => $wgRequest->getText( 'action', 'view' ),
372 'wgArticleId' => $wgTitle->getArticleId(),
373 'wgIsArticle' => $wgOut->isArticle(),
374 'wgUserName' => $wgUser->isAnon() ? NULL : $wgUser->getName(),
375 'wgUserGroups' => $wgUser->isAnon() ? NULL : $wgUser->getEffectiveGroups(),
376 'wgUserLanguage' => $wgLang->getCode(),
377 'wgContentLanguage' => $wgContLang->getCode(),
378 'wgBreakFrames' => $wgBreakFrames,
379 'wgCurRevisionId' => isset( $wgArticle ) ? $wgArticle->getLatest() : 0,
380 'wgVersion' => $wgVersion,
381 'wgEnableAPI' => $wgEnableAPI,
382 'wgEnableWriteAPI' => $wgEnableWriteAPI,
383 'wgSeparatorTransformTable' => $compactSeparatorTransTable,
384 'wgDigitTransformTable' => $compactDigitTransTable,
385 );
386
387 if( $wgUseAjax && $wgEnableMWSuggest && !$wgUser->getOption( 'disablesuggest', false )){
388 $vars['wgMWSuggestTemplate'] = SearchEngine::getMWSuggestTemplate();
389 $vars['wgDBname'] = $wgDBname;
390 $vars['wgSearchNamespaces'] = SearchEngine::userNamespaces( $wgUser );
391 $vars['wgMWSuggestMessages'] = array( wfMsg('search-mwsuggest-enabled'), wfMsg('search-mwsuggest-disabled'));
392 }
393
394 foreach( $wgRestrictionTypes as $type )
395 $vars['wgRestriction' . ucfirst( $type )] = $wgTitle->getRestrictions( $type );
396
397 if ( $wgLivePreview && $wgUser->getOption( 'uselivepreview' ) ) {
398 $vars['wgLivepreviewMessageLoading'] = wfMsg( 'livepreview-loading' );
399 $vars['wgLivepreviewMessageReady'] = wfMsg( 'livepreview-ready' );
400 $vars['wgLivepreviewMessageFailed'] = wfMsg( 'livepreview-failed' );
401 $vars['wgLivepreviewMessageError'] = wfMsg( 'livepreview-error' );
402 }
403
404 if($wgUseAjax && $wgAjaxWatch && $wgUser->isLoggedIn() ) {
405 $msgs = (object)array();
406 foreach ( array( 'watch', 'unwatch', 'watching', 'unwatching' ) as $msgName ) {
407 $msgs->{$msgName . 'Msg'} = wfMsg( $msgName );
408 }
409 $vars['wgAjaxWatch'] = $msgs;
410 }
411
412 wfRunHooks('MakeGlobalVariablesScript', array(&$vars));
413
414 return self::makeVariablesScript( $vars );
415 }
416
417 function getHeadScripts( $allowUserJs ) {
418 global $wgStylePath, $wgUser, $wgJsMimeType, $wgStyleVersion;
419
420 $vars = self::makeGlobalVariablesScript( array( 'skinname' => $this->getSkinName() ) );
421
422 $r = array( "<script type=\"{$wgJsMimeType}\" src=\"{$wgStylePath}/common/wikibits.js?$wgStyleVersion\"></script>" );
423 global $wgUseSiteJs;
424 if ($wgUseSiteJs) {
425 $jsCache = $wgUser->isLoggedIn() ? '&smaxage=0' : '';
426 $r[] = "<script type=\"$wgJsMimeType\" src=\"".
427 htmlspecialchars(self::makeUrl('-',
428 "action=raw$jsCache&gen=js&useskin=" .
429 urlencode( $this->getSkinName() ) ) ) .
430 "\"><!-- site js --></script>";
431 }
432 if( $allowUserJs && $wgUser->isLoggedIn() ) {
433 $userpage = $wgUser->getUserPage();
434 $userjs = htmlspecialchars( self::makeUrl(
435 $userpage->getPrefixedText().'/'.$this->getSkinName().'.js',
436 'action=raw&ctype='.$wgJsMimeType));
437 $r[] = '<script type="'.$wgJsMimeType.'" src="'.$userjs."\"></script>";
438 }
439 return $vars . "\t\t" . implode ( "\n\t\t", $r );
440 }
441
442 /**
443 * To make it harder for someone to slip a user a fake
444 * user-JavaScript or user-CSS preview, a random token
445 * is associated with the login session. If it's not
446 * passed back with the preview request, we won't render
447 * the code.
448 *
449 * @param string $action
450 * @return bool
451 * @private
452 */
453 function userCanPreview( $action ) {
454 global $wgTitle, $wgRequest, $wgUser;
455
456 if( $action != 'submit' )
457 return false;
458 if( !$wgRequest->wasPosted() )
459 return false;
460 if( !$wgTitle->userCanEditCssJsSubpage() )
461 return false;
462 return $wgUser->matchEditToken(
463 $wgRequest->getVal( 'wpEditToken' ) );
464 }
465
466 /**
467 * generated JavaScript action=raw&gen=js
468 * This returns MediaWiki:Common.js and MediaWiki:[Skinname].js concate-
469 * nated together. For some bizarre reason, it does *not* return any
470 * custom user JS from subpages. Huh?
471 *
472 * There's absolutely no reason to have separate Monobook/Common JSes.
473 * Any JS that cares can just check the skin variable generated at the
474 * top. For now Monobook.js will be maintained, but it should be consi-
475 * dered deprecated.
476 *
477 * @return string
478 */
479 public function generateUserJs() {
480 global $wgStylePath;
481
482 wfProfileIn( __METHOD__ );
483
484 $s = "/* generated javascript */\n";
485 $s .= "var skin = '" . Xml::escapeJsString( $this->getSkinName() ) . "';\n";
486 $s .= "var stylepath = '" . Xml::escapeJsString( $wgStylePath ) . "';";
487 $s .= "\n\n/* MediaWiki:Common.js */\n";
488 $commonJs = wfMsgForContent('common.js');
489 if ( !wfEmptyMsg ( 'common.js', $commonJs ) ) {
490 $s .= $commonJs;
491 }
492
493 $s .= "\n\n/* MediaWiki:".ucfirst( $this->getSkinName() ).".js */\n";
494 // avoid inclusion of non defined user JavaScript (with custom skins only)
495 // by checking for default message content
496 $msgKey = ucfirst( $this->getSkinName() ).'.js';
497 $userJS = wfMsgForContent($msgKey);
498 if ( !wfEmptyMsg( $msgKey, $userJS ) ) {
499 $s .= $userJS;
500 }
501
502 wfProfileOut( __METHOD__ );
503 return $s;
504 }
505
506 /**
507 * generate user stylesheet for action=raw&gen=css
508 */
509 public function generateUserStylesheet() {
510 wfProfileIn( __METHOD__ );
511 $s = "/* generated user stylesheet */\n" .
512 $this->reallyGenerateUserStylesheet();
513 wfProfileOut( __METHOD__ );
514 return $s;
515 }
516
517 /**
518 * Split for easier subclassing in SkinSimple, SkinStandard and SkinCologneBlue
519 */
520 protected function reallyGenerateUserStylesheet(){
521 global $wgUser;
522 $s = '';
523 if (($undopt = $wgUser->getOption("underline")) < 2) {
524 $underline = $undopt ? 'underline' : 'none';
525 $s .= "a { text-decoration: $underline; }\n";
526 }
527 if( $wgUser->getOption( 'highlightbroken' ) ) {
528 $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";
529 } else {
530 $s .= <<<END
531 a.new, #quickbar a.new,
532 a.stub, #quickbar a.stub {
533 color: inherit;
534 }
535 a.new:after, #quickbar a.new:after {
536 content: "?";
537 color: #CC2200;
538 }
539 a.stub:after, #quickbar a.stub:after {
540 content: "!";
541 color: #772233;
542 }
543 END;
544 }
545 if( $wgUser->getOption( 'justify' ) ) {
546 $s .= "#article, #bodyContent, #mw_content { text-align: justify; }\n";
547 }
548 if( !$wgUser->getOption( 'showtoc' ) ) {
549 $s .= "#toc { display: none; }\n";
550 }
551 if( !$wgUser->getOption( 'editsection' ) ) {
552 $s .= ".editsection { display: none; }\n";
553 }
554 return $s;
555 }
556
557 /**
558 * @private
559 */
560 function setupUserCss( OutputPage $out ) {
561 global $wgRequest, $wgContLang, $wgUser;
562 global $wgAllowUserCss, $wgUseSiteCss, $wgSquidMaxage, $wgStylePath;
563
564 wfProfileIn( __METHOD__ );
565
566 $this->setupSkinUserCss( $out );
567
568 $siteargs = array(
569 'action' => 'raw',
570 'maxage' => $wgSquidMaxage,
571 );
572
573 // Add any extension CSS
574 foreach( $out->getExtStyle() as $tag ) {
575 $out->addStyle( $tag['href'] );
576 }
577
578 // If we use the site's dynamic CSS, throw that in, too
579 // Per-site custom styles
580 if( $wgUseSiteCss ) {
581 global $wgHandheldStyle;
582 $query = wfArrayToCGI( array(
583 'usemsgcache' => 'yes',
584 'ctype' => 'text/css',
585 'smaxage' => $wgSquidMaxage
586 ) + $siteargs );
587 # Site settings must override extension css! (bug 15025)
588 $out->addStyle( self::makeNSUrl( 'Common.css', $query, NS_MEDIAWIKI ) );
589 $out->addStyle( self::makeNSUrl( 'Print.css', $query, NS_MEDIAWIKI ), 'print' );
590 if( $wgHandheldStyle ) {
591 $out->addStyle( self::makeNSUrl( 'Handheld.css', $query, NS_MEDIAWIKI ), 'handheld' );
592 }
593 $out->addStyle( self::makeNSUrl( $this->getSkinName() . '.css', $query, NS_MEDIAWIKI ) );
594 }
595
596 if( $wgUser->isLoggedIn() ) {
597 // Ensure that logged-in users' generated CSS isn't clobbered
598 // by anons' publicly cacheable generated CSS.
599 $siteargs['smaxage'] = '0';
600 $siteargs['ts'] = $wgUser->mTouched;
601 }
602 // Per-user styles based on preferences
603 $siteargs['gen'] = 'css';
604 if( ( $us = $wgRequest->getVal( 'useskin', '' ) ) !== '' ) {
605 $siteargs['useskin'] = $us;
606 }
607 $out->addStyle( self::makeUrl( '-', wfArrayToCGI( $siteargs ) ) );
608
609 // Per-user custom style pages
610 if( $wgAllowUserCss && $wgUser->isLoggedIn() ) {
611 $action = $wgRequest->getVal('action');
612 # If we're previewing the CSS page, use it
613 if( $this->mTitle->isCssSubpage() && $this->userCanPreview( $action ) ) {
614 $previewCss = $wgRequest->getText('wpTextbox1');
615 // @FIXME: properly escape the cdata!
616 $this->usercss = "/*<![CDATA[*/\n" . $previewCss . "/*]]>*/";
617 } else {
618 $out->addStyle( self::makeUrl($this->userpage . '/' . $this->getSkinName() .'.css',
619 'action=raw&ctype=text/css' ) );
620 }
621 }
622
623 wfProfileOut( __METHOD__ );
624 }
625
626 /**
627 * Add skin specific stylesheets
628 * @param $out OutputPage
629 */
630 function setupSkinUserCss( OutputPage $out ) {
631 $out->addStyle( 'common/shared.css' );
632 $out->addStyle( 'common/oldshared.css' );
633 $out->addStyle( $this->getStylesheet() );
634 $out->addStyle( 'common/common_rtl.css', '', '', 'rtl' );
635 }
636
637 function getBodyOptions() {
638 global $wgUser, $wgTitle, $wgOut, $wgRequest, $wgContLang;
639
640 extract( $wgRequest->getValues( 'oldid', 'redirect', 'diff' ) );
641
642 if ( 0 != $wgTitle->getNamespace() ) {
643 $a = array( 'bgcolor' => '#ffffec' );
644 }
645 else $a = array( 'bgcolor' => '#FFFFFF' );
646 if($wgOut->isArticle() && $wgUser->getOption('editondblclick') &&
647 $wgTitle->quickUserCan( 'edit' ) ) {
648 $s = $wgTitle->getFullURL( $this->editUrlOptions() );
649 $s = 'document.location = "' .wfEscapeJSString( $s ) .'";';
650 $a += array ('ondblclick' => $s);
651
652 }
653 $a['onload'] = $wgOut->getOnloadHandler();
654 $a['class'] =
655 'mediawiki' .
656 ' '.( $wgContLang->isRTL() ? "rtl" : "ltr" ).
657 ' '.$this->getPageClasses( $wgTitle ) .
658 ' skin-'. Sanitizer::escapeClass( $this->getSkinName( ) );
659 return $a;
660 }
661
662 function getPageClasses( $title ) {
663 $numeric = 'ns-'.$title->getNamespace();
664 if( $title->getNamespace() == NS_SPECIAL ) {
665 $type = "ns-special";
666 } elseif( $title->isTalkPage() ) {
667 $type = "ns-talk";
668 } else {
669 $type = "ns-subject";
670 }
671 $name = Sanitizer::escapeClass( 'page-'.$title->getPrefixedText() );
672 return "$numeric $type $name";
673 }
674
675 /**
676 * URL to the logo
677 */
678 function getLogo() {
679 global $wgLogo;
680 return $wgLogo;
681 }
682
683 /**
684 * This will be called immediately after the <body> tag. Split into
685 * two functions to make it easier to subclass.
686 */
687 function beforeContent() {
688 return $this->doBeforeContent();
689 }
690
691 function doBeforeContent() {
692 global $wgContLang;
693 $fname = 'Skin::doBeforeContent';
694 wfProfileIn( $fname );
695
696 $s = '';
697 $qb = $this->qbSetting();
698
699 if( $langlinks = $this->otherLanguages() ) {
700 $rows = 2;
701 $borderhack = '';
702 } else {
703 $rows = 1;
704 $langlinks = false;
705 $borderhack = 'class="top"';
706 }
707
708 $s .= "\n<div id='content'>\n<div id='topbar'>\n" .
709 "<table border='0' cellspacing='0' width='98%'>\n<tr>\n";
710
711 $shove = ( $qb != 0 );
712 $left = ( $qb == 1 || $qb == 3 );
713 if( $wgContLang->isRTL() ) $left = !$left;
714
715 if( !$shove ) {
716 $s .= "<td class='top' align='left' valign='top' rowspan='{$rows}'>\n" .
717 $this->logoText() . '</td>';
718 } elseif( $left ) {
719 $s .= $this->getQuickbarCompensator( $rows );
720 }
721 $l = $wgContLang->isRTL() ? 'right' : 'left';
722 $s .= "<td {$borderhack} align='$l' valign='top'>\n";
723
724 $s .= $this->topLinks() ;
725 $s .= "<p class='subtitle'>" . $this->pageTitleLinks() . "</p>\n";
726
727 $r = $wgContLang->isRTL() ? "left" : "right";
728 $s .= "</td>\n<td {$borderhack} valign='top' align='$r' nowrap='nowrap'>";
729 $s .= $this->nameAndLogin();
730 $s .= "\n<br />" . $this->searchForm() . "</td>";
731
732 if ( $langlinks ) {
733 $s .= "</tr>\n<tr>\n<td class='top' colspan=\"2\">$langlinks</td>\n";
734 }
735
736 if ( $shove && !$left ) { # Right
737 $s .= $this->getQuickbarCompensator( $rows );
738 }
739 $s .= "</tr>\n</table>\n</div>\n";
740 $s .= "\n<div id='article'>\n";
741
742 $notice = wfGetSiteNotice();
743 if( $notice ) {
744 $s .= "\n<div id='siteNotice'>$notice</div>\n";
745 }
746 $s .= $this->pageTitle();
747 $s .= $this->pageSubtitle() ;
748 $s .= $this->getCategories();
749 wfProfileOut( $fname );
750 return $s;
751 }
752
753
754 function getCategoryLinks() {
755 global $wgOut, $wgTitle, $wgUseCategoryBrowser;
756 global $wgContLang, $wgUser;
757
758 if( count( $wgOut->mCategoryLinks ) == 0 ) return '';
759
760 # Separator
761 $sep = wfMsgHtml( 'catseparator' );
762
763 // Use Unicode bidi embedding override characters,
764 // to make sure links don't smash each other up in ugly ways.
765 $dir = $wgContLang->isRTL() ? 'rtl' : 'ltr';
766 $embed = "<span dir='$dir'>";
767 $pop = '</span>';
768
769 $allCats = $wgOut->getCategoryLinks();
770 $s = '';
771 $colon = wfMsgExt( 'colon-separator', 'escapenoentities' );
772 if ( !empty( $allCats['normal'] ) ) {
773 $t = $embed . implode ( "{$pop} {$sep} {$embed}" , $allCats['normal'] ) . $pop;
774
775 $msg = wfMsgExt( 'pagecategories', array( 'parsemag', 'escapenoentities' ), count( $allCats['normal'] ) );
776 $s .= '<div id="mw-normal-catlinks">' .
777 $this->link( Title::newFromText( wfMsgForContent('pagecategorieslink') ), $msg )
778 . $colon . $t . '</div>';
779 }
780
781 # Hidden categories
782 if ( isset( $allCats['hidden'] ) ) {
783 if ( $wgUser->getBoolOption( 'showhiddencats' ) ) {
784 $class ='mw-hidden-cats-user-shown';
785 } elseif ( $wgTitle->getNamespace() == NS_CATEGORY ) {
786 $class = 'mw-hidden-cats-ns-shown';
787 } else {
788 $class = 'mw-hidden-cats-hidden';
789 }
790 $s .= "<div id=\"mw-hidden-catlinks\" class=\"$class\">" .
791 wfMsgExt( 'hidden-categories', array( 'parsemag', 'escapenoentities' ), count( $allCats['hidden'] ) ) .
792 $colon . $embed . implode( "$pop $sep $embed", $allCats['hidden'] ) . $pop .
793 "</div>";
794 }
795
796 # optional 'dmoz-like' category browser. Will be shown under the list
797 # of categories an article belong to
798 if( $wgUseCategoryBrowser ){
799 $s .= '<br /><hr />';
800
801 # get a big array of the parents tree
802 $parenttree = $wgTitle->getParentCategoryTree();
803 # Skin object passed by reference cause it can not be
804 # accessed under the method subfunction drawCategoryBrowser
805 $tempout = explode("\n", Skin::drawCategoryBrowser($parenttree, $this) );
806 # Clean out bogus first entry and sort them
807 unset($tempout[0]);
808 asort($tempout);
809 # Output one per line
810 $s .= implode("<br />\n", $tempout);
811 }
812
813 return $s;
814 }
815
816 /** Render the array as a serie of links.
817 * @param $tree Array: categories tree returned by Title::getParentCategoryTree
818 * @param &skin Object: skin passed by reference
819 * @return String separated by &gt;, terminate with "\n"
820 */
821 function drawCategoryBrowser( $tree, &$skin ){
822 $return = '';
823 foreach ($tree as $element => $parent) {
824 if (empty($parent)) {
825 # element start a new list
826 $return .= "\n";
827 } else {
828 # grab the others elements
829 $return .= Skin::drawCategoryBrowser($parent, $skin) . ' &gt; ';
830 }
831 # add our current element to the list
832 $eltitle = Title::newFromText($element);
833 $return .= $skin->link( $eltitle, $eltitle->getText() ) ;
834 }
835 return $return;
836 }
837
838 function getCategories() {
839 $catlinks=$this->getCategoryLinks();
840
841 $classes = 'catlinks';
842
843 if( strpos( $catlinks, '<div id="mw-normal-catlinks">' ) === false &&
844 strpos( $catlinks, '<div id="mw-hidden-catlinks" class="mw-hidden-cats-hidden">' ) !== false ) {
845 $classes .= ' catlinks-allhidden';
846 }
847
848 if( !empty( $catlinks ) ){
849 return "<div id='catlinks' class='$classes'>{$catlinks}</div>";
850 }
851 }
852
853 function getQuickbarCompensator( $rows = 1 ) {
854 return "<td width='152' rowspan='{$rows}'>&nbsp;</td>";
855 }
856
857 /**
858 * This runs a hook to allow extensions placing their stuff after content
859 * and article metadata (e.g. categories).
860 * Note: This function has nothing to do with afterContent().
861 *
862 * This hook is placed here in order to allow using the same hook for all
863 * skins, both the SkinTemplate based ones and the older ones, which directly
864 * use this class to get their data.
865 *
866 * The output of this function gets processed in SkinTemplate::outputPage() for
867 * the SkinTemplate based skins, all other skins should directly echo it.
868 *
869 * Returns an empty string by default, if not changed by any hook function.
870 */
871 protected function afterContentHook() {
872 $data = "";
873
874 if( wfRunHooks( 'SkinAfterContent', array( &$data ) ) ){
875 // adding just some spaces shouldn't toggle the output
876 // of the whole <div/>, so we use trim() here
877 if( trim( $data ) != '' ){
878 // Doing this here instead of in the skins to
879 // ensure that the div has the same ID in all
880 // skins
881 $data = "<div id='mw-data-after-content'>\n" .
882 "\t$data\n" .
883 "</div>\n";
884 }
885 } else {
886 wfDebug( "Hook SkinAfterContent changed output processing.\n" );
887 }
888
889 return $data;
890 }
891
892 /**
893 * This gets called shortly before the </body> tag.
894 * @return String HTML to be put before </body>
895 */
896 function afterContent() {
897 $printfooter = "<div class=\"printfooter\">\n" . $this->printFooter() . "</div>\n";
898 return $printfooter . $this->doAfterContent();
899 }
900
901 /**
902 * This gets called shortly before the </body> tag.
903 * @return String HTML-wrapped JS code to be put before </body>
904 */
905 function bottomScripts() {
906 global $wgJsMimeType;
907 $bottomScriptText = "\n\t\t<script type=\"$wgJsMimeType\">if (window.runOnloadHook) runOnloadHook();</script>\n";
908 wfRunHooks( 'SkinAfterBottomScripts', array( $this, &$bottomScriptText ) );
909 return $bottomScriptText;
910 }
911
912 /** @return string Retrievied from HTML text */
913 function printSource() {
914 global $wgTitle;
915 $url = htmlspecialchars( $wgTitle->getFullURL() );
916 return wfMsg( 'retrievedfrom', '<a href="'.$url.'">'.$url.'</a>' );
917 }
918
919 function printFooter() {
920 return "<p>" . $this->printSource() .
921 "</p>\n\n<p>" . $this->pageStats() . "</p>\n";
922 }
923
924 /** overloaded by derived classes */
925 function doAfterContent() { return "</div></div>"; }
926
927 function pageTitleLinks() {
928 global $wgOut, $wgTitle, $wgUser, $wgRequest;
929
930 $oldid = $wgRequest->getVal( 'oldid' );
931 $diff = $wgRequest->getVal( 'diff' );
932 $action = $wgRequest->getText( 'action' );
933
934 $s = $this->printableLink();
935 $disclaimer = $this->disclaimerLink(); # may be empty
936 if( $disclaimer ) {
937 $s .= ' | ' . $disclaimer;
938 }
939 $privacy = $this->privacyLink(); # may be empty too
940 if( $privacy ) {
941 $s .= ' | ' . $privacy;
942 }
943
944 if ( $wgOut->isArticleRelated() ) {
945 if ( $wgTitle->getNamespace() == NS_FILE ) {
946 $name = $wgTitle->getDBkey();
947 $image = wfFindFile( $wgTitle );
948 if( $image ) {
949 $link = htmlspecialchars( $image->getURL() );
950 $style = $this->getInternalLinkAttributes( $link, $name );
951 $s .= " | <a href=\"{$link}\"{$style}>{$name}</a>";
952 }
953 }
954 }
955 if ( 'history' == $action || isset( $diff ) || isset( $oldid ) ) {
956 $s .= ' | ' . $this->makeKnownLinkObj( $wgTitle,
957 wfMsg( 'currentrev' ) );
958 }
959
960 if ( $wgUser->getNewtalk() ) {
961 # do not show "You have new messages" text when we are viewing our
962 # own talk page
963 if( !$wgTitle->equals( $wgUser->getTalkPage() ) ) {
964 $tl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessageslink' ), 'redirect=no' );
965 $dl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessagesdifflink' ), 'diff=cur' );
966 $s.= ' | <strong>'. wfMsg( 'youhavenewmessages', $tl, $dl ) . '</strong>';
967 # disable caching
968 $wgOut->setSquidMaxage(0);
969 $wgOut->enableClientCache(false);
970 }
971 }
972
973 $undelete = $this->getUndeleteLink();
974 if( !empty( $undelete ) ) {
975 $s .= ' | '.$undelete;
976 }
977 return $s;
978 }
979
980 function getUndeleteLink() {
981 global $wgUser, $wgTitle, $wgContLang, $wgLang, $action;
982 if( $wgUser->isAllowed( 'deletedhistory' ) &&
983 (($wgTitle->getArticleId() == 0) || ($action == "history")) &&
984 ($n = $wgTitle->isDeleted() ) )
985 {
986 if ( $wgUser->isAllowed( 'undelete' ) ) {
987 $msg = 'thisisdeleted';
988 } else {
989 $msg = 'viewdeleted';
990 }
991 return wfMsg( $msg,
992 $this->makeKnownLinkObj(
993 SpecialPage::getTitleFor( 'Undelete', $wgTitle->getPrefixedDBkey() ),
994 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $wgLang->formatNum( $n ) ) ) );
995 }
996 return '';
997 }
998
999 function printableLink() {
1000 global $wgOut, $wgFeedClasses, $wgRequest;
1001
1002 $printurl = $wgRequest->escapeAppendQuery( 'printable=yes' );
1003
1004 $s = "<a href=\"$printurl\">" . wfMsg( 'printableversion' ) . '</a>';
1005 if( $wgOut->isSyndicated() ) {
1006 foreach( $wgFeedClasses as $format => $class ) {
1007 $feedurl = $wgRequest->escapeAppendQuery( "feed=$format" );
1008 $s .= " | <a href=\"$feedurl\">{$format}</a>";
1009 }
1010 }
1011 return $s;
1012 }
1013
1014 function pageTitle() {
1015 global $wgOut;
1016 $s = '<h1 class="pagetitle">' . htmlspecialchars( $wgOut->getPageTitle() ) . '</h1>';
1017 return $s;
1018 }
1019
1020 function pageSubtitle() {
1021 global $wgOut;
1022
1023 $sub = $wgOut->getSubtitle();
1024 if ( '' == $sub ) {
1025 global $wgExtraSubtitle;
1026 $sub = wfMsg( 'tagline' ) . $wgExtraSubtitle;
1027 }
1028 $subpages = $this->subPageSubtitle();
1029 $sub .= !empty($subpages)?"</p><p class='subpages'>$subpages":'';
1030 $s = "<p class='subtitle'>{$sub}</p>\n";
1031 return $s;
1032 }
1033
1034 function subPageSubtitle() {
1035 $subpages = '';
1036 if(!wfRunHooks('SkinSubPageSubtitle', array(&$subpages)))
1037 return $subpages;
1038
1039 global $wgOut, $wgTitle;
1040 if($wgOut->isArticle() && MWNamespace::hasSubpages( $wgTitle->getNamespace() )) {
1041 $ptext=$wgTitle->getPrefixedText();
1042 if(preg_match('/\//',$ptext)) {
1043 $links = explode('/',$ptext);
1044 array_pop( $links );
1045 $c = 0;
1046 $growinglink = '';
1047 $display = '';
1048 foreach($links as $link) {
1049 $growinglink .= $link;
1050 $display .= $link;
1051 $linkObj = Title::newFromText( $growinglink );
1052 if( is_object( $linkObj ) && $linkObj->exists() ){
1053 $getlink = $this->makeKnownLinkObj( $linkObj, htmlspecialchars( $display ) );
1054 $c++;
1055 if ($c>1) {
1056 $subpages .= ' | ';
1057 } else {
1058 $subpages .= '&lt; ';
1059 }
1060 $subpages .= $getlink;
1061 $display = '';
1062 } else {
1063 $display .= '/';
1064 }
1065 $growinglink .= '/';
1066 }
1067 }
1068 }
1069 return $subpages;
1070 }
1071
1072 /**
1073 * Returns true if the IP should be shown in the header
1074 */
1075 function showIPinHeader() {
1076 global $wgShowIPinHeader;
1077 return $wgShowIPinHeader && session_id() != '';
1078 }
1079
1080 function nameAndLogin() {
1081 global $wgUser, $wgTitle, $wgLang, $wgContLang;
1082
1083 $logoutPage = $wgContLang->specialPage( 'Userlogout' );
1084
1085 $ret = '';
1086 if ( $wgUser->isAnon() ) {
1087 if( $this->showIPinHeader() ) {
1088 $name = wfGetIP();
1089
1090 $talkLink = $this->link( $wgUser->getTalkPage(),
1091 $wgLang->getNsText( NS_TALK ) );
1092
1093 $ret .= "$name ($talkLink)";
1094 } else {
1095 $ret .= wfMsg( 'notloggedin' );
1096 }
1097
1098 $returnTo = $wgTitle->getPrefixedDBkey();
1099 $query = array();
1100 if ( $logoutPage != $returnTo ) {
1101 $query['returnto'] = $returnTo;
1102 }
1103
1104 $loginlink = $wgUser->isAllowed( 'createaccount' )
1105 ? 'nav-login-createaccount'
1106 : 'login';
1107 $ret .= "\n<br />" . $this->link(
1108 SpecialPage::getTitleFor( 'Userlogin' ),
1109 wfMsg( $loginlink ), array(), $query
1110 );
1111 } else {
1112 $returnTo = $wgTitle->getPrefixedDBkey();
1113 $talkLink = $this->link( $wgUser->getTalkPage(),
1114 $wgLang->getNsText( NS_TALK ) );
1115
1116 $ret .= $this->link( $wgUser->getUserPage(),
1117 htmlspecialchars( $wgUser->getName() ) );
1118 $ret .= " ($talkLink)<br />";
1119 $ret .= $this->link(
1120 SpecialPage::getTitleFor( 'Userlogout' ), wfMsg( 'logout' ),
1121 array(), array( 'returnto' => $returnTo )
1122 );
1123 $ret .= ' | ' . $this->specialLink( 'preferences' );
1124 }
1125 $ret .= ' | ' . $this->link(
1126 Title::newFromText( wfMsgForContent( 'helppage' ) ),
1127 wfMsg( 'help' )
1128 );
1129
1130 return $ret;
1131 }
1132
1133 function getSearchLink() {
1134 $searchPage = SpecialPage::getTitleFor( 'Search' );
1135 return $searchPage->getLocalURL();
1136 }
1137
1138 function escapeSearchLink() {
1139 return htmlspecialchars( $this->getSearchLink() );
1140 }
1141
1142 function searchForm() {
1143 global $wgRequest;
1144 $search = $wgRequest->getText( 'search' );
1145
1146 $s = '<form id="searchform'.$this->searchboxes.'" name="search" class="inline" method="post" action="'
1147 . $this->escapeSearchLink() . "\">\n"
1148 . '<input type="text" id="searchInput'.$this->searchboxes.'" name="search" size="19" value="'
1149 . htmlspecialchars(substr($search,0,256)) . "\" />\n"
1150 . '<input type="submit" name="go" value="' . wfMsg ('searcharticle') . '" />&nbsp;'
1151 . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n</form>";
1152
1153 // Ensure unique id's for search boxes made after the first
1154 $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1;
1155
1156 return $s;
1157 }
1158
1159 function topLinks() {
1160 global $wgOut;
1161 $sep = " |\n";
1162
1163 $s = $this->mainPageLink() . $sep
1164 . $this->specialLink( 'recentchanges' );
1165
1166 if ( $wgOut->isArticleRelated() ) {
1167 $s .= $sep . $this->editThisPage()
1168 . $sep . $this->historyLink();
1169 }
1170 # Many people don't like this dropdown box
1171 #$s .= $sep . $this->specialPagesList();
1172
1173 $s .= $this->variantLinks();
1174
1175 $s .= $this->extensionTabLinks();
1176
1177 return $s;
1178 }
1179
1180 /**
1181 * Compatibility for extensions adding functionality through tabs.
1182 * Eventually these old skins should be replaced with SkinTemplate-based
1183 * versions, sigh...
1184 * @return string
1185 */
1186 function extensionTabLinks() {
1187 $tabs = array();
1188 $s = '';
1189 wfRunHooks( 'SkinTemplateTabs', array( $this, &$tabs ) );
1190 foreach( $tabs as $tab ) {
1191 $s .= ' | ' . Xml::element( 'a',
1192 array( 'href' => $tab['href'] ),
1193 $tab['text'] );
1194 }
1195 return $s;
1196 }
1197
1198 /**
1199 * Language/charset variant links for classic-style skins
1200 * @return string
1201 */
1202 function variantLinks() {
1203 $s = '';
1204 /* show links to different language variants */
1205 global $wgDisableLangConversion, $wgContLang, $wgTitle;
1206 $variants = $wgContLang->getVariants();
1207 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
1208 foreach( $variants as $code ) {
1209 $varname = $wgContLang->getVariantname( $code );
1210 if( $varname == 'disable' )
1211 continue;
1212 $s .= ' | <a href="' . $wgTitle->escapeLocalUrl( 'variant=' . $code ) . '">' . htmlspecialchars( $varname ) . '</a>';
1213 }
1214 }
1215 return $s;
1216 }
1217
1218 function bottomLinks() {
1219 global $wgOut, $wgUser, $wgTitle, $wgUseTrackbacks;
1220 $sep = " |\n";
1221
1222 $s = '';
1223 if ( $wgOut->isArticleRelated() ) {
1224 $s .= '<strong>' . $this->editThisPage() . '</strong>';
1225 if ( $wgUser->isLoggedIn() ) {
1226 $s .= $sep . $this->watchThisPage();
1227 }
1228 $s .= $sep . $this->talkLink()
1229 . $sep . $this->historyLink()
1230 . $sep . $this->whatLinksHere()
1231 . $sep . $this->watchPageLinksLink();
1232
1233 if ($wgUseTrackbacks)
1234 $s .= $sep . $this->trackbackLink();
1235
1236 if ( $wgTitle->getNamespace() == NS_USER
1237 || $wgTitle->getNamespace() == NS_USER_TALK )
1238
1239 {
1240 $id=User::idFromName($wgTitle->getText());
1241 $ip=User::isIP($wgTitle->getText());
1242
1243 if($id || $ip) { # both anons and non-anons have contri list
1244 $s .= $sep . $this->userContribsLink();
1245 }
1246 if( $this->showEmailUser( $id ) ) {
1247 $s .= $sep . $this->emailUserLink();
1248 }
1249 }
1250 if ( $wgTitle->getArticleId() ) {
1251 $s .= "\n<br />";
1252 if($wgUser->isAllowed('delete')) { $s .= $this->deleteThisPage(); }
1253 if($wgUser->isAllowed('protect')) { $s .= $sep . $this->protectThisPage(); }
1254 if($wgUser->isAllowed('move')) { $s .= $sep . $this->moveThisPage(); }
1255 }
1256 $s .= "<br />\n" . $this->otherLanguages();
1257 }
1258 return $s;
1259 }
1260
1261 function pageStats() {
1262 global $wgOut, $wgLang, $wgArticle, $wgRequest, $wgUser;
1263 global $wgDisableCounters, $wgMaxCredits, $wgShowCreditsIfMax, $wgTitle, $wgPageShowWatchingUsers;
1264
1265 $oldid = $wgRequest->getVal( 'oldid' );
1266 $diff = $wgRequest->getVal( 'diff' );
1267 if ( ! $wgOut->isArticle() ) { return ''; }
1268 if ( isset( $oldid ) || isset( $diff ) ) { return ''; }
1269 if ( 0 == $wgArticle->getID() ) { return ''; }
1270
1271 $s = '';
1272 if ( !$wgDisableCounters ) {
1273 $count = $wgLang->formatNum( $wgArticle->getCount() );
1274 if ( $count ) {
1275 $s = wfMsgExt( 'viewcount', array( 'parseinline' ), $count );
1276 }
1277 }
1278
1279 if( $wgMaxCredits != 0 ){
1280 $s .= ' ' . Credits::getCredits( $wgArticle, $wgMaxCredits, $wgShowCreditsIfMax );
1281 } else {
1282 $s .= $this->lastModified();
1283 }
1284
1285 if( $wgPageShowWatchingUsers && $wgUser->getOption( 'shownumberswatching' ) ) {
1286 $dbr = wfGetDB( DB_SLAVE );
1287 $watchlist = $dbr->tableName( 'watchlist' );
1288 $sql = "SELECT COUNT(*) AS n FROM $watchlist
1289 WHERE wl_title='" . $dbr->strencode($wgTitle->getDBkey()) .
1290 "' AND wl_namespace=" . $wgTitle->getNamespace() ;
1291 $res = $dbr->query( $sql, 'Skin::pageStats');
1292 $x = $dbr->fetchObject( $res );
1293
1294 $s .= ' ' . wfMsgExt( 'number_of_watching_users_pageview',
1295 array( 'parseinline' ), $wgLang->formatNum($x->n)
1296 );
1297 }
1298
1299 return $s . ' ' . $this->getCopyright();
1300 }
1301
1302 function getCopyright( $type = 'detect' ) {
1303 global $wgRightsPage, $wgRightsUrl, $wgRightsText, $wgRequest, $wgArticle;
1304
1305 if ( $type == 'detect' ) {
1306 $diff = $wgRequest->getVal( 'diff' );
1307 $isCur = $wgArticle && $wgArticle->isCurrent();
1308 if ( is_null( $diff ) && !$isCur && wfMsgForContent( 'history_copyright' ) !== '-' ) {
1309 $type = 'history';
1310 } else {
1311 $type = 'normal';
1312 }
1313 }
1314
1315 if ( $type == 'history' ) {
1316 $msg = 'history_copyright';
1317 } else {
1318 $msg = 'copyright';
1319 }
1320
1321 $out = '';
1322 if( $wgRightsPage ) {
1323 $link = $this->makeKnownLink( $wgRightsPage, $wgRightsText );
1324 } elseif( $wgRightsUrl ) {
1325 $link = $this->makeExternalLink( $wgRightsUrl, $wgRightsText );
1326 } elseif( $wgRightsText ) {
1327 $link = $wgRightsText;
1328 } else {
1329 # Give up now
1330 return $out;
1331 }
1332 $out .= wfMsgForContent( $msg, $link );
1333 return $out;
1334 }
1335
1336 function getCopyrightIcon() {
1337 global $wgRightsUrl, $wgRightsText, $wgRightsIcon, $wgCopyrightIcon;
1338 $out = '';
1339 if ( isset( $wgCopyrightIcon ) && $wgCopyrightIcon ) {
1340 $out = $wgCopyrightIcon;
1341 } else if ( $wgRightsIcon ) {
1342 $icon = htmlspecialchars( $wgRightsIcon );
1343 if ( $wgRightsUrl ) {
1344 $url = htmlspecialchars( $wgRightsUrl );
1345 $out .= '<a href="'.$url.'">';
1346 }
1347 $text = htmlspecialchars( $wgRightsText );
1348 $out .= "<img src=\"$icon\" alt='$text' />";
1349 if ( $wgRightsUrl ) {
1350 $out .= '</a>';
1351 }
1352 }
1353 return $out;
1354 }
1355
1356 function getPoweredBy() {
1357 global $wgStylePath;
1358 $url = htmlspecialchars( "$wgStylePath/common/images/poweredby_mediawiki_88x31.png" );
1359 $img = '<a href="http://www.mediawiki.org/"><img src="'.$url.'" alt="Powered by MediaWiki" /></a>';
1360 return $img;
1361 }
1362
1363 function lastModified() {
1364 global $wgLang, $wgArticle;
1365 if( $this->mRevisionId ) {
1366 $timestamp = Revision::getTimestampFromId( $wgArticle->getTitle(), $this->mRevisionId );
1367 } else {
1368 $timestamp = $wgArticle->getTimestamp();
1369 }
1370 if ( $timestamp ) {
1371 $d = $wgLang->date( $timestamp, true );
1372 $t = $wgLang->time( $timestamp, true );
1373 $s = ' ' . wfMsg( 'lastmodifiedat', $d, $t );
1374 } else {
1375 $s = '';
1376 }
1377 if ( wfGetLB()->getLaggedSlaveMode() ) {
1378 $s .= ' <strong>' . wfMsg( 'laggedslavemode' ) . '</strong>';
1379 }
1380 return $s;
1381 }
1382
1383 function logoText( $align = '' ) {
1384 if ( '' != $align ) { $a = " align='{$align}'"; }
1385 else { $a = ''; }
1386
1387 $mp = wfMsg( 'mainpage' );
1388 $mptitle = Title::newMainPage();
1389 $url = ( is_object($mptitle) ? $mptitle->escapeLocalURL() : '' );
1390
1391 $logourl = $this->getLogo();
1392 $s = "<a href='{$url}'><img{$a} src='{$logourl}' alt='[{$mp}]' /></a>";
1393 return $s;
1394 }
1395
1396 /**
1397 * show a drop-down box of special pages
1398 */
1399 function specialPagesList() {
1400 global $wgUser, $wgContLang, $wgServer, $wgRedirectScript;
1401 $pages = array_merge( SpecialPage::getRegularPages(), SpecialPage::getRestrictedPages() );
1402 foreach ( $pages as $name => $page ) {
1403 $pages[$name] = $page->getDescription();
1404 }
1405
1406 $go = wfMsg( 'go' );
1407 $sp = wfMsg( 'specialpages' );
1408 $spp = $wgContLang->specialPage( 'Specialpages' );
1409
1410 $s = '<form id="specialpages" method="get" ' .
1411 'action="' . htmlspecialchars( "{$wgServer}{$wgRedirectScript}" ) . "\">\n";
1412 $s .= "<select name=\"wpDropdown\">\n";
1413 $s .= "<option value=\"{$spp}\">{$sp}</option>\n";
1414
1415
1416 foreach ( $pages as $name => $desc ) {
1417 $p = $wgContLang->specialPage( $name );
1418 $s .= "<option value=\"{$p}\">{$desc}</option>\n";
1419 }
1420 $s .= "</select>\n";
1421 $s .= "<input type='submit' value=\"{$go}\" name='redirect' />\n";
1422 $s .= "</form>\n";
1423 return $s;
1424 }
1425
1426 function mainPageLink() {
1427 $s = $this->makeKnownLinkObj( Title::newMainPage(), wfMsg( 'mainpage' ) );
1428 return $s;
1429 }
1430
1431 function copyrightLink() {
1432 $s = $this->makeKnownLink( wfMsgForContent( 'copyrightpage' ),
1433 wfMsg( 'copyrightpagename' ) );
1434 return $s;
1435 }
1436
1437 private function footerLink ( $desc, $page ) {
1438 // if the link description has been set to "-" in the default language,
1439 if ( wfMsgForContent( $desc ) == '-') {
1440 // then it is disabled, for all languages.
1441 return '';
1442 } else {
1443 // Otherwise, we display the link for the user, described in their
1444 // language (which may or may not be the same as the default language),
1445 // but we make the link target be the one site-wide page.
1446 return $this->makeKnownLink( wfMsgForContent( $page ),
1447 wfMsgExt( $desc, array( 'parsemag', 'escapenoentities' ) ) );
1448 }
1449 }
1450
1451 function privacyLink() {
1452 return $this->footerLink( 'privacy', 'privacypage' );
1453 }
1454
1455 function aboutLink() {
1456 return $this->footerLink( 'aboutsite', 'aboutpage' );
1457 }
1458
1459 function disclaimerLink() {
1460 return $this->footerLink( 'disclaimers', 'disclaimerpage' );
1461 }
1462
1463 function editThisPage() {
1464 global $wgOut, $wgTitle;
1465
1466 if ( !$wgOut->isArticleRelated() ) {
1467 $s = wfMsg( 'protectedpage' );
1468 } else {
1469 if( $wgTitle->quickUserCan( 'edit' ) && $wgTitle->exists() ) {
1470 $t = wfMsg( 'editthispage' );
1471 } elseif( $wgTitle->quickUserCan( 'create' ) && !$wgTitle->exists() ) {
1472 $t = wfMsg( 'create-this-page' );
1473 } else {
1474 $t = wfMsg( 'viewsource' );
1475 }
1476
1477 $s = $this->makeKnownLinkObj( $wgTitle, $t, $this->editUrlOptions() );
1478 }
1479 return $s;
1480 }
1481
1482 /**
1483 * Return URL options for the 'edit page' link.
1484 * This may include an 'oldid' specifier, if the current page view is such.
1485 *
1486 * @return string
1487 * @private
1488 */
1489 function editUrlOptions() {
1490 global $wgArticle;
1491
1492 if( $this->mRevisionId && ! $wgArticle->isCurrent() ) {
1493 return "action=edit&oldid=" . intval( $this->mRevisionId );
1494 } else {
1495 return "action=edit";
1496 }
1497 }
1498
1499 function deleteThisPage() {
1500 global $wgUser, $wgTitle, $wgRequest;
1501
1502 $diff = $wgRequest->getVal( 'diff' );
1503 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('delete') ) {
1504 $t = wfMsg( 'deletethispage' );
1505
1506 $s = $this->makeKnownLinkObj( $wgTitle, $t, 'action=delete' );
1507 } else {
1508 $s = '';
1509 }
1510 return $s;
1511 }
1512
1513 function protectThisPage() {
1514 global $wgUser, $wgTitle, $wgRequest;
1515
1516 $diff = $wgRequest->getVal( 'diff' );
1517 if ( $wgTitle->getArticleId() && ( ! $diff ) && $wgUser->isAllowed('protect') ) {
1518 if ( $wgTitle->isProtected() ) {
1519 $t = wfMsg( 'unprotectthispage' );
1520 $q = 'action=unprotect';
1521 } else {
1522 $t = wfMsg( 'protectthispage' );
1523 $q = 'action=protect';
1524 }
1525 $s = $this->makeKnownLinkObj( $wgTitle, $t, $q );
1526 } else {
1527 $s = '';
1528 }
1529 return $s;
1530 }
1531
1532 function watchThisPage() {
1533 global $wgOut, $wgTitle;
1534 ++$this->mWatchLinkNum;
1535
1536 if ( $wgOut->isArticleRelated() ) {
1537 if ( $wgTitle->userIsWatching() ) {
1538 $t = wfMsg( 'unwatchthispage' );
1539 $q = 'action=unwatch';
1540 $id = "mw-unwatch-link".$this->mWatchLinkNum;
1541 } else {
1542 $t = wfMsg( 'watchthispage' );
1543 $q = 'action=watch';
1544 $id = 'mw-watch-link'.$this->mWatchLinkNum;
1545 }
1546 $s = $this->makeKnownLinkObj( $wgTitle, $t, $q, '', '', " id=\"$id\"" );
1547 } else {
1548 $s = wfMsg( 'notanarticle' );
1549 }
1550 return $s;
1551 }
1552
1553 function moveThisPage() {
1554 global $wgTitle;
1555
1556 if ( $wgTitle->quickUserCan( 'move' ) ) {
1557 return $this->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ),
1558 wfMsg( 'movethispage' ), 'target=' . $wgTitle->getPrefixedURL() );
1559 } else {
1560 // no message if page is protected - would be redundant
1561 return '';
1562 }
1563 }
1564
1565 function historyLink() {
1566 global $wgTitle;
1567
1568 return $this->makeKnownLinkObj( $wgTitle,
1569 wfMsg( 'history' ), 'action=history' );
1570 }
1571
1572 function whatLinksHere() {
1573 global $wgTitle;
1574
1575 return $this->makeKnownLinkObj(
1576 SpecialPage::getTitleFor( 'Whatlinkshere', $wgTitle->getPrefixedDBkey() ),
1577 wfMsg( 'whatlinkshere' ) );
1578 }
1579
1580 function userContribsLink() {
1581 global $wgTitle;
1582
1583 return $this->makeKnownLinkObj(
1584 SpecialPage::getTitleFor( 'Contributions', $wgTitle->getDBkey() ),
1585 wfMsg( 'contributions' ) );
1586 }
1587
1588 function showEmailUser( $id ) {
1589 global $wgUser;
1590 $targetUser = User::newFromId( $id );
1591 return $wgUser->canSendEmail() && # the sending user must have a confirmed email address
1592 $targetUser->canReceiveEmail(); # the target user must have a confirmed email address and allow emails from users
1593 }
1594
1595 function emailUserLink() {
1596 global $wgTitle;
1597
1598 return $this->makeKnownLinkObj(
1599 SpecialPage::getTitleFor( 'Emailuser', $wgTitle->getDBkey() ),
1600 wfMsg( 'emailuser' ) );
1601 }
1602
1603 function watchPageLinksLink() {
1604 global $wgOut, $wgTitle;
1605
1606 if ( ! $wgOut->isArticleRelated() ) {
1607 return '(' . wfMsg( 'notanarticle' ) . ')';
1608 } else {
1609 return $this->makeKnownLinkObj(
1610 SpecialPage::getTitleFor( 'Recentchangeslinked', $wgTitle->getPrefixedDBkey() ),
1611 wfMsg( 'recentchangeslinked' ) );
1612 }
1613 }
1614
1615 function trackbackLink() {
1616 global $wgTitle;
1617
1618 return "<a href=\"" . $wgTitle->trackbackURL() . "\">"
1619 . wfMsg('trackbacklink') . "</a>";
1620 }
1621
1622 function otherLanguages() {
1623 global $wgOut, $wgContLang, $wgHideInterlanguageLinks;
1624
1625 if ( $wgHideInterlanguageLinks ) {
1626 return '';
1627 }
1628
1629 $a = $wgOut->getLanguageLinks();
1630 if ( 0 == count( $a ) ) {
1631 return '';
1632 }
1633
1634 $s = wfMsg( 'otherlanguages' ) . ': ';
1635 $first = true;
1636 if($wgContLang->isRTL()) $s .= '<span dir="LTR">';
1637 foreach( $a as $l ) {
1638 if ( ! $first ) { $s .= ' | '; }
1639 $first = false;
1640
1641 $nt = Title::newFromText( $l );
1642 $url = $nt->escapeFullURL();
1643 $text = $wgContLang->getLanguageName( $nt->getInterwiki() );
1644
1645 if ( '' == $text ) { $text = $l; }
1646 $style = $this->getExternalLinkAttributes( $l, $text );
1647 $s .= "<a href=\"{$url}\"{$style}>{$text}</a>";
1648 }
1649 if($wgContLang->isRTL()) $s .= '</span>';
1650 return $s;
1651 }
1652
1653 function bugReportsLink() {
1654 $s = $this->makeKnownLink( wfMsgForContent( 'bugreportspage' ),
1655 wfMsg( 'bugreports' ) );
1656 return $s;
1657 }
1658
1659 function talkLink() {
1660 global $wgTitle;
1661
1662 if ( NS_SPECIAL == $wgTitle->getNamespace() ) {
1663 # No discussion links for special pages
1664 return '';
1665 }
1666
1667 $linkOptions = array();
1668
1669 if( $wgTitle->isTalkPage() ) {
1670 $link = $wgTitle->getSubjectPage();
1671 switch( $link->getNamespace() ) {
1672 case NS_MAIN:
1673 $text = wfMsg( 'articlepage' );
1674 break;
1675 case NS_USER:
1676 $text = wfMsg( 'userpage' );
1677 break;
1678 case NS_PROJECT:
1679 $text = wfMsg( 'projectpage' );
1680 break;
1681 case NS_FILE:
1682 $text = wfMsg( 'imagepage' );
1683 # Make link known if image exists, even if the desc. page doesn't.
1684 if( wfFindFile( $link ) )
1685 $linkOptions[] = 'known';
1686 break;
1687 case NS_MEDIAWIKI:
1688 $text = wfMsg( 'mediawikipage' );
1689 break;
1690 case NS_TEMPLATE:
1691 $text = wfMsg( 'templatepage' );
1692 break;
1693 case NS_HELP:
1694 $text = wfMsg( 'viewhelppage' );
1695 break;
1696 case NS_CATEGORY:
1697 $text = wfMsg( 'categorypage' );
1698 break;
1699 default:
1700 $text = wfMsg( 'articlepage' );
1701 }
1702 } else {
1703 $link = $wgTitle->getTalkPage();
1704 $text = wfMsg( 'talkpage' );
1705 }
1706
1707 $s = $this->link( $link, $text, array(), array(), $linkOptions );
1708
1709 return $s;
1710 }
1711
1712 function commentLink() {
1713 global $wgTitle, $wgOut;
1714
1715 if ( $wgTitle->getNamespace() == NS_SPECIAL ) {
1716 return '';
1717 }
1718
1719 # __NEWSECTIONLINK___ changes behaviour here
1720 # If it's present, the link points to this page, otherwise
1721 # it points to the talk page
1722 if( $wgTitle->isTalkPage() ) {
1723 $title = $wgTitle;
1724 } elseif( $wgOut->showNewSectionLink() ) {
1725 $title = $wgTitle;
1726 } else {
1727 $title = $wgTitle->getTalkPage();
1728 }
1729
1730 return $this->makeKnownLinkObj( $title, wfMsg( 'postcomment' ), 'action=edit&section=new' );
1731 }
1732
1733 /* these are used extensively in SkinTemplate, but also some other places */
1734 static function makeMainPageUrl( $urlaction = '' ) {
1735 $title = Title::newMainPage();
1736 self::checkTitle( $title, '' );
1737 return $title->getLocalURL( $urlaction );
1738 }
1739
1740 static function makeSpecialUrl( $name, $urlaction = '' ) {
1741 $title = SpecialPage::getTitleFor( $name );
1742 return $title->getLocalURL( $urlaction );
1743 }
1744
1745 static function makeSpecialUrlSubpage( $name, $subpage, $urlaction = '' ) {
1746 $title = SpecialPage::getSafeTitleFor( $name, $subpage );
1747 return $title->getLocalURL( $urlaction );
1748 }
1749
1750 static function makeI18nUrl( $name, $urlaction = '' ) {
1751 $title = Title::newFromText( wfMsgForContent( $name ) );
1752 self::checkTitle( $title, $name );
1753 return $title->getLocalURL( $urlaction );
1754 }
1755
1756 static function makeUrl( $name, $urlaction = '' ) {
1757 $title = Title::newFromText( $name );
1758 self::checkTitle( $title, $name );
1759 return $title->getLocalURL( $urlaction );
1760 }
1761
1762 # If url string starts with http, consider as external URL, else
1763 # internal
1764 static function makeInternalOrExternalUrl( $name ) {
1765 if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', $name ) ) {
1766 return $name;
1767 } else {
1768 return self::makeUrl( $name );
1769 }
1770 }
1771
1772 # this can be passed the NS number as defined in Language.php
1773 static function makeNSUrl( $name, $urlaction = '', $namespace = NS_MAIN ) {
1774 $title = Title::makeTitleSafe( $namespace, $name );
1775 self::checkTitle( $title, $name );
1776 return $title->getLocalURL( $urlaction );
1777 }
1778
1779 /* these return an array with the 'href' and boolean 'exists' */
1780 static function makeUrlDetails( $name, $urlaction = '' ) {
1781 $title = Title::newFromText( $name );
1782 self::checkTitle( $title, $name );
1783 return array(
1784 'href' => $title->getLocalURL( $urlaction ),
1785 'exists' => $title->getArticleID() != 0 ? true : false
1786 );
1787 }
1788
1789 /**
1790 * Make URL details where the article exists (or at least it's convenient to think so)
1791 */
1792 static function makeKnownUrlDetails( $name, $urlaction = '' ) {
1793 $title = Title::newFromText( $name );
1794 self::checkTitle( $title, $name );
1795 return array(
1796 'href' => $title->getLocalURL( $urlaction ),
1797 'exists' => true
1798 );
1799 }
1800
1801 # make sure we have some title to operate on
1802 static function checkTitle( &$title, $name ) {
1803 if( !is_object( $title ) ) {
1804 $title = Title::newFromText( $name );
1805 if( !is_object( $title ) ) {
1806 $title = Title::newFromText( '--error: link target missing--' );
1807 }
1808 }
1809 }
1810
1811 /**
1812 * Build an array that represents the sidebar(s), the navigation bar among them
1813 *
1814 * @return array
1815 */
1816 function buildSidebar() {
1817 global $parserMemc, $wgEnableSidebarCache, $wgSidebarCacheExpiry;
1818 global $wgLang;
1819 wfProfileIn( __METHOD__ );
1820
1821 $key = wfMemcKey( 'sidebar', $wgLang->getCode() );
1822
1823 if ( $wgEnableSidebarCache ) {
1824 $cachedsidebar = $parserMemc->get( $key );
1825 if ( $cachedsidebar ) {
1826 wfProfileOut( __METHOD__ );
1827 return $cachedsidebar;
1828 }
1829 }
1830
1831 $bar = array();
1832 $lines = explode( "\n", wfMsgForContent( 'sidebar' ) );
1833 $heading = '';
1834 foreach ($lines as $line) {
1835 if (strpos($line, '*') !== 0)
1836 continue;
1837 if (strpos($line, '**') !== 0) {
1838 $line = trim($line, '* ');
1839 $heading = $line;
1840 if( !array_key_exists($heading, $bar) ) $bar[$heading] = array();
1841 } else {
1842 if (strpos($line, '|') !== false) { // sanity check
1843 $line = array_map('trim', explode( '|' , trim($line, '* '), 2 ) );
1844 $link = wfMsgForContent( $line[0] );
1845 if ($link == '-')
1846 continue;
1847 if (wfEmptyMsg($line[1], $text = wfMsg($line[1])))
1848 $text = $line[1];
1849 if (wfEmptyMsg($line[0], $link))
1850 $link = $line[0];
1851
1852 if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', $link ) ) {
1853 $href = $link;
1854 } else {
1855 $title = Title::newFromText( $link );
1856 if ( $title ) {
1857 $title = $title->fixSpecialName();
1858 $href = $title->getLocalURL();
1859 } else {
1860 $href = 'INVALID-TITLE';
1861 }
1862 }
1863
1864 $bar[$heading][] = array(
1865 'text' => $text,
1866 'href' => $href,
1867 'id' => 'n-' . strtr($line[1], ' ', '-'),
1868 'active' => false
1869 );
1870 } else { continue; }
1871 }
1872 }
1873 wfRunHooks('SkinBuildSidebar', array($this, &$bar));
1874 if ( $wgEnableSidebarCache ) $parserMemc->set( $key, $bar, $wgSidebarCacheExpiry );
1875 wfProfileOut( __METHOD__ );
1876 return $bar;
1877 }
1878 }