Get ride of the username in links when user is logged in.
[lhc/web/wiklou.git] / includes / SkinTemplate.php
1 <?php
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 2 of the License, or
5 # (at your option) any later version.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
11 #
12 # You should have received a copy of the GNU General Public License along
13 # with this program; if not, write to the Free Software Foundation, Inc.,
14 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 # http://www.gnu.org/copyleft/gpl.html
16
17 /**
18 * Template-filler skin base class
19 * Formerly generic PHPTal (http://phptal.sourceforge.net/) skin
20 * Based on Brion's smarty skin
21 * Copyright (C) Gabriel Wicke -- http://www.aulinx.de/
22 *
23 * Todo: Needs some serious refactoring into functions that correspond
24 * to the computations individual esi snippets need. Most importantly no body
25 * parsing for most of those of course.
26 *
27 * PHPTAL support has been moved to a subclass in SkinPHPTal.php,
28 * and is optional. You'll need to install PHPTAL manually to use
29 * skins that depend on it.
30 *
31 * @package MediaWiki
32 * @subpackage Skins
33 */
34
35 /**
36 * This is not a valid entry point, perform no further processing unless
37 * MEDIAWIKI is defined
38 */
39 if( defined( 'MEDIAWIKI' ) ) {
40
41 require_once 'GlobalFunctions.php';
42
43 /**
44 * Wrapper object for MediaWiki's localization functions,
45 * to be passed to the template engine.
46 *
47 * @access private
48 * @package MediaWiki
49 */
50 class MediaWiki_I18N {
51 var $_context = array();
52
53 function set($varName, $value) {
54 $this->_context[$varName] = $value;
55 }
56
57 function translate($value) {
58 $fname = 'SkinTemplate-translate';
59 wfProfileIn( $fname );
60
61 // Hack for i18n:attributes in PHPTAL 1.0.0 dev version as of 2004-10-23
62 $value = preg_replace( '/^string:/', '', $value );
63
64 $value = wfMsg( $value );
65 // interpolate variables
66 while (preg_match('/\$([0-9]*?)/sm', $value, $m)) {
67 list($src, $var) = $m;
68 wfSuppressWarnings();
69 $varValue = $this->_context[$var];
70 wfRestoreWarnings();
71 $value = str_replace($src, $varValue, $value);
72 }
73 wfProfileOut( $fname );
74 return $value;
75 }
76 }
77
78 /**
79 *
80 * @package MediaWiki
81 */
82 class SkinTemplate extends Skin {
83 /**#@+
84 * @access private
85 */
86
87 /**
88 * Name of our skin, set in initPage()
89 * It probably need to be all lower case.
90 */
91 var $skinname;
92
93 /**
94 * Stylesheets set to use
95 * Sub directory in ./skins/ where various stylesheets are located
96 */
97 var $stylename;
98
99 /**
100 * For QuickTemplate, the name of the subclass which
101 * will actually fill the template.
102 *
103 * In PHPTal mode, name of PHPTal template to be used.
104 * '.pt' will be automaticly added to it on PHPTAL object creation
105 */
106 var $template;
107
108 /**#@-*/
109
110 /**
111 * Setup the base parameters...
112 * Child classes should override this to set the name,
113 * style subdirectory, and template filler callback.
114 *
115 * @param OutputPage $out
116 */
117 function initPage( &$out ) {
118 parent::initPage( $out );
119 $this->skinname = 'monobook';
120 $this->stylename = 'monobook';
121 $this->template = 'QuickTemplate';
122 }
123
124 /**
125 * Create the template engine object; we feed it a bunch of data
126 * and eventually it spits out some HTML. Should have interface
127 * roughly equivalent to PHPTAL 0.7.
128 *
129 * @param string $callback (or file)
130 * @param string $repository subdirectory where we keep template files
131 * @param string $cache_dir
132 * @return object
133 * @access private
134 */
135 function &setupTemplate( $classname, $repository=false, $cache_dir=false ) {
136 return new $classname();
137 }
138
139 /**
140 * initialize various variables and generate the template
141 *
142 * @param OutputPage $out
143 * @access public
144 */
145 function outputPage( &$out ) {
146 global $wgTitle, $wgArticle, $wgUser, $wgLang, $wgContLang, $wgOut;
147 global $wgScript, $wgStylePath, $wgLanguageCode, $wgContLanguageCode, $wgUseNewInterlanguage;
148 global $wgMimeType, $wgOutputEncoding, $wgUseDatabaseMessages, $wgRequest;
149 global $wgDisableCounters, $wgLogo, $action, $wgFeedClasses, $wgSiteNotice;
150 global $wgMaxCredits, $wgShowCreditsIfMax;
151 global $wgPageShowWatchingUsers;
152
153 $fname = 'SkinTemplate::outputPage';
154 wfProfileIn( $fname );
155
156 extract( $wgRequest->getValues( 'oldid', 'diff' ) );
157
158 wfProfileIn( "$fname-init" );
159 $this->initPage( $out );
160 $tpl =& $this->setupTemplate( $this->template, 'skins' );
161
162 #if ( $wgUseDatabaseMessages ) { // uncomment this to fall back to GetText
163 $tpl->setTranslator(new MediaWiki_I18N());
164 #}
165 wfProfileOut( "$fname-init" );
166
167 wfProfileIn( "$fname-stuff" );
168 $this->thispage = $wgTitle->getPrefixedDbKey();
169 $this->thisurl = $wgTitle->getPrefixedURL();
170 $this->loggedin = $wgUser->getID() != 0;
171 $this->iscontent = ($wgTitle->getNamespace() != Namespace::getSpecial() );
172 $this->iseditable = ($this->iscontent and !($action == 'edit' or $action == 'submit'));
173 $this->username = $wgUser->getName();
174 $this->userpage = $wgContLang->getNsText( Namespace::getUser() ) . ":" . $wgUser->getName();
175 $this->userpageUrlDetails = $this->makeUrlDetails($this->userpage);
176
177 $this->usercss = $this->userjs = $this->userjsprev = false;
178 $this->setupUserCss();
179 $this->setupUserJs();
180 $this->titletxt = $wgTitle->getPrefixedText();
181 wfProfileOut( "$fname-stuff" );
182
183 wfProfileIn( "$fname-stuff2" );
184 $tpl->set( 'title', $wgOut->getPageTitle() );
185 $tpl->set( 'pagetitle', $wgOut->getHTMLTitle() );
186
187 $tpl->setRef( "thispage", $this->thispage );
188 $subpagestr = $this->subPageSubtitle();
189 $tpl->set(
190 'subtitle', !empty($subpagestr)?
191 '<span class="subpages">'.$subpagestr.'</span>'.$out->getSubtitle():
192 $out->getSubtitle()
193 );
194 $undelete = $this->getUndeleteLink();
195 $tpl->set(
196 "undelete", !empty($undelete)?
197 '<span class="subpages">'.$undelete.'</span>':
198 ''
199 );
200
201 $tpl->set( 'catlinks', $this->getCategories());
202 if( $wgOut->isSyndicated() ) {
203 $feeds = array();
204 foreach( $wgFeedClasses as $format => $class ) {
205 $feeds[$format] = array(
206 'text' => $format,
207 'href' => $wgRequest->appendQuery( "feed=$format" ),
208 'ttip' => wfMsg('tooltip-'.$format)
209 );
210 }
211 $tpl->setRef( 'feeds', $feeds );
212 } else {
213 $tpl->set( 'feeds', false );
214 }
215 $tpl->setRef( 'mimetype', $wgMimeType );
216 $tpl->setRef( 'charset', $wgOutputEncoding );
217 $tpl->set( 'headlinks', $out->getHeadLinks() );
218 $tpl->setRef( 'wgScript', $wgScript );
219 $tpl->setRef( 'skinname', $this->skinname );
220 $tpl->setRef( 'stylename', $this->stylename );
221 $tpl->setRef( 'loggedin', $this->loggedin );
222 $tpl->set('nsclass', 'ns-'.$wgTitle->getNamespace());
223 $tpl->set('notspecialpage', $wgTitle->getNamespace() != NS_SPECIAL);
224 /* XXX currently unused, might get useful later
225 $tpl->set( "editable", ($wgTitle->getNamespace() != NS_SPECIAL ) );
226 $tpl->set( "exists", $wgTitle->getArticleID() != 0 );
227 $tpl->set( "watch", $wgTitle->userIsWatching() ? "unwatch" : "watch" );
228 $tpl->set( "protect", count($wgTitle->isProtected()) ? "unprotect" : "protect" );
229 $tpl->set( "helppage", wfMsg('helppage'));
230 */
231 $tpl->set( 'searchaction', $this->escapeSearchLink() );
232 $tpl->set( 'search', trim( $wgRequest->getVal( 'search' ) ) );
233 $tpl->setRef( 'stylepath', $wgStylePath );
234 $tpl->setRef( 'logopath', $wgLogo );
235 $tpl->setRef( "lang", $wgContLanguageCode );
236 $tpl->set( 'dir', $wgContLang->isRTL() ? "rtl" : "ltr" );
237 $tpl->set( 'rtl', $wgContLang->isRTL() );
238 $tpl->set( 'langname', $wgContLang->getLanguageName( $wgContLanguageCode ) );
239 $tpl->setRef( 'username', $this->username );
240 $tpl->setRef( 'userpage', $this->userpage);
241 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href']);
242 $tpl->setRef( 'usercss', $this->usercss);
243 $tpl->setRef( 'userjs', $this->userjs);
244 $tpl->setRef( 'userjsprev', $this->userjsprev);
245 global $wgUseSiteJs;
246 if ($wgUseSiteJs) {
247 if($this->loggedin) {
248 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&smaxage=0&gen=js') );
249 } else {
250 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&gen=js') );
251 }
252 } else {
253 $tpl->set('jsvarurl', false);
254 }
255 if( $wgUser->getNewtalk() ) {
256 $usertitle = Title::newFromText( $this->userpage );
257 $usertalktitle = $usertitle->getTalkPage();
258 if($usertalktitle->getPrefixedDbKey() != $this->thispage){
259
260 $ntl = wfMsg( 'newmessages',
261 $this->makeKnownLink(
262 $wgContLang->getNsText( Namespace::getTalk( Namespace::getUser() ) )
263 . ':' . $this->username,
264 wfMsg('newmessageslink') )
265 );
266 # Disable Cache
267 $wgOut->setSquidMaxage(0);
268 }
269 } else {
270 $ntl = '';
271 }
272 wfProfileOut( "$fname-stuff2" );
273
274 wfProfileIn( "$fname-stuff3" );
275 $tpl->setRef( 'newtalk', $ntl );
276 $tpl->setRef( 'skin', $this);
277 $tpl->set( 'logo', $this->logoText() );
278 if ( $wgOut->isArticle() and (!isset( $oldid ) or isset( $diff )) and 0 != $wgArticle->getID() ) {
279 if ( !$wgDisableCounters ) {
280 $viewcount = $wgLang->formatNum( $wgArticle->getCount() );
281 if ( $viewcount ) {
282 $tpl->set('viewcount', wfMsg( "viewcount", $viewcount ));
283 } else {
284 $tpl->set('viewcount', false);
285 }
286 }
287
288 if ($wgPageShowWatchingUsers) {
289 $dbr =& wfGetDB( DB_SLAVE );
290 extract( $dbr->tableNames( 'watchlist' ) );
291 $sql = "SELECT COUNT(*) AS n FROM $watchlist
292 WHERE wl_title='" . $dbr->strencode($wgTitle->getDBKey()) .
293 "' AND wl_namespace=" . $wgTitle->getNamespace() ;
294 $res = $dbr->query( $sql, 'SkinPHPTal::outputPage');
295 $x = $dbr->fetchObject( $res );
296 $numberofwatchingusers = $x->n;
297 if ($numberofwatchingusers > 0) {
298 $tpl->set('numberofwatchingusers', wfMsg('number_of_watching_users_pageview', $numberofwatchingusers));
299 } else {
300 $tpl->set('numberofwatchingusers', false);
301 }
302 } else {
303 $tpl->set('numberofwatchingusers', false);
304 }
305
306 $tpl->set('lastmod', $this->lastModified());
307 $tpl->set('copyright',$this->getCopyright());
308
309 $this->credits = false;
310
311 if (isset($wgMaxCredits) && $wgMaxCredits != 0) {
312 require_once("Credits.php");
313 $this->credits = getCredits($wgArticle, $wgMaxCredits, $wgShowCreditsIfMax);
314 }
315
316 $tpl->setRef( 'credits', $this->credits );
317
318 } elseif ( isset( $oldid ) && !isset( $diff ) ) {
319 $tpl->set('copyright', $this->getCopyright());
320 $tpl->set('viewcount', false);
321 $tpl->set('lastmod', false);
322 $tpl->set('credits', false);
323 $tpl->set('numberofwatchingusers', false);
324 } else {
325 $tpl->set('copyright', false);
326 $tpl->set('viewcount', false);
327 $tpl->set('lastmod', false);
328 $tpl->set('credits', false);
329 $tpl->set('numberofwatchingusers', false);
330 }
331 wfProfileOut( "$fname-stuff3" );
332
333 wfProfileIn( "$fname-stuff4" );
334 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
335 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
336 $tpl->set( 'disclaimer', $this->disclaimerLink() );
337 $tpl->set( 'about', $this->aboutLink() );
338
339 $tpl->setRef( 'debug', $out->mDebugtext );
340 $tpl->set( 'reporttime', $out->reportTime() );
341 $tpl->set( 'sitenotice', $wgSiteNotice );
342 $tpl->set( 'tagline', wfMsg('tagline') );
343
344 $printfooter = "<div class=\"printfooter\">\n" . $this->printSource() . "</div>\n";
345 $out->mBodytext .= $printfooter ;
346 $tpl->setRef( 'bodytext', $out->mBodytext );
347
348 # Language links
349 $language_urls = array();
350 foreach( $wgOut->getLanguageLinks() as $l ) {
351 $nt = Title::newFromText( $l );
352 $language_urls[] = array('href' => $nt->getFullURL(),
353 'text' => ($wgContLang->getLanguageName( $nt->getInterwiki()) != ''?$wgContLang->getLanguageName( $nt->getInterwiki()) : $l),
354 'class' => $wgContLang->isRTL() ? 'rtl' : 'ltr');
355 }
356 if(count($language_urls)) {
357 $tpl->setRef( 'language_urls', $language_urls);
358 } else {
359 $tpl->set('language_urls', false);
360 }
361 wfProfileOut( "$fname-stuff4" );
362
363 # Personal toolbar
364 $tpl->set('personal_urls', $this->buildPersonalUrls());
365 $content_actions = $this->buildContentActionUrls();
366 $tpl->setRef('content_actions', $content_actions);
367
368 // XXX: attach this from javascript, same with section editing
369 if($this->iseditable && $wgUser->getOption("editondblclick") )
370 {
371 $tpl->set('body_ondblclick', 'document.location = "' .$content_actions['edit']['href'] .'";');
372 } else {
373 $tpl->set('body_ondblclick', false);
374 }
375 $tpl->set( 'navigation_urls', $this->buildNavigationUrls() );
376 $tpl->set( 'nav_urls', $this->buildNavUrls() );
377
378 // execute template
379 wfProfileIn( "$fname-execute" );
380 $res = $tpl->execute();
381 wfProfileOut( "$fname-execute" );
382
383 // result may be an error
384 $this->printOrError( $res );
385 wfProfileOut( $fname );
386 }
387
388 /**
389 * Output the string, or print error message if it's
390 * an error object of the appropriate type.
391 * For the base class, assume strings all around.
392 *
393 * @param mixed $str
394 * @access private
395 */
396 function printOrError( &$str ) {
397 echo $str;
398 }
399
400 /**
401 * build array of urls for personal toolbar
402 * @return array
403 * @access private
404 */
405 function buildPersonalUrls() {
406 $fname = 'SkinTemplate::buildPersonalUrls';
407 wfProfileIn( $fname );
408
409 /* set up the default links for the personal toolbar */
410 global $wgShowIPinHeader;
411 $personal_urls = array();
412 if ($this->loggedin) {
413 /* Logged in users personal toolbar */
414 $personal_urls['userpage'] = array(
415 'text' => wfMsg('mypage'),
416 'href' => $this->makeSpecialUrl('Mypage')
417 );
418 $personal_urls['mytalk'] = array(
419 'text' => wfMsg('mytalk'),
420 'href' => $this->makeSpecialUrl('Mytalk')
421 );
422 $personal_urls['preferences'] = array(
423 'text' => wfMsg('preferences'),
424 'href' => $this->makeSpecialUrl('Preferences')
425 );
426 $personal_urls['watchlist'] = array(
427 'text' => wfMsg('watchlist'),
428 'href' => $this->makeSpecialUrl('Watchlist')
429 );
430 $personal_urls['mycontris'] = array(
431 'text' => wfMsg('mycontris'),
432 'href' => $this->makeSpecialUrl('Mycontributions')
433 );
434 $personal_urls['logout'] = array(
435 'text' => wfMsg('userlogout'),
436 'href' => $this->makeSpecialUrl('Userlogout','returnto=' . $this->thisurl )
437 );
438 } else {
439 if( $wgShowIPinHeader && isset( $_COOKIE[ini_get("session.name")] ) ) {
440 /* Anonymous with session users personal toolbar */
441 $personal_urls['anonuserpage'] = array(
442 'text' => wfMsg('mypage'),
443 'href' => $this->makeSpecialUrl('Mypage')
444 );
445 $personal_urls['mytalk'] = array(
446 'text' => wfMsg('mytalk'),
447 'href' => $this->makeSpecialUrl('Mytalk')
448 );
449
450 $personal_urls['anonlogin'] = array(
451 'text' => wfMsg('userlogin'),
452 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl )
453 );
454 } else {
455 /* Anonymous users personal toolbar */
456 $personal_urls['login'] = array(
457 'text' => wfMsg('userlogin'),
458 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl )
459 );
460 }
461 }
462 wfProfileOut( $fname );
463 return $personal_urls;
464 }
465
466 /**
467 * an array of edit links by default used for the tabs
468 * @return array
469 * @access private
470 */
471 function buildContentActionUrls () {
472 global $wgContLang;
473 $fname = 'SkinTemplate::buildContentActionUrls';
474 wfProfileIn( $fname );
475
476 global $wgTitle, $wgUser, $wgRequest, $wgUseValidation;
477 $action = $wgRequest->getText( 'action' );
478 $section = $wgRequest->getText( 'section' );
479 $oldid = $wgRequest->getVal( 'oldid' );
480 $diff = $wgRequest->getVal( 'diff' );
481 $content_actions = array();
482
483 if( $this->iscontent ) {
484
485 $nskey = $this->getNameSpaceKey();
486 $is_active = !Namespace::isTalk( $wgTitle->getNamespace()) ;
487 if ( $action == 'validate' ) $is_active = false ; # Show article tab deselected when validating
488 $content_actions[$nskey] = array('class' => ($is_active) ? 'selected' : false,
489 'text' => wfMsg($nskey),
490 'href' => $this->makeArticleUrl($this->thispage));
491
492 /* set up the classes for the talk link */
493 wfProfileIn( "$fname-talk" );
494 $talk_class = (Namespace::isTalk( $wgTitle->getNamespace()) ? 'selected' : false);
495 $talktitle = $wgTitle->getTalkPage();
496 if( $talktitle->getArticleId() != 0 ) {
497 $content_actions['talk'] = array(
498 'class' => $talk_class,
499 'text' => wfMsg('talk'),
500 'href' => $talktitle->getLocalUrl()
501 );
502 } else {
503 $content_actions['talk'] = array(
504 'class' => $talk_class ? $talk_class.' new' : 'new',
505 'text' => wfMsg('talk'),
506 'href' => $talktitle->getLocalUrl( 'action=edit' )
507 );
508 }
509 wfProfileOut( "$fname-talk" );
510
511 wfProfileIn( "$fname-edit" );
512 if ( $wgTitle->userCanEdit() ) {
513 $oid = ( $oldid && ! isset( $diff ) ) ? '&oldid='.IntVal( $oldid ) : false;
514 $istalk = ( Namespace::isTalk( $wgTitle->getNamespace()) );
515 $istalkclass = $istalk?' istalk':'';
516 $content_actions['edit'] = array(
517 'class' => ((($action == 'edit' or $action == 'submit') and $section != 'new') ? 'selected' : '').$istalkclass,
518 'text' => wfMsg('edit'),
519 'href' => $wgTitle->getLocalUrl( 'action=edit'.$oid )
520 );
521 if ( $istalk ) {
522 $content_actions['addsection'] = array(
523 'class' => $section == 'new'?'selected':false,
524 'text' => wfMsg('addsection'),
525 'href' => $wgTitle->getLocalUrl( 'action=edit&section=new' )
526 );
527 }
528 } else {
529 $oid = ( $oldid && ! isset( $diff ) ) ? '&oldid='.IntVal( $oldid ) : '';
530 $content_actions['viewsource'] = array(
531 'class' => ($action == 'edit') ? 'selected' : false,
532 'text' => wfMsg('viewsource'),
533 'href' => $wgTitle->getLocalUrl( 'action=edit'.$oid )
534 );
535 }
536 wfProfileOut( "$fname-edit" );
537
538 wfProfileIn( "$fname-live" );
539 if ( $wgTitle->getArticleId() ) {
540
541 $content_actions['history'] = array(
542 'class' => ($action == 'history') ? 'selected' : false,
543 'text' => wfMsg('history_short'),
544 'href' => $wgTitle->getLocalUrl( 'action=history')
545 );
546
547 # XXX: is there a rollback action anywhere or is it planned?
548 # Don't recall where i got this from...
549 /*if( $wgUser->getNewtalk() ) {
550 $content_actions['rollback'] = array('class' => ($action == 'rollback') ? 'selected' : false,
551 'text' => wfMsg('rollback_short'),
552 'href' => $this->makeUrl($this->thispage, 'action=rollback'),
553 'ttip' => wfMsg('tooltip-rollback'),
554 'akey' => wfMsg('accesskey-rollback'));
555 }
556 */
557
558 if($wgUser->isAllowed('protect')){
559 if(!$wgTitle->isProtected()){
560 $content_actions['protect'] = array(
561 'class' => ($action == 'protect') ? 'selected' : false,
562 'text' => wfMsg('protect'),
563 'href' => $wgTitle->getLocalUrl( 'action=protect' )
564 );
565
566 } else {
567 $content_actions['unprotect'] = array(
568 'class' => ($action == 'unprotect') ? 'selected' : false,
569 'text' => wfMsg('unprotect'),
570 'href' => $wgTitle->getLocalUrl( 'action=unprotect' )
571 );
572 }
573 }
574 if($wgUser->isAllowed('delete')){
575 $content_actions['delete'] = array(
576 'class' => ($action == 'delete') ? 'selected' : false,
577 'text' => wfMsg('delete'),
578 'href' => $wgTitle->getLocalUrl( 'action=delete' )
579 );
580 }
581 if ( $wgUser->getID() != 0 ) {
582 if ( $wgTitle->userCanMove()) {
583 $content_actions['move'] = array(
584 'class' => ($wgTitle->getDbKey() == 'Movepage' and $wgTitle->getNamespace == Namespace::getSpecial()) ? 'selected' : false,
585 'text' => wfMsg('move'),
586 'href' => $this->makeSpecialUrl('Movepage', 'target='. urlencode( $this->thispage ) )
587 );
588 }
589 }
590 } else {
591 //article doesn't exist or is deleted
592 if($wgUser->isAllowed('delete')){
593 if( $n = $wgTitle->isDeleted() ) {
594 $content_actions['undelete'] = array(
595 'class' => false,
596 'text' => wfMsg( "undelete_short", $n ),
597 'href' => $this->makeSpecialUrl('Undelete/'.$this->thispage)
598 );
599 }
600 }
601 }
602 wfProfileOut( "$fname-live" );
603
604 if ( $wgUser->getID() != 0 and $action != 'submit' ) {
605 if( !$wgTitle->userIsWatching()) {
606 $content_actions['watch'] = array(
607 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,
608 'text' => wfMsg('watch'),
609 'href' => $wgTitle->getLocalUrl( 'action=watch' )
610 );
611 } else {
612 $content_actions['unwatch'] = array(
613 'class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false,
614 'text' => wfMsg('unwatch'),
615 'href' => $wgTitle->getLocalUrl( 'action=unwatch' )
616 );
617 }
618 }
619
620 # Show validate tab
621 if ( $wgUseValidation && $wgTitle->getArticleId() && $wgTitle->getNamespace() == 0 ) {
622 global $wgArticle ;
623 $article_time = "&timestamp=" . $wgArticle->mTimestamp ;
624 $content_actions['validate'] = array(
625 'class' => ($action == 'validate') ? 'selected' : false ,
626 'text' => wfMsg('val_tab'),
627 'href' => $wgTitle->getLocalUrl( 'action=validate'.$article_time)
628 );
629 }
630
631 } else {
632 /* show special page tab */
633
634 $content_actions['article'] = array(
635 'class' => 'selected',
636 'text' => wfMsg('specialpage'),
637 'href' => false
638 );
639 }
640
641 /* show links to different language variants */
642 global $wgDisableLangConversion;
643 $variants = $wgContLang->getVariants();
644 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
645 $preferred = $wgContLang->getPreferredVariant();
646 $actstr = '';
647 if( $action )
648 $actstr = 'action=' . $action . '&';
649 $vcount=0;
650 foreach( $variants as $code ) {
651 $varname = $wgContLang->getVariantname( $code );
652 if( $varname == 'disable' )
653 continue;
654 $selected = ( $code == $preferred )? 'selected' : false;
655 $content_actions['varlang-' . $vcount] = array(
656 'class' => $selected,
657 'text' => $varname,
658 'href' => $wgTitle->getLocalUrl( $actstr . 'variant=' . $code )
659 );
660 $vcount ++;
661 }
662 }
663
664 wfProfileOut( $fname );
665 return $content_actions;
666 }
667
668 /**
669 * build array of global navigation links
670 * @return array
671 * @access private
672 */
673 function buildNavigationUrls () {
674 $fname = 'SkinTemplate::buildNavigationUrls';
675 wfProfileIn( $fname );
676
677 global $wgNavigationLinks;
678 $result = array();
679 foreach ( $wgNavigationLinks as $link ) {
680 $text = wfMsg( $link['text'] );
681 wfProfileIn( "$fname-{$link['text']}" );
682 if ($text != '-') {
683 $dest = wfMsgForContent( $link['href'] );
684 wfProfileIn( "$fname-{$link['text']}2" );
685 $result[] = array(
686 'text' => $text,
687 'href' => $this->makeInternalOrExternalUrl( $dest ),
688 'id' => 'n-'.$link['text']
689 );
690 wfProfileOut( "$fname-{$link['text']}2" );
691 }
692 wfProfileOut( "$fname-{$link['text']}" );
693 }
694 wfProfileOut( $fname );
695 return $result;
696 }
697
698 /**
699 * build array of common navigation links
700 * @return array
701 * @access private
702 */
703 function buildNavUrls () {
704 $fname = 'SkinTemplate::buildNavUrls';
705 wfProfileIn( $fname );
706
707 global $wgTitle, $wgUser, $wgRequest;
708 global $wgSiteSupportPage, $wgDisableUploads;
709
710 $action = $wgRequest->getText( 'action' );
711 $oldid = $wgRequest->getVal( 'oldid' );
712 $diff = $wgRequest->getVal( 'diff' );
713
714 $nav_urls = array();
715 $nav_urls['mainpage'] = array('href' => $this->makeI18nUrl('mainpage'));
716 $nav_urls['randompage'] = array('href' => $this->makeSpecialUrl('Randompage'));
717 $nav_urls['recentchanges'] = array('href' => $this->makeSpecialUrl('Recentchanges'));
718 $nav_urls['currentevents'] = (wfMsgForContent('currentevents') != '-') ? array('href' => $this->makeI18nUrl('currentevents')) : false;
719 $nav_urls['portal'] = (wfMsgForContent('portal') != '-') ? array('href' => $this->makeI18nUrl('portal-url')) : false;
720 $nav_urls['bugreports'] = array('href' => $this->makeI18nUrl('bugreportspage'));
721 // $nav_urls['sitesupport'] = array('href' => $this->makeI18nUrl('sitesupportpage'));
722 $nav_urls['sitesupport'] = array('href' => $wgSiteSupportPage);
723 $nav_urls['help'] = array('href' => $this->makeI18nUrl('helppage'));
724 if( $this->loggedin && !$wgDisableUploads ) {
725 $nav_urls['upload'] = array('href' => $this->makeSpecialUrl('Upload'));
726 } else {
727 $nav_urls['upload'] = false;
728 }
729 $nav_urls['specialpages'] = array('href' => $this->makeSpecialUrl('Specialpages'));
730
731 if( $wgTitle->getNamespace() != NS_SPECIAL) {
732 $nav_urls['whatlinkshere'] = array('href' => $this->makeSpecialUrl('Whatlinkshere', 'target='.urlencode( $this->thispage)));
733 $nav_urls['recentchangeslinked'] = array('href' => $this->makeSpecialUrl('Recentchangeslinked', 'target='.urlencode( $this->thispage)));
734 }
735
736 if( $wgTitle->getNamespace() == NS_USER || $wgTitle->getNamespace() == NS_USER_TALK ) {
737 $id = User::idFromName($wgTitle->getText());
738 $ip = User::isIP($wgTitle->getText());
739 } else {
740 $id = 0;
741 $ip = false;
742 }
743
744 if($id || $ip) { # both anons and non-anons have contri list
745 $nav_urls['contributions'] = array(
746 'href' => $this->makeSpecialUrl('Contributions', "target=" . $wgTitle->getPartialURL() )
747 );
748 } else {
749 $nav_urls['contributions'] = false;
750 }
751 $nav_urls['emailuser'] = false;
752 if( $this->showEmailUser( $id ) ) {
753 $nav_urls['emailuser'] = array(
754 'href' => $this->makeSpecialUrl('Emailuser', "target=" . $wgTitle->getPartialURL() )
755 );
756 }
757 wfProfileOut( $fname );
758 return $nav_urls;
759 }
760
761 /**
762 * Generate strings used for xml 'id' names
763 * @return string
764 * @private
765 */
766 function getNameSpaceKey () {
767 global $wgTitle;
768 switch ($wgTitle->getNamespace()) {
769 case NS_MAIN:
770 case NS_TALK:
771 return 'nstab-main';
772 case NS_USER:
773 case NS_USER_TALK:
774 return 'nstab-user';
775 case NS_MEDIA:
776 return 'nstab-media';
777 case NS_SPECIAL:
778 return 'nstab-special';
779 case NS_PROJECT:
780 case NS_PROJECT_TALK:
781 return 'nstab-wp';
782 case NS_IMAGE:
783 case NS_IMAGE_TALK:
784 return 'nstab-image';
785 case NS_MEDIAWIKI:
786 case NS_MEDIAWIKI_TALK:
787 return 'nstab-mediawiki';
788 case NS_TEMPLATE:
789 case NS_TEMPLATE_TALK:
790 return 'nstab-template';
791 case NS_HELP:
792 case NS_HELP_TALK:
793 return 'nstab-help';
794 case NS_CATEGORY:
795 case NS_CATEGORY_TALK:
796 return 'nstab-category';
797 default:
798 return 'nstab-main';
799 }
800 }
801
802 /**
803 * @access private
804 */
805 function setupUserCss() {
806 $fname = 'SkinTemplate::setupUserCss';
807 wfProfileIn( $fname );
808
809 global $wgRequest, $wgTitle, $wgAllowUserCss, $wgUseSiteCss, $wgContLang, $wgSquidMaxage, $wgStylePath, $wgUser;
810
811 $sitecss = '';
812 $usercss = '';
813 $siteargs = '&maxage=' . $wgSquidMaxage;
814
815 # Add user-specific code if this is a user and we allow that kind of thing
816
817 if ( $wgAllowUserCss && $this->loggedin ) {
818 $action = $wgRequest->getText('action');
819
820 # if we're previewing the CSS page, use it
821 if($wgTitle->isCssSubpage() and $action == 'submit' and $wgTitle->userCanEditCssJsSubpage()) {
822 $siteargs = "&smaxage=0&maxage=0";
823 $usercss = $wgRequest->getText('wpTextbox1');
824 } else {
825 $usercss = '@import "' .
826 $this->makeUrl($this->userpage . '/'.$this->skinname.'.css',
827 'action=raw&ctype=text/css') . '";' ."\n";
828 }
829
830 $siteargs .= '&ts=' . $wgUser->mTouched;
831 }
832
833 if ($wgContLang->isRTL()) $sitecss .= '@import "' . $wgStylePath . '/' . $this->stylename . '/rtl.css";' . "\n";
834
835 # If we use the site's dynamic CSS, throw that in, too
836 if ( $wgUseSiteCss ) {
837 $sitecss .= '@import "' . $this->makeNSUrl(ucfirst($this->skinname) . '.css', 'action=raw&ctype=text/css&smaxage=' . $wgSquidMaxage, NS_MEDIAWIKI) . '";' . "\n";
838 $sitecss .= '@import "' . $this->makeUrl('-','action=raw&gen=css' . $siteargs) . '";' . "\n";
839 }
840
841 # If we use any dynamic CSS, make a little CDATA block out of it.
842
843 if ( !empty($sitecss) || !empty($usercss) ) {
844 $this->usercss = "/*<![CDATA[*/\n" . $sitecss . $usercss . '/*]]>*/';
845 }
846 wfProfileOut( $fname );
847 }
848
849 /**
850 * @access private
851 */
852 function setupUserJs() {
853 $fname = 'SkinTemplate::setupUserJs';
854 wfProfileIn( $fname );
855
856 global $wgRequest, $wgTitle, $wgAllowUserJs;
857 $action = $wgRequest->getText('action');
858
859 if( $wgAllowUserJs && $this->loggedin ) {
860 if($wgTitle->isJsSubpage() and $action == 'submit' and $wgTitle->userCanEditCssJsSubpage()) {
861 # XXX: additional security check/prompt?
862 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText('wpTextbox1') . ' /*]]>*/';
863 } else {
864 $this->userjs = $this->makeUrl($this->userpage.'/'.$this->skinname.'.js', 'action=raw&ctype=text/javascript&dontcountme=s');
865 }
866 }
867 wfProfileOut( $fname );
868 }
869
870 /**
871 * returns css with user-specific options
872 * @access public
873 */
874 function getUserStylesheet() {
875 $fname = 'SkinTemplate::getUserStylesheet';
876 wfProfileIn( $fname );
877
878 global $wgUser;
879 $s = "/* generated user stylesheet */\n";
880
881 if($wgUser->getID() != 0) {
882 if ( 1 == $wgUser->getOption( "underline" ) ) {
883 $s .= "a { text-decoration: underline; }\n";
884 } else {
885 $s .= "a { text-decoration: none; }\n";
886 }
887 }
888 if ( 1 != $wgUser->getOption( "highlightbroken" ) ) {
889 $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";
890 }
891 if ( 1 == $wgUser->getOption( "justify" ) ) {
892 $s .= "#bodyContent { text-align: justify; }\n";
893 }
894 wfProfileOut( $fname );
895 return $s;
896 }
897
898 /**
899 * @access public
900 */
901 function getUserJs() {
902 $fname = 'SkinTemplate::getUserJs';
903 wfProfileIn( $fname );
904
905 global $wgUser, $wgStylePath;
906 $s = '/* generated javascript */';
907 $s .= "var skin = '{$this->skinname}';\nvar stylepath = '{$wgStylePath}';";
908 $s .= '/* MediaWiki:'.ucfirst($this->skinname)." */\n";
909 $s .= wfMsg(ucfirst($this->skinname).'.js');
910
911 wfProfileOut( $fname );
912 return $s;
913 }
914 }
915
916 /**
917 * Generic wrapper for template functions, with interface
918 * compatible with what we use of PHPTAL 0.7.
919 */
920 class QuickTemplate {
921 /**
922 * @access public
923 */
924 function QuickTemplate() {
925 $this->data = array();
926 $this->translator = new MediaWiki_I18N();
927 }
928
929 /**
930 * @access public
931 */
932 function set( $name, $value ) {
933 $this->data[$name] = $value;
934 }
935
936 /**
937 * @access public
938 */
939 function setRef($name, &$value) {
940 $this->data[$name] =& $value;
941 }
942
943 /**
944 * @access public
945 */
946 function setTranslator( &$t ) {
947 $this->translator = &$t;
948 }
949
950 /**
951 * @access public
952 */
953 function execute() {
954 echo "Override this function.";
955 }
956
957
958 /**
959 * @access private
960 */
961 function text( $str ) {
962 echo htmlspecialchars( $this->data[$str] );
963 }
964
965 /**
966 * @access private
967 */
968 function html( $str ) {
969 echo $this->data[$str];
970 }
971
972 /**
973 * @access private
974 */
975 function msg( $str ) {
976 echo htmlspecialchars( $this->translator->translate( $str ) );
977 }
978
979 /**
980 * @access private
981 */
982 function msgHtml( $str ) {
983 echo $this->translator->translate( $str );
984 }
985
986 /**
987 * An ugly, ugly hack.
988 * @access private
989 */
990 function msgWiki( $str ) {
991 global $wgParser, $wgTitle, $wgOut, $wgUseTidy;
992
993 $text = $this->translator->translate( $str );
994 $parserOutput = $wgParser->parse( $text, $wgTitle,
995 $wgOut->mParserOptions, true );
996 echo $parserOutput->getText();
997 }
998
999 /**
1000 * @access private
1001 */
1002 function haveData( $str ) {
1003 return $this->data[$str];
1004 }
1005
1006 /**
1007 * @access private
1008 */
1009 function haveMsg( $str ) {
1010 $msg = $this->translator->translate( $str );
1011 return ($msg != '-') && ($msg != ''); # ????
1012 }
1013 }
1014
1015 } // end of if( defined( 'MEDIAWIKI' ) )
1016 ?>