* (bug 2885) Fix fatal errors and notices in PHP 5.1.0beta3
[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, $wgJsMimeType, $wgOutputEncoding, $wgUseDatabaseMessages, $wgRequest;
149 global $wgDisableCounters, $wgLogo, $action, $wgFeedClasses, $wgHideInterlanguageLinks;
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
161 $this->mTitle =& $wgTitle;
162 $this->mUser =& $wgUser;
163
164 $tpl = $this->setupTemplate( $this->template, 'skins' );
165
166 #if ( $wgUseDatabaseMessages ) { // uncomment this to fall back to GetText
167 $tpl->setTranslator(new MediaWiki_I18N());
168 #}
169 wfProfileOut( "$fname-init" );
170
171 wfProfileIn( "$fname-stuff" );
172 $this->thispage = $this->mTitle->getPrefixedDbKey();
173 $this->thisurl = $this->mTitle->getPrefixedURL();
174 $this->loggedin = $wgUser->isLoggedIn();
175 $this->iscontent = ($this->mTitle->getNamespace() != NS_SPECIAL );
176 $this->iseditable = ($this->iscontent and !($action == 'edit' or $action == 'submit'));
177 $this->username = $wgUser->getName();
178 $userPage = $wgUser->getUserPage();
179 $this->userpage = $userPage->getPrefixedText();
180 $this->userpageUrlDetails = $this->makeUrlDetails($this->userpage);
181
182 $this->usercss = $this->userjs = $this->userjsprev = false;
183 $this->setupUserCss();
184 $this->setupUserJs();
185 $this->titletxt = $this->mTitle->getPrefixedText();
186 wfProfileOut( "$fname-stuff" );
187
188 wfProfileIn( "$fname-stuff2" );
189 $tpl->set( 'title', $wgOut->getPageTitle() );
190 $tpl->set( 'pagetitle', $wgOut->getHTMLTitle() );
191
192 $tpl->setRef( "thispage", $this->thispage );
193 $subpagestr = $this->subPageSubtitle();
194 $tpl->set(
195 'subtitle', !empty($subpagestr)?
196 '<span class="subpages">'.$subpagestr.'</span>'.$out->getSubtitle():
197 $out->getSubtitle()
198 );
199 $undelete = $this->getUndeleteLink();
200 $tpl->set(
201 "undelete", !empty($undelete)?
202 '<span class="subpages">'.$undelete.'</span>':
203 ''
204 );
205
206 $tpl->set( 'catlinks', $this->getCategories());
207 if( $wgOut->isSyndicated() ) {
208 $feeds = array();
209 foreach( $wgFeedClasses as $format => $class ) {
210 $feeds[$format] = array(
211 'text' => $format,
212 'href' => $wgRequest->appendQuery( "feed=$format" ),
213 'ttip' => wfMsg('tooltip-'.$format)
214 );
215 }
216 $tpl->setRef( 'feeds', $feeds );
217 } else {
218 $tpl->set( 'feeds', false );
219 }
220 $tpl->setRef( 'mimetype', $wgMimeType );
221 $tpl->setRef( 'jsmimetype', $wgJsMimeType );
222 $tpl->setRef( 'charset', $wgOutputEncoding );
223 $tpl->set( 'headlinks', $out->getHeadLinks() );
224 $tpl->setRef( 'wgScript', $wgScript );
225 $tpl->setRef( 'skinname', $this->skinname );
226 $tpl->setRef( 'stylename', $this->stylename );
227 $tpl->set( 'printable', $wgRequest->getBool( 'printable' ) );
228 $tpl->setRef( 'loggedin', $this->loggedin );
229 $tpl->set('nsclass', 'ns-'.$this->mTitle->getNamespace());
230 $tpl->set('notspecialpage', $this->mTitle->getNamespace() != NS_SPECIAL);
231 /* XXX currently unused, might get useful later
232 $tpl->set( "editable", ($this->mTitle->getNamespace() != NS_SPECIAL ) );
233 $tpl->set( "exists", $this->mTitle->getArticleID() != 0 );
234 $tpl->set( "watch", $this->mTitle->userIsWatching() ? "unwatch" : "watch" );
235 $tpl->set( "protect", count($this->mTitle->isProtected()) ? "unprotect" : "protect" );
236 $tpl->set( "helppage", wfMsg('helppage'));
237 */
238 $tpl->set( 'searchaction', $this->escapeSearchLink() );
239 $tpl->set( 'search', trim( $wgRequest->getVal( 'search' ) ) );
240 $tpl->setRef( 'stylepath', $wgStylePath );
241 $tpl->setRef( 'logopath', $wgLogo );
242 $tpl->setRef( "lang", $wgContLanguageCode );
243 $tpl->set( 'dir', $wgContLang->isRTL() ? "rtl" : "ltr" );
244 $tpl->set( 'rtl', $wgContLang->isRTL() );
245 $tpl->set( 'langname', $wgContLang->getLanguageName( $wgContLanguageCode ) );
246 $tpl->setRef( 'username', $this->username );
247 $tpl->setRef( 'userpage', $this->userpage);
248 $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href']);
249 $tpl->setRef( 'usercss', $this->usercss);
250 $tpl->setRef( 'userjs', $this->userjs);
251 $tpl->setRef( 'userjsprev', $this->userjsprev);
252 global $wgUseSiteJs;
253 if ($wgUseSiteJs) {
254 if($this->loggedin) {
255 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&smaxage=0&gen=js') );
256 } else {
257 $tpl->set( 'jsvarurl', $this->makeUrl('-','action=raw&gen=js') );
258 }
259 } else {
260 $tpl->set('jsvarurl', false);
261 }
262 if( $wgUser->getNewtalk() ) {
263 $usertitle = $this->mUser->getUserPage();
264 $usertalktitle = $usertitle->getTalkPage();
265 if( !$usertalktitle->equals( $this->mTitle ) ) {
266 $ntl = wfMsg( 'newmessages',
267 $this->makeKnownLinkObj(
268 $usertalktitle,
269 wfMsg('newmessageslink')
270 )
271 );
272 # Disable Cache
273 $wgOut->setSquidMaxage(0);
274 }
275 } else {
276 $ntl = '';
277 }
278 wfProfileOut( "$fname-stuff2" );
279
280 wfProfileIn( "$fname-stuff3" );
281 $tpl->setRef( 'newtalk', $ntl );
282 $tpl->setRef( 'skin', $this);
283 $tpl->set( 'logo', $this->logoText() );
284 if ( $wgOut->isArticle() and (!isset( $oldid ) or isset( $diff )) and 0 != $wgArticle->getID() ) {
285 if ( !$wgDisableCounters ) {
286 $viewcount = $wgLang->formatNum( $wgArticle->getCount() );
287 if ( $viewcount ) {
288 $tpl->set('viewcount', wfMsg( "viewcount", $viewcount ));
289 } else {
290 $tpl->set('viewcount', false);
291 }
292 } else {
293 $tpl->set('viewcount', false);
294 }
295
296 if ($wgPageShowWatchingUsers) {
297 $dbr =& wfGetDB( DB_SLAVE );
298 extract( $dbr->tableNames( 'watchlist' ) );
299 $sql = "SELECT COUNT(*) AS n FROM $watchlist
300 WHERE wl_title='" . $dbr->strencode($this->mTitle->getDBKey()) .
301 "' AND wl_namespace=" . $this->mTitle->getNamespace() ;
302 $res = $dbr->query( $sql, 'SkinPHPTal::outputPage');
303 $x = $dbr->fetchObject( $res );
304 $numberofwatchingusers = $x->n;
305 if ($numberofwatchingusers > 0) {
306 $tpl->set('numberofwatchingusers', wfMsg('number_of_watching_users_pageview', $numberofwatchingusers));
307 } else {
308 $tpl->set('numberofwatchingusers', false);
309 }
310 } else {
311 $tpl->set('numberofwatchingusers', false);
312 }
313
314 $tpl->set('copyright',$this->getCopyright());
315
316 $this->credits = false;
317
318 if (isset($wgMaxCredits) && $wgMaxCredits != 0) {
319 require_once("Credits.php");
320 $this->credits = getCredits($wgArticle, $wgMaxCredits, $wgShowCreditsIfMax);
321 } else {
322 $tpl->set('lastmod', $this->lastModified());
323 }
324
325 $tpl->setRef( 'credits', $this->credits );
326
327 } elseif ( isset( $oldid ) && !isset( $diff ) ) {
328 $tpl->set('copyright', $this->getCopyright());
329 $tpl->set('viewcount', false);
330 $tpl->set('lastmod', false);
331 $tpl->set('credits', false);
332 $tpl->set('numberofwatchingusers', false);
333 } else {
334 $tpl->set('copyright', false);
335 $tpl->set('viewcount', false);
336 $tpl->set('lastmod', false);
337 $tpl->set('credits', false);
338 $tpl->set('numberofwatchingusers', false);
339 }
340 wfProfileOut( "$fname-stuff3" );
341
342 wfProfileIn( "$fname-stuff4" );
343 $tpl->set( 'copyrightico', $this->getCopyrightIcon() );
344 $tpl->set( 'poweredbyico', $this->getPoweredBy() );
345 $tpl->set( 'disclaimer', $this->disclaimerLink() );
346 $tpl->set( 'about', $this->aboutLink() );
347
348 $tpl->setRef( 'debug', $out->mDebugtext );
349 $tpl->set( 'reporttime', $out->reportTime() );
350 $tpl->set( 'sitenotice', wfGetSiteNotice() );
351
352 $printfooter = "<div class=\"printfooter\">\n" . $this->printSource() . "</div>\n";
353 $out->mBodytext .= $printfooter ;
354 $tpl->setRef( 'bodytext', $out->mBodytext );
355
356 # Language links
357 $language_urls = array();
358
359 if ( !$wgHideInterlanguageLinks ) {
360 foreach( $wgOut->getLanguageLinks() as $l ) {
361 $nt = Title::newFromText( $l );
362 $language_urls[] = array('href' => $nt->getFullURL(),
363 'text' => ($wgContLang->getLanguageName( $nt->getInterwiki()) != ''?$wgContLang->getLanguageName( $nt->getInterwiki()) : $l),
364 'class' => $wgContLang->isRTL() ? 'rtl' : 'ltr');
365 }
366 }
367 if(count($language_urls)) {
368 $tpl->setRef( 'language_urls', $language_urls);
369 } else {
370 $tpl->set('language_urls', false);
371 }
372 wfProfileOut( "$fname-stuff4" );
373
374 # Personal toolbar
375 $tpl->set('personal_urls', $this->buildPersonalUrls());
376 $content_actions = $this->buildContentActionUrls();
377 $tpl->setRef('content_actions', $content_actions);
378
379 // XXX: attach this from javascript, same with section editing
380 if($this->iseditable && $wgUser->getOption("editondblclick") )
381 {
382 $tpl->set('body_ondblclick', 'document.location = "' .$content_actions['edit']['href'] .'";');
383 } else {
384 $tpl->set('body_ondblclick', false);
385 }
386 if( $this->iseditable && $wgUser->getOption( 'editsectiononrightclick' ) ) {
387 $tpl->set( 'body_onload', 'setupRightClickEdit()' );
388 } else {
389 $tpl->set( 'body_onload', false );
390 }
391 $tpl->set( 'sidebar', $this->buildSidebar() );
392 $tpl->set( 'nav_urls', $this->buildNavUrls() );
393
394 // execute template
395 wfProfileIn( "$fname-execute" );
396 $res = $tpl->execute();
397 wfProfileOut( "$fname-execute" );
398
399 // result may be an error
400 $this->printOrError( $res );
401 wfProfileOut( $fname );
402 }
403
404 /**
405 * Output the string, or print error message if it's
406 * an error object of the appropriate type.
407 * For the base class, assume strings all around.
408 *
409 * @param mixed $str
410 * @access private
411 */
412 function printOrError( &$str ) {
413 echo $str;
414 }
415
416 /**
417 * build array of urls for personal toolbar
418 * @return array
419 * @access private
420 */
421 function buildPersonalUrls() {
422 $fname = 'SkinTemplate::buildPersonalUrls';
423 wfProfileIn( $fname );
424
425 /* set up the default links for the personal toolbar */
426 global $wgShowIPinHeader;
427 $personal_urls = array();
428 if ($this->loggedin) {
429 $personal_urls['userpage'] = array(
430 'text' => $this->username,
431 'href' => &$this->userpageUrlDetails['href'],
432 'class' => $this->userpageUrlDetails['exists']?false:'new'
433 );
434 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
435 $personal_urls['mytalk'] = array(
436 'text' => wfMsg('mytalk'),
437 'href' => &$usertalkUrlDetails['href'],
438 'class' => $usertalkUrlDetails['exists']?false:'new'
439 );
440 $personal_urls['preferences'] = array(
441 'text' => wfMsg('preferences'),
442 'href' => $this->makeSpecialUrl('Preferences')
443 );
444 $personal_urls['watchlist'] = array(
445 'text' => wfMsg('watchlist'),
446 'href' => $this->makeSpecialUrl('Watchlist')
447 );
448 $personal_urls['mycontris'] = array(
449 'text' => wfMsg('mycontris'),
450 'href' => $this->makeSpecialUrl("Contributions/$this->username")
451 );
452 $personal_urls['logout'] = array(
453 'text' => wfMsg('userlogout'),
454 'href' => $this->makeSpecialUrl('Userlogout','returnto=' . $this->thisurl )
455 );
456 } else {
457 if( $wgShowIPinHeader && isset( $_COOKIE[ini_get("session.name")] ) ) {
458 $personal_urls['anonuserpage'] = array(
459 'text' => $this->username,
460 'href' => &$this->userpageUrlDetails['href'],
461 'class' => $this->userpageUrlDetails['exists']?false:'new'
462 );
463 $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage);
464 $personal_urls['anontalk'] = array(
465 'text' => wfMsg('anontalk'),
466 'href' => &$usertalkUrlDetails['href'],
467 'class' => $usertalkUrlDetails['exists']?false:'new'
468 );
469 $personal_urls['anonlogin'] = array(
470 'text' => wfMsg('userlogin'),
471 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl )
472 );
473 } else {
474
475 $personal_urls['login'] = array(
476 'text' => wfMsg('userlogin'),
477 'href' => $this->makeSpecialUrl('Userlogin', 'returnto=' . $this->thisurl )
478 );
479 }
480 }
481 wfProfileOut( $fname );
482 return $personal_urls;
483 }
484
485
486 function tabAction( $title, $message, $selected, $query='', $checkEdit=false ) {
487 $classes = array();
488 if( $selected ) {
489 $classes[] = 'selected';
490 }
491 if( $checkEdit && $title->getArticleId() == 0 ) {
492 $classes[] = 'new';
493 $query = 'action=edit';
494 }
495 return array(
496 'class' => implode( ' ', $classes ),
497 'text' => wfMsg( $message ),
498 'href' => $title->getLocalUrl( $query ) );
499 }
500
501 function makeTalkUrlDetails( $name, $urlaction='' ) {
502 $title = Title::newFromText( $name );
503 $title = $title->getTalkPage();
504 $this->checkTitle($title, $name);
505 return array(
506 'href' => $title->getLocalURL( $urlaction ),
507 'exists' => $title->getArticleID() != 0?true:false
508 );
509 }
510
511 function makeArticleUrlDetails( $name, $urlaction='' ) {
512 $title = Title::newFromText( $name );
513 $title= $title->getSubjectPage();
514 $this->checkTitle($title, $name);
515 return array(
516 'href' => $title->getLocalURL( $urlaction ),
517 'exists' => $title->getArticleID() != 0?true:false
518 );
519 }
520
521 /**
522 * an array of edit links by default used for the tabs
523 * @return array
524 * @access private
525 */
526 function buildContentActionUrls () {
527 global $wgContLang, $wgUseValidation, $wgDBprefix, $wgValidationForAnons;
528 $fname = 'SkinTemplate::buildContentActionUrls';
529 wfProfileIn( $fname );
530
531 global $wgUser, $wgRequest;
532 $action = $wgRequest->getText( 'action' );
533 $section = $wgRequest->getText( 'section' );
534 $oldid = $wgRequest->getVal( 'oldid' );
535 $diff = $wgRequest->getVal( 'diff' );
536 $content_actions = array();
537
538 if( $this->iscontent ) {
539
540 $nskey = $this->getNameSpaceKey();
541 $content_actions[$nskey] = $this->tabAction(
542 $this->mTitle->getSubjectPage(),
543 $nskey,
544 !$this->mTitle->isTalkPage(),
545 '', true);
546
547 $content_actions['talk'] = $this->tabAction(
548 $this->mTitle->getTalkPage(),
549 'talk',
550 $this->mTitle->isTalkPage(),
551 '',
552 true);
553
554 wfProfileIn( "$fname-edit" );
555 if ( $this->mTitle->userCanEdit() ) {
556 $oid = ( $oldid && ! isset( $diff ) ) ? '&oldid='.IntVal( $oldid ) : false;
557 $istalk = $this->mTitle->isTalkPage();
558 $istalkclass = $istalk?' istalk':'';
559 $content_actions['edit'] = array(
560 'class' => ((($action == 'edit' or $action == 'submit') and $section != 'new') ? 'selected' : '').$istalkclass,
561 'text' => wfMsg('edit'),
562 'href' => $this->mTitle->getLocalUrl( 'action=edit'.$oid )
563 );
564
565 if ( $istalk ) {
566 $content_actions['addsection'] = array(
567 'class' => $section == 'new'?'selected':false,
568 'text' => wfMsg('addsection'),
569 'href' => $this->mTitle->getLocalUrl( 'action=edit&section=new' )
570 );
571 }
572 } else {
573 $oid = ( $oldid && ! isset( $diff ) ) ? '&oldid='.IntVal( $oldid ) : '';
574 $content_actions['viewsource'] = array(
575 'class' => ($action == 'edit') ? 'selected' : false,
576 'text' => wfMsg('viewsource'),
577 'href' => $this->mTitle->getLocalUrl( 'action=edit'.$oid )
578 );
579 }
580 wfProfileOut( "$fname-edit" );
581
582 wfProfileIn( "$fname-live" );
583 if ( $this->mTitle->getArticleId() ) {
584
585 $content_actions['history'] = array(
586 'class' => ($action == 'history') ? 'selected' : false,
587 'text' => wfMsg('history_short'),
588 'href' => $this->mTitle->getLocalUrl( 'action=history')
589 );
590
591 if($wgUser->isAllowed('protect')){
592 if(!$this->mTitle->isProtected()){
593 $content_actions['protect'] = array(
594 'class' => ($action == 'protect') ? 'selected' : false,
595 'text' => wfMsg('protect'),
596 'href' => $this->mTitle->getLocalUrl( 'action=protect' )
597 );
598
599 } else {
600 $content_actions['unprotect'] = array(
601 'class' => ($action == 'unprotect') ? 'selected' : false,
602 'text' => wfMsg('unprotect'),
603 'href' => $this->mTitle->getLocalUrl( 'action=unprotect' )
604 );
605 }
606 }
607 if($wgUser->isAllowed('delete')){
608 $content_actions['delete'] = array(
609 'class' => ($action == 'delete') ? 'selected' : false,
610 'text' => wfMsg('delete'),
611 'href' => $this->mTitle->getLocalUrl( 'action=delete' )
612 );
613 }
614 if ( $wgUser->isLoggedIn() ) {
615 if ( $this->mTitle->userCanMove()) {
616 $content_actions['move'] = array(
617 'class' => ($this->mTitle->getDbKey() == 'Movepage' and $this->mTitle->getNamespace == NS_SPECIAL) ? 'selected' : false,
618 'text' => wfMsg('move'),
619 'href' => $this->makeSpecialUrl("Movepage/$this->thispage" )
620 );
621 }
622 }
623 } else {
624 //article doesn't exist or is deleted
625 if($wgUser->isAllowed('delete')){
626 if( $n = $this->mTitle->isDeleted() ) {
627 $content_actions['undelete'] = array(
628 'class' => false,
629 'text' => ($n == 1) ? wfMsg( 'undelete_short1' ) : wfMsg('undelete_short', $n ),
630 'href' => $this->makeSpecialUrl("Undelete/$this->thispage")
631 );
632 }
633 }
634 }
635 wfProfileOut( "$fname-live" );
636
637 if( $wgUser->isLoggedIn() and $action != 'submit' ) {
638 if( !$this->mTitle->userIsWatching()) {
639 $content_actions['watch'] = array(
640 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,
641 'text' => wfMsg('watch'),
642 'href' => $this->mTitle->getLocalUrl( 'action=watch' )
643 );
644 } else {
645 $content_actions['unwatch'] = array(
646 'class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false,
647 'text' => wfMsg('unwatch'),
648 'href' => $this->mTitle->getLocalUrl( 'action=unwatch' )
649 );
650 }
651 }
652
653 if( $wgUser->isLoggedIn() || $wgValidationForAnons ) { # and $action != 'submit' ) {
654 # Validate tab. TODO: add validation to logged-in user rights
655 if($wgUseValidation && ( $action == "" || $action=='view' ) ){ # && $wgUser->isAllowed('validate')){
656 if ( $oldid ) $oid = IntVal( $oldid ) ; # Use the oldid
657 else
658 {# Trying to get the current article revision through this weird stunt
659 $tid = $this->mTitle->getArticleID();
660 $tns = $this->mTitle->getNamespace();
661 $sql = "SELECT page_latest FROM {$wgDBprefix}page WHERE page_id={$tid} AND page_namespace={$tns}" ;
662 $res = wfQuery( $sql, DB_READ );
663 if( $s = wfFetchObject( $res ) )
664 $oid = $s->page_latest ;
665 else $oid = "" ; # Something's wrong, like the article has been deleted in the last 10 ns
666 }
667 if ( $oid != "" ) {
668 $oid = "&revision={$oid}" ;
669 $content_actions['validate'] = array(
670 'class' => ($action == 'validate') ? 'selected' : false,
671 'text' => wfMsg('val_tab'),
672 'href' => $this->mTitle->getLocalUrl( "action=validate{$oid}" )
673 );
674 }
675 }
676 }
677 } else {
678 /* show special page tab */
679
680 $content_actions['article'] = array(
681 'class' => 'selected',
682 'text' => wfMsg('specialpage'),
683 'href' => $wgRequest->getRequestURL(), // @bug 2457, 2510
684 );
685 }
686
687 /* show links to different language variants */
688 global $wgDisableLangConversion;
689 $variants = $wgContLang->getVariants();
690 if( !$wgDisableLangConversion && sizeof( $variants ) > 1 ) {
691 $preferred = $wgContLang->getPreferredVariant();
692 $actstr = '';
693 if( $action )
694 $actstr = 'action=' . $action . '&';
695 $vcount=0;
696 foreach( $variants as $code ) {
697 $varname = $wgContLang->getVariantname( $code );
698 if( $varname == 'disable' )
699 continue;
700 $selected = ( $code == $preferred )? 'selected' : false;
701 $content_actions['varlang-' . $vcount] = array(
702 'class' => $selected,
703 'text' => $varname,
704 'href' => $this->mTitle->getLocalUrl( $actstr . 'variant=' . $code )
705 );
706 $vcount ++;
707 }
708 }
709
710 wfProfileOut( $fname );
711 return $content_actions;
712 }
713
714
715
716 /**
717 * build array of common navigation links
718 * @return array
719 * @access private
720 */
721 function buildNavUrls () {
722 $fname = 'SkinTemplate::buildNavUrls';
723 wfProfileIn( $fname );
724
725 global $wgUser, $wgRequest;
726 global $wgSiteSupportPage, $wgEnableUploads, $wgUploadNavigationUrl;
727
728 $action = $wgRequest->getText( 'action' );
729 $oldid = $wgRequest->getVal( 'oldid' );
730 $diff = $wgRequest->getVal( 'diff' );
731
732 $nav_urls = array();
733 $nav_urls['mainpage'] = array('href' => $this->makeI18nUrl('mainpage'));
734 $nav_urls['randompage'] = array('href' => $this->makeSpecialUrl('Random'));
735 $nav_urls['recentchanges'] = array('href' => $this->makeSpecialUrl('Recentchanges'));
736 $nav_urls['currentevents'] = (wfMsgForContent('currentevents') != '-') ? array('href' => $this->makeI18nUrl('currentevents')) : false;
737 $nav_urls['portal'] = (wfMsgForContent('portal') != '-') ? array('href' => $this->makeI18nUrl('portal-url')) : false;
738 $nav_urls['bugreports'] = array('href' => $this->makeI18nUrl('bugreportspage'));
739 // $nav_urls['sitesupport'] = array('href' => $this->makeI18nUrl('sitesupportpage'));
740 $nav_urls['sitesupport'] = array('href' => $wgSiteSupportPage);
741 $nav_urls['help'] = array('href' => $this->makeI18nUrl('helppage'));
742 if( $wgEnableUploads ) {
743 if ($wgUploadNavigationUrl) {
744 $nav_urls['upload'] = array('href' => $wgUploadNavigationUrl );
745 } else {
746 $nav_urls['upload'] = array('href' => $this->makeSpecialUrl('Upload'));
747 }
748 } else {
749 $nav_urls['upload'] = false;
750 }
751 $nav_urls['specialpages'] = array('href' => $this->makeSpecialUrl('Specialpages'));
752
753
754 // A print stylesheet is attached to all pages, but nobody ever
755 // figures that out. :) Add a link...
756 if( $this->iscontent && ($action == '' || $action == 'view' || $action == 'purge' ) ) {
757 $nav_urls['print'] = array(
758 'text' => wfMsg( 'printableversion' ),
759 'href' => $wgRequest->appendQuery( 'printable=yes' ) );
760 }
761
762 if( $this->mTitle->getNamespace() != NS_SPECIAL) {
763 $nav_urls['whatlinkshere'] = array(
764 'href' => $this->makeSpecialUrl("Whatlinkshere/$this->thispage")
765 );
766 $nav_urls['recentchangeslinked'] = array(
767 'href' => $this->makeSpecialUrl("Recentchangeslinked/$this->thispage")
768 );
769 }
770
771 if( $this->mTitle->getNamespace() == NS_USER || $this->mTitle->getNamespace() == NS_USER_TALK ) {
772 $id = User::idFromName($this->mTitle->getText());
773 $ip = User::isIP($this->mTitle->getText());
774 } else {
775 $id = 0;
776 $ip = false;
777 }
778
779 if($id || $ip) { # both anons and non-anons have contri list
780 $nav_urls['contributions'] = array(
781 'href' => $this->makeSpecialUrl('Contributions/' . $this->mTitle->getText() )
782 );
783 } else {
784 $nav_urls['contributions'] = false;
785 }
786 $nav_urls['emailuser'] = false;
787 if( $this->showEmailUser( $id ) ) {
788 $nav_urls['emailuser'] = array(
789 'href' => $this->makeSpecialUrl('Emailuser/' . $this->mTitle->getText() )
790 );
791 }
792 wfProfileOut( $fname );
793 return $nav_urls;
794 }
795
796 /**
797 * Generate strings used for xml 'id' names
798 * @return string
799 * @private
800 */
801 function getNameSpaceKey () {
802 switch ($this->mTitle->getNamespace()) {
803 case NS_MAIN:
804 case NS_TALK:
805 return 'nstab-main';
806 case NS_USER:
807 case NS_USER_TALK:
808 return 'nstab-user';
809 case NS_MEDIA:
810 return 'nstab-media';
811 case NS_SPECIAL:
812 return 'nstab-special';
813 case NS_PROJECT:
814 case NS_PROJECT_TALK:
815 return 'nstab-wp';
816 case NS_IMAGE:
817 case NS_IMAGE_TALK:
818 return 'nstab-image';
819 case NS_MEDIAWIKI:
820 case NS_MEDIAWIKI_TALK:
821 return 'nstab-mediawiki';
822 case NS_TEMPLATE:
823 case NS_TEMPLATE_TALK:
824 return 'nstab-template';
825 case NS_HELP:
826 case NS_HELP_TALK:
827 return 'nstab-help';
828 case NS_CATEGORY:
829 case NS_CATEGORY_TALK:
830 return 'nstab-category';
831 default:
832 return 'nstab-main';
833 }
834 }
835
836 /**
837 * @access private
838 */
839 function setupUserCss() {
840 $fname = 'SkinTemplate::setupUserCss';
841 wfProfileIn( $fname );
842
843 global $wgRequest, $wgAllowUserCss, $wgUseSiteCss, $wgContLang, $wgSquidMaxage, $wgStylePath, $wgUser;
844
845 $sitecss = '';
846 $usercss = '';
847 $siteargs = '&maxage=' . $wgSquidMaxage;
848
849 # Add user-specific code if this is a user and we allow that kind of thing
850
851 if ( $wgAllowUserCss && $this->loggedin ) {
852 $action = $wgRequest->getText('action');
853
854 # if we're previewing the CSS page, use it
855 if( $this->mTitle->isCssSubpage() and $this->userCanPreview( $action ) ) {
856 $siteargs = "&smaxage=0&maxage=0";
857 $usercss = $wgRequest->getText('wpTextbox1');
858 } else {
859 $usercss = '@import "' .
860 $this->makeUrl($this->userpage . '/'.$this->skinname.'.css',
861 'action=raw&ctype=text/css') . '";' ."\n";
862 }
863
864 $siteargs .= '&ts=' . $wgUser->mTouched;
865 }
866
867 if ($wgContLang->isRTL()) $sitecss .= '@import "' . $wgStylePath . '/' . $this->stylename . '/rtl.css";' . "\n";
868
869 # If we use the site's dynamic CSS, throw that in, too
870 if ( $wgUseSiteCss ) {
871 $sitecss .= '@import "' . $this->makeNSUrl(ucfirst($this->skinname) . '.css', 'action=raw&ctype=text/css&smaxage=' . $wgSquidMaxage, NS_MEDIAWIKI) . '";' . "\n";
872 $sitecss .= '@import "' . $this->makeUrl('-','action=raw&gen=css' . $siteargs) . '";' . "\n";
873 }
874
875 # If we use any dynamic CSS, make a little CDATA block out of it.
876
877 if ( !empty($sitecss) || !empty($usercss) ) {
878 $this->usercss = "/*<![CDATA[*/\n" . $sitecss . $usercss . '/*]]>*/';
879 }
880 wfProfileOut( $fname );
881 }
882
883 /**
884 * @access private
885 */
886 function setupUserJs() {
887 $fname = 'SkinTemplate::setupUserJs';
888 wfProfileIn( $fname );
889
890 global $wgRequest, $wgAllowUserJs, $wgJsMimeType;
891 $action = $wgRequest->getText('action');
892
893 if( $wgAllowUserJs && $this->loggedin ) {
894 if( $this->mTitle->isJsSubpage() and $this->userCanPreview( $action ) ) {
895 # XXX: additional security check/prompt?
896 $this->userjsprev = '/*<![CDATA[*/ ' . $wgRequest->getText('wpTextbox1') . ' /*]]>*/';
897 } else {
898 $this->userjs = $this->makeUrl($this->userpage.'/'.$this->skinname.'.js', 'action=raw&ctype='.$wgJsMimeType.'&dontcountme=s');
899 }
900 }
901 wfProfileOut( $fname );
902 }
903
904 /**
905 * returns css with user-specific options
906 * @access public
907 */
908
909 function getUserStylesheet() {
910 $fname = 'SkinTemplate::getUserStylesheet';
911 wfProfileIn( $fname );
912
913 global $wgUser;
914 $s = "/* generated user stylesheet */\n";
915 $s .= $this->reallyDoGetUserStyles();
916 wfProfileOut( $fname );
917 return $s;
918 }
919
920 /**
921 * @access public
922 */
923 function getUserJs() {
924 $fname = 'SkinTemplate::getUserJs';
925 wfProfileIn( $fname );
926
927 global $wgStylePath;
928 $s = '/* generated javascript */';
929 $s .= "var skin = '{$this->skinname}';\nvar stylepath = '{$wgStylePath}';";
930 $s .= '/* MediaWiki:'.ucfirst($this->skinname)." */\n";
931
932 // avoid inclusion of non defined user JavaScript (with custom skins only)
933 // by checking for default message content
934 $msgKey = ucfirst($this->skinname).'.js';
935 $userJS = wfMsg($msgKey);
936 if ('&lt;'.$msgKey.'&gt;' != $userJS) {
937 $s .= $userJS;
938 }
939
940 wfProfileOut( $fname );
941 return $s;
942 }
943 }
944
945 /**
946 * Generic wrapper for template functions, with interface
947 * compatible with what we use of PHPTAL 0.7.
948 * @package MediaWiki
949 * @subpackage Skins
950 */
951 class QuickTemplate {
952 /**
953 * @access public
954 */
955 function QuickTemplate() {
956 $this->data = array();
957 $this->translator = new MediaWiki_I18N();
958 }
959
960 /**
961 * @access public
962 */
963 function set( $name, $value ) {
964 $this->data[$name] = $value;
965 }
966
967 /**
968 * @access public
969 */
970 function setRef($name, &$value) {
971 $this->data[$name] =& $value;
972 }
973
974 /**
975 * @access public
976 */
977 function setTranslator( &$t ) {
978 $this->translator = &$t;
979 }
980
981 /**
982 * @access public
983 */
984 function execute() {
985 echo "Override this function.";
986 }
987
988
989 /**
990 * @access private
991 */
992 function text( $str ) {
993 echo htmlspecialchars( $this->data[$str] );
994 }
995
996 /**
997 * @access private
998 */
999 function html( $str ) {
1000 echo $this->data[$str];
1001 }
1002
1003 /**
1004 * @access private
1005 */
1006 function msg( $str ) {
1007 echo htmlspecialchars( $this->translator->translate( $str ) );
1008 }
1009
1010 /**
1011 * @access private
1012 */
1013 function msgHtml( $str ) {
1014 echo $this->translator->translate( $str );
1015 }
1016
1017 /**
1018 * An ugly, ugly hack.
1019 * @access private
1020 */
1021 function msgWiki( $str ) {
1022 global $wgParser, $wgTitle, $wgOut, $wgUseTidy;
1023
1024 $text = $this->translator->translate( $str );
1025 $parserOutput = $wgParser->parse( $text, $wgTitle,
1026 $wgOut->mParserOptions, true );
1027 echo $parserOutput->getText();
1028 }
1029
1030 /**
1031 * @access private
1032 */
1033 function haveData( $str ) {
1034 return $this->data[$str];
1035 }
1036
1037 /**
1038 * @access private
1039 */
1040 function haveMsg( $str ) {
1041 $msg = $this->translator->translate( $str );
1042 return ($msg != '-') && ($msg != ''); # ????
1043 }
1044 }
1045
1046 } // end of if( defined( 'MEDIAWIKI' ) )
1047 ?>