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