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