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