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