2004-03-22 23:36:20 +00:00
|
|
|
<?php
|
2004-04-02 10:30:41 +00:00
|
|
|
# Generic PHPTal (http://phptal.sourceforge.net/) skin
|
|
|
|
|
# Based on Brion's smarty skin
|
|
|
|
|
# Copyright (C) Gabriel Wicke -- http://www.aulinx.de/
|
|
|
|
|
#
|
|
|
|
|
# Todo: Needs some serious refactoring into functions that correspond
|
|
|
|
|
# to the computations individual esi snippets need. Most importantly no body
|
|
|
|
|
# parsing for most of those of course.
|
|
|
|
|
#
|
|
|
|
|
# Set this in LocalSettings to enable phptal:
|
|
|
|
|
# set_include_path(get_include_path() . ":" . $IP.'/PHPTAL-NP-0.7.0/libs');
|
|
|
|
|
# $wgUsePHPTal = true;
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
# http://www.gnu.org/copyleft/gpl.html
|
2004-03-22 23:36:20 +00:00
|
|
|
|
|
|
|
|
require_once "PHPTAL.php";
|
|
|
|
|
|
|
|
|
|
class MediaWiki_I18N extends PHPTAL_I18N
|
|
|
|
|
{
|
|
|
|
|
var $_context = array();
|
|
|
|
|
|
|
|
|
|
function set($varName, $value)
|
|
|
|
|
{
|
|
|
|
|
$this->_context[$varName] = $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function translate($value)
|
|
|
|
|
{
|
|
|
|
|
$value = wfMsg( $value );
|
|
|
|
|
|
|
|
|
|
// interpolate variables
|
|
|
|
|
while (preg_match('/\$([0-9]*?)/sm', $value, $m)) {
|
|
|
|
|
list($src, $var) = $m;
|
|
|
|
|
$varValue = $this->_context[$var];
|
|
|
|
|
$value = str_replace($src, $varValue, $value);
|
|
|
|
|
}
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class SkinPHPTal extends Skin {
|
|
|
|
|
var $template;
|
|
|
|
|
|
2004-04-10 11:19:33 +00:00
|
|
|
function initPage( &$out ) {
|
|
|
|
|
parent::initPage( $out );
|
2004-03-22 23:36:20 +00:00
|
|
|
$this->skinname = "davinci";
|
2004-03-26 23:13:18 +00:00
|
|
|
$this->template = "xhtml_slim";
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function outputPage( &$out ) {
|
|
|
|
|
global $wgTitle, $wgArticle, $wgUser, $wgLang, $wgOut;
|
2004-04-15 22:28:28 +00:00
|
|
|
global $wgScript, $wgStyleSheetPath, $wgLanguageCode, $wgUseNewInterlanguage;
|
2004-04-09 04:53:52 +00:00
|
|
|
global $wgMimeType, $wgOutputEncoding, $wgUseDatabaseMessages, $wgRequest;
|
2004-04-22 09:28:54 +00:00
|
|
|
global $wgDisableCounters, $wgLogo;
|
2004-04-15 21:32:12 +00:00
|
|
|
|
|
|
|
|
extract( $wgRequest->getValues( 'oldid', 'diff' ) );
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
$this->thispage = $wgTitle->getPrefixedDbKey();
|
|
|
|
|
$this->loggedin = $wgUser->getID() != 0;
|
|
|
|
|
$this->username = $wgUser->getName();
|
|
|
|
|
$this->userpage = $wgLang->getNsText( Namespace::getUser() ) . ":" . $wgUser->getName();
|
|
|
|
|
$this->titletxt = $wgTitle->getPrefixedText();
|
|
|
|
|
|
2004-04-10 11:19:33 +00:00
|
|
|
$this->initPage( $out );
|
2004-03-26 23:13:18 +00:00
|
|
|
$tpl = new PHPTAL($this->template . '.pt', 'templates');
|
2004-04-02 17:15:29 +00:00
|
|
|
|
2004-03-23 19:08:22 +00:00
|
|
|
#if ( $wgUseDatabaseMessages ) { // uncomment this to fall back to GetText
|
|
|
|
|
$tpl->setTranslator(new MediaWiki_I18N());
|
|
|
|
|
#}
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
$tpl->setRef( "title", &$this->titletxt ); // ?
|
2004-04-11 01:25:00 +00:00
|
|
|
$tpl->set( "pagetitle", wfMsg( "pagetitle", $this->titletxt ) );
|
2004-04-02 17:15:29 +00:00
|
|
|
$tpl->setRef( "thispage", &$this->thispage );
|
2004-03-22 23:36:20 +00:00
|
|
|
$tpl->set( "subtitle", $out->getSubtitle() );
|
2004-04-16 00:07:41 +00:00
|
|
|
$tpl->set( 'catlinks', getCategories());
|
2004-04-09 21:19:44 +00:00
|
|
|
$tpl->setRef( 'mimetype', &$wgMimeType );
|
|
|
|
|
$tpl->setRef( 'charset', &$wgOutputEncoding );
|
2004-04-09 04:53:52 +00:00
|
|
|
$tpl->set( 'headlinks', $out->getHeadLinks() );
|
2004-04-09 21:19:44 +00:00
|
|
|
$tpl->setRef( 'skinname', &$this->skinname );
|
2004-04-02 17:15:29 +00:00
|
|
|
$tpl->setRef( "loggedin", &$this->loggedin );
|
2004-04-07 22:54:28 +00:00
|
|
|
/* XXX currently unused, might get useful later
|
2004-04-07 13:56:47 +00:00
|
|
|
$tpl->set( "editable", ($wgTitle->getNamespace() != NS_SPECIAL ) );
|
2004-03-22 23:36:20 +00:00
|
|
|
$tpl->set( "exists", $wgTitle->getArticleID() != 0 );
|
|
|
|
|
$tpl->set( "watch", $wgTitle->userIsWatching() ? "unwatch" : "watch" );
|
|
|
|
|
$tpl->set( "protect", count($wgTitle->getRestrictions()) ? "unprotect" : "protect" );
|
|
|
|
|
$tpl->set( "helppage", wfMsg('helppage'));
|
2004-04-07 22:54:28 +00:00
|
|
|
$tpl->set( "sysop", $wgUser->isSysop() );
|
|
|
|
|
*/
|
2004-04-15 22:25:57 +00:00
|
|
|
$tpl->setRef( "searchaction", &$wgScript );
|
2004-03-23 19:08:22 +00:00
|
|
|
$tpl->setRef( "stylepath", &$wgStyleSheetPath );
|
2004-04-22 09:28:54 +00:00
|
|
|
$tpl->setRef( "logopath", &$wgLogo );
|
2004-03-23 19:08:22 +00:00
|
|
|
$tpl->setRef( "lang", &$wgLanguageCode );
|
|
|
|
|
$tpl->set( "langname", $wgLang->getLanguageName( $wgLanguageCode ) );
|
2004-04-02 17:15:29 +00:00
|
|
|
$tpl->setRef( "username", &$this->username );
|
|
|
|
|
$tpl->setRef( "userpage", &$this->userpage);
|
2004-03-23 19:08:22 +00:00
|
|
|
if( $wgUser->getNewtalk() ) {
|
2004-04-07 14:27:25 +00:00
|
|
|
$usertitle = Title::newFromText( $this->userpage );
|
|
|
|
|
$usertalktitle = $usertitle->getTalkPage();
|
|
|
|
|
if($usertalktitle->getPrefixedDbKey() != $this->thispage){
|
|
|
|
|
|
|
|
|
|
$ntl = wfMsg( "newmessages",
|
|
|
|
|
$this->makeKnownLink(
|
|
|
|
|
$wgLang->getNsText( Namespace::getTalk( Namespace::getUser() ) )
|
|
|
|
|
. ":" . $wgUser->getName(),
|
|
|
|
|
wfMsg("newmessageslink") )
|
|
|
|
|
);
|
|
|
|
|
}
|
2004-03-23 19:08:22 +00:00
|
|
|
} else {
|
|
|
|
|
$ntl = "";
|
|
|
|
|
}
|
2004-04-07 22:54:28 +00:00
|
|
|
|
2004-03-23 19:08:22 +00:00
|
|
|
$tpl->setRef( "newtalk", &$ntl );
|
|
|
|
|
$tpl->setRef( "skin", &$this);
|
|
|
|
|
$tpl->set( "logo", $this->logoText() );
|
2004-04-15 21:32:12 +00:00
|
|
|
if ( $wgOut->isArticle() and (!isset( $oldid ) or isset( $diff )) and 0 != $wgArticle->getID() ) {
|
|
|
|
|
if ( !$wgDisableCounters ) {
|
|
|
|
|
$viewcount = $wgLang->formatNum( $wgArticle->getCount() );
|
|
|
|
|
if ( $viewcount ) {
|
|
|
|
|
$tpl->set('viewcount', wfMsg( "viewcount", $viewcount ));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$tpl->set('lastmod', $this->lastModified());
|
|
|
|
|
$tpl->set('copyright',$this->getCopyright());
|
|
|
|
|
}
|
|
|
|
|
$tpl->set( "copyrightico", $this->getCopyrightIcon() );
|
|
|
|
|
$tpl->set( "poweredbyico", $this->getPoweredBy() );
|
2004-03-26 23:13:18 +00:00
|
|
|
$tpl->set( "disclaimer", $this->disclaimerLink() );
|
|
|
|
|
$tpl->set( "about", $this->aboutLink() );
|
2004-03-23 19:08:22 +00:00
|
|
|
|
|
|
|
|
$tpl->setRef( "debug", &$out->mDebugtext );
|
|
|
|
|
$tpl->set( "reporttime", $out->reportTime() );
|
|
|
|
|
|
|
|
|
|
$tpl->setRef( "bodytext", &$out->mBodytext );
|
2004-03-22 23:36:20 +00:00
|
|
|
|
|
|
|
|
$language_urls = array();
|
|
|
|
|
foreach( $wgOut->getLanguageLinks() as $l ) {
|
|
|
|
|
$nt = Title::newFromText( $l );
|
|
|
|
|
$language_urls[] = array('href' => $nt->getFullURL(),
|
|
|
|
|
'text' => ($wgLang->getLanguageName( $nt->getInterwiki()) != ''?$wgLang->getLanguageName( $nt->getInterwiki()) : $l),
|
|
|
|
|
'class' => $wgLang->isRTL() ? 'rtl' : 'ltr');
|
|
|
|
|
}
|
|
|
|
|
if(count($language_urls) != 0 ) {
|
|
|
|
|
$tpl->setRef( 'language_urls', &$language_urls);
|
|
|
|
|
} else {
|
|
|
|
|
$tpl->set('language_urls', false);
|
|
|
|
|
}
|
2004-04-02 17:15:29 +00:00
|
|
|
$tpl->set('personal_urls', $this->buildPersonalUrls());
|
2004-04-07 22:54:28 +00:00
|
|
|
$content_actions = $this->buildContentActionUrls();
|
|
|
|
|
$tpl->setRef('content_actions', &$content_actions);
|
2004-04-15 12:44:31 +00:00
|
|
|
// XXX: attach this from javascript, same with section editing
|
|
|
|
|
if(isset($content_actions['edit']['href']) &&
|
|
|
|
|
!(isset($content_actions['edit']['class']) && $content_actions['edit']['class'] != '') &&
|
|
|
|
|
$wgUser->getOption("editondblclick") )
|
|
|
|
|
{
|
2004-04-07 22:54:28 +00:00
|
|
|
$tpl->set('body-ondblclick', 'document.location = "' .$content_actions['edit']['href'] .'";');
|
|
|
|
|
} else {
|
|
|
|
|
$tpl->set('body-ondblclick', '');
|
|
|
|
|
}
|
2004-04-02 17:15:29 +00:00
|
|
|
$tpl->set( "nav_urls", $this->buildNavUrls() );
|
|
|
|
|
|
|
|
|
|
// execute template
|
|
|
|
|
$res = $tpl->execute();
|
|
|
|
|
// result may be an error
|
|
|
|
|
if (PEAR::isError($res)) {
|
|
|
|
|
echo $res->toString(), "\n";
|
|
|
|
|
} else {
|
|
|
|
|
echo $res;
|
|
|
|
|
}
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# build array of urls for personal toolbar
|
|
|
|
|
function buildPersonalUrls() {
|
2004-03-23 19:08:22 +00:00
|
|
|
/* set up the default links for the personal toolbar */
|
|
|
|
|
$personal_urls = array();
|
2004-04-02 17:15:29 +00:00
|
|
|
if ($this->loggedin) {
|
|
|
|
|
$personal_urls['userpage'] = array('text' => $this->username,
|
|
|
|
|
'href' => $this->makeUrl($this->userpage),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-userpage'),
|
|
|
|
|
'akey' => wfMsg('accesskey-userpage'));
|
|
|
|
|
$personal_urls['mytalk'] = array('text' => wfMsg('mytalk'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeTalkUrl($this->userpage),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-mytalk'),
|
|
|
|
|
'akey' => wfMsg('accesskey-mytalk'));
|
|
|
|
|
$personal_urls['preferences'] = array('text' => wfMsg('preferences'),
|
|
|
|
|
'href' => $this->makeSpecialUrl('Preferences'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-preferences'),
|
|
|
|
|
'akey' => wfMsg('accesskey-preferences'));
|
|
|
|
|
$personal_urls['watchlist'] = array('text' => wfMsg('watchlist'),
|
|
|
|
|
'href' => $this->makeSpecialUrl('Watchlist'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-watchlist'),
|
|
|
|
|
'akey' => wfMsg('accesskey-watchlist'));
|
|
|
|
|
$personal_urls['mycontris'] = array('text' => wfMsg('mycontris'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeSpecialUrl('Contributions','target=' . $this->username),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-mycontris'),
|
|
|
|
|
'akey' => wfMsg('accesskey-mycontris'));
|
|
|
|
|
$personal_urls['logout'] = array('text' => wfMsg('userlogout'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeSpecialUrl('Userlogout','returnpage=' . $this->thispage),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-logout'),
|
|
|
|
|
'akey' => wfMsg('accesskey-logout'));
|
|
|
|
|
} else {
|
|
|
|
|
$personal_urls['login'] = array('text' => wfMsg('userlogin'),
|
|
|
|
|
'href' => $this->makeSpecialUrl('Userlogin'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-login'),
|
|
|
|
|
'akey' => wfMsg('accesskey-login'));
|
|
|
|
|
}
|
2004-04-02 17:15:29 +00:00
|
|
|
return $personal_urls;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# an array of edit links by default used for the tabs
|
|
|
|
|
function buildContentActionUrls () {
|
|
|
|
|
global $wgTitle, $wgUser, $wgRequest;
|
|
|
|
|
$action = $wgRequest->getText( 'action' );
|
|
|
|
|
$oldid = $wgRequest->getVal( 'oldid' );
|
|
|
|
|
$diff = $wgRequest->getVal( 'diff' );
|
2004-03-22 23:36:20 +00:00
|
|
|
$content_actions = array();
|
2004-03-23 19:08:22 +00:00
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
$iscontent = ($wgTitle->getNamespace() != Namespace::getSpecial() );
|
|
|
|
|
if( $iscontent) {
|
|
|
|
|
|
2004-03-23 19:08:22 +00:00
|
|
|
$content_actions['article'] = array('class' => (!Namespace::isTalk( $wgTitle->getNamespace())) ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('article'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeArticleUrl($this->thispage),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-article'),
|
|
|
|
|
'akey' => wfMsg('accesskey-article'));
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-04-07 14:27:25 +00:00
|
|
|
/* set up the classes for the talk link */
|
|
|
|
|
$talk_class = (Namespace::isTalk( $wgTitle->getNamespace()) ? 'selected' : '');
|
|
|
|
|
$talktitle = Title::newFromText( $this->titletxt );
|
|
|
|
|
$talktitle = $talktitle->getTalkPage();
|
2004-04-15 11:22:36 +00:00
|
|
|
$this->checkTitle(&$talktitle, &$this->titletxt);
|
|
|
|
|
if($talktitle->getArticleId() != 0) {
|
|
|
|
|
$content_actions['talk'] = array(
|
|
|
|
|
'class' => $talk_class,
|
|
|
|
|
'text' => wfMsg('talk'),
|
|
|
|
|
'href' => $this->makeTalkUrl($this->titletxt),
|
|
|
|
|
'ttip' => wfMsg('tooltip-talk'),
|
|
|
|
|
'akey' => wfMsg('accesskey-talk')
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$content_actions['talk'] = array(
|
|
|
|
|
'class' => $talk_class.' new',
|
|
|
|
|
'text' => wfMsg('talk'),
|
|
|
|
|
'href' => $this->makeTalkUrl($this->titletxt,'action=edit'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-talk'),
|
|
|
|
|
'akey' => wfMsg('accesskey-talk')
|
|
|
|
|
);
|
|
|
|
|
}
|
2004-03-22 23:36:20 +00:00
|
|
|
|
|
|
|
|
if ( $wgTitle->userCanEdit() ) {
|
2004-04-08 20:06:29 +00:00
|
|
|
$oid = ( $oldid && ! isset( $diff ) ) ? "&oldid={$oldid}" : '';
|
2004-04-07 14:27:25 +00:00
|
|
|
$content_actions['edit'] = array(
|
|
|
|
|
'class' => ($action == 'edit' or $action == 'submit') ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('edit'),
|
|
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=edit'.$oid),
|
|
|
|
|
'ttip' => wfMsg('tooltip-edit'),
|
|
|
|
|
'akey' => wfMsg('accesskey-edit')
|
|
|
|
|
);
|
2004-03-22 23:36:20 +00:00
|
|
|
} else {
|
2004-04-08 20:06:29 +00:00
|
|
|
$oid = ( $oldid && ! isset( $diff ) ) ? "&oldid={$oldid}" : '';
|
2004-03-22 23:36:20 +00:00
|
|
|
$content_actions['edit'] = array('class' => ($action == 'edit') ? 'selected' : '',
|
2004-03-23 19:08:22 +00:00
|
|
|
'text' => wfMsg('viewsource'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=edit'.$oid),
|
2004-04-12 18:43:26 +00:00
|
|
|
'ttip' => wfMsg('tooltip-viewsource'),
|
|
|
|
|
'akey' => wfMsg('accesskey-viewsource'));
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
|
2004-03-23 19:44:30 +00:00
|
|
|
if ( $wgTitle->getArticleId() ) {
|
|
|
|
|
|
|
|
|
|
$content_actions['history'] = array('class' => ($action == 'history') ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('history_short'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=history'),
|
2004-03-23 19:44:30 +00:00
|
|
|
'ttip' => wfMsg('tooltip-history'),
|
|
|
|
|
'akey' => wfMsg('accesskey-history'));
|
|
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
# XXX: is there a rollback action anywhere or is it planned?
|
|
|
|
|
# Don't recall where i got this from...
|
|
|
|
|
/*if( $wgUser->getNewtalk() ) {
|
2004-03-23 19:44:30 +00:00
|
|
|
$content_actions['rollback'] = array('class' => ($action == 'rollback') ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('rollback_short'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=rollback'),
|
2004-03-23 19:44:30 +00:00
|
|
|
'ttip' => wfMsg('tooltip-rollback'),
|
|
|
|
|
'akey' => wfMsg('accesskey-rollback'));
|
2004-04-02 17:15:29 +00:00
|
|
|
}*/
|
|
|
|
|
|
2004-03-23 19:44:30 +00:00
|
|
|
if($wgUser->isSysop()){
|
|
|
|
|
if(!$wgTitle->isProtected()){
|
2004-04-20 10:52:56 +00:00
|
|
|
$content_actions['protect'] = array(
|
|
|
|
|
'class' => ($action == 'protect') ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('protect'),
|
|
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=protect'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-protect'),
|
|
|
|
|
'akey' => wfMsg('accesskey-protect')
|
|
|
|
|
);
|
2004-03-23 19:44:30 +00:00
|
|
|
|
|
|
|
|
} else {
|
2004-04-20 10:52:56 +00:00
|
|
|
$content_actions['unprotect'] = array(
|
|
|
|
|
'class' => ($action == 'unprotect') ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('unprotect'),
|
|
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=unprotect'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-protect'),
|
|
|
|
|
'akey' => wfMsg('accesskey-protect')
|
|
|
|
|
);
|
2004-03-23 19:44:30 +00:00
|
|
|
}
|
2004-04-20 10:52:56 +00:00
|
|
|
$content_actions['delete'] = array(
|
|
|
|
|
'class' => ($action == 'delete') ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('delete'),
|
|
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=delete'),
|
|
|
|
|
'ttip' => wfMsg('tooltip-delete'),
|
|
|
|
|
'akey' => wfMsg('accesskey-delete')
|
|
|
|
|
);
|
2004-03-23 19:44:30 +00:00
|
|
|
}
|
|
|
|
|
if ( $wgUser->getID() != 0 ) {
|
|
|
|
|
if ( $wgTitle->userCanEdit()) {
|
|
|
|
|
$content_actions['move'] = array('class' => ($wgTitle->getDbKey() == 'Movepage' and $wgTitle->getNamespace == Namespace::getSpecial()) ? 'selected' : '',
|
|
|
|
|
'text' => wfMsg('move'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeSpecialUrl('Movepage', 'target='.$this->thispage),
|
2004-03-23 19:44:30 +00:00
|
|
|
'ttip' => wfMsg('tooltip-move'),
|
|
|
|
|
'akey' => wfMsg('accesskey-move'));
|
|
|
|
|
} else {
|
|
|
|
|
$content_actions['move'] = array('class' => 'inactive',
|
|
|
|
|
'text' => wfMsg('move'),
|
2004-03-30 00:25:14 +00:00
|
|
|
'href' => false,
|
2004-04-02 17:15:29 +00:00
|
|
|
'ttip' => wfMsg('tooltip-nomove'),
|
2004-03-30 00:25:14 +00:00
|
|
|
'akey' => false);
|
2004-03-23 19:44:30 +00:00
|
|
|
|
|
|
|
|
}
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
2004-04-20 10:52:56 +00:00
|
|
|
} else {
|
|
|
|
|
//article doesn't exist or is deleted
|
|
|
|
|
if($wgUser->isSysop()){
|
|
|
|
|
if( $n = $wgTitle->isDeleted() ) {
|
|
|
|
|
$content_actions['delete'] = array(
|
|
|
|
|
'class' => '',
|
|
|
|
|
'text' => wfMsg( "undelete_short", $n ),
|
|
|
|
|
'href' => $this->makeSpecialUrl('Undelete/'.$this->thispage),
|
|
|
|
|
'ttip' => wfMsg('tooltip-undelete', $n),
|
|
|
|
|
'akey' => wfMsg('accesskey-undelete')
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
2004-04-02 17:15:29 +00:00
|
|
|
|
2004-03-22 23:36:20 +00:00
|
|
|
if ( $wgUser->getID() != 0 and $action != 'edit' and $action != 'submit' ) {
|
|
|
|
|
if( !$wgTitle->userIsWatching()) {
|
|
|
|
|
$content_actions['watch'] = array('class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : '',
|
2004-03-23 19:08:22 +00:00
|
|
|
'text' => wfMsg('watch'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=watch'),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-watch'),
|
2004-03-22 23:36:20 +00:00
|
|
|
'akey' => wfMsg('accesskey-watch'));
|
|
|
|
|
} else {
|
|
|
|
|
$content_actions['watch'] = array('class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : '',
|
2004-03-23 19:08:22 +00:00
|
|
|
'text' => wfMsg('unwatch'),
|
2004-04-02 17:15:29 +00:00
|
|
|
'href' => $this->makeUrl($this->thispage, 'action=unwatch'),
|
2004-03-23 19:08:22 +00:00
|
|
|
'ttip' => wfMsg('tooltip-unwatch'),
|
|
|
|
|
'akey' => wfMsg('accesskey-unwatch'));
|
2004-03-22 23:36:20 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2004-03-30 00:25:14 +00:00
|
|
|
/* show special page tab */
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-03-23 19:08:22 +00:00
|
|
|
$content_actions['article'] = array('class' => 'selected',
|
2004-03-24 17:18:35 +00:00
|
|
|
'text' => wfMsg('specialpage'),
|
2004-03-30 00:25:14 +00:00
|
|
|
'href' => false,
|
2004-03-24 17:18:35 +00:00
|
|
|
'ttip' => wfMsg('tooltip-specialpage'),
|
2004-03-30 00:25:14 +00:00
|
|
|
'akey' => false);
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
return $content_actions;
|
|
|
|
|
}
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
# build array of common navigation links
|
|
|
|
|
function buildNavUrls () {
|
|
|
|
|
global $wgTitle, $wgUser, $wgRequest;
|
|
|
|
|
global $wgSiteSupportPage;
|
|
|
|
|
|
|
|
|
|
$action = $wgRequest->getText( 'action' );
|
|
|
|
|
$oldid = $wgRequest->getVal( 'oldid' );
|
|
|
|
|
$diff = $wgRequest->getVal( 'diff' );
|
2004-04-07 14:27:25 +00:00
|
|
|
// XXX: remove htmlspecialchars when tal:attributes works with i18n:attributes
|
2004-03-23 19:08:22 +00:00
|
|
|
$nav_urls = array();
|
2004-04-07 06:53:42 +00:00
|
|
|
$nav_urls['mainpage'] = array('href' => htmlspecialchars( $this->makeI18nUrl('mainpage')));
|
|
|
|
|
$nav_urls['randompage'] = array('href' => htmlspecialchars( $this->makeSpecialUrl('Randompage')));
|
|
|
|
|
$nav_urls['recentchanges'] = array('href' => htmlspecialchars( $this->makeSpecialUrl('Recentchanges')));
|
|
|
|
|
$nav_urls['whatlinkshere'] = array('href' => htmlspecialchars( $this->makeSpecialUrl('Whatlinkshere', 'target='.$this->thispage)));
|
2004-04-09 18:11:58 +00:00
|
|
|
$nav_urls['currentevents'] = (wfMsg('currentevents') != '') ? array('href' => htmlspecialchars( $this->makeI18nUrl('currentevents'))) : '';
|
2004-04-09 21:19:44 +00:00
|
|
|
$nav_urls['portal'] = (wfMsg('portal') != '') ? array('href' => htmlspecialchars( $this->makeI18nUrl('portal-url'))) : '';
|
2004-04-07 06:53:42 +00:00
|
|
|
$nav_urls['recentchangeslinked'] = array('href' => htmlspecialchars( $this->makeSpecialUrl('Recentchangeslinked', 'target='.$this->thispage)));
|
|
|
|
|
$nav_urls['bugreports'] = array('href' => htmlspecialchars( $this->makeI18nUrl('bugreportspage')));
|
|
|
|
|
// $nav_urls['sitesupport'] = array('href' => htmlspecialchars( $this->makeI18nUrl('sitesupportpage')));
|
|
|
|
|
$nav_urls['sitesupport'] = array('href' => htmlspecialchars( $wgSiteSupportPage));
|
|
|
|
|
$nav_urls['help'] = array('href' => htmlspecialchars( $this->makeI18nUrl('helppage')));
|
|
|
|
|
$nav_urls['upload'] = array('href' => htmlspecialchars( $this->makeSpecialUrl('Upload')));
|
|
|
|
|
$nav_urls['specialpages'] = array('href' => htmlspecialchars( $this->makeSpecialUrl('Specialpages')));
|
2004-04-21 19:23:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
$id=User::idFromName($wgTitle->getText());
|
|
|
|
|
$ip=User::isIP($wgTitle->getText());
|
|
|
|
|
|
|
|
|
|
if($id || $ip) { # both anons and non-anons have contri list
|
|
|
|
|
$nav_urls['contributions'] = array(
|
|
|
|
|
'href' => htmlspecialchars( $this->makeSpecialUrl('Contributions', "target=" . $wgTitle->getPartialURL() ) )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if ( 0 != $wgUser->getID() ) { # show only to signed in users
|
|
|
|
|
if($id) { # can only email non-anons
|
|
|
|
|
$nav_urls['emailuser'] = array(
|
|
|
|
|
'href' => htmlspecialchars( $this->makeSpecialUrl('Emailuser', "target=" . $wgTitle->getPartialURL() ) )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-22 23:36:20 +00:00
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
return $nav_urls;
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*static*/ function makeSpecialUrl( $name, $urlaction='' ) {
|
|
|
|
|
$title = Title::makeTitle( NS_SPECIAL, $name );
|
2004-04-02 17:15:29 +00:00
|
|
|
$this->checkTitle(&$title, &$name);
|
2004-03-23 23:37:59 +00:00
|
|
|
return $title->getLocalURL( $urlaction );
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
/*static*/ function makeTalkUrl ( $name, $urlaction='' ) {
|
|
|
|
|
$title = Title::newFromText( $name );
|
|
|
|
|
$title = $title->getTalkPage();
|
2004-04-02 17:15:29 +00:00
|
|
|
$this->checkTitle(&$title, &$name);
|
2004-03-23 23:37:59 +00:00
|
|
|
return $title->getLocalURL( $urlaction );
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
/*static*/ function makeArticleUrl ( $name, $urlaction='' ) {
|
|
|
|
|
$title = Title::newFromText( $name );
|
|
|
|
|
$title= $title->getSubjectPage();
|
2004-04-02 17:15:29 +00:00
|
|
|
$this->checkTitle(&$title, &$name);
|
2004-03-23 23:37:59 +00:00
|
|
|
return $title->getLocalURL( $urlaction );
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
/*static*/ function makeI18nUrl ( $name, $urlaction='' ) {
|
|
|
|
|
$title = Title::newFromText( wfMsg($name) );
|
2004-04-02 17:15:29 +00:00
|
|
|
$this->checkTitle(&$title, &$name);
|
2004-03-23 23:37:59 +00:00
|
|
|
return $title->getLocalURL( $urlaction );
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
/*static*/ function makeUrl ( $name, $urlaction='' ) {
|
|
|
|
|
$title = Title::newFromText( $name );
|
2004-04-02 17:15:29 +00:00
|
|
|
$this->checkTitle(&$title, &$name);
|
2004-03-23 23:37:59 +00:00
|
|
|
return $title->getLocalURL( $urlaction );
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
|
2004-04-02 17:15:29 +00:00
|
|
|
# make sure we have some title to operate on, mind the '&'
|
|
|
|
|
/*static*/ function checkTitle ( &$title, &$name ) {
|
|
|
|
|
if(!is_object($title)) {
|
|
|
|
|
$title = Title::newFromText( $name );
|
|
|
|
|
if(!is_object($title)) {
|
|
|
|
|
$title = Title::newFromText( '<error: link target missing>' );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class SkinDaVinci extends SkinPHPTal {
|
2004-04-10 11:19:33 +00:00
|
|
|
function initPage( &$out ) {
|
|
|
|
|
SkinPHPTal::initPage( $out );
|
2004-03-22 23:36:20 +00:00
|
|
|
$this->skinname = "davinci";
|
2004-03-26 23:13:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class SkinMono extends SkinPHPTal {
|
2004-04-10 11:19:33 +00:00
|
|
|
function initPage( &$out ) {
|
|
|
|
|
SkinPHPTal::initPage( $out );
|
2004-03-26 23:13:18 +00:00
|
|
|
$this->skinname = "mono";
|
2004-03-22 23:36:20 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-30 00:25:14 +00:00
|
|
|
class SkinMonoBook extends SkinPHPTal {
|
2004-04-10 11:19:33 +00:00
|
|
|
function initPage( &$out ) {
|
|
|
|
|
SkinPHPTal::initPage( $out );
|
2004-03-30 00:25:14 +00:00
|
|
|
$this->skinname = "monobook";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-22 23:36:20 +00:00
|
|
|
?>
|