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