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