(bug 454) Merge e-notif 2.00
[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->setRef( 'stylepath', $wgStylePath );
233 $tpl->setRef( 'logopath', $wgLogo );
234 $tpl->setRef( "lang", $wgContLanguageCode );
235 $tpl->set( 'dir', $wgContLang->isRTL() ? "rtl" : "ltr" );
236 $tpl->set( 'rtl', $wgContLang->isRTL() );
237 $tpl->set( 'langname', $wgContLang->getLanguageName( $wgContLanguageCode ) );
238 $tpl->setRef( 'username', $this->username );
239 $tpl->setRef( 'userpage', $this->userpage);
240 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href']);
241 $tpl->setRef( 'usercss', $this->usercss);
242 $tpl->setRef( 'userjs', $this->userjs);
243 $tpl->setRef( 'userjsprev', $this->userjsprev);
244 global $wgUseSiteJs;
245 if ($wgUseSiteJs) {
246 if($this->loggedin) {
247 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&smaxage=0&gen=js') );
248 } else {
249 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&gen=js') );
250 }
251 } else {
252 $tpl->set('jsvarurl', false);
253 }
254 if( $wgUser->getNewtalk() ) {
255 $usertitle = Title::newFromText( $this->userpage );
256 $usertalktitle = $usertitle->getTalkPage();
257 if($usertalktitle->getPrefixedDbKey() != $this->thispage){
258
259 $ntl = wfMsg( 'newmessages',
260 $this->makeKnownLink(
261 $wgContLang->getNsText( Namespace::getTalk( Namespace::getUser() ) )
262 . ':' . $this->username,
263 wfMsg('newmessageslink') )
264 );
265 # Disable Cache
266 $wgOut->setSquidMaxage(0);
267 }
268 } else {
269 $ntl = '';
270 }
271 wfProfileOut( "$fname-stuff2" );
272
273 wfProfileIn( "$fname-stuff3" );
274 $tpl->setRef( 'newtalk', $ntl );
275 $tpl->setRef( 'skin', $this);
276 $tpl->set( 'logo', $this->logoText() );
277 if ( $wgOut->isArticle() and (!isset( $oldid ) or isset( $diff )) and 0 != $wgArticle->getID() ) {
278 if ( !$wgDisableCounters ) {
279 $viewcount = $wgLang->formatNum( $wgArticle->getCount() );
280 if ( $viewcount ) {
281 $tpl->set('viewcount', wfMsg( "viewcount", $viewcount ));
282 } else {
283 $tpl->set('viewcount', false);
284 }
285 }
286
287 if ($wgPageShowWatchingUsers) {
288 $dbr =& wfGetDB( DB_SLAVE );
289 extract( $dbr->tableNames( 'watchlist' ) );
290 $sql = "SELECT COUNT(*) AS n FROM $watchlist
291 WHERE wl_title='" . $dbr->strencode($wgTitle->getDBKey()) .
292 "' AND wl_namespace=" . $wgTitle->getNamespace() ;
293 $res = $dbr->query( $sql, 'SkinPHPTal::outputPage');
294 $x = $dbr->fetchObject( $res );
295 $numberofwatchingusers = $x->n;
296 if ($numberofwatchingusers > 0) {
297 $tpl->set('numberofwatchingusers', wfMsg('number_of_watching_users_pageview', $numberofwatchingusers));
298 } else {
299 $tpl->set('numberofwatchingusers', false);
300 };
301 } else {
302 $tpl->set('numberofwatchingusers', false);
303 }
304
305 $tpl->set('lastmod', $this->lastModified());
306 $tpl->set('copyright',$this->getCopyright());
307
308 $this->credits = false;
309
310 if (isset($wgMaxCredits) && $wgMaxCredits != 0) {
311 require_once("Credits.php");
312 $this->credits = getCredits($wgArticle, $wgMaxCredits, $wgShowCreditsIfMax);
313 }
314
315 $tpl->setRef( 'credits', $this->credits );
316
317 } elseif ( isset( $oldid ) && !isset( $diff ) ) {
318 $tpl->set('copyright', $this->getCopyright());
319 $tpl->set('viewcount', false);
320 $tpl->set('lastmod', false);
321 $tpl->set('credits', false);
322 } else {
323 $tpl->set('copyright', false);
324 $tpl->set('viewcount', false);
325 $tpl->set('lastmod', false);
326 $tpl->set('credits', false);
327 }
328 wfProfileOut( "$fname-stuff3" );
329
330 wfProfileIn( "$fname-stuff4" );
331 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
332 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
333 $tpl->set( 'disclaimer', $this->disclaimerLink() );
334 $tpl->set( 'about', $this->aboutLink() );
335
336 $tpl->setRef( 'debug', $out->mDebugtext );
337 $tpl->set( 'reporttime', $out->reportTime() );
338 $tpl->set( 'sitenotice', $wgSiteNotice );
339 $tpl->set( 'tagline', wfMsg('tagline') );
340
341 $printfooter = "<div class=\"printfooter\">\n" . $this->printSource() . "</div>\n";
342 $out->mBodytext .= $printfooter ;
343 $tpl->setRef( 'bodytext', $out->mBodytext );
344
345 # Language links
346 $language_urls = array();
347 foreach( $wgOut->getLanguageLinks() as $l ) {
348 $nt = Title::newFromText( $l );
349 $language_urls[] = array('href' => $nt->getFullURL(),
350 'text' => ($wgContLang->getLanguageName( $nt->getInterwiki()) != ''?$wgContLang->getLanguageName( $nt->getInterwiki()) : $l),
351 'class' => $wgContLang->isRTL() ? 'rtl' : 'ltr');
352 }
353 if(count($language_urls)) {
354 $tpl->setRef( 'language_urls', $language_urls);
355 } else {
356 $tpl->set('language_urls', false);
357 }
358 wfProfileOut( "$fname-stuff4" );
359
360 # Personal toolbar
361 $tpl->set('personal_urls', $this->buildPersonalUrls());
362 $content_actions = $this->buildContentActionUrls();
363 $tpl->setRef('content_actions', $content_actions);
364
365 // XXX: attach this from javascript, same with section editing
366 if($this->iseditable && $wgUser->getOption("editondblclick") )
367 {
368 $tpl->set('body_ondblclick', 'document.location = "' .$content_actions['edit']['href'] .'";');
369 } else {
370 $tpl->set('body_ondblclick', false);
371 }
372 $tpl->set( 'navigation_urls', $this->buildNavigationUrls() );
373 $tpl->set( 'nav_urls', $this->buildNavUrls() );
374
375 // execute template
376 wfProfileIn( "$fname-execute" );
377 $res = $tpl->execute();
378 wfProfileOut( "$fname-execute" );
379
380 // result may be an error
381 $this->printOrError( $res );
382 wfProfileOut( $fname );
383 }
384
385 /**
386 * Output the string, or print error message if it's
387 * an error object of the appropriate type.
388 * For the base class, assume strings all around.
389 *
390 * @param mixed $str
391 * @access private
392 */
393 function printOrError( &$str ) {
394 echo $str;
395 }
396
397 /**
398 * build array of urls for personal toolbar
399 * @return array
400 * @access private
401 */
402 function buildPersonalUrls() {
403 $fname = 'SkinTemplate::buildPersonalUrls';
404 wfProfileIn( $fname );
405
406 /* set up the default links for the personal toolbar */
407 global $wgShowIPinHeader;
408 $personal_urls = array();
409 if ($this->loggedin) {
410 $personal_urls['userpage'] = array(
411 'text' => $this->username,
412 'href' => &$this->userpageUrlDetails['href'],
413 'class' => $this->userpageUrlDetails['exists']?false:'new'
414 );
415 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
416 $personal_urls['mytalk'] = array(
417 'text' => wfMsg('mytalk'),
418 'href' => &$usertalkUrlDetails['href'],
419 'class' => $usertalkUrlDetails['exists']?false:'new'
420 );
421 $personal_urls['preferences'] = array(
422 'text' => wfMsg('preferences'),
423 'href' => $this->makeSpecialUrl('Preferences')
424 );
425 $personal_urls['watchlist'] = array(
426 'text' => wfMsg('watchlist'),
427 'href' => $this->makeSpecialUrl('Watchlist')
428 );
429 $personal_urls['mycontris'] = array(
430 'text' => wfMsg('mycontris'),
431 'href' => $this->makeSpecialUrl('Contributions','target=' . urlencode( $this->username ) )
432 );
433 $personal_urls['logout'] = array(
434 'text' => wfMsg('userlogout'),
435 'href' => $this->makeSpecialUrl('Userlogout','returnto=' . $this->thisurl )
436 );
437 } else {
438 if( $wgShowIPinHeader && isset( $_COOKIE[ini_get("session.name")] ) ) {
439 $personal_urls['anonuserpage'] = array(
440 'text' => $this->username,
441 'href' => &$this->userpageUrlDetails['href'],
442 'class' => $this->userpageUrlDetails['exists']?false:'new'
443 );
444 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
445 $personal_urls['anontalk'] = array(
446 'text' => wfMsg('anontalk'),
447 'href' => &$usertalkUrlDetails['href'],
448 'class' => $usertalkUrlDetails['exists']?false:'new'
449 );
450 $personal_urls['anonlogin'] = array(
451 'text' => wfMsg('userlogin'),
452 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl )
453 );
454 } else {
455
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 $fname = 'SkinTemplate::buildContentActionUrls';
473 wfProfileIn( $fname );
474
475 global $wgTitle, $wgUser, $wgRequest, $wgUseValidation;
476 $action = $wgRequest->getText( 'action' );
477 $section = $wgRequest->getText( 'section' );
478 $oldid = $wgRequest->getVal( 'oldid' );
479 $diff = $wgRequest->getVal( 'diff' );
480 $content_actions = array();
481
482 if( $this->iscontent ) {
483
484 $nskey = $this->getNameSpaceKey();
485 $is_active = !Namespace::isTalk( $wgTitle->getNamespace()) ;
486 if ( $action == 'validate' ) $is_active = false ; # Show article tab deselected when validating
487 $content_actions[$nskey] = array('class' => ($is_active) ? 'selected' : false,
488 'text' => wfMsg($nskey),
489 'href' => $this->makeArticleUrl($this->thispage));
490
491 /* set up the classes for the talk link */
492 wfProfileIn( "$fname-talk" );
493 $talk_class = (Namespace::isTalk( $wgTitle->getNamespace()) ? 'selected' : false);
494 $talktitle = $wgTitle->getTalkPage();
495 if( $talktitle->getArticleId() != 0 ) {
496 $content_actions['talk'] = array(
497 'class' => $talk_class,
498 'text' => wfMsg('talk'),
499 'href' => $talktitle->getLocalUrl()
500 );
501 } else {
502 $content_actions['talk'] = array(
503 'class' => $talk_class ? $talk_class.' new' : 'new',
504 'text' => wfMsg('talk'),
505 'href' => $talktitle->getLocalUrl( 'action=edit' )
506 );
507 }
508 wfProfileOut( "$fname-talk" );
509
510 wfProfileIn( "$fname-edit" );
511 if ( $wgTitle->userCanEdit() ) {
512 $oid = ( $oldid && ! isset( $diff ) ) ? '&oldid='.IntVal( $oldid ) : false;
513 $istalk = ( Namespace::isTalk( $wgTitle->getNamespace()) );
514 $istalkclass = $istalk?' istalk':'';
515 $content_actions['edit'] = array(
516 'class' => ((($action == 'edit' or $action == 'submit') and $section != 'new') ? 'selected' : '').$istalkclass,
517 'text' => wfMsg('edit'),
518 'href' => $wgTitle->getLocalUrl( 'action=edit'.$oid )
519 );
520 if ( $istalk ) {
521 $content_actions['addsection'] = array(
522 'class' => $section == 'new'?'selected':false,
523 'text' => wfMsg('addsection'),
524 'href' => $wgTitle->getLocalUrl( 'action=edit&section=new' )
525 );
526 }
527 } else {
528 $oid = ( $oldid && ! isset( $diff ) ) ? '&oldid='.IntVal( $oldid ) : '';
529 $content_actions['viewsource'] = array(
530 'class' => ($action == 'edit') ? 'selected' : false,
531 'text' => wfMsg('viewsource'),
532 'href' => $wgTitle->getLocalUrl( 'action=edit'.$oid )
533 );
534 }
535 wfProfileOut( "$fname-edit" );
536
537 wfProfileIn( "$fname-live" );
538 if ( $wgTitle->getArticleId() ) {
539
540 $content_actions['history'] = array(
541 'class' => ($action == 'history') ? 'selected' : false,
542 'text' => wfMsg('history_short'),
543 'href' => $wgTitle->getLocalUrl( 'action=history')
544 );
545
546 # XXX: is there a rollback action anywhere or is it planned?
547 # Don't recall where i got this from...
548 /*if( $wgUser->getNewtalk() ) {
549 $content_actions['rollback'] = array('class' => ($action == 'rollback') ? 'selected' : false,
550 'text' => wfMsg('rollback_short'),
551 'href' => $this->makeUrl($this->thispage, 'action=rollback'),
552 'ttip' => wfMsg('tooltip-rollback'),
553 'akey' => wfMsg('accesskey-rollback'));
554 }
555 */
556
557 if($wgUser->isAllowed('protect')){
558 if(!$wgTitle->isProtected()){
559 $content_actions['protect'] = array(
560 'class' => ($action == 'protect') ? 'selected' : false,
561 'text' => wfMsg('protect'),
562 'href' => $wgTitle->getLocalUrl( 'action=protect' )
563 );
564
565 } else {
566 $content_actions['unprotect'] = array(
567 'class' => ($action == 'unprotect') ? 'selected' : false,
568 'text' => wfMsg('unprotect'),
569 'href' => $wgTitle->getLocalUrl( 'action=unprotect' )
570 );
571 }
572 }
573 if($wgUser->isAllowed('delete')){
574 $content_actions['delete'] = array(
575 'class' => ($action == 'delete') ? 'selected' : false,
576 'text' => wfMsg('delete'),
577 'href' => $wgTitle->getLocalUrl( 'action=delete' )
578 );
579 }
580 if ( $wgUser->getID() != 0 ) {
581 if ( $wgTitle->userCanMove()) {
582 $content_actions['move'] = array(
583 'class' => ($wgTitle->getDbKey() == 'Movepage' and $wgTitle->getNamespace == Namespace::getSpecial()) ? 'selected' : false,
584 'text' => wfMsg('move'),
585 'href' => $this->makeSpecialUrl('Movepage', 'target='. urlencode( $this->thispage ) )
586 );
587 }
588 }
589 } else {
590 //article doesn't exist or is deleted
591 if($wgUser->isAllowed('delete')){
592 if( $n = $wgTitle->isDeleted() ) {
593 $content_actions['undelete'] = array(
594 'class' => false,
595 'text' => wfMsg( "undelete_short", $n ),
596 'href' => $this->makeSpecialUrl('Undelete/'.$this->thispage)
597 );
598 }
599 }
600 }
601 wfProfileOut( "$fname-live" );
602
603 if ( $wgUser->getID() != 0 and $action != 'submit' ) {
604 if( !$wgTitle->userIsWatching()) {
605 $content_actions['watch'] = array(
606 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,
607 'text' => wfMsg('watch'),
608 'href' => $wgTitle->getLocalUrl( 'action=watch' )
609 );
610 } else {
611 $content_actions['unwatch'] = array(
612 'class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false,
613 'text' => wfMsg('unwatch'),
614 'href' => $wgTitle->getLocalUrl( 'action=unwatch' )
615 );
616 }
617 }
618
619 # Show validate tab
620 if ( $wgUseValidation && $wgTitle->getArticleId() && $wgTitle->getNamespace() == 0 ) {
621 global $wgArticle ;
622 $article_time = "&timestamp=" . $wgArticle->mTimestamp ;
623 $content_actions['validate'] = array(
624 'class' => ($action == 'validate') ? 'selected' : false ,
625 'text' => wfMsg('val_tab'),
626 'href' => $wgTitle->getLocalUrl( 'action=validate'.$article_time)
627 );
628 }
629 } else {
630 /* show special page tab */
631
632 $content_actions['article'] = array(
633 'class' => 'selected',
634 'text' => wfMsg('specialpage'),
635 'href' => false
636 );
637 }
638
639 wfProfileOut( $fname );
640 return $content_actions;
641 }
642
643 /**
644 * build array of global navigation links
645 * @return array
646 * @access private
647 */
648 function buildNavigationUrls () {
649 $fname = 'SkinTemplate::buildNavigationUrls';
650 wfProfileIn( $fname );
651
652 global $wgNavigationLinks;
653 $result = array();
654 foreach ( $wgNavigationLinks as $link ) {
655 $text = wfMsg( $link['text'] );
656 wfProfileIn( "$fname-{$link['text']}" );
657 if ($text != '-') {
658 $dest = wfMsgForContent( $link['href'] );
659 wfProfileIn( "$fname-{$link['text']}2" );
660 $result[] = array(
661 'text' => $text,
662 'href' => $this->makeInternalOrExternalUrl( $dest ),
663 'id' => 'n-'.$link['text']
664 );
665 wfProfileOut( "$fname-{$link['text']}2" );
666 }
667 wfProfileOut( "$fname-{$link['text']}" );
668 }
669 wfProfileOut( $fname );
670 return $result;
671 }
672
673 /**
674 * build array of common navigation links
675 * @return array
676 * @access private
677 */
678 function buildNavUrls () {
679 $fname = 'SkinTemplate::buildNavUrls';
680 wfProfileIn( $fname );
681
682 global $wgTitle, $wgUser, $wgRequest;
683 global $wgSiteSupportPage, $wgDisableUploads;
684
685 $action = $wgRequest->getText( 'action' );
686 $oldid = $wgRequest->getVal( 'oldid' );
687 $diff = $wgRequest->getVal( 'diff' );
688
689 $nav_urls = array();
690 $nav_urls['mainpage'] = array('href' => $this->makeI18nUrl('mainpage'));
691 $nav_urls['randompage'] = array('href' => $this->makeSpecialUrl('Randompage'));
692 $nav_urls['recentchanges'] = array('href' => $this->makeSpecialUrl('Recentchanges'));
693 $nav_urls['currentevents'] = (wfMsgForContent('currentevents') != '-') ? array('href' => $this->makeI18nUrl('currentevents')) : false;
694 $nav_urls['portal'] = (wfMsgForContent('portal') != '-') ? array('href' => $this->makeI18nUrl('portal-url')) : false;
695 $nav_urls['bugreports'] = array('href' => $this->makeI18nUrl('bugreportspage'));
696 // $nav_urls['sitesupport'] = array('href' => $this->makeI18nUrl('sitesupportpage'));
697 $nav_urls['sitesupport'] = array('href' => $wgSiteSupportPage);
698 $nav_urls['help'] = array('href' => $this->makeI18nUrl('helppage'));
699 if( $this->loggedin && !$wgDisableUploads ) {
700 $nav_urls['upload'] = array('href' => $this->makeSpecialUrl('Upload'));
701 } else {
702 $nav_urls['upload'] = false;
703 }
704 $nav_urls['specialpages'] = array('href' => $this->makeSpecialUrl('Specialpages'));
705
706 if( $wgTitle->getNamespace() != NS_SPECIAL) {
707 $nav_urls['whatlinkshere'] = array('href' => $this->makeSpecialUrl('Whatlinkshere', 'target='.urlencode( $this->thispage)));
708 $nav_urls['recentchangeslinked'] = array('href' => $this->makeSpecialUrl('Recentchangeslinked', 'target='.urlencode( $this->thispage)));
709 }
710
711 if( $wgTitle->getNamespace() == NS_USER || $wgTitle->getNamespace() == NS_USER_TALK ) {
712 $id = User::idFromName($wgTitle->getText());
713 $ip = User::isIP($wgTitle->getText());
714 } else {
715 $id = 0;
716 $ip = false;
717 }
718
719 if($id || $ip) { # both anons and non-anons have contri list
720 $nav_urls['contributions'] = array(
721 'href' => $this->makeSpecialUrl('Contributions', "target=" . $wgTitle->getPartialURL() )
722 );
723 } else {
724 $nav_urls['contributions'] = false;
725 }
726 $nav_urls['emailuser'] = false;
727 if( $this->showEmailUser( $id ) ) {
728 $nav_urls['emailuser'] = array(
729 'href' => $this->makeSpecialUrl('Emailuser', "target=" . $wgTitle->getPartialURL() )
730 );
731 }
732 wfProfileOut( $fname );
733 return $nav_urls;
734 }
735
736 /**
737 * Generate strings used for xml 'id' names
738 * @return string
739 * @private
740 */
741 function getNameSpaceKey () {
742 global $wgTitle;
743 switch ($wgTitle->getNamespace()) {
744 case NS_MAIN:
745 case NS_TALK:
746 return 'nstab-main';
747 case NS_USER:
748 case NS_USER_TALK:
749 return 'nstab-user';
750 case NS_MEDIA:
751 return 'nstab-media';
752 case NS_SPECIAL:
753 return 'nstab-special';
754 case NS_PROJECT:
755 case NS_PROJECT_TALK:
756 return 'nstab-wp';
757 case NS_IMAGE:
758 case NS_IMAGE_TALK:
759 return 'nstab-image';
760 case NS_MEDIAWIKI:
761 case NS_MEDIAWIKI_TALK:
762 return 'nstab-mediawiki';
763 case NS_TEMPLATE:
764 case NS_TEMPLATE_TALK:
765 return 'nstab-template';
766 case NS_HELP:
767 case NS_HELP_TALK:
768 return 'nstab-help';
769 case NS_CATEGORY:
770 case NS_CATEGORY_TALK:
771 return 'nstab-category';
772 default:
773 return 'nstab-main';
774 }
775 }
776
777 /**
778 * @access private
779 */
780 function setupUserCss() {
781 $fname = 'SkinTemplate::setupUserCss';
782 wfProfileIn( $fname );
783
784 global $wgRequest, $wgTitle, $wgAllowUserCss, $wgUseSiteCss;
785
786 $sitecss = "";
787 $usercss = "";
788 $siteargs = "";
789
790 # Add user-specific code if this is a user and we allow that kind of thing
791
792 if ( $wgAllowUserCss && $this->loggedin ) {
793 $action = $wgRequest->getText('action');
794
795 # if we're previewing the CSS page, use it
796 if($wgTitle->isCssSubpage() and $action == 'submit' and $wgTitle->userCanEditCssJsSubpage()) {
797 $siteargs .= "&smaxage=0&maxage=0";
798 $usercss = $wgRequest->getText('wpTextbox1');
799 } else {
800 $siteargs .= "&maxage=0";
801 $usercss = '@import "' .
802 $this->makeUrl($this->userpage . '/'.$this->skinname.'.css',
803 'action=raw&ctype=text/css') . '";' ."\n";
804 }
805 }
806
807 # If we use the site's dynamic CSS, throw that in, too
808
809 if ( $wgUseSiteCss ) {
810 $sitecss = '@import "'.$this->makeUrl('-','action=raw&gen=css' . $siteargs).'";'."\n";
811 }
812
813 # If we use any dynamic CSS, make a little CDATA block out of it.
814
815 if ( !empty($sitecss) || !empty($usercss) ) {
816 $this->usercss = '/*<![CDATA[*/ ' . $sitecss . ' ' . $usercss . ' /*]]>*/';
817 }
818 wfProfileOut( $fname );
819 }
820
821 /**
822 * @access private
823 */
824 function setupUserJs() {
825 $fname = 'SkinTemplate::setupUserJs';
826 wfProfileIn( $fname );
827
828 global $wgRequest, $wgTitle, $wgAllowUserJs;
829 $action = $wgRequest->getText('action');
830
831 if( $wgAllowUserJs && $this->loggedin ) {
832 if($wgTitle->isJsSubpage() and $action == 'submit' and $wgTitle->userCanEditCssJsSubpage()) {
833 # XXX: additional security check/prompt?
834 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText('wpTextbox1') . ' /*]]>*/';
835 } else {
836 $this->userjs = $this->makeUrl($this->userpage.'/'.$this->skinname.'.js', 'action=raw&ctype=text/javascript&dontcountme=s');
837 }
838 }
839 wfProfileOut( $fname );
840 }
841
842 /**
843 * returns css with user-specific options
844 * @access public
845 */
846 function getUserStylesheet() {
847 $fname = 'SkinTemplate::getUserStylesheet';
848 wfProfileIn( $fname );
849
850 global $wgUser, $wgRequest, $wgTitle, $wgContLang, $wgSquidMaxage, $wgStylePath;
851 $action = $wgRequest->getText('action');
852 $maxage = $wgRequest->getText('maxage');
853 $s = "/* generated user stylesheet */\n";
854 if($wgContLang->isRTL()) $s .= '@import "'.$wgStylePath.'/'.$this->stylename.'/rtl.css";'."\n";
855 $s .= '@import "'.
856 $this->makeNSUrl(ucfirst($this->skinname).'.css', 'action=raw&ctype=text/css&smaxage='.$wgSquidMaxage, NS_MEDIAWIKI)."\";\n";
857 if($wgUser->getID() != 0) {
858 if ( 1 == $wgUser->getOption( "underline" ) ) {
859 $s .= "a { text-decoration: underline; }\n";
860 } else {
861 $s .= "a { text-decoration: none; }\n";
862 }
863 }
864 if ( 1 != $wgUser->getOption( "highlightbroken" ) ) {
865 $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";
866 }
867 if ( 1 == $wgUser->getOption( "justify" ) ) {
868 $s .= "#bodyContent { text-align: justify; }\n";
869 }
870 wfProfileOut( $fname );
871 return $s;
872 }
873
874 /**
875 * @access public
876 */
877 function getUserJs() {
878 $fname = 'SkinTemplate::getUserJs';
879 wfProfileIn( $fname );
880
881 global $wgUser, $wgStylePath;
882 $s = '/* generated javascript */';
883 $s .= "var skin = '{$this->skinname}';\nvar stylepath = '{$wgStylePath}';";
884 $s .= '/* MediaWiki:'.ucfirst($this->skinname)." */\n";
885 $s .= wfMsg(ucfirst($this->skinname).'.js');
886
887 wfProfileOut( $fname );
888 return $s;
889 }
890 }
891
892 /**
893 * Generic wrapper for template functions, with interface
894 * compatible with what we use of PHPTAL 0.7.
895 */
896 class QuickTemplate {
897 /**
898 * @access public
899 */
900 function QuickTemplate() {
901 $this->data = array();
902 $this->translator = new MediaWiki_I18N();
903 }
904
905 /**
906 * @access public
907 */
908 function set( $name, $value ) {
909 $this->data[$name] = $value;
910 }
911
912 /**
913 * @access public
914 */
915 function setRef($name, &$value) {
916 $this->data[$name] =& $value;
917 }
918
919 /**
920 * @access public
921 */
922 function setTranslator( &$t ) {
923 $this->translator = &$t;
924 }
925
926 /**
927 * @access public
928 */
929 function execute() {
930 echo "Override this function.";
931 }
932
933
934 /**
935 * @access private
936 */
937 function text( $str ) {
938 echo htmlspecialchars( $this->data[$str] );
939 }
940
941 /**
942 * @access private
943 */
944 function html( $str ) {
945 echo $this->data[$str];
946 }
947
948 /**
949 * @access private
950 */
951 function msg( $str ) {
952 echo htmlspecialchars( $this->translator->translate( $str ) );
953 }
954
955 /**
956 * @access private
957 */
958 function msgHtml( $str ) {
959 echo $this->translator->translate( $str );
960 }
961
962 /**
963 * @access private
964 */
965 function haveData( $str ) {
966 return $this->data[$str];
967 }
968
969 /**
970 * @access private
971 */
972 function haveMsg( $str ) {
973 $msg = $this->translator->translate( $str );
974 return ($msg != '-') && ($msg != ''); # ????
975 }
976 }
977
978 } // end of if( defined( 'MEDIAWIKI' ) )
979 ?>