* Wont work
[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( $out->isUserJsAllowed() );
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 $jsCache = $this->loggedin ? '&smaxage=0' : '';
289 $tpl->set( 'jsvarurl',
290 self::makeUrl('-',
291 "action=raw$jsCache&gen=js&useskin=" .
292 urlencode( $this->getSkinName() ) ) );
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 $encEditUrl = wfEscapeJsString( $this->mTitle->getLocalUrl( $this->editUrlOptions() ) );
444 $tpl->set('body_ondblclick', 'document.location = "' . $encEditUrl . '";');
445 } else {
446 $tpl->set('body_ondblclick', false);
447 }
448 if( $this->iseditable && $wgUser->getOption( 'editsectiononrightclick' ) ) {
449 $tpl->set( 'body_onload', 'setupRightClickEdit()' );
450 } else {
451 $tpl->set( 'body_onload', false );
452 }
453 $tpl->set( 'sidebar', $this->buildSidebar() );
454 $tpl->set( 'nav_urls', $this->buildNavUrls() );
455
456 // original version by hansm
457 if( !wfRunHooks( 'SkinTemplateOutputPageBeforeExec', array( &$this, &$tpl ) ) ) {
458 wfDebug( __METHOD__ . ': Hook SkinTemplateOutputPageBeforeExec broke outputPage execution!' );
459 }
460
461 // execute template
462 wfProfileIn( "$fname-execute" );
463 $res = $tpl->execute();
464 wfProfileOut( "$fname-execute" );
465
466 // result may be an error
467 $this->printOrError( $res );
468 wfProfileOut( $fname );
469 }
470
471 /**
472 * Output the string, or print error message if it's
473 * an error object of the appropriate type.
474 * For the base class, assume strings all around.
475 *
476 * @param mixed $str
477 * @private
478 */
479 function printOrError( $str ) {
480 echo $str;
481 }
482
483 /**
484 * build array of urls for personal toolbar
485 * @return array
486 * @private
487 */
488 function buildPersonalUrls() {
489 global $wgTitle, $wgRequest;
490
491 $fname = 'SkinTemplate::buildPersonalUrls';
492 $pageurl = $wgTitle->getLocalURL();
493 wfProfileIn( $fname );
494
495 /* set up the default links for the personal toolbar */
496 $personal_urls = array();
497 if ($this->loggedin) {
498 $personal_urls['userpage'] = array(
499 'text' => $this->username,
500 'href' => &$this->userpageUrlDetails['href'],
501 'class' => $this->userpageUrlDetails['exists']?false:'new',
502 'active' => ( $this->userpageUrlDetails['href'] == $pageurl )
503 );
504 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
505 $personal_urls['mytalk'] = array(
506 'text' => wfMsg('mytalk'),
507 'href' => &$usertalkUrlDetails['href'],
508 'class' => $usertalkUrlDetails['exists']?false:'new',
509 'active' => ( $usertalkUrlDetails['href'] == $pageurl )
510 );
511 $href = self::makeSpecialUrl( 'Preferences' );
512 $personal_urls['preferences'] = array(
513 'text' => wfMsg( 'mypreferences' ),
514 'href' => $href,
515 'active' => ( $href == $pageurl )
516 );
517 $href = self::makeSpecialUrl( 'Watchlist' );
518 $personal_urls['watchlist'] = array(
519 'text' => wfMsg( 'mywatchlist' ),
520 'href' => $href,
521 'active' => ( $href == $pageurl )
522 );
523
524 # We need to do an explicit check for Special:Contributions, as we
525 # have to match both the title, and the target (which could come
526 # from request values or be specified in "sub page" form. The plot
527 # thickens, because $wgTitle is altered for special pages, so doesn't
528 # contain the original alias-with-subpage.
529 $title = Title::newFromText( $wgRequest->getText( 'title' ) );
530 if( $title instanceof Title && $title->getNamespace() == NS_SPECIAL ) {
531 list( $spName, $spPar ) =
532 SpecialPage::resolveAliasWithSubpage( $title->getText() );
533 $active = $spName == 'Contributions'
534 && ( ( $spPar && $spPar == $this->username )
535 || $wgRequest->getText( 'target' ) == $this->username );
536 } else {
537 $active = false;
538 }
539
540 $href = self::makeSpecialUrlSubpage( 'Contributions', $this->username );
541 $personal_urls['mycontris'] = array(
542 'text' => wfMsg( 'mycontris' ),
543 'href' => $href,
544 'active' => $active
545 );
546 $personal_urls['logout'] = array(
547 'text' => wfMsg( 'userlogout' ),
548 'href' => self::makeSpecialUrl( 'Userlogout',
549 $wgTitle->isSpecial( 'Preferences' ) ? '' : "returnto={$this->thisurl}"
550 ),
551 'active' => false
552 );
553 } else {
554 if( $this->showIPinHeader() ) {
555 $href = &$this->userpageUrlDetails['href'];
556 $personal_urls['anonuserpage'] = array(
557 'text' => $this->username,
558 'href' => $href,
559 'class' => $this->userpageUrlDetails['exists']?false:'new',
560 'active' => ( $pageurl == $href )
561 );
562 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
563 $href = &$usertalkUrlDetails['href'];
564 $personal_urls['anontalk'] = array(
565 'text' => wfMsg('anontalk'),
566 'href' => $href,
567 'class' => $usertalkUrlDetails['exists']?false:'new',
568 'active' => ( $pageurl == $href )
569 );
570 $personal_urls['anonlogin'] = array(
571 'text' => wfMsg('userlogin'),
572 'href' => self::makeSpecialUrl( 'Userlogin', 'returnto=' . $this->thisurl ),
573 'active' => $wgTitle->isSpecial( 'Userlogin' )
574 );
575 } else {
576
577 $personal_urls['login'] = array(
578 'text' => wfMsg('userlogin'),
579 'href' => self::makeSpecialUrl( 'Userlogin', 'returnto=' . $this->thisurl ),
580 'active' => $wgTitle->isSpecial( 'Userlogin' )
581 );
582 }
583 }
584
585 wfRunHooks( 'PersonalUrls', array( &$personal_urls, &$wgTitle ) );
586 wfProfileOut( $fname );
587 return $personal_urls;
588 }
589
590 function tabAction( $title, $message, $selected, $query='', $checkEdit=false ) {
591 $classes = array();
592 if( $selected ) {
593 $classes[] = 'selected';
594 }
595 if( $checkEdit && !$title->isAlwaysKnown() && $title->getArticleId() == 0 ) {
596 $classes[] = 'new';
597 $query = 'action=edit';
598 }
599
600 $text = wfMsg( $message );
601 if ( wfEmptyMsg( $message, $text ) ) {
602 global $wgContLang;
603 $text = $wgContLang->getFormattedNsText( Namespace::getSubject( $title->getNamespace() ) );
604 }
605
606 $result = array();
607 if( !wfRunHooks('SkinTemplateTabAction', array(&$this,
608 $title, $message, $selected, $checkEdit,
609 &$classes, &$query, &$text, &$result)) ) {
610 return $result;
611 }
612
613 return array(
614 'class' => implode( ' ', $classes ),
615 'text' => $text,
616 'href' => $title->getLocalUrl( $query ) );
617 }
618
619 function makeTalkUrlDetails( $name, $urlaction = '' ) {
620 $title = Title::newFromText( $name );
621 if( !is_object($title) ) {
622 throw new MWException( __METHOD__." given invalid pagename $name" );
623 }
624 $title = $title->getTalkPage();
625 self::checkTitle( $title, $name );
626 return array(
627 'href' => $title->getLocalURL( $urlaction ),
628 'exists' => $title->getArticleID() != 0 ? true : false
629 );
630 }
631
632 function makeArticleUrlDetails( $name, $urlaction = '' ) {
633 $title = Title::newFromText( $name );
634 $title= $title->getSubjectPage();
635 self::checkTitle( $title, $name );
636 return array(
637 'href' => $title->getLocalURL( $urlaction ),
638 'exists' => $title->getArticleID() != 0 ? true : false
639 );
640 }
641
642 /**
643 * an array of edit links by default used for the tabs
644 * @return array
645 * @private
646 */
647 function buildContentActionUrls () {
648 global $wgContLang, $wgOut;
649 $fname = 'SkinTemplate::buildContentActionUrls';
650 wfProfileIn( $fname );
651
652 global $wgUser, $wgRequest;
653 $action = $wgRequest->getText( 'action' );
654 $section = $wgRequest->getText( 'section' );
655 $content_actions = array();
656
657 $prevent_active_tabs = false ;
658 wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this , &$prevent_active_tabs ) ) ;
659
660 if( $this->iscontent ) {
661 $subjpage = $this->mTitle->getSubjectPage();
662 $talkpage = $this->mTitle->getTalkPage();
663
664 $nskey = $this->mTitle->getNamespaceKey();
665 $content_actions[$nskey] = $this->tabAction(
666 $subjpage,
667 $nskey,
668 !$this->mTitle->isTalkPage() && !$prevent_active_tabs,
669 '', true);
670
671 $content_actions['talk'] = $this->tabAction(
672 $talkpage,
673 'talk',
674 $this->mTitle->isTalkPage() && !$prevent_active_tabs,
675 '',
676 true);
677
678 wfProfileIn( "$fname-edit" );
679 if ( $this->mTitle->quickUserCan( 'edit' ) && ( $this->mTitle->exists() || $this->mTitle->quickUserCan( 'create' ) ) ) {
680 $istalk = $this->mTitle->isTalkPage();
681 $istalkclass = $istalk?' istalk':'';
682 $content_actions['edit'] = array(
683 'class' => ((($action == 'edit' or $action == 'submit') and $section != 'new') ? 'selected' : '').$istalkclass,
684 'text' => wfMsg('edit'),
685 'href' => $this->mTitle->getLocalUrl( $this->editUrlOptions() )
686 );
687
688 if ( $istalk || $wgOut->showNewSectionLink() ) {
689 $content_actions['addsection'] = array(
690 'class' => $section == 'new'?'selected':false,
691 'text' => wfMsg('addsection'),
692 'href' => $this->mTitle->getLocalUrl( 'action=edit&section=new' )
693 );
694 }
695 } elseif ( $this->mTitle->exists() || $this->mTitle->isAlwaysKnown() ) {
696 $content_actions['viewsource'] = array(
697 'class' => ($action == 'edit') ? 'selected' : false,
698 'text' => wfMsg('viewsource'),
699 'href' => $this->mTitle->getLocalUrl( $this->editUrlOptions() )
700 );
701 }
702 wfProfileOut( "$fname-edit" );
703
704 wfProfileIn( "$fname-live" );
705 if ( $this->mTitle->getArticleId() ) {
706
707 $content_actions['history'] = array(
708 'class' => ($action == 'history') ? 'selected' : false,
709 'text' => wfMsg('history_short'),
710 'href' => $this->mTitle->getLocalUrl( 'action=history')
711 );
712
713 if ( $this->mTitle->getNamespace() !== NS_MEDIAWIKI && $wgUser->isAllowed( 'protect' ) ) {
714 if(!$this->mTitle->isProtected()){
715 $content_actions['protect'] = array(
716 'class' => ($action == 'protect') ? 'selected' : false,
717 'text' => wfMsg('protect'),
718 'href' => $this->mTitle->getLocalUrl( 'action=protect' )
719 );
720
721 } else {
722 $content_actions['unprotect'] = array(
723 'class' => ($action == 'unprotect') ? 'selected' : false,
724 'text' => wfMsg('unprotect'),
725 'href' => $this->mTitle->getLocalUrl( 'action=unprotect' )
726 );
727 }
728 }
729 if($wgUser->isAllowed('delete')){
730 $content_actions['delete'] = array(
731 'class' => ($action == 'delete') ? 'selected' : false,
732 'text' => wfMsg('delete'),
733 'href' => $this->mTitle->getLocalUrl( 'action=delete' )
734 );
735 }
736 if ( $this->mTitle->quickUserCan( 'move' ) ) {
737 $moveTitle = SpecialPage::getTitleFor( 'Movepage', $this->thispage );
738 $content_actions['move'] = array(
739 'class' => $this->mTitle->isSpecial( 'Movepage' ) ? 'selected' : false,
740 'text' => wfMsg('move'),
741 'href' => $moveTitle->getLocalUrl()
742 );
743 }
744 } else {
745 //article doesn't exist or is deleted
746 if( $wgUser->isAllowed( 'delete' ) ) {
747 if( $n = $this->mTitle->isDeleted() ) {
748 $undelTitle = SpecialPage::getTitleFor( 'Undelete' );
749 $content_actions['undelete'] = array(
750 'class' => false,
751 'text' => wfMsgExt( 'undelete_short', array( 'parsemag' ), $n ),
752 'href' => $undelTitle->getLocalUrl( 'target=' . urlencode( $this->thispage ) )
753 #'href' => self::makeSpecialUrl( "Undelete/$this->thispage" )
754 );
755 }
756 }
757 }
758 wfProfileOut( "$fname-live" );
759
760 if( $this->loggedin ) {
761 if( !$this->mTitle->userIsWatching()) {
762 $content_actions['watch'] = array(
763 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,
764 'text' => wfMsg('watch'),
765 'href' => $this->mTitle->getLocalUrl( 'action=watch' )
766 );
767 } else {
768 $content_actions['unwatch'] = array(
769 'class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false,
770 'text' => wfMsg('unwatch'),
771 'href' => $this->mTitle->getLocalUrl( 'action=unwatch' )
772 );
773 }
774 }
775
776
777 wfRunHooks( 'SkinTemplateTabs', array( &$this , &$content_actions ) ) ;
778 } else {
779 /* show special page tab */
780
781 $content_actions[$this->mTitle->getNamespaceKey()] = array(
782 'class' => 'selected',
783 'text' => wfMsg('nstab-special'),
784 'href' => $wgRequest->getRequestURL(), // @bug 2457, 2510
785 );
786
787 wfRunHooks( 'SkinTemplateBuildContentActionUrlsAfterSpecialPage', array( &$this, &$content_actions ) );
788 }
789
790 /* show links to different language variants */
791 global $wgDisableLangConversion;
792 $variants = $wgContLang->getVariants();
793 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
794 $preferred = $wgContLang->getPreferredVariant();
795 $vcount=0;
796 foreach( $variants as $code ) {
797 $varname = $wgContLang->getVariantname( $code );
798 if( $varname == 'disable' )
799 continue;
800 $selected = ( $code == $preferred )? 'selected' : false;
801 $content_actions['varlang-' . $vcount] = array(
802 'class' => $selected,
803 'text' => $varname,
804 'href' => $this->mTitle->getLocalURL('',$code)
805 );
806 $vcount ++;
807 }
808 }
809
810 wfRunHooks( 'SkinTemplateContentActions', array( &$content_actions ) );
811
812 wfProfileOut( $fname );
813 return $content_actions;
814 }
815
816
817
818 /**
819 * build array of common navigation links
820 * @return array
821 * @private
822 */
823 function buildNavUrls () {
824 global $wgUseTrackbacks, $wgTitle, $wgArticle;
825
826 $fname = 'SkinTemplate::buildNavUrls';
827 wfProfileIn( $fname );
828
829 global $wgUser, $wgRequest;
830 global $wgEnableUploads, $wgUploadNavigationUrl;
831
832 $action = $wgRequest->getText( 'action' );
833
834 $nav_urls = array();
835 $nav_urls['mainpage'] = array( 'href' => self::makeMainPageUrl() );
836 if( $wgEnableUploads ) {
837 if ($wgUploadNavigationUrl) {
838 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
839 } else {
840 $nav_urls['upload'] = array( 'href' => self::makeSpecialUrl( 'Upload' ) );
841 }
842 } else {
843 if ($wgUploadNavigationUrl)
844 $nav_urls['upload'] = array( 'href' => $wgUploadNavigationUrl );
845 else
846 $nav_urls['upload'] = false;
847 }
848 $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) );
849
850 // default permalink to being off, will override it as required below.
851 $nav_urls['permalink'] = false;
852
853 // A print stylesheet is attached to all pages, but nobody ever
854 // figures that out. :) Add a link...
855 if( $this->iscontent && ($action == '' || $action == 'view' || $action == 'purge' ) ) {
856 $nav_urls['print'] = array(
857 'text' => wfMsg( 'printableversion' ),
858 'href' => $wgRequest->appendQuery( 'printable=yes' )
859 );
860
861 // Also add a "permalink" while we're at it
862 if ( $this->mRevisionId ) {
863 $nav_urls['permalink'] = array(
864 'text' => wfMsg( 'permalink' ),
865 'href' => $wgTitle->getLocalURL( "oldid=$this->mRevisionId" )
866 );
867 }
868
869 // Copy in case this undocumented, shady hook tries to mess with internals
870 $revid = $this->mRevisionId;
871 wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink', array( &$this, &$nav_urls, &$revid, &$revid ) );
872 }
873
874 if( $this->mTitle->getNamespace() != NS_SPECIAL ) {
875 $wlhTitle = SpecialPage::getTitleFor( 'Whatlinkshere', $this->thispage );
876 $nav_urls['whatlinkshere'] = array(
877 'href' => $wlhTitle->getLocalUrl()
878 );
879 if( $this->mTitle->getArticleId() ) {
880 $rclTitle = SpecialPage::getTitleFor( 'Recentchangeslinked', $this->thispage );
881 $nav_urls['recentchangeslinked'] = array(
882 'href' => $rclTitle->getLocalUrl()
883 );
884 } else {
885 $nav_urls['recentchangeslinked'] = false;
886 }
887 if ($wgUseTrackbacks)
888 $nav_urls['trackbacklink'] = array(
889 'href' => $wgTitle->trackbackURL()
890 );
891 }
892
893 if( $this->mTitle->getNamespace() == NS_USER || $this->mTitle->getNamespace() == NS_USER_TALK ) {
894 $id = User::idFromName($this->mTitle->getText());
895 $ip = User::isIP($this->mTitle->getText());
896 } else {
897 $id = 0;
898 $ip = false;
899 }
900
901 if($id || $ip) { # both anons and non-anons have contribs list
902 $nav_urls['contributions'] = array(
903 'href' => self::makeSpecialUrlSubpage( 'Contributions', $this->mTitle->getText() )
904 );
905
906 if( $id ) {
907 $logPage = SpecialPage::getTitleFor( 'Log' );
908 $nav_urls['log'] = array( 'href' => $logPage->getLocalUrl( 'user='
909 . $this->mTitle->getPartialUrl() ) );
910 } else {
911 $nav_urls['log'] = false;
912 }
913
914 if ( $wgUser->isAllowed( 'block' ) ) {
915 $nav_urls['blockip'] = array(
916 'href' => self::makeSpecialUrlSubpage( 'Blockip', $this->mTitle->getText() )
917 );
918 } else {
919 $nav_urls['blockip'] = false;
920 }
921 } else {
922 $nav_urls['contributions'] = false;
923 $nav_urls['log'] = false;
924 $nav_urls['blockip'] = false;
925 }
926 $nav_urls['emailuser'] = false;
927 if( $this->showEmailUser( $id ) ) {
928 $nav_urls['emailuser'] = array(
929 'href' => self::makeSpecialUrlSubpage( 'Emailuser', $this->mTitle->getText() )
930 );
931 }
932 wfProfileOut( $fname );
933 return $nav_urls;
934 }
935
936 /**
937 * Generate strings used for xml 'id' names
938 * @return string
939 * @private
940 */
941 function getNameSpaceKey () {
942 return $this->mTitle->getNamespaceKey();
943 }
944
945 /**
946 * @private
947 */
948 function setupUserCss() {
949 $fname = 'SkinTemplate::setupUserCss';
950 wfProfileIn( $fname );
951
952 global $wgRequest, $wgAllowUserCss, $wgUseSiteCss, $wgContLang, $wgSquidMaxage, $wgStylePath, $wgUser;
953
954 $sitecss = '';
955 $usercss = '';
956 $siteargs = '&maxage=' . $wgSquidMaxage;
957 if( $this->loggedin ) {
958 // Ensure that logged-in users' generated CSS isn't clobbered
959 // by anons' publicly cacheable generated CSS.
960 $siteargs .= '&smaxage=0';
961 }
962
963 # Add user-specific code if this is a user and we allow that kind of thing
964
965 if ( $wgAllowUserCss && $this->loggedin ) {
966 $action = $wgRequest->getText('action');
967
968 # if we're previewing the CSS page, use it
969 if( $this->mTitle->isCssSubpage() and $this->userCanPreview( $action ) ) {
970 $siteargs = "&smaxage=0&maxage=0";
971 $usercss = $wgRequest->getText('wpTextbox1');
972 } else {
973 $usercss = '@import "' .
974 self::makeUrl($this->userpage . '/'.$this->skinname.'.css',
975 'action=raw&ctype=text/css') . '";' ."\n";
976 }
977
978 $siteargs .= '&ts=' . $wgUser->mTouched;
979 }
980
981 if( $wgContLang->isRTL() ) {
982 global $wgStyleVersion;
983 $sitecss .= "@import \"$wgStylePath/$this->stylename/rtl.css?$wgStyleVersion\";\n";
984 }
985
986 # If we use the site's dynamic CSS, throw that in, too
987 if ( $wgUseSiteCss ) {
988 $query = "usemsgcache=yes&action=raw&ctype=text/css&smaxage=$wgSquidMaxage";
989 $skinquery = '';
990 if (($us = $wgRequest->getVal('useskin', '')) !== '')
991 $skinquery = "&useskin=$us";
992 $sitecss .= '@import "' . self::makeNSUrl( 'Common.css', $query, NS_MEDIAWIKI) . '";' . "\n";
993 $sitecss .= '@import "' . self::makeNSUrl( ucfirst( $this->skinname ) . '.css', $query, NS_MEDIAWIKI ) . '";' . "\n";
994 $sitecss .= '@import "' . self::makeUrl( '-', "action=raw&gen=css$siteargs$skinquery" ) . '";' . "\n";
995 }
996
997 # If we use any dynamic CSS, make a little CDATA block out of it.
998
999 if ( !empty($sitecss) || !empty($usercss) ) {
1000 $this->usercss = "/*<![CDATA[*/\n" . $sitecss . $usercss . '/*]]>*/';
1001 }
1002 wfProfileOut( $fname );
1003 }
1004
1005 /**
1006 * @private
1007 */
1008 function setupUserJs( $allowUserJs ) {
1009 $fname = 'SkinTemplate::setupUserJs';
1010 wfProfileIn( $fname );
1011
1012 global $wgRequest, $wgJsMimeType;
1013 $action = $wgRequest->getText('action');
1014
1015 if( $allowUserJs && $this->loggedin ) {
1016 if( $this->mTitle->isJsSubpage() and $this->userCanPreview( $action ) ) {
1017 # XXX: additional security check/prompt?
1018 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText('wpTextbox1') . ' /*]]>*/';
1019 } else {
1020 $this->userjs = self::makeUrl($this->userpage.'/'.$this->skinname.'.js', 'action=raw&ctype='.$wgJsMimeType.'&dontcountme=s');
1021 }
1022 }
1023 wfProfileOut( $fname );
1024 }
1025
1026 /**
1027 * Code for extensions to hook into to provide per-page CSS, see
1028 * extensions/PageCSS/PageCSS.php for an implementation of this.
1029 *
1030 * @private
1031 */
1032 function setupPageCss() {
1033 $fname = 'SkinTemplate::setupPageCss';
1034 wfProfileIn( $fname );
1035 $out = false;
1036 wfRunHooks( 'SkinTemplateSetupPageCss', array( &$out ) );
1037
1038 wfProfileOut( $fname );
1039 return $out;
1040 }
1041
1042 /**
1043 * returns css with user-specific options
1044 * @public
1045 */
1046
1047 function getUserStylesheet() {
1048 $fname = 'SkinTemplate::getUserStylesheet';
1049 wfProfileIn( $fname );
1050
1051 $s = "/* generated user stylesheet */\n";
1052 $s .= $this->reallyDoGetUserStyles();
1053 wfProfileOut( $fname );
1054 return $s;
1055 }
1056
1057 /**
1058 * This returns MediaWiki:Common.js and MediaWiki:[Skinname].js concate-
1059 * nated together. For some bizarre reason, it does *not* return any
1060 * custom user JS from subpages. Huh?
1061 *
1062 * There's absolutely no reason to have separate Monobook/Common JSes.
1063 * Any JS that cares can just check the skin variable generated at the
1064 * top. For now Monobook.js will be maintained, but it should be consi-
1065 * dered deprecated.
1066 *
1067 * @return string
1068 */
1069 public function getUserJs() {
1070 $fname = 'SkinTemplate::getUserJs';
1071 wfProfileIn( $fname );
1072
1073 $s = parent::getUserJs();
1074 $s .= "\n\n/* MediaWiki:".ucfirst($this->skinname).".js (deprecated; migrate to Common.js!) */\n";
1075
1076 // avoid inclusion of non defined user JavaScript (with custom skins only)
1077 // by checking for default message content
1078 $msgKey = ucfirst($this->skinname).'.js';
1079 $userJS = wfMsgForContent($msgKey);
1080 if ( !wfEmptyMsg( $msgKey, $userJS ) ) {
1081 $s .= $userJS;
1082 }
1083
1084 wfProfileOut( $fname );
1085 return $s;
1086 }
1087 }
1088
1089 /**
1090 * Generic wrapper for template functions, with interface
1091 * compatible with what we use of PHPTAL 0.7.
1092 * @addtogroup Skins
1093 */
1094 class QuickTemplate {
1095 /**
1096 * @public
1097 */
1098 function QuickTemplate() {
1099 $this->data = array();
1100 $this->translator = new MediaWiki_I18N();
1101 }
1102
1103 /**
1104 * @public
1105 */
1106 function set( $name, $value ) {
1107 $this->data[$name] = $value;
1108 }
1109
1110 /**
1111 * @public
1112 */
1113 function setRef($name, &$value) {
1114 $this->data[$name] =& $value;
1115 }
1116
1117 /**
1118 * @public
1119 */
1120 function setTranslator( &$t ) {
1121 $this->translator = &$t;
1122 }
1123
1124 /**
1125 * @public
1126 */
1127 function execute() {
1128 echo "Override this function.";
1129 }
1130
1131
1132 /**
1133 * @private
1134 */
1135 function text( $str ) {
1136 echo htmlspecialchars( $this->data[$str] );
1137 }
1138
1139 /**
1140 * @private
1141 */
1142 function jstext( $str ) {
1143 echo Xml::escapeJsString( $this->data[$str] );
1144 }
1145
1146 /**
1147 * @private
1148 */
1149 function html( $str ) {
1150 echo $this->data[$str];
1151 }
1152
1153 /**
1154 * @private
1155 */
1156 function msg( $str ) {
1157 echo htmlspecialchars( $this->translator->translate( $str ) );
1158 }
1159
1160 /**
1161 * @private
1162 */
1163 function msgHtml( $str ) {
1164 echo $this->translator->translate( $str );
1165 }
1166
1167 /**
1168 * An ugly, ugly hack.
1169 * @private
1170 */
1171 function msgWiki( $str ) {
1172 global $wgParser, $wgTitle, $wgOut;
1173
1174 $text = $this->translator->translate( $str );
1175 $parserOutput = $wgParser->parse( $text, $wgTitle,
1176 $wgOut->parserOptions(), true );
1177 echo $parserOutput->getText();
1178 }
1179
1180 /**
1181 * @private
1182 */
1183 function haveData( $str ) {
1184 return isset( $this->data[$str] );
1185 }
1186
1187 /**
1188 * @private
1189 */
1190 function haveMsg( $str ) {
1191 $msg = $this->translator->translate( $str );
1192 return ($msg != '-') && ($msg != ''); # ????
1193 }
1194 }
1195