Crappy spaces from r79549
[lhc/web/wiklou.git] / includes / SkinTemplate.php
1 <?php
2 /**
3 * Base class for template-based skins
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 if ( !defined( 'MEDIAWIKI' ) ) {
24 die( 1 );
25 }
26
27 /**
28 * Wrapper object for MediaWiki's localization functions,
29 * to be passed to the template engine.
30 *
31 * @private
32 * @ingroup Skins
33 */
34 class MediaWiki_I18N {
35 var $_context = array();
36
37 function set( $varName, $value ) {
38 $this->_context[$varName] = $value;
39 }
40
41 function translate( $value ) {
42 wfProfileIn( __METHOD__ );
43
44 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
45 $value = preg_replace( '/^string:/', '', $value );
46
47 $value = wfMsg( $value );
48 // interpolate variables
49 $m = array();
50 while( preg_match( '/\$([0-9]*?)/sm', $value, $m ) ) {
51 list( $src, $var ) = $m;
52 wfSuppressWarnings();
53 $varValue = $this->_context[$var];
54 wfRestoreWarnings();
55 $value = str_replace( $src, $varValue, $value );
56 }
57 wfProfileOut( __METHOD__ );
58 return $value;
59 }
60 }
61
62 /**
63 * Template-filler skin base class
64 * Formerly generic PHPTal (http://phptal.sourceforge.net/) skin
65 * Based on Brion's smarty skin
66 * @copyright Copyright © Gabriel Wicke -- http://www.aulinx.de/
67 *
68 * @todo Needs some serious refactoring into functions that correspond
69 * to the computations individual esi snippets need. Most importantly no body
70 * parsing for most of those of course.
71 *
72 * @ingroup Skins
73 */
74 class SkinTemplate extends Skin {
75 /**#@+
76 * @private
77 */
78
79 /**
80 * Name of our skin, it probably needs to be all lower case. Child classes
81 * should override the default.
82 */
83 var $skinname = 'monobook';
84
85 /**
86 * Stylesheets set to use. Subdirectory in skins/ where various stylesheets
87 * are located. Child classes should override the default.
88 */
89 var $stylename = 'monobook';
90
91 /**
92 * For QuickTemplate, the name of the subclass which will actually fill the
93 * template. Child classes should override the default.
94 */
95 var $template = 'QuickTemplate';
96
97 /**
98 * Whether this skin use OutputPage::headElement() to generate the <head>
99 * tag
100 */
101 var $useHeadElement = false;
102
103 /**#@-*/
104
105 /**
106 * Add specific styles for this skin
107 *
108 * @param $out OutputPage
109 */
110 function setupSkinUserCss( OutputPage $out ){
111 $out->addModuleStyles( array( 'mediawiki.legacy.shared', 'mediawiki.legacy.commonPrint' ) );
112 }
113
114 /**
115 * Create the template engine object; we feed it a bunch of data
116 * and eventually it spits out some HTML. Should have interface
117 * roughly equivalent to PHPTAL 0.7.
118 *
119 * @param $classname string (or file)
120 * @param $repository string: subdirectory where we keep template files
121 * @param $cache_dir string
122 * @return object
123 * @private
124 */
125 function setupTemplate( $classname, $repository = false, $cache_dir = false ) {
126 return new $classname();
127 }
128
129 /**
130 * initialize various variables and generate the template
131 *
132 * @param $out OutputPage
133 */
134 function outputPage( OutputPage $out ) {
135 global $wgArticle, $wgUser, $wgLang, $wgContLang;
136 global $wgScript, $wgStylePath, $wgLanguageCode;
137 global $wgMimeType, $wgJsMimeType, $wgOutputEncoding, $wgRequest;
138 global $wgXhtmlDefaultNamespace, $wgXhtmlNamespaces, $wgHtml5Version;
139 global $wgDisableCounters, $wgLogo, $wgHideInterlanguageLinks;
140 global $wgMaxCredits, $wgShowCreditsIfMax;
141 global $wgPageShowWatchingUsers;
142 global $wgUseTrackbacks, $wgUseSiteJs, $wgDebugComments;
143 global $wgArticlePath, $wgScriptPath, $wgServer, $wgProfiler;
144
145 wfProfileIn( __METHOD__ );
146 if ( is_object( $wgProfiler ) ) {
147 $wgProfiler->setTemplated( true );
148 }
149
150 $oldid = $wgRequest->getVal( 'oldid' );
151 $diff = $wgRequest->getVal( 'diff' );
152 $action = $wgRequest->getVal( 'action', 'view' );
153
154 wfProfileIn( __METHOD__ . '-init' );
155 $this->initPage( $out );
156
157 $this->setMembers();
158 $tpl = $this->setupTemplate( $this->template, 'skins' );
159
160 #if ( $wgUseDatabaseMessages ) { // uncomment this to fall back to GetText
161 $tpl->setTranslator( new MediaWiki_I18N() );
162 #}
163 wfProfileOut( __METHOD__ . '-init' );
164
165 wfProfileIn( __METHOD__ . '-stuff' );
166 $this->thispage = $this->mTitle->getPrefixedDBkey();
167 $this->thisurl = $this->mTitle->getPrefixedURL();
168 $query = array();
169 if ( !$wgRequest->wasPosted() ) {
170 $query = $wgRequest->getValues();
171 unset( $query['title'] );
172 unset( $query['returnto'] );
173 unset( $query['returntoquery'] );
174 }
175 $this->thisquery = wfUrlencode( wfArrayToCGI( $query ) );
176 $this->loggedin = $wgUser->isLoggedIn();
177 $this->iscontent = ( $this->mTitle->getNamespace() != NS_SPECIAL );
178 $this->iseditable = ( $this->iscontent and !( $action == 'edit' or $action == 'submit' ) );
179 $this->username = $wgUser->getName();
180
181 if ( $wgUser->isLoggedIn() || $this->showIPinHeader() ) {
182 $this->userpageUrlDetails = self::makeUrlDetails( $this->userpage );
183 } else {
184 # This won't be used in the standard skins, but we define it to preserve the interface
185 # To save time, we check for existence
186 $this->userpageUrlDetails = self::makeKnownUrlDetails( $this->userpage );
187 }
188
189 $this->titletxt = $this->mTitle->getPrefixedText();
190 wfProfileOut( __METHOD__ . '-stuff' );
191
192 wfProfileIn( __METHOD__ . '-stuff-head' );
193 if ( $this->useHeadElement ) {
194 $pagecss = $this->setupPageCss();
195 if( $pagecss )
196 $out->addInlineStyle( $pagecss );
197 } else {
198 $this->setupUserCss( $out );
199
200 $tpl->set( 'pagecss', $this->setupPageCss() );
201 $tpl->setRef( 'usercss', $this->usercss );
202
203 $this->userjs = $this->userjsprev = false;
204 $this->setupUserJs( $out->isUserJsAllowed() );
205 $tpl->setRef( 'userjs', $this->userjs );
206 $tpl->setRef( 'userjsprev', $this->userjsprev );
207
208 if( $wgUseSiteJs ) {
209 $jsCache = $this->loggedin ? '&smaxage=0' : '';
210 $tpl->set( 'jsvarurl',
211 self::makeUrl( '-',
212 "action=raw$jsCache&gen=js&useskin=" .
213 urlencode( $this->getSkinName() ) ) );
214 } else {
215 $tpl->set( 'jsvarurl', false );
216 }
217
218 $tpl->setRef( 'xhtmldefaultnamespace', $wgXhtmlDefaultNamespace );
219 $tpl->set( 'xhtmlnamespaces', $wgXhtmlNamespaces );
220 $tpl->set( 'html5version', $wgHtml5Version );
221 $tpl->set( 'headlinks', $out->getHeadLinks( $this ) );
222 $tpl->set( 'csslinks', $out->buildCssLinks() );
223
224 if( $wgUseTrackbacks && $out->isArticleRelated() ) {
225 $tpl->set( 'trackbackhtml', $out->getTitle()->trackbackRDF() );
226 } else {
227 $tpl->set( 'trackbackhtml', null );
228 }
229 }
230 wfProfileOut( __METHOD__ . '-stuff-head' );
231
232 wfProfileIn( __METHOD__ . '-stuff2' );
233 $tpl->set( 'title', $out->getPageTitle() );
234 $tpl->set( 'pagetitle', $out->getHTMLTitle() );
235 $tpl->set( 'displaytitle', $out->mPageLinkTitle );
236 $tpl->set( 'pageclass', $this->getPageClasses( $this->mTitle ) );
237 $tpl->set( 'skinnameclass', ( 'skin-' . Sanitizer::escapeClass( $this->getSkinName() ) ) );
238
239 $nsname = MWNamespace::exists( $this->mTitle->getNamespace() ) ?
240 MWNamespace::getCanonicalName( $this->mTitle->getNamespace() ) :
241 $this->mTitle->getNsText();
242
243 $tpl->set( 'nscanonical', $nsname );
244 $tpl->set( 'nsnumber', $this->mTitle->getNamespace() );
245 $tpl->set( 'titleprefixeddbkey', $this->mTitle->getPrefixedDBKey() );
246 $tpl->set( 'titletext', $this->mTitle->getText() );
247 $tpl->set( 'articleid', $this->mTitle->getArticleId() );
248 $tpl->set( 'currevisionid', isset( $wgArticle ) ? $wgArticle->getLatest() : 0 );
249
250 $tpl->set( 'isarticle', $out->isArticle() );
251
252 $tpl->setRef( 'thispage', $this->thispage );
253 $subpagestr = $this->subPageSubtitle();
254 $tpl->set(
255 'subtitle', !empty( $subpagestr ) ?
256 '<span class="subpages">' . $subpagestr . '</span>' . $out->getSubtitle() :
257 $out->getSubtitle()
258 );
259 $undelete = $this->getUndeleteLink();
260 $tpl->set(
261 'undelete', !empty( $undelete ) ?
262 '<span class="subpages">' . $undelete . '</span>' :
263 ''
264 );
265
266 $tpl->set( 'catlinks', $this->getCategories() );
267 if( $out->isSyndicated() ) {
268 $feeds = array();
269 foreach( $out->getSyndicationLinks() as $format => $link ) {
270 $feeds[$format] = array(
271 'text' => wfMsg( "feed-$format" ),
272 'href' => $link
273 );
274 }
275 $tpl->setRef( 'feeds', $feeds );
276 } else {
277 $tpl->set( 'feeds', false );
278 }
279
280 $tpl->setRef( 'mimetype', $wgMimeType );
281 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
282 $tpl->setRef( 'charset', $wgOutputEncoding );
283 $tpl->setRef( 'wgScript', $wgScript );
284 $tpl->setRef( 'skinname', $this->skinname );
285 $tpl->set( 'skinclass', get_class( $this ) );
286 $tpl->setRef( 'stylename', $this->stylename );
287 $tpl->set( 'printable', $out->isPrintable() );
288 $tpl->set( 'handheld', $wgRequest->getBool( 'handheld' ) );
289 $tpl->setRef( 'loggedin', $this->loggedin );
290 $tpl->set( 'notspecialpage', $this->mTitle->getNamespace() != NS_SPECIAL );
291 /* XXX currently unused, might get useful later
292 $tpl->set( 'editable', ( $this->mTitle->getNamespace() != NS_SPECIAL ) );
293 $tpl->set( 'exists', $this->mTitle->getArticleID() != 0 );
294 $tpl->set( 'watch', $this->mTitle->userIsWatching() ? 'unwatch' : 'watch' );
295 $tpl->set( 'protect', count( $this->mTitle->isProtected() ) ? 'unprotect' : 'protect' );
296 $tpl->set( 'helppage', wfMsg( 'helppage' ) );
297 */
298 $tpl->set( 'searchaction', $this->escapeSearchLink() );
299 $tpl->set( 'searchtitle', SpecialPage::getTitleFor( 'Search' )->getPrefixedDBKey() );
300 $tpl->set( 'search', trim( $wgRequest->getVal( 'search' ) ) );
301 $tpl->setRef( 'stylepath', $wgStylePath );
302 $tpl->setRef( 'articlepath', $wgArticlePath );
303 $tpl->setRef( 'scriptpath', $wgScriptPath );
304 $tpl->setRef( 'serverurl', $wgServer );
305 $tpl->setRef( 'logopath', $wgLogo );
306
307 $lang = wfUILang();
308 $tpl->set( 'lang', $lang->getCode() );
309 $tpl->set( 'dir', $lang->getDir() );
310 $tpl->set( 'rtl', $lang->isRTL() );
311
312 $tpl->set( 'capitalizeallnouns', $wgLang->capitalizeAllNouns() ? ' capitalize-all-nouns' : '' );
313 $tpl->set( 'showjumplinks', $wgUser->getOption( 'showjumplinks' ) );
314 $tpl->set( 'username', $wgUser->isAnon() ? null : $this->username );
315 $tpl->setRef( 'userpage', $this->userpage );
316 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href'] );
317 $tpl->set( 'userlang', $wgLang->getCode() );
318
319 // Users can have their language set differently than the
320 // content of the wiki. For these users, tell the web browser
321 // that interface elements are in a different language.
322 $tpl->set( 'userlangattributes', '' );
323 $tpl->set( 'specialpageattributes', '' );
324
325 $lang = $wgLang->getCode();
326 $dir = $wgLang->getDir();
327 if ( $lang !== $wgContLang->getCode() || $dir !== $wgContLang->getDir() ) {
328 $attrs = " lang='$lang' dir='$dir'";
329
330 $tpl->set( 'userlangattributes', $attrs );
331
332 // The content of SpecialPages should be presented in the
333 // user's language. Content of regular pages should not be touched.
334 if( $this->mTitle->isSpecialPage() ) {
335 $tpl->set( 'specialpageattributes', $attrs );
336 }
337 }
338
339 $newtalks = $this->getNewtalks();
340
341 wfProfileOut( __METHOD__ . '-stuff2' );
342
343 wfProfileIn( __METHOD__ . '-stuff3' );
344 $tpl->setRef( 'newtalk', $newtalks );
345 $tpl->setRef( 'skin', $this );
346 $tpl->set( 'logo', $this->logoText() );
347 if ( $out->isArticle() && ( !isset( $oldid ) || isset( $diff ) ) &&
348 $wgArticle && 0 != $wgArticle->getID() ){
349 if ( !$wgDisableCounters ) {
350 $viewcount = $wgLang->formatNum( $wgArticle->getCount() );
351 if ( $viewcount ) {
352 $tpl->set( 'viewcount', wfMsgExt( 'viewcount', array( 'parseinline' ), $viewcount ) );
353 } else {
354 $tpl->set( 'viewcount', false );
355 }
356 } else {
357 $tpl->set( 'viewcount', false );
358 }
359
360 if( $wgPageShowWatchingUsers ) {
361 $dbr = wfGetDB( DB_SLAVE );
362 $res = $dbr->select( 'watchlist',
363 array( 'COUNT(*) AS n' ),
364 array( 'wl_title' => $dbr->strencode( $this->mTitle->getDBkey() ), 'wl_namespace' => $this->mTitle->getNamespace() ),
365 __METHOD__
366 );
367 $x = $dbr->fetchObject( $res );
368 $numberofwatchingusers = $x->n;
369 if( $numberofwatchingusers > 0 ) {
370 $tpl->set( 'numberofwatchingusers',
371 wfMsgExt( 'number_of_watching_users_pageview', array( 'parseinline' ),
372 $wgLang->formatNum( $numberofwatchingusers ) )
373 );
374 } else {
375 $tpl->set( 'numberofwatchingusers', false );
376 }
377 } else {
378 $tpl->set( 'numberofwatchingusers', false );
379 }
380
381 $tpl->set( 'copyright', $this->getCopyright() );
382
383 $this->credits = false;
384
385 if( $wgMaxCredits != 0 ){
386 $this->credits = Credits::getCredits( $wgArticle, $wgMaxCredits, $wgShowCreditsIfMax );
387 } else {
388 $tpl->set( 'lastmod', $this->lastModified() );
389 }
390
391 $tpl->setRef( 'credits', $this->credits );
392
393 } elseif ( isset( $oldid ) && !isset( $diff ) ) {
394 $tpl->set( 'copyright', $this->getCopyright() );
395 $tpl->set( 'viewcount', false );
396 $tpl->set( 'lastmod', false );
397 $tpl->set( 'credits', false );
398 $tpl->set( 'numberofwatchingusers', false );
399 } else {
400 $tpl->set( 'copyright', false );
401 $tpl->set( 'viewcount', false );
402 $tpl->set( 'lastmod', false );
403 $tpl->set( 'credits', false );
404 $tpl->set( 'numberofwatchingusers', false );
405 }
406 wfProfileOut( __METHOD__ . '-stuff3' );
407
408 wfProfileIn( __METHOD__ . '-stuff4' );
409 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
410 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
411 $tpl->set( 'disclaimer', $this->disclaimerLink() );
412 $tpl->set( 'privacy', $this->privacyLink() );
413 $tpl->set( 'about', $this->aboutLink() );
414
415 $tpl->set( 'footerlinks', array(
416 'info' => array(
417 'lastmod',
418 'viewcount',
419 'numberofwatchingusers',
420 'credits',
421 'copyright',
422 ),
423 'places' => array(
424 'privacy',
425 'about',
426 'disclaimer',
427 ),
428 ) );
429
430 global $wgFooterIcons;
431 $tpl->set( 'footericons', $wgFooterIcons );
432 foreach ( $tpl->data['footericons'] as $footerIconsKey => &$footerIconsBlock ) {
433 if ( count( $footerIconsBlock ) > 0 ) {
434 foreach ( $footerIconsBlock as &$footerIcon ) {
435 if ( isset( $footerIcon['src'] ) ) {
436 if ( !isset( $footerIcon['width'] ) ) {
437 $footerIcon['width'] = 88;
438 }
439 if ( !isset( $footerIcon['height'] ) ) {
440 $footerIcon['height'] = 31;
441 }
442 }
443 }
444 } else {
445 unset( $tpl->data['footericons'][$footerIconsKey] );
446 }
447 }
448
449 if ( $wgDebugComments ) {
450 $tpl->setRef( 'debug', $out->mDebugtext );
451 } else {
452 $tpl->set( 'debug', '' );
453 }
454
455 $tpl->set( 'reporttime', wfReportTime() );
456 $tpl->set( 'sitenotice', wfGetSiteNotice() );
457 $tpl->set( 'bottomscripts', $this->bottomScripts( $out ) );
458
459 $printfooter = "<div class=\"printfooter\">\n" . $this->printSource() . "</div>\n";
460 global $wgBetterDirectionality;
461 if ( $wgBetterDirectionality ) {
462 $realBodyAttribs = array( 'lang' => $wgLanguageCode, 'dir' => $wgContLang->getDir() );
463 $out->mBodytext = Html::rawElement( 'div', $realBodyAttribs, $out->mBodytext );
464 }
465 $out->mBodytext .= $printfooter . $this->generateDebugHTML();
466 $tpl->setRef( 'bodytext', $out->mBodytext );
467
468 # Language links
469 $language_urls = array();
470
471 if ( !$wgHideInterlanguageLinks ) {
472 foreach( $out->getLanguageLinks() as $l ) {
473 $tmp = explode( ':', $l, 2 );
474 $class = 'interwiki-' . $tmp[0];
475 unset( $tmp );
476 $nt = Title::newFromText( $l );
477 if ( $nt ) {
478 $language_urls[] = array(
479 'href' => $nt->getFullURL(),
480 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' ?
481 $wgContLang->getLanguageName( $nt->getInterwiki() ) : $l ),
482 'title' => $nt->getText(),
483 'class' => $class
484 );
485 }
486 }
487 }
488 if( count( $language_urls ) ) {
489 $tpl->setRef( 'language_urls', $language_urls );
490 } else {
491 $tpl->set( 'language_urls', false );
492 }
493 wfProfileOut( __METHOD__ . '-stuff4' );
494
495 wfProfileIn( __METHOD__ . '-stuff5' );
496 # Personal toolbar
497 $tpl->set( 'personal_urls', $this->buildPersonalUrls() );
498 $content_navigation = $this->buildContentNavigationUrls();
499 $content_actions = $this->buildContentActionUrls( $content_navigation );
500 $tpl->setRef( 'content_navigation', $content_navigation );
501 $tpl->setRef( 'content_actions', $content_actions );
502
503 $tpl->set( 'sidebar', $this->buildSidebar() );
504 $tpl->set( 'nav_urls', $this->buildNavUrls() );
505
506 // Set the head scripts near the end, in case the above actions resulted in added scripts
507 if ( $this->useHeadElement ) {
508 $tpl->set( 'headelement', $out->headElement( $this ) );
509 } else {
510 $tpl->set( 'headscripts', $out->getScript() );
511 }
512
513 // original version by hansm
514 if( !wfRunHooks( 'SkinTemplateOutputPageBeforeExec', array( &$this, &$tpl ) ) ) {
515 wfDebug( __METHOD__ . ": Hook SkinTemplateOutputPageBeforeExec broke outputPage execution!\n" );
516 }
517
518 // allow extensions adding stuff after the page content.
519 // See Skin::afterContentHook() for further documentation.
520 $tpl->set( 'dataAfterContent', $this->afterContentHook() );
521 wfProfileOut( __METHOD__ . '-stuff5' );
522
523 // execute template
524 wfProfileIn( __METHOD__ . '-execute' );
525 $res = $tpl->execute();
526 wfProfileOut( __METHOD__ . '-execute' );
527
528 // result may be an error
529 $this->printOrError( $res );
530 wfProfileOut( __METHOD__ );
531 }
532
533 /**
534 * Output the string, or print error message if it's
535 * an error object of the appropriate type.
536 * For the base class, assume strings all around.
537 *
538 * @param $str Mixed
539 * @private
540 */
541 function printOrError( $str ) {
542 echo $str;
543 }
544
545 /**
546 * Output a boolean indiciating if buildPersonalUrls should output separate
547 * login and create account links or output a combined link
548 * By default we simply return a global config setting that affects most skins
549 * This is setup as a method so that like with $wgLogo and getLogo() a skin
550 * can override this setting and always output one or the other if it has
551 * a reason it can't output one of the two modes.
552 */
553 function useCombinedLoginLink() {
554 global $wgUseCombinedLoginLink;
555 return $wgUseCombinedLoginLink;
556 }
557
558 /**
559 * build array of urls for personal toolbar
560 * @return array
561 * @private
562 */
563 function buildPersonalUrls() {
564 global $wgOut, $wgRequest;
565
566 $title = $wgOut->getTitle();
567 $pageurl = $title->getLocalURL();
568 wfProfileIn( __METHOD__ );
569
570 /* set up the default links for the personal toolbar */
571 $personal_urls = array();
572 $page = $wgRequest->getVal( 'returnto', $this->thisurl );
573 $query = $wgRequest->getVal( 'returntoquery', $this->thisquery );
574 $returnto = "returnto=$page";
575 if( $this->thisquery != '' ) {
576 $returnto .= "&returntoquery=$query";
577 }
578 if( $this->loggedin ) {
579 $personal_urls['userpage'] = array(
580 'text' => $this->username,
581 'href' => &$this->userpageUrlDetails['href'],
582 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
583 'active' => ( $this->userpageUrlDetails['href'] == $pageurl )
584 );
585 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
586 $personal_urls['mytalk'] = array(
587 'text' => wfMsg( 'mytalk' ),
588 'href' => &$usertalkUrlDetails['href'],
589 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
590 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
591 );
592 $href = self::makeSpecialUrl( 'Preferences' );
593 $personal_urls['preferences'] = array(
594 'text' => wfMsg( 'mypreferences' ),
595 'href' => $href,
596 'active' => ( $href == $pageurl )
597 );
598 $href = self::makeSpecialUrl( 'Watchlist' );
599 $personal_urls['watchlist'] = array(
600 'text' => wfMsg( 'mywatchlist' ),
601 'href' => $href,
602 'active' => ( $href == $pageurl )
603 );
604
605 # We need to do an explicit check for Special:Contributions, as we
606 # have to match both the title, and the target (which could come
607 # from request values or be specified in "sub page" form. The plot
608 # thickens, because $wgTitle is altered for special pages, so doesn't
609 # contain the original alias-with-subpage.
610 $origTitle = Title::newFromText( $wgRequest->getText( 'title' ) );
611 if( $origTitle instanceof Title && $origTitle->getNamespace() == NS_SPECIAL ) {
612 list( $spName, $spPar ) =
613 SpecialPage::resolveAliasWithSubpage( $origTitle->getText() );
614 $active = $spName == 'Contributions'
615 && ( ( $spPar && $spPar == $this->username )
616 || $wgRequest->getText( 'target' ) == $this->username );
617 } else {
618 $active = false;
619 }
620
621 $href = self::makeSpecialUrlSubpage( 'Contributions', $this->username );
622 $personal_urls['mycontris'] = array(
623 'text' => wfMsg( 'mycontris' ),
624 'href' => $href,
625 'active' => $active
626 );
627 $personal_urls['logout'] = array(
628 'text' => wfMsg( 'userlogout' ),
629 'href' => self::makeSpecialUrl( 'Userlogout',
630 $title->isSpecial( 'Preferences' ) ? '' : $returnto
631 ),
632 'active' => false
633 );
634 } else {
635 global $wgUser;
636 $useCombinedLoginLink = $this->useCombinedLoginLink();
637 $loginlink = $wgUser->isAllowed( 'createaccount' ) && $useCombinedLoginLink
638 ? 'nav-login-createaccount'
639 : 'login';
640 $is_signup = $wgRequest->getText('type') == "signup";
641
642 # anonlogin & login are the same
643 $login_url = array(
644 'text' => wfMsg( $loginlink ),
645 'href' => self::makeSpecialUrl( 'Userlogin', $returnto ),
646 'active' => $title->isSpecial( 'Userlogin' ) && ( $loginlink == "nav-login-createaccount" || !$is_signup )
647 );
648 if ( $wgUser->isAllowed( 'createaccount' ) && !$useCombinedLoginLink ) {
649 $createaccount_url = array(
650 'text' => wfMsg( 'createaccount' ),
651 'href' => self::makeSpecialUrl( 'Userlogin', "$returnto&type=signup" ),
652 'active' => $title->isSpecial( 'Userlogin' ) && $is_signup
653 );
654 }
655 global $wgProto, $wgSecureLogin;
656 if( $wgProto === 'http' && $wgSecureLogin ) {
657 $title = SpecialPage::getTitleFor( 'Userlogin' );
658 $https_url = preg_replace( '/^http:/', 'https:', $title->getFullURL() );
659 $login_url['href'] = $https_url;
660 $login_url['class'] = 'link-https'; # FIXME class depends on skin
661 if ( isset($createaccount_url) ) {
662 $https_url = preg_replace( '/^http:/', 'https:', $title->getFullURL("type=signup") );
663 $createaccount_url['href'] = $https_url;
664 $createaccount_url['class'] = 'link-https'; # FIXME class depends on skin
665 }
666 }
667
668
669 if( $this->showIPinHeader() ) {
670 $href = &$this->userpageUrlDetails['href'];
671 $personal_urls['anonuserpage'] = array(
672 'text' => $this->username,
673 'href' => $href,
674 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
675 'active' => ( $pageurl == $href )
676 );
677 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
678 $href = &$usertalkUrlDetails['href'];
679 $personal_urls['anontalk'] = array(
680 'text' => wfMsg( 'anontalk' ),
681 'href' => $href,
682 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
683 'active' => ( $pageurl == $href )
684 );
685 $personal_urls['anonlogin'] = $login_url;
686 if ( isset($createaccount_url) ) {
687 $personal_urls['createaccount'] = $createaccount_url;
688 }
689 } else {
690 $personal_urls['login'] = $login_url;
691 }
692 }
693
694 wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$title ) );
695 wfProfileOut( __METHOD__ );
696 return $personal_urls;
697 }
698
699 function tabAction( $title, $message, $selected, $query = '', $checkEdit = false ) {
700 $classes = array();
701 if( $selected ) {
702 $classes[] = 'selected';
703 }
704 if( $checkEdit && !$title->isKnown() ) {
705 $classes[] = 'new';
706 $query = 'action=edit&redlink=1';
707 }
708
709 $text = wfMsg( $message );
710 if ( wfEmptyMsg( $message, $text ) ) {
711 global $wgContLang;
712 $text = $wgContLang->getFormattedNsText( MWNamespace::getSubject( $title->getNamespace() ) );
713 }
714
715 $result = array();
716 if( !wfRunHooks( 'SkinTemplateTabAction', array( &$this,
717 $title, $message, $selected, $checkEdit,
718 &$classes, &$query, &$text, &$result ) ) ) {
719 return $result;
720 }
721
722 return array(
723 'class' => implode( ' ', $classes ),
724 'text' => $text,
725 'href' => $title->getLocalUrl( $query ),
726 'primary' => true );
727 }
728
729 function makeTalkUrlDetails( $name, $urlaction = '' ) {
730 $title = Title::newFromText( $name );
731 if( !is_object( $title ) ) {
732 throw new MWException( __METHOD__ . " given invalid pagename $name" );
733 }
734 $title = $title->getTalkPage();
735 self::checkTitle( $title, $name );
736 return array(
737 'href' => $title->getLocalURL( $urlaction ),
738 'exists' => $title->getArticleID() != 0,
739 );
740 }
741
742 function makeArticleUrlDetails( $name, $urlaction = '' ) {
743 $title = Title::newFromText( $name );
744 $title= $title->getSubjectPage();
745 self::checkTitle( $title, $name );
746 return array(
747 'href' => $title->getLocalURL( $urlaction ),
748 'exists' => $title->getArticleID() != 0,
749 );
750 }
751
752 /**
753 * a structured array of links usually used for the tabs in a skin
754 *
755 * There are 4 standard sections
756 * namespaces: Used for namespace tabs like special, page, and talk namespaces
757 * views: Used for primary page views like read, edit, history
758 * actions: Used for most extra page actions like deletion, protection, etc...
759 * variants: Used to list the language variants for the page
760 *
761 * Each section's value is a key/value array of links for that section.
762 * The links themseves have these common keys:
763 * - class: The css classes to apply to the tab
764 * - text: The text to display on the tab
765 * - href: The href for the tab to point to
766 * - rel: An optional rel= for the tab's link
767 * - redundant: If true the tab will be dropped in skins using content_actions
768 * this is useful for tabs like "Read" which only have meaning in skins that
769 * take special meaning from the grouped structure of content_navigation
770 *
771 * Views also have an extra key which can be used:
772 * - primary: If this is not true skins like vector may try to hide the tab
773 * when the user has limited space in their browser window
774 *
775 * content_navigation using code also expects these ids to be present on the
776 * links, however these are usually automatically generated by SkinTemplate
777 * itself and are not necessary when using a hook. The only things these may
778 * matter to are people modifying content_navigation after it's initial creation:
779 * - id: A "preferred" id, most skins are best off outputting this preferred id for best compatibility
780 * - tooltiponly: This is set to true for some tabs in cases where the system
781 * believes that the accesskey should not be added to the tab.
782 *
783 * @return array
784 * @private
785 */
786 function buildContentNavigationUrls() {
787 global $wgContLang, $wgLang, $wgOut, $wgUser, $wgRequest, $wgArticle;
788 global $wgDisableLangConversion;
789
790 wfProfileIn( __METHOD__ );
791
792 $title = $this->getRelevantTitle(); // Display tabs for the relevant title rather than always the title itself
793 $onPage = $title->equals($this->mTitle);
794
795 $content_navigation = array(
796 'namespaces' => array(),
797 'views' => array(),
798 'actions' => array(),
799 'variants' => array()
800 );
801
802 // parameters
803 $action = $wgRequest->getVal( 'action', 'view' );
804 $section = $wgRequest->getVal( 'section' );
805
806 $userCanRead = $title->userCanRead();
807 $skname = $this->skinname;
808
809 $preventActiveTabs = false;
810 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this, &$preventActiveTabs ) );
811
812 // Checks if page is some kind of content
813 if( $title->getNamespace() != NS_SPECIAL ) {
814 // Gets page objects for the related namespaces
815 $subjectPage = $title->getSubjectPage();
816 $talkPage = $title->getTalkPage();
817
818 // Determines if this is a talk page
819 $isTalk = $title->isTalkPage();
820
821 // Generates XML IDs from namespace names
822 $subjectId = $title->getNamespaceKey( '' );
823
824 if ( $subjectId == 'main' ) {
825 $talkId = 'talk';
826 } else {
827 $talkId = "{$subjectId}_talk";
828 }
829
830 // Adds namespace links
831 $content_navigation['namespaces'][$subjectId] = $this->tabAction(
832 $subjectPage, 'nstab-' . $subjectId, !$isTalk && !$preventActiveTabs, '', $userCanRead
833 );
834 $content_navigation['namespaces'][$subjectId]['context'] = 'subject';
835 $content_navigation['namespaces'][$talkId] = $this->tabAction(
836 $talkPage, 'talk', $isTalk && !$preventActiveTabs, '', $userCanRead
837 );
838 $content_navigation['namespaces'][$talkId]['context'] = 'talk';
839
840 // Adds view view link
841 if ( $title->exists() && $userCanRead ) {
842 $content_navigation['views']['view'] = $this->tabAction(
843 $isTalk ? $talkPage : $subjectPage,
844 !wfEmptyMsg( "$skname-view-view" ) ? "$skname-view-view" : 'view',
845 ( $onPage && $action == 'view' ), '', true
846 );
847 $content_navigation['views']['view']['redundant'] = true; // signal to hide this from simple content_actions
848 }
849
850 wfProfileIn( __METHOD__ . '-edit' );
851
852 // Checks if user can...
853 if (
854 // read and edit the current page
855 $userCanRead && $title->quickUserCan( 'edit' ) &&
856 (
857 // if it exists
858 $title->exists() ||
859 // or they can create one here
860 $title->quickUserCan( 'create' )
861 )
862 ) {
863 // Builds CSS class for talk page links
864 $isTalkClass = $isTalk ? ' istalk' : '';
865
866 // Determines if we're in edit mode
867 $selected = (
868 $onPage &&
869 ( $action == 'edit' || $action == 'submit' ) &&
870 ( $section != 'new' )
871 );
872 $msgKey = $title->exists() || ( $title->getNamespace() == NS_MEDIAWIKI && !wfEmptyMsg( $title->getText() ) ) ?
873 "edit" : "create";
874 $content_navigation['views']['edit'] = array(
875 'class' => ( $selected ? 'selected' : '' ) . $isTalkClass,
876 'text' => wfMessageFallback( "$skname-view-$msgKey", $msgKey )->plain(),
877 'href' => $title->getLocalURL( $this->editUrlOptions() ),
878 'primary' => true, // don't collapse this in vector
879 );
880 // Checks if this is a current rev of talk page and we should show a new
881 // section link
882 if ( ( $isTalk && $wgArticle && $wgArticle->isCurrent() ) || ( $wgOut->showNewSectionLink() ) ) {
883 // Checks if we should ever show a new section link
884 if ( !$wgOut->forceHideNewSectionLink() ) {
885 // Adds new section link
886 //$content_navigation['actions']['addsection']
887 $content_navigation['views']['addsection'] = array(
888 'class' => $section == 'new' ? 'selected' : false,
889 'text' => wfMessageFallback( "$skname-action-addsection", 'addsection' )->plain(),
890 'href' => $title->getLocalURL( 'action=edit&section=new' )
891 );
892 }
893 }
894 // Checks if the page has some kind of viewable content
895 } elseif ( $title->hasSourceText() && $userCanRead ) {
896 // Adds view source view link
897 $content_navigation['views']['viewsource'] = array(
898 'class' => ( $onPage && $action == 'edit' ) ? 'selected' : false,
899 'text' => wfMessageFallback( "$skname-action-viewsource", 'viewsource' )->plain(),
900 'href' => $title->getLocalURL( $this->editUrlOptions() ),
901 'primary' => true, // don't collapse this in vector
902 );
903 }
904 wfProfileOut( __METHOD__ . '-edit' );
905
906 wfProfileIn( __METHOD__ . '-live' );
907
908 // Checks if the page exists
909 if ( $title->exists() && $userCanRead ) {
910 // Adds history view link
911 $content_navigation['views']['history'] = array(
912 'class' => ( $onPage && $action == 'history' ) ? 'selected' : false,
913 'text' => wfMessageFallback( "$skname-view-history", 'history_short' )->plain(),
914 'href' => $title->getLocalURL( 'action=history' ),
915 'rel' => 'archives',
916 );
917
918 if( $wgUser->isAllowed( 'delete' ) ) {
919 $content_navigation['actions']['delete'] = array(
920 'class' => ( $onPage && $action == 'delete' ) ? 'selected' : false,
921 'text' => wfMessageFallback( "$skname-action-delete", 'delete' )->plain(),
922 'href' => $title->getLocalURL( 'action=delete' )
923 );
924 }
925 if ( $title->quickUserCan( 'move' ) ) {
926 $moveTitle = SpecialPage::getTitleFor( 'Movepage', $title->getPrefixedDBkey() );
927 $content_navigation['actions']['move'] = array(
928 'class' => $this->mTitle->isSpecial( 'Movepage' ) ? 'selected' : false,
929 'text' => wfMessageFallback( "$skname-action-move", 'move' )->plain(),
930 'href' => $moveTitle->getLocalURL()
931 );
932 }
933
934 if ( $title->getNamespace() !== NS_MEDIAWIKI && $wgUser->isAllowed( 'protect' ) ) {
935 $mode = !$title->isProtected() ? 'protect' : 'unprotect';
936 $content_navigation['actions'][$mode] = array(
937 'class' => ( $onPage && $action == $mode ) ? 'selected' : false,
938 'text' => wfMessageFallback( "$skname-action-$mode", $mode )->plain(),
939 'href' => $title->getLocalURL( "action=$mode" )
940 );
941 }
942 } else {
943 // article doesn't exist or is deleted
944 if ( $wgUser->isAllowed( 'deletedhistory' ) ) {
945 $n = $title->isDeleted();
946 if( $n ) {
947 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
948 // If the user can't undelete but can view deleted history show them a "View .. deleted" tab instead
949 $msgKey = $wgUser->isAllowed( 'undelete' ) ? 'undelete' : 'viewdeleted';
950 $content_navigation['actions']['undelete'] = array(
951 'class' => $this->mTitle->isSpecial( 'Undelete' ) ? 'selected' : false,
952 'text' => wfMessageFallback( "$skname-action-$msgKey", "{$msgKey}_short" )
953 ->params( $wgLang->formatNum( $n ) )->text(),
954 'href' => $undelTitle->getLocalURL( array( 'target' => $title->getPrefixedDBkey() ) )
955 );
956 }
957 }
958
959 if ( $title->getNamespace() !== NS_MEDIAWIKI && $wgUser->isAllowed( 'protect' ) ) {
960 $mode = !$title->getRestrictions( 'create' ) ? 'protect' : 'unprotect';
961 $content_navigation['actions'][$mode] = array(
962 'class' => ( $onPage && $action == $mode ) ? 'selected' : false,
963 'text' => wfMessageFallback( "$skname-action-$mode", $mode )->plain(),
964 'href' => $title->getLocalURL( "action=$mode" )
965 );
966 }
967 }
968 wfProfileOut( __METHOD__ . '-live' );
969
970 // Checks if the user is logged in
971 if ( $this->loggedin ) {
972 /**
973 * The following actions use messages which, if made particular to
974 * the any specific skins, would break the Ajax code which makes this
975 * action happen entirely inline. Skin::makeGlobalVariablesScript
976 * defines a set of messages in a javascript object - and these
977 * messages are assumed to be global for all skins. Without making
978 * a change to that procedure these messages will have to remain as
979 * the global versions.
980 */
981 $mode = $title->userIsWatching() ? 'unwatch' : 'watch';
982 $content_navigation['actions'][$mode] = array(
983 'class' => $onPage && ( $action == 'watch' || $action == 'unwatch' ) ? 'selected' : false,
984 'text' => wfMsg( $mode ), // uses 'watch' or 'unwatch' message
985 'href' => $title->getLocalURL( 'action=' . $mode )
986 );
987 }
988
989 wfRunHooks( 'SkinTemplateNavigation', array( &$this, &$content_navigation ) );
990 } else {
991 // If it's not content, it's got to be a special page
992 $content_navigation['namespaces']['special'] = array(
993 'class' => 'selected',
994 'text' => wfMsg( 'nstab-special' ),
995 'href' => $wgRequest->getRequestURL(), // @bug 2457, 2510
996 'context' => 'subject'
997 );
998
999 wfRunHooks( 'SkinTemplateNavigation::SpecialPage', array( &$this, &$content_navigation ) );
1000 }
1001
1002 // Gets list of language variants
1003 $variants = $wgContLang->getVariants();
1004 // Checks that language conversion is enabled and variants exist
1005 if( !$wgDisableLangConversion && count( $variants ) > 1 ) {
1006 // Gets preferred variant
1007 $preferred = $wgContLang->getPreferredVariant();
1008 // Loops over each variant
1009 foreach( $variants as $code ) {
1010 // Gets variant name from language code
1011 $varname = $wgContLang->getVariantname( $code );
1012 // Checks if the variant is marked as disabled
1013 if( $varname == 'disable' ) {
1014 // Skips this variant
1015 continue;
1016 }
1017 // Appends variant link
1018 $content_navigation['variants'][] = array(
1019 'class' => ( $code == $preferred ) ? 'selected' : false,
1020 'text' => $varname,
1021 'href' => $title->getLocalURL( '', $code )
1022 );
1023 }
1024 }
1025
1026 // Equiv to SkinTemplateContentActions
1027 wfRunHooks( 'SkinTemplateNavigation::Universal', array( &$this, &$content_navigation ) );
1028
1029 // Setup xml ids and tooltip info
1030 foreach ( $content_navigation as $section => &$links ) {
1031 foreach ( $links as $key => &$link ) {
1032 $xmlID = $key;
1033 if ( isset( $link['context'] ) && $link['context'] == 'subject' ) {
1034 $xmlID = 'ca-nstab-' . $xmlID;
1035 } elseif ( isset( $link['context'] ) && $link['context'] == 'talk' ) {
1036 $xmlID = 'ca-talk';
1037 } elseif ( $section == "variants" ) {
1038 $xmlID = 'ca-varlang-' . $xmlID;
1039 } else {
1040 $xmlID = 'ca-' . $xmlID;
1041 }
1042 $link['id'] = $xmlID;
1043 }
1044 }
1045
1046 # We don't want to give the watch tab an accesskey if the
1047 # page is being edited, because that conflicts with the
1048 # accesskey on the watch checkbox. We also don't want to
1049 # give the edit tab an accesskey, because that's fairly su-
1050 # perfluous and conflicts with an accesskey (Ctrl-E) often
1051 # used for editing in Safari.
1052 if( in_array( $action, array( 'edit', 'submit' ) ) ) {
1053 if ( isset($content_navigation['views']['edit']) ) {
1054 $content_navigation['views']['edit']['tooltiponly'] = true;
1055 }
1056 if ( isset($content_navigation['actions']['watch']) ) {
1057 $content_navigation['actions']['watch']['tooltiponly'] = true;
1058 }
1059 if ( isset($content_navigation['actions']['unwatch']) ) {
1060 $content_navigation['actions']['unwatch']['tooltiponly'] = true;
1061 }
1062 }
1063
1064 wfProfileOut( __METHOD__ );
1065
1066 return $content_navigation;
1067 }
1068
1069 /**
1070 * an array of edit links by default used for the tabs
1071 * @return array
1072 * @private
1073 */
1074 function buildContentActionUrls( $content_navigation ) {
1075
1076 wfProfileIn( __METHOD__ );
1077
1078 // content_actions has been replaced with content_navigation for backwards
1079 // compatibility and also for skins that just want simple tabs content_actions
1080 // is now built by flattening the content_navigation arrays into one
1081
1082 $content_actions = array();
1083
1084 foreach ( $content_navigation as $section => $links ) {
1085
1086 foreach ( $links as $key => $value ) {
1087
1088 if ( isset($value["redundant"]) && $value["redundant"] ) {
1089 // Redundant tabs are dropped from content_actions
1090 continue;
1091 }
1092
1093 // content_actions used to have ids built using the "ca-$key" pattern
1094 // so the xmlID based id is much closer to the actual $key that we want
1095 // for that reason we'll just strip out the ca- if present and use
1096 // the latter potion of the "id" as the $key
1097 if ( isset($value["id"]) && substr($value["id"], 0, 3) == "ca-" ) {
1098 $key = substr($value["id"], 3);
1099 }
1100
1101 if ( isset($content_actions[$key]) ) {
1102 wfDebug( __METHOD__ . ": Found a duplicate key for $key while flattening content_navigation into content_actions." );
1103 continue;
1104 }
1105
1106 $content_actions[$key] = $value;
1107
1108 }
1109
1110 }
1111
1112 wfProfileOut( __METHOD__ );
1113
1114 return $content_actions;
1115 }
1116
1117 /**
1118 * build array of common navigation links
1119 * @return array
1120 * @private
1121 */
1122 function buildNavUrls() {
1123 global $wgUseTrackbacks, $wgOut, $wgUser, $wgRequest;
1124 global $wgUploadNavigationUrl;
1125
1126 wfProfileIn( __METHOD__ );
1127
1128 $action = $wgRequest->getVal( 'action', 'view' );
1129
1130 $nav_urls = array();
1131 $nav_urls['mainpage'] = array( 'href' => self::makeMainPageUrl() );
1132 if( $wgUploadNavigationUrl ) {
1133 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
1134 } elseif( UploadBase::isEnabled() && UploadBase::isAllowed( $wgUser ) === true ) {
1135 $nav_urls['upload'] = array( 'href' => self::makeSpecialUrl( 'Upload' ) );
1136 } else {
1137 $nav_urls['upload'] = false;
1138 }
1139 $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) );
1140
1141 // default permalink to being off, will override it as required below.
1142 $nav_urls['permalink'] = false;
1143
1144 // A print stylesheet is attached to all pages, but nobody ever
1145 // figures that out. :) Add a link...
1146 if( $this->iscontent && ( $action == 'view' || $action == 'purge' ) ) {
1147 if ( !$wgOut->isPrintable() ) {
1148 $nav_urls['print'] = array(
1149 'text' => wfMsg( 'printableversion' ),
1150 'href' => $wgRequest->appendQuery( 'printable=yes' )
1151 );
1152 }
1153
1154 // Also add a "permalink" while we're at it
1155 if ( $this->mRevisionId ) {
1156 $nav_urls['permalink'] = array(
1157 'text' => wfMsg( 'permalink' ),
1158 'href' => $wgOut->getTitle()->getLocalURL( "oldid=$this->mRevisionId" )
1159 );
1160 }
1161
1162 // Copy in case this undocumented, shady hook tries to mess with internals
1163 $revid = $this->mRevisionId;
1164 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink', array( &$this, &$nav_urls, &$revid, &$revid ) );
1165 }
1166
1167 if( $this->mTitle->getNamespace() != NS_SPECIAL ) {
1168 $wlhTitle = SpecialPage::getTitleFor( 'Whatlinkshere', $this->thispage );
1169 $nav_urls['whatlinkshere'] = array(
1170 'href' => $wlhTitle->getLocalUrl()
1171 );
1172 if( $this->mTitle->getArticleId() ) {
1173 $rclTitle = SpecialPage::getTitleFor( 'Recentchangeslinked', $this->thispage );
1174 $nav_urls['recentchangeslinked'] = array(
1175 'href' => $rclTitle->getLocalUrl()
1176 );
1177 } else {
1178 $nav_urls['recentchangeslinked'] = false;
1179 }
1180 if( $wgUseTrackbacks )
1181 $nav_urls['trackbacklink'] = array(
1182 'href' => $wgOut->getTitle()->trackbackURL()
1183 );
1184 }
1185
1186 if ( $user = $this->getRelevantUser() ) {
1187 $id = $user->getID();
1188 $ip = $user->isAnon();
1189 $rootUser = $user->getName();
1190 } else {
1191 $id = 0;
1192 $ip = false;
1193 }
1194
1195 if( $id || $ip ) { # both anons and non-anons have contribs list
1196 $nav_urls['contributions'] = array(
1197 'href' => self::makeSpecialUrlSubpage( 'Contributions', $rootUser )
1198 );
1199
1200 if( $id ) {
1201 $logPage = SpecialPage::getTitleFor( 'Log' );
1202 $nav_urls['log'] = array(
1203 'href' => $logPage->getLocalUrl(
1204 array(
1205 'user' => $rootUser
1206 )
1207 )
1208 );
1209 } else {
1210 $nav_urls['log'] = false;
1211 }
1212
1213 if ( $wgUser->isAllowed( 'block' ) ) {
1214 $nav_urls['blockip'] = array(
1215 'href' => self::makeSpecialUrlSubpage( 'Blockip', $rootUser )
1216 );
1217 } else {
1218 $nav_urls['blockip'] = false;
1219 }
1220 } else {
1221 $nav_urls['contributions'] = false;
1222 $nav_urls['log'] = false;
1223 $nav_urls['blockip'] = false;
1224 }
1225 $nav_urls['emailuser'] = false;
1226 if( $this->showEmailUser( $id ) ) {
1227 $nav_urls['emailuser'] = array(
1228 'href' => self::makeSpecialUrlSubpage( 'Emailuser', $rootUser )
1229 );
1230 }
1231 wfProfileOut( __METHOD__ );
1232 return $nav_urls;
1233 }
1234
1235 /**
1236 * Generate strings used for xml 'id' names
1237 * @return string
1238 * @private
1239 */
1240 function getNameSpaceKey() {
1241 return $this->mTitle->getNamespaceKey();
1242 }
1243
1244 /**
1245 * @private
1246 */
1247 function setupUserJs( $allowUserJs ) {
1248 global $wgRequest, $wgJsMimeType;
1249 wfProfileIn( __METHOD__ );
1250
1251 $action = $wgRequest->getVal( 'action', 'view' );
1252
1253 if( $allowUserJs && $this->loggedin ) {
1254 if( $this->mTitle->isJsSubpage() and $this->userCanPreview( $action ) ) {
1255 # XXX: additional security check/prompt?
1256 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText( 'wpTextbox1' ) . ' /*]]>*/';
1257 } else {
1258 $this->userjs = self::makeUrl( $this->userpage . '/' . $this->skinname . '.js', 'action=raw&ctype=' . $wgJsMimeType );
1259 }
1260 }
1261 wfProfileOut( __METHOD__ );
1262 }
1263
1264 /**
1265 * Code for extensions to hook into to provide per-page CSS, see
1266 * extensions/PageCSS/PageCSS.php for an implementation of this.
1267 *
1268 * @private
1269 */
1270 function setupPageCss() {
1271 wfProfileIn( __METHOD__ );
1272 $out = false;
1273 wfRunHooks( 'SkinTemplateSetupPageCss', array( &$out ) );
1274 wfProfileOut( __METHOD__ );
1275 return $out;
1276 }
1277
1278 public function commonPrintStylesheet() {
1279 return false;
1280 }
1281 }
1282
1283 /**
1284 * Generic wrapper for template functions, with interface
1285 * compatible with what we use of PHPTAL 0.7.
1286 * @ingroup Skins
1287 */
1288 abstract class QuickTemplate {
1289 /**
1290 * Constructor
1291 */
1292 public function QuickTemplate() {
1293 $this->data = array();
1294 $this->translator = new MediaWiki_I18N();
1295 }
1296
1297 /**
1298 * Sets the value $value to $name
1299 * @param $name
1300 * @param $value
1301 */
1302 public function set( $name, $value ) {
1303 $this->data[$name] = $value;
1304 }
1305
1306 /**
1307 * @param $name
1308 * @param $value
1309 */
1310 public function setRef( $name, &$value ) {
1311 $this->data[$name] =& $value;
1312 }
1313
1314 /**
1315 * @param $t
1316 */
1317 public function setTranslator( &$t ) {
1318 $this->translator = &$t;
1319 }
1320
1321 /**
1322 * Main function, used by classes that subclass QuickTemplate
1323 * to show the actual HTML output
1324 */
1325 abstract public function execute();
1326
1327 /**
1328 * @private
1329 */
1330 function text( $str ) {
1331 echo htmlspecialchars( $this->data[$str] );
1332 }
1333
1334 /**
1335 * @private
1336 */
1337 function jstext( $str ) {
1338 echo Xml::escapeJsString( $this->data[$str] );
1339 }
1340
1341 /**
1342 * @private
1343 */
1344 function html( $str ) {
1345 echo $this->data[$str];
1346 }
1347
1348 /**
1349 * @private
1350 */
1351 function msg( $str ) {
1352 echo htmlspecialchars( $this->translator->translate( $str ) );
1353 }
1354
1355 /**
1356 * @private
1357 */
1358 function msgHtml( $str ) {
1359 echo $this->translator->translate( $str );
1360 }
1361
1362 /**
1363 * An ugly, ugly hack.
1364 * @private
1365 */
1366 function msgWiki( $str ) {
1367 global $wgParser, $wgOut;
1368
1369 $text = $this->translator->translate( $str );
1370 $parserOutput = $wgParser->parse( $text, $wgOut->getTitle(),
1371 $wgOut->parserOptions(), true );
1372 echo $parserOutput->getText();
1373 }
1374
1375 /**
1376 * @private
1377 */
1378 function haveData( $str ) {
1379 return isset( $this->data[$str] );
1380 }
1381
1382 /**
1383 * @private
1384 */
1385 function haveMsg( $str ) {
1386 $msg = $this->translator->translate( $str );
1387 return ( $msg != '-' ) && ( $msg != '' ); # ????
1388 }
1389 }
1390
1391 /**
1392 * New base template for a skin's template extended from QuickTemplate
1393 * this class features helper methods that provide common ways of interacting
1394 * with the data stored in the QuickTemplate
1395 */
1396 abstract class BaseTemplate extends QuickTemplate {
1397
1398 /**
1399 * Create an array of common toolbox items from the data in the quicktemplate
1400 * stored by SkinTemplate.
1401 * The resulting array is built acording to a format intended to be passed
1402 * through makeListItem to generate the html.
1403 */
1404 function getToolbox() {
1405 wfProfileIn( __METHOD__ );
1406
1407 $toolbox = array();
1408 if ( $this->data['notspecialpage'] ) {
1409 $toolbox['whatlinkshere'] = $this->data['nav_urls']['whatlinkshere'];
1410 $toolbox['whatlinkshere']['id'] = 't-whatlinkshere';
1411 if ( $this->data['nav_urls']['recentchangeslinked'] ) {
1412 $toolbox['recentchangeslinked'] = $this->data['nav_urls']['recentchangeslinked'];
1413 $toolbox['recentchangeslinked']['msg'] = 'recentchangeslinked-toolbox';
1414 $toolbox['recentchangeslinked']['id'] = 't-recentchangeslinked';
1415 }
1416 }
1417 if( isset( $this->data['nav_urls']['trackbacklink'] ) && $this->data['nav_urls']['trackbacklink'] ) {
1418 $toolbox['trackbacklink'] = $this->data['nav_urls']['trackbacklink'];
1419 $toolbox['trackbacklink']['id'] = 't-trackbacklink';
1420 }
1421 if ( $this->data['feeds'] ) {
1422 $toolbox['feeds']['id'] = 'feedlinks';
1423 $toolbox['feeds']['links'] = array();
1424 foreach ( $this->data['feeds'] as $key => $feed ) {
1425 $toolbox['feeds']['links'][$key] = $feed;
1426 $toolbox['feeds']['links'][$key]['id'] = "feed-$key";
1427 $toolbox['feeds']['links'][$key]['rel'] = 'alternate';
1428 $toolbox['feeds']['links'][$key]['type'] = "application/{$key}+xml";
1429 $toolbox['feeds']['links'][$key]['class'] = 'feedlink';
1430 }
1431 }
1432 foreach ( array( 'contributions', 'log', 'blockip', 'emailuser', 'upload', 'specialpages' ) as $special ) {
1433 if ( $this->data['nav_urls'][$special] ) {
1434 $toolbox[$special] = $this->data['nav_urls'][$special];
1435 $toolbox[$special]['id'] = "t-$special";
1436 }
1437 }
1438 if ( !empty( $this->data['nav_urls']['print']['href'] ) ) {
1439 $toolbox['print'] = $this->data['nav_urls']['print'];
1440 $toolbox['print']['rel'] = 'alternate';
1441 $toolbox['print']['msg'] = 'printableversion';
1442 }
1443 if ( !empty( $this->data['nav_urls']['permalink']['href'] ) ) {
1444 $toolbox['permalink'] = $this->data['nav_urls']['permalink'];
1445 $toolbox['permalink']['id'] = 't-permalink';
1446 } elseif ( $this->data['nav_urls']['permalink']['href'] === '' ) {
1447 $toolbox['permalink'] = $this->data['nav_urls']['permalink'];
1448 unset( $toolbox['permalink']['href'] );
1449 $toolbox['ispermalink']['tooltiponly'] = true;
1450 $toolbox['ispermalink']['id'] = 't-ispermalink';
1451 $toolbox['ispermalink']['msg'] = 'permalink';
1452 }
1453 wfRunHooks( 'BaseTemplateToolbox', array( &$this, &$toolbox ) );
1454 wfProfileOut( __METHOD__ );
1455 return $toolbox;
1456 }
1457
1458 /**
1459 * Create an array of personal tools items from the data in the quicktemplate
1460 * stored by SkinTemplate.
1461 * The resulting array is built acording to a format intended to be passed
1462 * through makeListItem to generate the html.
1463 * This is in reality the same list as already stored in personal_urls
1464 * however it is reformatted so that you can just pass the individual items
1465 * to makeListItem instead of hardcoding the element creation boilerplate.
1466 */
1467 function getPersonalTools() {
1468 $personal_tools = array();
1469 foreach( $this->data['personal_urls'] as $key => $ptool ) {
1470 # The class on a personal_urls item is meant to go on the <a> instead
1471 # of the <li> so we have to use a single item "links" array instead
1472 # of using most of the personal_url's keys directly
1473 $personal_tools[$key] = array();
1474 $personal_tools[$key]["links"][] = array();
1475 $personal_tools[$key]["links"][0]["single-id"] = $personal_tools[$key]["id"] = "pt-$key";
1476 if ( isset($ptool["active"]) ) {
1477 $personal_tools[$key]["active"] = $ptool["active"];
1478 }
1479 foreach ( array("href", "class", "text") as $k ) {
1480 if ( isset($ptool[$k]) )
1481 $personal_tools[$key]["links"][0][$k] = $ptool[$k];
1482 }
1483 }
1484 return $personal_tools;
1485 }
1486
1487 /**
1488 * Makes a link, usually used by makeListItem to generate a link for an item
1489 * in a list used in navigation lists, portlets, portals, sidebars, etc...
1490 *
1491 * $key is a string, usually a key from the list you are generating this link from
1492 * $item is an array containing some of a specific set of keys.
1493 * The text of the link will be generated either from the contents of the "text"
1494 * key in the $item array, if a "msg" key is present a message by that name will
1495 * be used, and if neither of those are set the $key will be used as a message name.
1496 * If a "href" key is not present makeLink will just output htmlescaped text.
1497 * The href, id, class, rel, and type keys are used as attributes for the link if present.
1498 * If an "id" or "single-id" (if you don't want the actual id to be output on the link)
1499 * is present it will be used to generate a tooltip and accesskey for the link.
1500 * If you don't want an accesskey, set $item['tooltiponly'] = true;
1501 */
1502 function makeLink( $key, $item ) {
1503 if ( isset( $item['text'] ) ) {
1504 $text = $item['text'];
1505 } else {
1506 $text = $this->translator->translate( isset( $item['msg'] ) ? $item['msg'] : $key );
1507 }
1508
1509 if ( !isset( $item['href'] ) ) {
1510 return htmlspecialchars( $text );
1511 }
1512
1513 $attrs = array();
1514 foreach ( array( 'href', 'id', 'class', 'rel', 'type' ) as $attr ) {
1515 if ( isset( $item[$attr] ) ) {
1516 $attrs[$attr] = $item[$attr];
1517 }
1518 }
1519
1520 if ( isset( $item['id'] ) ) {
1521 $item['single-id'] = $item['id'];
1522 }
1523 if ( isset( $item['single-id'] ) ) {
1524 if ( isset( $item['tooltiponly'] ) && $item['tooltiponly'] ) {
1525 $attrs['title'] = $this->skin->titleAttrib( $item['single-id'] );
1526 if ( $attrs['title'] === false ) {
1527 unset( $attrs['title'] );
1528 }
1529 } else {
1530 $attrs = array_merge(
1531 $attrs,
1532 $this->skin->tooltipAndAccesskeyAttribs( $item['single-id'] )
1533 );
1534 }
1535 }
1536
1537 return Html::element( 'a', $attrs, $text );
1538 }
1539
1540 /**
1541 * Generates a list item for a navigation, portlet, portal, sidebar... etc list
1542 * $key is a string, usually a key from the list you are generating this link from
1543 * $item is an array of list item data containing some of a specific set of keys.
1544 * The "id" and "class" keys will be used as attributes for the list item,
1545 * if "active" contains a value of true a "active" class will also be appended to class.
1546 * If you want something other than a <li> you can pass a tag name such as
1547 * "tag" => "span" in the $options array to change the tag used.
1548 * link/content data for the list item may come in one of two forms
1549 * A "links" key may be used, in which case it should contain an array with
1550 * a list of links to include inside the list item, see makeLink for the format
1551 * of individual links array items.
1552 * Otherwise the relevant keys from the list item $item array will be passed
1553 * to makeLink instead. Note however that "id" and "class" are used by the
1554 * list item directly so they will not be passed to makeLink
1555 * (however the link will still support a tooltip and accesskey from it)
1556 * If you need an id or class on a single link you should include a "links"
1557 * array with just one link item inside of it.
1558 */
1559 function makeListItem( $key, $item, $options = array() ) {
1560 if ( isset( $item['links'] ) ) {
1561 $html = '';
1562 foreach ( $item['links'] as $linkKey => $link ) {
1563 $html .= $this->makeLink( $linkKey, $link );
1564 }
1565 } else {
1566 $link = array();
1567 foreach ( array( 'text', 'msg', 'href', 'rel', 'type', 'tooltiponly' ) as $k ) {
1568 if ( isset( $item[$k] ) ) {
1569 $link[$k] = $item[$k];
1570 }
1571 }
1572 if ( isset( $item['id'] ) ) {
1573 // The id goes on the <li> not on the <a> for single links
1574 // but makeSidebarLink still needs to know what id to use when
1575 // generating tooltips and accesskeys.
1576 $link['single-id'] = $item['id'];
1577 }
1578 $html = $this->makeLink( $key, $link );
1579 }
1580
1581 $attrs = array();
1582 foreach ( array( 'id', 'class' ) as $attr ) {
1583 if ( isset( $item[$attr] ) ) {
1584 $attrs[$attr] = $item[$attr];
1585 }
1586 }
1587 if ( isset( $item['active'] ) && $item['active'] ) {
1588 if ( !isset( $attrs['class'] ) ) {
1589 $attrs['class'] = '';
1590 }
1591 $attrs['class'] .= ' active';
1592 $attrs['class'] = trim( $attrs['class'] );
1593 }
1594 return Html::rawElement( isset( $options['tag'] ) ? $options['tag'] : 'li', $attrs, $html );
1595 }
1596
1597 function makeSearchInput( $attrs = array() ) {
1598 $realAttrs = array(
1599 'type' => 'search',
1600 'name' => 'search',
1601 'value' => isset( $this->data['search'] ) ? $this->data['search'] : '',
1602 );
1603 $realAttrs = array_merge( $realAttrs, $this->skin->tooltipAndAccesskeyAttribs( 'search' ), $attrs );
1604 return Html::element( 'input', $realAttrs );
1605 }
1606
1607 function makeSearchButton( $mode, $attrs = array() ) {
1608 switch( $mode ) {
1609 case 'go':
1610 case 'fulltext':
1611 $realAttrs = array(
1612 'type' => 'submit',
1613 'name' => $mode,
1614 'value' => $this->translator->translate( $mode == 'go' ? 'searcharticle' : 'searchbutton' ),
1615 );
1616 $realAttrs = array_merge(
1617 $realAttrs,
1618 $this->skin->tooltipAndAccesskeyAttribs( "search-$mode" ),
1619 $attrs
1620 );
1621 return Html::element( 'input', $realAttrs );
1622 case 'image':
1623 $buttonAttrs = array(
1624 'type' => 'submit',
1625 'name' => 'button',
1626 );
1627 $buttonAttrs = array_merge(
1628 $buttonAttrs,
1629 $this->skin->tooltipAndAccesskeyAttribs( 'search-fulltext' ),
1630 $attrs
1631 );
1632 unset( $buttonAttrs['src'] );
1633 unset( $buttonAttrs['alt'] );
1634 $imgAttrs = array(
1635 'src' => $attrs['src'],
1636 'alt' => isset( $attrs['alt'] ) ? $attrs['alt'] : $this->translator->translate( 'searchbutton' ),
1637 );
1638 return Html::rawElement( 'button', $buttonAttrs, Html::element( 'img', $imgAttrs ) );
1639 default:
1640 throw new MWException( 'Unknown mode passed to BaseTemplate::makeSearchButton' );
1641 }
1642 }
1643
1644 /**
1645 * Returns an array of footerlinks trimmed down to only those footer links that
1646 * are valid.
1647 * If you pass "flat" as an option then the returned array will be a flat array
1648 * of footer icons instead of a key/value array of footerlinks arrays broken
1649 * up into categories.
1650 */
1651 function getFooterLinks( $option = null ) {
1652 $footerlinks = $this->data['footerlinks'];
1653
1654 // Reduce footer links down to only those which are being used
1655 $validFooterLinks = array();
1656 foreach( $footerlinks as $category => $links ) {
1657 $validFooterLinks[$category] = array();
1658 foreach( $links as $link ) {
1659 if( isset( $this->data[$link] ) && $this->data[$link] ) {
1660 $validFooterLinks[$category][] = $link;
1661 }
1662 }
1663 if ( count( $validFooterLinks[$category] ) <= 0 ) {
1664 unset( $validFooterLinks[$category] );
1665 }
1666 }
1667
1668 if ( $option == 'flat' ) {
1669 // fold footerlinks into a single array using a bit of trickery
1670 $validFooterLinks = call_user_func_array(
1671 'array_merge',
1672 array_values( $validFooterLinks )
1673 );
1674 }
1675
1676 return $validFooterLinks;
1677 }
1678
1679 /**
1680 * Returns an array of footer icons filtered down by options relevant to how
1681 * the skin wishes to display them.
1682 * If you pass "icononly" as the option all footer icons which do not have an
1683 * image icon set will be filtered out.
1684 * If you pass "nocopyright" then MediaWiki's copyright icon will not be included
1685 * in the list of footer icons. This is mostly useful for skins which only
1686 * display the text from footericons instead of the images and don't want a
1687 * duplicate copyright statement because footerlinks already rendered one.
1688 */
1689 function getFooterIcons( $option = null ) {
1690 // Generate additional footer icons
1691 $footericons = $this->data['footericons'];
1692
1693 if ( $option == 'icononly' ) {
1694 // Unset any icons which don't have an image
1695 foreach ( $footericons as $footerIconsKey => &$footerIconsBlock ) {
1696 foreach ( $footerIconsBlock as $footerIconKey => $footerIcon ) {
1697 if ( !is_string( $footerIcon ) && !isset( $footerIcon['src'] ) ) {
1698 unset( $footerIconsBlock[$footerIconKey] );
1699 }
1700 }
1701 }
1702 // Redo removal of any empty blocks
1703 foreach ( $footericons as $footerIconsKey => &$footerIconsBlock ) {
1704 if ( count( $footerIconsBlock ) <= 0 ) {
1705 unset( $footericons[$footerIconsKey] );
1706 }
1707 }
1708 } elseif ( $option == 'nocopyright' ) {
1709 $footericons = $this->data['footericons'];
1710 unset( $footericons['copyright']['copyright'] );
1711 if ( count( $footericons['copyright'] ) <= 0 ) {
1712 unset( $footericons['copyright'] );
1713 }
1714 }
1715
1716 return $footericons;
1717 }
1718
1719 /**
1720 * Output the basic end-page trail including bottomscripts, reporttime, and
1721 * debug stuff. This should be called right before outputting the closing
1722 * body and html tags.
1723 */
1724 function printTrail() { ?>
1725 <?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?>
1726 <?php $this->html('reporttime') ?>
1727 <?php if ( $this->data['debug'] ): ?>
1728 <!-- Debug output:
1729 <?php $this->text( 'debug' ); ?>
1730
1731 -->
1732 <?php endif;
1733 }
1734
1735 }
1736