fixes for r54633: Add wfMsgExt for parsing PLURAL in message "newmessagesdifflink"
[lhc/web/wiklou.git] / includes / SkinTemplate.php
1 <?php
2 if ( ! defined( 'MEDIAWIKI' ) )
3 die( 1 );
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 /**
21 * Wrapper object for MediaWiki's localization functions,
22 * to be passed to the template engine.
23 *
24 * @private
25 * @ingroup Skins
26 */
27 class MediaWiki_I18N {
28 var $_context = array();
29
30 function set( $varName, $value ) {
31 $this->_context[$varName] = $value;
32 }
33
34 function translate( $value ) {
35 wfProfileIn( __METHOD__ );
36
37 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
38 $value = preg_replace( '/^string:/', '', $value );
39
40 $value = wfMsg( $value );
41 // interpolate variables
42 $m = array();
43 while( preg_match( '/\$([0-9]*?)/sm', $value, $m ) ) {
44 list( $src, $var ) = $m;
45 wfSuppressWarnings();
46 $varValue = $this->_context[$var];
47 wfRestoreWarnings();
48 $value = str_replace( $src, $varValue, $value );
49 }
50 wfProfileOut( __METHOD__ );
51 return $value;
52 }
53 }
54
55 /**
56 * Template-filler skin base class
57 * Formerly generic PHPTal (http://phptal.sourceforge.net/) skin
58 * Based on Brion's smarty skin
59 * @copyright Copyright © Gabriel Wicke -- http://www.aulinx.de/
60 *
61 * @todo Needs some serious refactoring into functions that correspond
62 * to the computations individual esi snippets need. Most importantly no body
63 * parsing for most of those of course.
64 *
65 * @ingroup Skins
66 */
67 class SkinTemplate extends Skin {
68 /**#@+
69 * @private
70 */
71
72 /**
73 * Name of our skin, it probably needs to be all lower case. Child classes
74 * should override the default.
75 */
76 var $skinname = 'monobook';
77
78 /**
79 * Stylesheets set to use. Subdirectory in skins/ where various stylesheets
80 * are located. Child classes should override the default.
81 */
82 var $stylename = 'monobook';
83
84 /**
85 * For QuickTemplate, the name of the subclass which will actually fill the
86 * template. Child classes should override the default.
87 */
88 var $template = 'QuickTemplate';
89
90 /**#@-*/
91
92 /**
93 * Add specific styles for this skin
94 *
95 * @param $out OutputPage
96 */
97 function setupSkinUserCss( OutputPage $out ){
98 $out->addStyle( 'common/shared.css', 'screen' );
99 $out->addStyle( 'common/commonPrint.css', 'print' );
100 }
101 /* add specific javascript the base Skin class */
102 function setupSkinUserJs( OutputPage $out ){
103 global $wgUseSiteJs;
104 //use site js:
105 if( $wgUseSiteJs ) {
106 $jsCache = $this->loggedin ? '&smaxage=0' : '';
107 $siteGenScriptFile = self::makeUrl( '-',
108 "action=raw$jsCache&gen=js&useskin=" .
109 urlencode( $this->getSkinName() ) ) ;
110 $this->jsvarurl = $siteGenScriptFile;
111 }
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 $callback 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, $wgContLanguageCode;
137 global $wgMimeType, $wgJsMimeType, $wgOutputEncoding, $wgRequest;
138 global $wgXhtmlDefaultNamespace, $wgXhtmlNamespaces;
139 global $wgDisableCounters, $wgLogo, $wgHideInterlanguageLinks;
140 global $wgMaxCredits, $wgShowCreditsIfMax;
141 global $wgPageShowWatchingUsers;
142 global $wgUseTrackbacks, $wgUseSiteJs;
143 global $wgArticlePath, $wgScriptPath, $wgServer, $wgCanonicalNamespaceNames;
144
145 wfProfileIn( __METHOD__ );
146
147 $oldid = $wgRequest->getVal( 'oldid' );
148 $diff = $wgRequest->getVal( 'diff' );
149 $action = $wgRequest->getVal( 'action', 'view' );
150
151 wfProfileIn( __METHOD__ . '-init' );
152 $this->initPage( $out );
153
154 $this->setMembers();
155 $tpl = $this->setupTemplate( $this->template, 'skins' );
156
157 #if ( $wgUseDatabaseMessages ) { // uncomment this to fall back to GetText
158 $tpl->setTranslator( new MediaWiki_I18N() );
159 #}
160 wfProfileOut( __METHOD__ . '-init' );
161
162 wfProfileIn( __METHOD__ . '-stuff' );
163 $this->thispage = $this->mTitle->getPrefixedDBkey();
164 $this->thisurl = $this->mTitle->getPrefixedURL();
165 $query = $wgRequest->getValues();
166 unset( $query['title'] );
167 unset( $query['returnto'] );
168 unset( $query['returntoquery'] );
169 $this->thisquery = wfUrlencode( wfArrayToCGI( $query ) );
170 $this->loggedin = $wgUser->isLoggedIn();
171 $this->iscontent = ( $this->mTitle->getNamespace() != NS_SPECIAL );
172 $this->iseditable = ( $this->iscontent and !( $action == 'edit' or $action == 'submit' ) );
173 $this->username = $wgUser->getName();
174
175 if ( $wgUser->isLoggedIn() || $this->showIPinHeader() ) {
176 $this->userpageUrlDetails = self::makeUrlDetails( $this->userpage );
177 } else {
178 # This won't be used in the standard skins, but we define it to preserve the interface
179 # To save time, we check for existence
180 $this->userpageUrlDetails = self::makeKnownUrlDetails( $this->userpage );
181 }
182
183 $this->userjs = $this->userjsprev = false;
184 $this->setupUserCss( $out );
185 $this->setupUserJs( $out->isUserJsAllowed() );
186 $this->titletxt = $this->mTitle->getPrefixedText();
187 wfProfileOut( __METHOD__ . '-stuff' );
188
189 wfProfileIn( __METHOD__ . '-stuff2' );
190 $tpl->set( 'title', $out->getPageTitle() );
191 $tpl->set( 'pagetitle', $out->getHTMLTitle() );
192 $tpl->set( 'displaytitle', $out->mPageLinkTitle );
193 $tpl->set( 'pageclass', $this->getPageClasses( $this->mTitle ) );
194 $tpl->set( 'skinnameclass', ( 'skin-' . Sanitizer::escapeClass( $this->getSkinName() ) ) );
195
196 $nsname = isset( $wgCanonicalNamespaceNames[ $this->mTitle->getNamespace() ] ) ?
197 $wgCanonicalNamespaceNames[ $this->mTitle->getNamespace() ] :
198 $this->mTitle->getNsText();
199
200 $tpl->set( 'nscanonical', $nsname );
201 $tpl->set( 'nsnumber', $this->mTitle->getNamespace() );
202 $tpl->set( 'titleprefixeddbkey', $this->mTitle->getPrefixedDBKey() );
203 $tpl->set( 'titletext', $this->mTitle->getText() );
204 $tpl->set( 'articleid', $this->mTitle->getArticleId() );
205 $tpl->set( 'currevisionid', isset( $wgArticle ) ? $wgArticle->getLatest() : 0 );
206
207 $tpl->set( 'isarticle', $out->isArticle() );
208
209 $tpl->setRef( 'thispage', $this->thispage );
210 $subpagestr = $this->subPageSubtitle();
211 $tpl->set(
212 'subtitle', !empty( $subpagestr ) ?
213 '<span class="subpages">'.$subpagestr.'</span>'.$out->getSubtitle() :
214 $out->getSubtitle()
215 );
216 $undelete = $this->getUndeleteLink();
217 $tpl->set(
218 'undelete', !empty( $undelete ) ?
219 '<span class="subpages">'.$undelete.'</span>' :
220 ''
221 );
222
223 $tpl->set( 'catlinks', $this->getCategories() );
224 if( $out->isSyndicated() ) {
225 $feeds = array();
226 foreach( $out->getSyndicationLinks() as $format => $link ) {
227 $feeds[$format] = array(
228 'text' => wfMsg( "feed-$format" ),
229 'href' => $link
230 );
231 }
232 $tpl->setRef( 'feeds', $feeds );
233 } else {
234 $tpl->set( 'feeds', false );
235 }
236 if( $wgUseTrackbacks && $out->isArticleRelated() ) {
237 $tpl->set( 'trackbackhtml', $out->getTitle()->trackbackRDF() );
238 } else {
239 $tpl->set( 'trackbackhtml', null );
240 }
241
242 $tpl->setRef( 'xhtmldefaultnamespace', $wgXhtmlDefaultNamespace );
243 $tpl->set( 'xhtmlnamespaces', $wgXhtmlNamespaces );
244 $tpl->setRef( 'mimetype', $wgMimeType );
245 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
246 $tpl->setRef( 'charset', $wgOutputEncoding );
247 $tpl->set( 'headlinks', $out->getHeadLinks() );
248
249 //moved headscripts to near end of template header output
250
251 $tpl->set( 'csslinks', $out->buildCssLinks() );
252 $tpl->setRef( 'wgScript', $wgScript );
253 $tpl->setRef( 'skinname', $this->skinname );
254 $tpl->set( 'skinclass', get_class( $this ) );
255 $tpl->setRef( 'stylename', $this->stylename );
256 $tpl->set( 'printable', $wgRequest->getBool( 'printable' ) );
257 $tpl->set( 'handheld', $wgRequest->getBool( 'handheld' ) );
258 $tpl->setRef( 'loggedin', $this->loggedin );
259 $tpl->set( 'notspecialpage', $this->mTitle->getNamespace() != NS_SPECIAL );
260 /* XXX currently unused, might get useful later
261 $tpl->set( "editable", ($this->mTitle->getNamespace() != NS_SPECIAL ) );
262 $tpl->set( "exists", $this->mTitle->getArticleID() != 0 );
263 $tpl->set( "watch", $this->mTitle->userIsWatching() ? "unwatch" : "watch" );
264 $tpl->set( "protect", count($this->mTitle->isProtected()) ? "unprotect" : "protect" );
265 $tpl->set( "helppage", wfMsg('helppage'));
266 */
267 $tpl->set( 'searchaction', $this->escapeSearchLink() );
268 $tpl->set( 'searchtitle', SpecialPage::getTitleFor( 'Search' )->getPrefixedDBKey() );
269 $tpl->set( 'search', trim( $wgRequest->getVal( 'search' ) ) );
270 $tpl->setRef( 'stylepath', $wgStylePath );
271 $tpl->setRef( 'articlepath', $wgArticlePath );
272 $tpl->setRef( 'scriptpath', $wgScriptPath );
273 $tpl->setRef( 'serverurl', $wgServer );
274 $tpl->setRef( 'logopath', $wgLogo );
275 $tpl->setRef( 'lang', $wgContLanguageCode );
276 $tpl->set( 'dir', $wgContLang->isRTL() ? 'rtl' : 'ltr' );
277 $tpl->set( 'rtl', $wgContLang->isRTL() );
278 $tpl->set( 'capitalizeallnouns', $wgLang->capitalizeAllNouns() ? ' capitalize-all-nouns' : '' );
279 $tpl->set( 'langname', $wgContLang->getLanguageName( $wgContLanguageCode ) );
280 $tpl->set( 'showjumplinks', $wgUser->getOption( 'showjumplinks' ) );
281 $tpl->set( 'username', $wgUser->isAnon() ? NULL : $this->username );
282 $tpl->setRef( 'userpage', $this->userpage );
283 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href'] );
284 $tpl->set( 'userlang', $wgLang->getCode() );
285 $tpl->set( 'userlangattributes', 'lang="' . $wgLang->getCode() . '" xml:lang="' . $wgLang->getCode() . '"' );
286 $tpl->set( 'pagecss', $this->setupPageCss() );
287 $tpl->setRef( 'usercss', $this->usercss );
288 $tpl->setRef( 'userjs', $this->userjs );
289 $tpl->setRef( 'userjsprev', $this->userjsprev );
290 if( $wgUseSiteJs ) {
291 $jsCache = $this->loggedin ? '&smaxage=0' : '';
292 $tpl->set( 'jsvarurl',
293 self::makeUrl( '-',
294 "action=raw$jsCache&gen=js&useskin=" .
295 urlencode( $this->getSkinName() ) ) );
296 } else {
297 $tpl->set( 'jsvarurl', false );
298 }
299
300 $newtalks = $wgUser->getNewMessageLinks();
301
302 if( count( $newtalks ) == 1 && $newtalks[0]['wiki'] === wfWikiID() ) {
303 $usertitle = $this->mUser->getUserPage();
304 $usertalktitle = $usertitle->getTalkPage();
305
306 $newmessagescount = $wgUser->getnewMessagesCount();
307
308 if( !$usertalktitle->equals( $this->mTitle ) ) {
309 $newmessageslink = $this->link(
310 $usertalktitle,
311 wfMsgExt( 'newmessageslink', array( 'parsemag', 'escape' ) ),
312 array(),
313 array( 'redirect' => 'no' ),
314 array( 'known', 'noclasses' )
315 );
316
317 $newmessagesdifflink = $this->link(
318 $usertalktitle,
319 wfMsgExt( 'newmessagesdifflink', array( 'parsemag', 'escape' ), $newmessagescount ),
320 array(),
321 array( 'diff' => 'cur' ),
322 array( 'known', 'noclasses' )
323 );
324
325 $ntl = wfMsg(
326 'youhavenewmessages',
327 $newmessageslink,
328 $newmessagesdifflink
329 );
330 # Disable Cache
331 $out->setSquidMaxage( 0 );
332 }
333 } else if( count( $newtalks ) ) {
334 // _>" " for BC <= 1.16
335 $sep = str_replace( '_', ' ', wfMsgHtml( 'newtalkseparator' ) );
336 $msgs = array();
337 foreach( $newtalks as $newtalk ) {
338 $msgs[] = Xml::element('a',
339 array( 'href' => $newtalk['link'] ), $newtalk['wiki'] );
340 }
341 $parts = implode( $sep, $msgs );
342 $ntl = wfMsgHtml( 'youhavenewmessagesmulti', $parts );
343 $out->setSquidMaxage( 0 );
344 } else {
345 $ntl = '';
346 }
347 wfProfileOut( __METHOD__ . '-stuff2' );
348
349 wfProfileIn( __METHOD__ . '-stuff3' );
350 $tpl->setRef( 'newtalk', $ntl );
351 $tpl->setRef( 'skin', $this );
352 $tpl->set( 'logo', $this->logoText() );
353 if ( $out->isArticle() and ( !isset( $oldid ) or isset( $diff ) ) and
354 $wgArticle and 0 != $wgArticle->getID() ){
355 if ( !$wgDisableCounters ) {
356 $viewcount = $wgLang->formatNum( $wgArticle->getCount() );
357 if ( $viewcount ) {
358 $tpl->set( 'viewcount', wfMsgExt( 'viewcount', array( 'parseinline' ), $viewcount ) );
359 } else {
360 $tpl->set( 'viewcount', false );
361 }
362 } else {
363 $tpl->set( 'viewcount', false );
364 }
365
366 if( $wgPageShowWatchingUsers ) {
367 $dbr = wfGetDB( DB_SLAVE );
368 $watchlist = $dbr->tableName( 'watchlist' );
369 $res = $dbr->select( 'watchlist',
370 array( 'COUNT(*) AS n' ),
371 array( 'wl_title' => $dbr->strencode( $this->mTitle->getDBkey() ), 'wl_namespace' => $this->mTitle->getNamespace() ),
372 __METHOD__
373 );
374 $x = $dbr->fetchObject( $res );
375 $numberofwatchingusers = $x->n;
376 if( $numberofwatchingusers > 0 ) {
377 $tpl->set( 'numberofwatchingusers',
378 wfMsgExt( 'number_of_watching_users_pageview', array( 'parseinline' ),
379 $wgLang->formatNum( $numberofwatchingusers ) )
380 );
381 } else {
382 $tpl->set( 'numberofwatchingusers', false );
383 }
384 } else {
385 $tpl->set( 'numberofwatchingusers', false );
386 }
387
388 $tpl->set( 'copyright', $this->getCopyright() );
389
390 $this->credits = false;
391
392 if( $wgMaxCredits != 0 ){
393 $this->credits = Credits::getCredits( $wgArticle, $wgMaxCredits, $wgShowCreditsIfMax );
394 } else {
395 $tpl->set( 'lastmod', $this->lastModified() );
396 }
397
398 $tpl->setRef( 'credits', $this->credits );
399
400 } elseif ( isset( $oldid ) && !isset( $diff ) ) {
401 $tpl->set( 'copyright', $this->getCopyright() );
402 $tpl->set( 'viewcount', false );
403 $tpl->set( 'lastmod', false );
404 $tpl->set( 'credits', false );
405 $tpl->set( 'numberofwatchingusers', false );
406 } else {
407 $tpl->set( 'copyright', false );
408 $tpl->set( 'viewcount', false );
409 $tpl->set( 'lastmod', false );
410 $tpl->set( 'credits', false );
411 $tpl->set( 'numberofwatchingusers', false );
412 }
413 wfProfileOut( __METHOD__ . '-stuff3' );
414
415 wfProfileIn( __METHOD__ . '-stuff4' );
416 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
417 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
418 $tpl->set( 'disclaimer', $this->disclaimerLink() );
419 $tpl->set( 'privacy', $this->privacyLink() );
420 $tpl->set( 'about', $this->aboutLink() );
421
422 $tpl->setRef( 'debug', $out->mDebugtext );
423 $tpl->set( 'reporttime', wfReportTime() );
424 $tpl->set( 'sitenotice', wfGetSiteNotice() );
425 $tpl->set( 'bottomscripts', $this->bottomScripts() );
426
427 $printfooter = "<div class=\"printfooter\">\n" . $this->printSource() . "</div>\n";
428 $out->mBodytext .= $printfooter . $this->generateDebugHTML();
429 $tpl->setRef( 'bodytext', $out->mBodytext );
430
431 # Language links
432 $language_urls = array();
433
434 if ( !$wgHideInterlanguageLinks ) {
435 foreach( $out->getLanguageLinks() as $l ) {
436 $tmp = explode( ':', $l, 2 );
437 $class = 'interwiki-' . $tmp[0];
438 unset( $tmp );
439 $nt = Title::newFromText( $l );
440 if ( $nt ) {
441 $language_urls[] = array(
442 'href' => $nt->getFullURL(),
443 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' ?
444 $wgContLang->getLanguageName( $nt->getInterwiki() ) : $l ),
445 'class' => $class
446 );
447 }
448 }
449 }
450 if( count( $language_urls ) ) {
451 $tpl->setRef( 'language_urls', $language_urls );
452 } else {
453 $tpl->set( 'language_urls', false );
454 }
455 wfProfileOut( __METHOD__ . '-stuff4' );
456
457 wfProfileIn( __METHOD__ . '-stuff5' );
458 # Personal toolbar
459 $tpl->set( 'personal_urls', $this->buildPersonalUrls() );
460 $content_actions = $this->buildContentActionUrls();
461 $tpl->setRef( 'content_actions', $content_actions );
462
463 // XXX: attach this from javascript, same with section editing
464 if( $this->iseditable && $wgUser->getOption( 'editondblclick' ) ){
465 $encEditUrl = Xml::escapeJsString( $this->mTitle->getLocalUrl( $this->editUrlOptions() ) );
466 $tpl->set( 'body_ondblclick', 'document.location = "' . $encEditUrl . '";' );
467 } else {
468 $tpl->set( 'body_ondblclick', false );
469 }
470 $tpl->set( 'body_onload', false );
471 $tpl->set( 'sidebar', $this->buildSidebar() );
472 $tpl->set( 'nav_urls', $this->buildNavUrls() );
473
474 //set the head script near the end (in case above actions result in adding scripts)
475 $tpl->set( 'headscripts', $out->getScript() );
476
477 // original version by hansm
478 if( !wfRunHooks( 'SkinTemplateOutputPageBeforeExec', array( &$this, &$tpl ) ) ) {
479 wfDebug( __METHOD__ . ": Hook SkinTemplateOutputPageBeforeExec broke outputPage execution!\n" );
480 }
481
482 // allow extensions adding stuff after the page content.
483 // See Skin::afterContentHook() for further documentation.
484 $tpl->set( 'dataAfterContent', $this->afterContentHook() );
485 wfProfileOut( __METHOD__ . '-stuff5' );
486
487 // execute template
488 wfProfileIn( __METHOD__ . '-execute' );
489 $res = $tpl->execute();
490 wfProfileOut( __METHOD__ . '-execute' );
491
492 // result may be an error
493 $this->printOrError( $res );
494 wfProfileOut( __METHOD__ );
495 }
496
497 /**
498 * Output the string, or print error message if it's
499 * an error object of the appropriate type.
500 * For the base class, assume strings all around.
501 *
502 * @param mixed $str
503 * @private
504 */
505 function printOrError( $str ) {
506 echo $str;
507 }
508
509 /**
510 * build array of urls for personal toolbar
511 * @return array
512 * @private
513 */
514 function buildPersonalUrls() {
515 global $wgOut, $wgRequest, $wgUser, $wgLang;
516
517 $title = $wgOut->getTitle();
518 $pageurl = $title->getLocalURL();
519 wfProfileIn( __METHOD__ );
520
521 /* set up the default links for the personal toolbar */
522 $personal_urls = array();
523 $page = $wgRequest->getVal( 'returnto', $this->thisurl );
524 $query = $wgRequest->getVal( 'returntoquery', $this->thisquery );
525 $returnto = "returnto=$page";
526 if( $this->thisquery != '' )
527 $returnto .= "&returntoquery=$query";
528 if( $this->loggedin ) {
529 $personal_urls['userpage'] = array(
530 'text' => $this->username,
531 'href' => &$this->userpageUrlDetails['href'],
532 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
533 'active' => ( $this->userpageUrlDetails['href'] == $pageurl )
534 );
535 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
536 if ( $wgUser->getNewtalk() ) {
537 # do not show text when we are viewing our
538 # own talk page
539 if( !$title->equals( $wgUser->getTalkPage() ) ) {
540 $newtalk = $wgUser->getnewMessagesCount();
541
542 # disable caching
543 $wgOut->setSquidMaxage( 0 );
544 $wgOut->enableClientCache( false );
545 }
546 else {
547 $newtalk = 0;
548 }
549 }
550 else {
551 $newtalk = 0;
552 }
553 $personal_urls['mytalk'] = array(
554 'text' => wfMsg( 'mytalk', $newtalk ),
555 'href' => &$usertalkUrlDetails['href'],
556 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
557 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
558 );
559 $href = self::makeSpecialUrl( 'Preferences' );
560 $personal_urls['preferences'] = array(
561 'text' => wfMsg( 'mypreferences' ),
562 'href' => $href,
563 'active' => ( $href == $pageurl )
564 );
565 $href = self::makeSpecialUrl( 'Watchlist' );
566 $personal_urls['watchlist'] = array(
567 'text' => wfMsg( 'mywatchlist' ),
568 'href' => $href,
569 'active' => ( $href == $pageurl )
570 );
571
572 # We need to do an explicit check for Special:Contributions, as we
573 # have to match both the title, and the target (which could come
574 # from request values or be specified in "sub page" form. The plot
575 # thickens, because $wgTitle is altered for special pages, so doesn't
576 # contain the original alias-with-subpage.
577 $origTitle = Title::newFromText( $wgRequest->getText( 'title' ) );
578 if( $origTitle instanceof Title && $origTitle->getNamespace() == NS_SPECIAL ) {
579 list( $spName, $spPar ) =
580 SpecialPage::resolveAliasWithSubpage( $origTitle->getText() );
581 $active = $spName == 'Contributions'
582 && ( ( $spPar && $spPar == $this->username )
583 || $wgRequest->getText( 'target' ) == $this->username );
584 } else {
585 $active = false;
586 }
587
588 $href = self::makeSpecialUrlSubpage( 'Contributions', $this->username );
589 $personal_urls['mycontris'] = array(
590 'text' => wfMsg( 'mycontris' ),
591 'href' => $href,
592 'active' => $active
593 );
594 $personal_urls['logout'] = array(
595 'text' => wfMsg( 'userlogout' ),
596 'href' => self::makeSpecialUrl( 'Userlogout',
597 $title->isSpecial( 'Preferences' ) ? '' : $returnto
598 ),
599 'active' => false
600 );
601 } else {
602 global $wgUser;
603 $loginlink = $wgUser->isAllowed( 'createaccount' )
604 ? 'nav-login-createaccount'
605 : 'login';
606 if( $this->showIPinHeader() ) {
607 $href = &$this->userpageUrlDetails['href'];
608 $personal_urls['anonuserpage'] = array(
609 'text' => $this->username,
610 'href' => $href,
611 'class' => $this->userpageUrlDetails['exists'] ? false : 'new',
612 'active' => ( $pageurl == $href )
613 );
614 $usertalkUrlDetails = $this->makeTalkUrlDetails( $this->userpage );
615 $href = &$usertalkUrlDetails['href'];
616 $personal_urls['anontalk'] = array(
617 'text' => wfMsg( 'anontalk' ),
618 'href' => $href,
619 'class' => $usertalkUrlDetails['exists'] ? false : 'new',
620 'active' => ( $pageurl == $href )
621 );
622 $personal_urls['anonlogin'] = array(
623 'text' => wfMsg( $loginlink ),
624 'href' => self::makeSpecialUrl( 'Userlogin', $returnto ),
625 'active' => $title->isSpecial( 'Userlogin' )
626 );
627 } else {
628 $personal_urls['login'] = array(
629 'text' => wfMsg( $loginlink ),
630 'href' => self::makeSpecialUrl( 'Userlogin', $returnto ),
631 'active' => $title->isSpecial( 'Userlogin' )
632 );
633 }
634 }
635
636 wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$title ) );
637 wfProfileOut( __METHOD__ );
638 return $personal_urls;
639 }
640
641 function tabAction( $title, $message, $selected, $query = '', $checkEdit = false ) {
642 $classes = array();
643 if( $selected ) {
644 $classes[] = 'selected';
645 }
646 if( $checkEdit && !$title->isKnown() ) {
647 $classes[] = 'new';
648 $query = 'action=edit&redlink=1';
649 }
650
651 $text = wfMsg( $message );
652 if ( wfEmptyMsg( $message, $text ) ) {
653 global $wgContLang;
654 $text = $wgContLang->getFormattedNsText( MWNamespace::getSubject( $title->getNamespace() ) );
655 }
656
657 $result = array();
658 if( !wfRunHooks( 'SkinTemplateTabAction', array( &$this,
659 $title, $message, $selected, $checkEdit,
660 &$classes, &$query, &$text, &$result ) ) ) {
661 return $result;
662 }
663
664 return array(
665 'class' => implode( ' ', $classes ),
666 'text' => $text,
667 'href' => $title->getLocalUrl( $query ) );
668 }
669
670 function makeTalkUrlDetails( $name, $urlaction = '' ) {
671 $title = Title::newFromText( $name );
672 if( !is_object( $title ) ) {
673 throw new MWException( __METHOD__ . " given invalid pagename $name" );
674 }
675 $title = $title->getTalkPage();
676 self::checkTitle( $title, $name );
677 return array(
678 'href' => $title->getLocalURL( $urlaction ),
679 'exists' => $title->getArticleID() != 0 ? true : false
680 );
681 }
682
683 function makeArticleUrlDetails( $name, $urlaction = '' ) {
684 $title = Title::newFromText( $name );
685 $title= $title->getSubjectPage();
686 self::checkTitle( $title, $name );
687 return array(
688 'href' => $title->getLocalURL( $urlaction ),
689 'exists' => $title->getArticleID() != 0 ? true : false
690 );
691 }
692
693 /**
694 * an array of edit links by default used for the tabs
695 * @return array
696 * @private
697 */
698 function buildContentActionUrls() {
699 global $wgContLang, $wgLang, $wgOut, $wgUser, $wgRequest, $wgArticle;
700
701 wfProfileIn( __METHOD__ );
702
703 $action = $wgRequest->getVal( 'action', 'view' );
704 $section = $wgRequest->getVal( 'section' );
705 $content_actions = array();
706
707 $prevent_active_tabs = false;
708 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this, &$prevent_active_tabs ) );
709
710 if( $this->iscontent ) {
711 $subjpage = $this->mTitle->getSubjectPage();
712 $talkpage = $this->mTitle->getTalkPage();
713
714 $nskey = $this->mTitle->getNamespaceKey();
715 $content_actions[$nskey] = $this->tabAction(
716 $subjpage,
717 $nskey,
718 !$this->mTitle->isTalkPage() && !$prevent_active_tabs,
719 '', true
720 );
721
722 $content_actions['talk'] = $this->tabAction(
723 $talkpage,
724 'talk',
725 $this->mTitle->isTalkPage() && !$prevent_active_tabs,
726 '',
727 true
728 );
729
730 wfProfileIn( __METHOD__ . '-edit' );
731 if ( $this->mTitle->quickUserCan( 'edit' ) && ( $this->mTitle->exists() || $this->mTitle->quickUserCan( 'create' ) ) ) {
732 $istalk = $this->mTitle->isTalkPage();
733 $istalkclass = $istalk?' istalk':'';
734 $content_actions['edit'] = array(
735 'class' => ( ( ( $action == 'edit' or $action == 'submit' ) and $section != 'new' ) ? 'selected' : '' ) . $istalkclass,
736 'text' => $this->mTitle->exists()
737 ? wfMsg( 'edit' )
738 : wfMsg( 'create' ),
739 'href' => $this->mTitle->getLocalUrl( $this->editUrlOptions() )
740 );
741
742 // adds new section link if page is a current revision of a talk page or
743 if ( ( $wgArticle && $wgArticle->isCurrent() && $istalk ) || $wgOut->showNewSectionLink() ) {
744 if ( !$wgOut->forceHideNewSectionLink() ) {
745 $content_actions['addsection'] = array(
746 'class' => $section == 'new' ? 'selected' : false,
747 'text' => wfMsg( 'addsection' ),
748 'href' => $this->mTitle->getLocalUrl( 'action=edit&section=new' )
749 );
750 }
751 }
752 } elseif ( $this->mTitle->isKnown() ) {
753 $content_actions['viewsource'] = array(
754 'class' => ($action == 'edit') ? 'selected' : false,
755 'text' => wfMsg( 'viewsource' ),
756 'href' => $this->mTitle->getLocalUrl( $this->editUrlOptions() )
757 );
758 }
759 wfProfileOut( __METHOD__ . '-edit' );
760
761 wfProfileIn( __METHOD__ . '-live' );
762 if ( $this->mTitle->exists() ) {
763
764 $content_actions['history'] = array(
765 'class' => ($action == 'history') ? 'selected' : false,
766 'text' => wfMsg( 'history_short' ),
767 'href' => $this->mTitle->getLocalUrl( 'action=history' ),
768 'rel' => 'archives',
769 );
770
771 if( $wgUser->isAllowed( 'delete' ) ) {
772 $content_actions['delete'] = array(
773 'class' => ($action == 'delete') ? 'selected' : false,
774 'text' => wfMsg( 'delete' ),
775 'href' => $this->mTitle->getLocalUrl( 'action=delete' )
776 );
777 }
778 if ( $this->mTitle->quickUserCan( 'move' ) ) {
779 $moveTitle = SpecialPage::getTitleFor( 'Movepage', $this->thispage );
780 $content_actions['move'] = array(
781 'class' => $this->mTitle->isSpecial( 'Movepage' ) ? 'selected' : false,
782 'text' => wfMsg( 'move' ),
783 'href' => $moveTitle->getLocalUrl()
784 );
785 }
786
787 if ( $this->mTitle->getNamespace() !== NS_MEDIAWIKI && $wgUser->isAllowed( 'protect' ) ) {
788 if( !$this->mTitle->isProtected() ){
789 $content_actions['protect'] = array(
790 'class' => ($action == 'protect') ? 'selected' : false,
791 'text' => wfMsg( 'protect' ),
792 'href' => $this->mTitle->getLocalUrl( 'action=protect' )
793 );
794
795 } else {
796 $content_actions['unprotect'] = array(
797 'class' => ($action == 'unprotect') ? 'selected' : false,
798 'text' => wfMsg( 'unprotect' ),
799 'href' => $this->mTitle->getLocalUrl( 'action=unprotect' )
800 );
801 }
802 }
803 } else {
804 //article doesn't exist or is deleted
805 if( $wgUser->isAllowed( 'deletedhistory' ) && $wgUser->isAllowed( 'undelete' ) ) {
806 if( $n = $this->mTitle->isDeleted() ) {
807 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
808 $content_actions['undelete'] = array(
809 'class' => false,
810 'text' => wfMsgExt( 'undelete_short', array( 'parsemag' ), $wgLang->formatNum( $n ) ),
811 'href' => $undelTitle->getLocalUrl( 'target=' . urlencode( $this->thispage ) )
812 #'href' => self::makeSpecialUrl( "Undelete/$this->thispage" )
813 );
814 }
815 }
816
817 if ( $this->mTitle->getNamespace() !== NS_MEDIAWIKI && $wgUser->isAllowed( 'protect' ) ) {
818 if( !$this->mTitle->getRestrictions( 'create' ) ) {
819 $content_actions['protect'] = array(
820 'class' => ($action == 'protect') ? 'selected' : false,
821 'text' => wfMsg( 'protect' ),
822 'href' => $this->mTitle->getLocalUrl( 'action=protect' )
823 );
824
825 } else {
826 $content_actions['unprotect'] = array(
827 'class' => ($action == 'unprotect') ? 'selected' : false,
828 'text' => wfMsg( 'unprotect' ),
829 'href' => $this->mTitle->getLocalUrl( 'action=unprotect' )
830 );
831 }
832 }
833 }
834
835 wfProfileOut( __METHOD__ . '-live' );
836
837 if( $this->loggedin ) {
838 if( !$this->mTitle->userIsWatching()) {
839 $content_actions['watch'] = array(
840 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,
841 'text' => wfMsg( 'watch' ),
842 'href' => $this->mTitle->getLocalUrl( 'action=watch' )
843 );
844 } else {
845 $content_actions['unwatch'] = array(
846 'class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false,
847 'text' => wfMsg( 'unwatch' ),
848 'href' => $this->mTitle->getLocalUrl( 'action=unwatch' )
849 );
850 }
851 }
852
853
854 wfRunHooks( 'SkinTemplateTabs', array( &$this, &$content_actions ) );
855 } else {
856 /* show special page tab */
857
858 $content_actions[$this->mTitle->getNamespaceKey()] = array(
859 'class' => 'selected',
860 'text' => wfMsg('nstab-special'),
861 'href' => $wgRequest->getRequestURL(), // @bug 2457, 2510
862 );
863
864 wfRunHooks( 'SkinTemplateBuildContentActionUrlsAfterSpecialPage', array( &$this, &$content_actions ) );
865 }
866
867 /* show links to different language variants */
868 global $wgDisableLangConversion;
869 $variants = $wgContLang->getVariants();
870 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
871 $preferred = $wgContLang->getPreferredVariant();
872 $vcount=0;
873 foreach( $variants as $code ) {
874 $varname = $wgContLang->getVariantname( $code );
875 if( $varname == 'disable' )
876 continue;
877 $selected = ( $code == $preferred )? 'selected' : false;
878 $content_actions['varlang-' . $vcount] = array(
879 'class' => $selected,
880 'text' => $varname,
881 'href' => $this->mTitle->getLocalURL( '', $code )
882 );
883 $vcount ++;
884 }
885 }
886
887 wfRunHooks( 'SkinTemplateContentActions', array( &$content_actions ) );
888
889 wfProfileOut( __METHOD__ );
890 return $content_actions;
891 }
892
893 /**
894 * build array of common navigation links
895 * @return array
896 * @private
897 */
898 function buildNavUrls() {
899 global $wgUseTrackbacks, $wgOut, $wgUser, $wgRequest;
900 global $wgEnableUploads, $wgUploadNavigationUrl;
901
902 wfProfileIn( __METHOD__ );
903
904 $action = $wgRequest->getVal( 'action', 'view' );
905
906 $nav_urls = array();
907 $nav_urls['mainpage'] = array( 'href' => self::makeMainPageUrl() );
908 if( $wgUploadNavigationUrl ) {
909 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
910 } elseif( $wgEnableUploads && $wgUser->isAllowed( 'upload' ) ) {
911 $nav_urls['upload'] = array( 'href' => self::makeSpecialUrl( 'Upload' ) );
912 } else {
913 $nav_urls['upload'] = false;
914 }
915 $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) );
916
917 // default permalink to being off, will override it as required below.
918 $nav_urls['permalink'] = false;
919
920 // A print stylesheet is attached to all pages, but nobody ever
921 // figures that out. :) Add a link...
922 if( $this->iscontent && ( $action == 'view' || $action == 'purge' ) ) {
923 if ( !$wgRequest->getBool( 'printable' ) ) {
924 $nav_urls['print'] = array(
925 'text' => wfMsg( 'printableversion' ),
926 'href' => $wgRequest->appendQuery( 'printable=yes' )
927 );
928 }
929
930 // Also add a "permalink" while we're at it
931 if ( $this->mRevisionId ) {
932 $nav_urls['permalink'] = array(
933 'text' => wfMsg( 'permalink' ),
934 'href' => $wgOut->getTitle()->getLocalURL( "oldid=$this->mRevisionId" )
935 );
936 }
937
938 // Copy in case this undocumented, shady hook tries to mess with internals
939 $revid = $this->mRevisionId;
940 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink', array( &$this, &$nav_urls, &$revid, &$revid ) );
941 }
942
943 if( $this->mTitle->getNamespace() != NS_SPECIAL ) {
944 $wlhTitle = SpecialPage::getTitleFor( 'Whatlinkshere', $this->thispage );
945 $nav_urls['whatlinkshere'] = array(
946 'href' => $wlhTitle->getLocalUrl()
947 );
948 if( $this->mTitle->getArticleId() ) {
949 $rclTitle = SpecialPage::getTitleFor( 'Recentchangeslinked', $this->thispage );
950 $nav_urls['recentchangeslinked'] = array(
951 'href' => $rclTitle->getLocalUrl()
952 );
953 } else {
954 $nav_urls['recentchangeslinked'] = false;
955 }
956 if( $wgUseTrackbacks )
957 $nav_urls['trackbacklink'] = array(
958 'href' => $wgOut->getTitle()->trackbackURL()
959 );
960 }
961
962 if( $this->mTitle->getNamespace() == NS_USER || $this->mTitle->getNamespace() == NS_USER_TALK ) {
963 $id = User::idFromName( $this->mTitle->getText() );
964 $ip = User::isIP( $this->mTitle->getText() );
965 } else {
966 $id = 0;
967 $ip = false;
968 }
969
970 if( $id || $ip ) { # both anons and non-anons have contribs list
971 $nav_urls['contributions'] = array(
972 'href' => self::makeSpecialUrlSubpage( 'Contributions', $this->mTitle->getText() )
973 );
974
975 if( $id ) {
976 $logPage = SpecialPage::getTitleFor( 'Log' );
977 $nav_urls['log'] = array(
978 'href' => $logPage->getLocalUrl(
979 array(
980 'user' => $this->mTitle->getText()
981 )
982 )
983 );
984 } else {
985 $nav_urls['log'] = false;
986 }
987
988 if ( $wgUser->isAllowed( 'block' ) ) {
989 $nav_urls['blockip'] = array(
990 'href' => self::makeSpecialUrlSubpage( 'Blockip', $this->mTitle->getText() )
991 );
992 } else {
993 $nav_urls['blockip'] = false;
994 }
995 } else {
996 $nav_urls['contributions'] = false;
997 $nav_urls['log'] = false;
998 $nav_urls['blockip'] = false;
999 }
1000 $nav_urls['emailuser'] = false;
1001 if( $this->showEmailUser( $id ) ) {
1002 $nav_urls['emailuser'] = array(
1003 'href' => self::makeSpecialUrlSubpage( 'Emailuser', $this->mTitle->getText() )
1004 );
1005 }
1006 wfProfileOut( __METHOD__ );
1007 return $nav_urls;
1008 }
1009
1010 /**
1011 * Generate strings used for xml 'id' names
1012 * @return string
1013 * @private
1014 */
1015 function getNameSpaceKey() {
1016 return $this->mTitle->getNamespaceKey();
1017 }
1018
1019 /**
1020 * @private
1021 */
1022 function setupUserJs( $allowUserJs ) {
1023 global $wgRequest, $wgJsMimeType;
1024 wfProfileIn( __METHOD__ );
1025
1026 $action = $wgRequest->getVal( 'action', 'view' );
1027
1028 if( $allowUserJs && $this->loggedin ) {
1029 if( $this->mTitle->isJsSubpage() and $this->userCanPreview( $action ) ) {
1030 # XXX: additional security check/prompt?
1031 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText( 'wpTextbox1' ) . ' /*]]>*/';
1032 } else {
1033 $this->userjs = self::makeUrl( $this->userpage . '/' . $this->skinname . '.js', 'action=raw&ctype=' . $wgJsMimeType );
1034 }
1035 }
1036 wfProfileOut( __METHOD__ );
1037 }
1038
1039 /**
1040 * Code for extensions to hook into to provide per-page CSS, see
1041 * extensions/PageCSS/PageCSS.php for an implementation of this.
1042 *
1043 * @private
1044 */
1045 function setupPageCss() {
1046 wfProfileIn( __METHOD__ );
1047 $out = false;
1048 wfRunHooks( 'SkinTemplateSetupPageCss', array( &$out ) );
1049 wfProfileOut( __METHOD__ );
1050 return $out;
1051 }
1052
1053 public function commonPrintStylesheet() {
1054 return false;
1055 }
1056 }
1057
1058 /**
1059 * Generic wrapper for template functions, with interface
1060 * compatible with what we use of PHPTAL 0.7.
1061 * @ingroup Skins
1062 */
1063 class QuickTemplate {
1064 /**
1065 * Constructor
1066 */
1067 public function QuickTemplate() {
1068 $this->data = array();
1069 $this->translator = new MediaWiki_I18N();
1070 }
1071
1072 /**
1073 * Sets the value $value to $name
1074 * @param $name
1075 * @param $value
1076 */
1077 public function set( $name, $value ) {
1078 $this->data[$name] = $value;
1079 }
1080
1081 /**
1082 * @param $name
1083 * @param $value
1084 */
1085 public function setRef( $name, &$value ) {
1086 $this->data[$name] =& $value;
1087 }
1088
1089 /**
1090 * @param $t
1091 */
1092 public function setTranslator( &$t ) {
1093 $this->translator = &$t;
1094 }
1095
1096 /**
1097 * Main function, used by classes that subclass QuickTemplate
1098 * to show the actual HTML output
1099 */
1100 public function execute() {
1101 echo 'Override this function.';
1102 }
1103
1104 /**
1105 * @private
1106 */
1107 function text( $str ) {
1108 echo htmlspecialchars( $this->data[$str] );
1109 }
1110
1111 /**
1112 * @private
1113 */
1114 function jstext( $str ) {
1115 echo Xml::escapeJsString( $this->data[$str] );
1116 }
1117
1118 /**
1119 * @private
1120 */
1121 function html( $str ) {
1122 echo $this->data[$str];
1123 }
1124
1125 /**
1126 * @private
1127 */
1128 function msg( $str ) {
1129 echo htmlspecialchars( $this->translator->translate( $str ) );
1130 }
1131
1132 /**
1133 * @private
1134 */
1135 function msgHtml( $str ) {
1136 echo $this->translator->translate( $str );
1137 }
1138
1139 /**
1140 * An ugly, ugly hack.
1141 * @private
1142 */
1143 function msgWiki( $str ) {
1144 global $wgParser, $wgOut;
1145
1146 $text = $this->translator->translate( $str );
1147 $parserOutput = $wgParser->parse( $text, $wgOut->getTitle(),
1148 $wgOut->parserOptions(), true );
1149 echo $parserOutput->getText();
1150 }
1151
1152 /**
1153 * @private
1154 */
1155 function haveData( $str ) {
1156 return isset( $this->data[$str] );
1157 }
1158
1159 /**
1160 * @private
1161 */
1162 function haveMsg( $str ) {
1163 $msg = $this->translator->translate( $str );
1164 return ( $msg != '-' ) && ( $msg != '' ); # ????
1165 }
1166 }