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