2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2006-01-07 12:25:36 +00:00
|
|
|
if ( ! defined( 'MEDIAWIKI' ) )
|
2006-06-07 06:40:24 +00:00
|
|
|
die( 1 );
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-08-12 06:54:58 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class OutputPage {
|
2006-06-23 03:56:03 +00:00
|
|
|
var $mMetatags, $mKeywords;
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mLinktags, $mPagetitle, $mBodytext, $mDebugtext;
|
|
|
|
|
var $mHTMLtitle, $mRobotpolicy, $mIsarticle, $mPrintable;
|
|
|
|
|
var $mSubtitle, $mRedirect, $mStatusCode;
|
|
|
|
|
var $mLastModified, $mETag, $mCategoryLinks;
|
|
|
|
|
var $mScripts, $mLinkColours, $mPageLinkTitle;
|
|
|
|
|
|
|
|
|
|
var $mSuppressQuickbar;
|
|
|
|
|
var $mOnloadHandler;
|
|
|
|
|
var $mDoNothing;
|
|
|
|
|
var $mContainsOldMagic, $mContainsNewMagic;
|
|
|
|
|
var $mIsArticleRelated;
|
|
|
|
|
var $mParserOptions;
|
|
|
|
|
var $mShowFeedLinks = false;
|
|
|
|
|
var $mEnableClientCache = true;
|
|
|
|
|
var $mArticleBodyOnly = false;
|
|
|
|
|
|
|
|
|
|
var $mNewSectionLink = false;
|
2006-06-13 18:35:11 +00:00
|
|
|
var $mNoGallery = false;
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
/**
|
|
|
|
|
* Constructor
|
|
|
|
|
* Initialise private variables
|
|
|
|
|
*/
|
|
|
|
|
function OutputPage() {
|
2006-06-23 03:56:03 +00:00
|
|
|
$this->mMetatags = $this->mKeywords = $this->mLinktags = array();
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mHTMLtitle = $this->mPagetitle = $this->mBodytext =
|
2004-02-26 13:37:26 +00:00
|
|
|
$this->mRedirect = $this->mLastModified =
|
2004-07-08 14:53:54 +00:00
|
|
|
$this->mSubtitle = $this->mDebugtext = $this->mRobotpolicy =
|
2006-04-11 10:16:27 +00:00
|
|
|
$this->mOnloadHandler = $this->mPageLinkTitle = '';
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->mIsArticleRelated = $this->mIsarticle = $this->mPrintable = true;
|
2004-02-26 13:37:26 +00:00
|
|
|
$this->mSuppressQuickbar = $this->mPrintable = false;
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mLanguageLinks = array();
|
2006-04-11 10:16:27 +00:00
|
|
|
$this->mCategoryLinks = array();
|
2003-12-11 20:16:34 +00:00
|
|
|
$this->mDoNothing = false;
|
2004-01-07 02:51:47 +00:00
|
|
|
$this->mContainsOldMagic = $this->mContainsNewMagic = 0;
|
2006-07-11 17:46:30 +00:00
|
|
|
$this->mParserOptions = ParserOptions::newFromUser( NULL );
|
2004-03-13 13:42:17 +00:00
|
|
|
$this->mSquidMaxage = 0;
|
2004-09-17 15:24:43 +00:00
|
|
|
$this->mScripts = '';
|
2005-07-01 00:03:31 +00:00
|
|
|
$this->mETag = false;
|
2005-11-27 06:04:41 +00:00
|
|
|
$this->mRevisionId = null;
|
2006-05-01 20:35:08 +00:00
|
|
|
$this->mNewSectionLink = false;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2006-06-23 03:56:03 +00:00
|
|
|
|
|
|
|
|
function redirect( $url, $responsecode = '302' ) {
|
|
|
|
|
# Strip newlines as a paranoia check for header injection in PHP<5.1.2
|
|
|
|
|
$this->mRedirect = str_replace( "\n", '', $url );
|
|
|
|
|
$this->mRedirectCode = $responsecode;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-10-12 03:12:40 +00:00
|
|
|
function setStatusCode( $statusCode ) { $this->mStatusCode = $statusCode; }
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# To add an http-equiv meta tag, precede the name with "http:"
|
|
|
|
|
function addMeta( $name, $val ) { array_push( $this->mMetatags, array( $name, $val ) ); }
|
|
|
|
|
function addKeyword( $text ) { array_push( $this->mKeywords, $text ); }
|
2004-05-17 23:18:37 +00:00
|
|
|
function addScript( $script ) { $this->mScripts .= $script; }
|
|
|
|
|
function getScript() { return $this->mScripts; }
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2005-07-01 00:03:31 +00:00
|
|
|
function setETag($tag) { $this->mETag = $tag; }
|
2005-07-03 04:00:33 +00:00
|
|
|
function setArticleBodyOnly($only) { $this->mArticleBodyOnly = $only; }
|
2005-07-03 04:56:53 +00:00
|
|
|
function getArticleBodyOnly($only) { return $this->mArticleBodyOnly; }
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2004-04-10 11:19:33 +00:00
|
|
|
function addLink( $linkarr ) {
|
|
|
|
|
# $linkarr should be an associative array of attributes. We'll escape on output.
|
|
|
|
|
array_push( $this->mLinktags, $linkarr );
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-04-10 11:19:33 +00:00
|
|
|
function addMetadataLink( $linkarr ) {
|
|
|
|
|
# note: buggy CC software only reads first "meta" link
|
2004-04-04 22:33:11 +00:00
|
|
|
static $haveMeta = false;
|
2004-08-22 17:24:50 +00:00
|
|
|
$linkarr['rel'] = ($haveMeta) ? 'alternate meta' : 'meta';
|
2004-04-10 11:19:33 +00:00
|
|
|
$this->addLink( $linkarr );
|
2004-04-04 22:33:11 +00:00
|
|
|
$haveMeta = true;
|
|
|
|
|
}
|
2004-04-04 21:58:05 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* checkLastModified tells the client to use the client-cached page if
|
|
|
|
|
* possible. If sucessful, the OutputPage is disabled so that
|
|
|
|
|
* any future call to OutputPage->output() have no effect. The method
|
|
|
|
|
* returns true iff cache-ok headers was sent.
|
|
|
|
|
*/
|
2004-09-17 15:24:43 +00:00
|
|
|
function checkLastModified ( $timestamp ) {
|
2006-01-16 10:16:06 +00:00
|
|
|
global $wgCachePages, $wgCacheEpoch, $wgUser;
|
2006-05-12 22:38:58 +00:00
|
|
|
$fname = 'OutputPage::checkLastModified';
|
|
|
|
|
|
2005-03-20 03:59:06 +00:00
|
|
|
if ( !$timestamp || $timestamp == '19700101000000' ) {
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: CACHE DISABLED, NO TIMESTAMP\n" );
|
2005-03-20 03:59:06 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2003-07-10 04:55:41 +00:00
|
|
|
if( !$wgCachePages ) {
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: CACHE DISABLED\n", false );
|
2003-07-10 04:55:41 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2004-08-22 17:24:50 +00:00
|
|
|
if( $wgUser->getOption( 'nocache' ) ) {
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: USER DISABLED CACHE\n", false );
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2004-03-20 15:03:26 +00:00
|
|
|
|
2005-03-20 03:59:06 +00:00
|
|
|
$timestamp=wfTimestamp(TS_MW,$timestamp);
|
2006-01-16 10:16:06 +00:00
|
|
|
$lastmod = wfTimestamp( TS_RFC2822, max( $timestamp, $wgUser->mTouched, $wgCacheEpoch ) );
|
2004-03-20 15:03:26 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
if( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
|
2003-11-09 11:45:12 +00:00
|
|
|
# IE sends sizes after the date like this:
|
2003-08-20 07:45:18 +00:00
|
|
|
# Wed, 20 Aug 2003 06:51:19 GMT; length=5202
|
|
|
|
|
# this breaks strtotime().
|
|
|
|
|
$modsince = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
|
2005-07-04 22:06:39 +00:00
|
|
|
$modsinceTime = strtotime( $modsince );
|
|
|
|
|
$ismodsince = wfTimestamp( TS_MW, $modsinceTime ? $modsinceTime : 1 );
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: -- client send If-Modified-Since: " . $modsince . "\n", false );
|
|
|
|
|
wfDebug( "$fname: -- we might send Last-Modified : $lastmod\n", false );
|
2006-01-16 10:16:06 +00:00
|
|
|
if( ($ismodsince >= $timestamp ) && $wgUser->validateCache( $ismodsince ) && $ismodsince >= $wgCacheEpoch ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
# Make sure you're in a place you can leave when you call us!
|
|
|
|
|
header( "HTTP/1.0 304 Not Modified" );
|
2004-02-02 04:33:48 +00:00
|
|
|
$this->mLastModified = $lastmod;
|
2004-02-02 04:10:46 +00:00
|
|
|
$this->sendCacheControl();
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp ; site $wgCacheEpoch\n", false );
|
2003-12-11 20:16:34 +00:00
|
|
|
$this->disable();
|
2005-07-04 22:24:06 +00:00
|
|
|
@ob_end_clean(); // Don't output compressed blob
|
2003-12-11 20:16:34 +00:00
|
|
|
return true;
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: READY client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp ; site $wgCacheEpoch\n", false );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mLastModified = $lastmod;
|
|
|
|
|
}
|
2003-07-10 04:55:41 +00:00
|
|
|
} else {
|
2006-05-12 22:38:58 +00:00
|
|
|
wfDebug( "$fname: client did not send If-Modified-Since header\n", false );
|
2003-07-10 04:55:41 +00:00
|
|
|
$this->mLastModified = $lastmod;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-25 00:32:24 +00:00
|
|
|
function getPageTitleActionText () {
|
|
|
|
|
global $action;
|
|
|
|
|
switch($action) {
|
|
|
|
|
case 'edit':
|
2005-12-08 02:07:45 +00:00
|
|
|
case 'delete':
|
2004-04-25 00:32:24 +00:00
|
|
|
case 'protect':
|
|
|
|
|
case 'unprotect':
|
|
|
|
|
case 'watch':
|
|
|
|
|
case 'unwatch':
|
2005-12-08 02:07:45 +00:00
|
|
|
// Display title is already customized
|
|
|
|
|
return '';
|
|
|
|
|
case 'history':
|
|
|
|
|
return wfMsg('history_short');
|
2004-04-25 00:32:24 +00:00
|
|
|
case 'submit':
|
2005-12-08 02:07:45 +00:00
|
|
|
// FIXME: bug 2735; not correct for special pages etc
|
2004-04-25 00:32:24 +00:00
|
|
|
return wfMsg('preview');
|
2004-07-08 14:53:54 +00:00
|
|
|
case 'info':
|
|
|
|
|
return wfMsg('info_short');
|
2004-04-25 00:32:24 +00:00
|
|
|
default:
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-09-17 15:24:43 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function setRobotpolicy( $str ) { $this->mRobotpolicy = $str; }
|
2004-04-25 00:32:24 +00:00
|
|
|
function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; }
|
|
|
|
|
function setPageTitle( $name ) {
|
2004-10-08 04:27:07 +00:00
|
|
|
global $action, $wgContLang;
|
2004-10-19 18:03:58 +00:00
|
|
|
$name = $wgContLang->convert($name, true);
|
2004-04-25 00:32:24 +00:00
|
|
|
$this->mPagetitle = $name;
|
|
|
|
|
if(!empty($action)) {
|
|
|
|
|
$taction = $this->getPageTitleActionText();
|
|
|
|
|
if( !empty( $taction ) ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$name .= ' - '.$taction;
|
2004-04-25 00:32:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2005-08-17 12:00:07 +00:00
|
|
|
$this->setHTMLTitle( wfMsg( 'pagetitle', $name ) );
|
2004-04-25 00:32:24 +00:00
|
|
|
}
|
|
|
|
|
function getHTMLTitle() { return $this->mHTMLtitle; }
|
2003-04-14 23:10:40 +00:00
|
|
|
function getPageTitle() { return $this->mPagetitle; }
|
2005-06-25 20:52:14 +00:00
|
|
|
function setSubtitle( $str ) { $this->mSubtitle = /*$this->parse(*/$str/*)*/; } // @bug 2514
|
2003-04-14 23:10:40 +00:00
|
|
|
function getSubtitle() { return $this->mSubtitle; }
|
|
|
|
|
function isArticle() { return $this->mIsarticle; }
|
|
|
|
|
function setPrintable() { $this->mPrintable = true; }
|
|
|
|
|
function isPrintable() { return $this->mPrintable; }
|
2004-03-19 05:31:18 +00:00
|
|
|
function setSyndicated( $show = true ) { $this->mShowFeedLinks = $show; }
|
|
|
|
|
function isSyndicated() { return $this->mShowFeedLinks; }
|
2003-12-10 10:30:14 +00:00
|
|
|
function setOnloadHandler( $js ) { $this->mOnloadHandler = $js; }
|
|
|
|
|
function getOnloadHandler() { return $this->mOnloadHandler; }
|
2003-12-11 20:16:34 +00:00
|
|
|
function disable() { $this->mDoNothing = true; }
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
function setArticleRelated( $v ) {
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->mIsArticleRelated = $v;
|
|
|
|
|
if ( !$v ) {
|
|
|
|
|
$this->mIsarticle = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
function setArticleFlag( $v ) {
|
|
|
|
|
$this->mIsarticle = $v;
|
2004-01-17 09:49:43 +00:00
|
|
|
if ( $v ) {
|
|
|
|
|
$this->mIsArticleRelated = $v;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
function isArticleRelated() { return $this->mIsArticleRelated; }
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
function getLanguageLinks() { return $this->mLanguageLinks; }
|
2004-06-01 18:29:31 +00:00
|
|
|
function addLanguageLinks($newLinkArray) {
|
|
|
|
|
$this->mLanguageLinks += $newLinkArray;
|
|
|
|
|
}
|
|
|
|
|
function setLanguageLinks($newLinkArray) {
|
|
|
|
|
$this->mLanguageLinks = $newLinkArray;
|
|
|
|
|
}
|
2004-09-17 15:24:43 +00:00
|
|
|
|
2004-06-19 06:46:54 +00:00
|
|
|
function getCategoryLinks() {
|
|
|
|
|
return $this->mCategoryLinks;
|
2004-07-08 14:53:54 +00:00
|
|
|
}
|
2005-12-30 09:33:11 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add an array of categories, with names in the keys
|
|
|
|
|
*/
|
|
|
|
|
function addCategoryLinks($categories) {
|
2006-01-05 02:05:53 +00:00
|
|
|
global $wgUser, $wgContLang;
|
2005-12-30 09:33:11 +00:00
|
|
|
|
2006-04-02 03:59:07 +00:00
|
|
|
if ( !is_array( $categories ) ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-12-30 09:33:11 +00:00
|
|
|
# Add the links to the link cache in a batch
|
|
|
|
|
$arr = array( NS_CATEGORY => $categories );
|
|
|
|
|
$lb = new LinkBatch;
|
|
|
|
|
$lb->setArray( $arr );
|
2006-01-05 02:05:53 +00:00
|
|
|
$lb->execute();
|
2005-12-30 09:33:11 +00:00
|
|
|
|
|
|
|
|
$sk =& $wgUser->getSkin();
|
|
|
|
|
foreach ( $categories as $category => $arbitrary ) {
|
|
|
|
|
$title = Title::makeTitleSafe( NS_CATEGORY, $category );
|
|
|
|
|
$text = $wgContLang->convertHtml( $title->getText() );
|
2006-02-25 17:23:23 +00:00
|
|
|
$this->mCategoryLinks[] = $sk->makeLinkObj( $title, $text );
|
2005-12-30 09:33:11 +00:00
|
|
|
}
|
2004-06-19 06:46:54 +00:00
|
|
|
}
|
2005-12-30 09:33:11 +00:00
|
|
|
|
|
|
|
|
function setCategoryLinks($categories) {
|
|
|
|
|
$this->mCategoryLinks = array();
|
|
|
|
|
$this->addCategoryLinks($categories);
|
2004-06-19 06:46:54 +00:00
|
|
|
}
|
|
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
function suppressQuickbar() { $this->mSuppressQuickbar = true; }
|
|
|
|
|
function isQuickbarSuppressed() { return $this->mSuppressQuickbar; }
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
function addHTML( $text ) { $this->mBodytext .= $text; }
|
2004-09-13 07:44:27 +00:00
|
|
|
function clearHTML() { $this->mBodytext = ''; }
|
2005-05-28 11:09:22 +00:00
|
|
|
function getHTML() { return $this->mBodytext; }
|
2003-04-14 23:10:40 +00:00
|
|
|
function debug( $text ) { $this->mDebugtext .= $text; }
|
|
|
|
|
|
2005-12-21 02:38:54 +00:00
|
|
|
/* @deprecated */
|
2004-09-17 15:24:43 +00:00
|
|
|
function setParserOptions( $options ) {
|
2005-12-21 02:38:54 +00:00
|
|
|
return $this->ParserOptions( $options );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ParserOptions( $options = null ) {
|
2004-02-29 08:43:29 +00:00
|
|
|
return wfSetVar( $this->mParserOptions, $options );
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2005-11-27 06:04:41 +00:00
|
|
|
/**
|
|
|
|
|
* Set the revision ID which will be seen by the wiki text parser
|
|
|
|
|
* for things such as embedded {{REVISIONID}} variable use.
|
|
|
|
|
* @param mixed $revid an integer, or NULL
|
|
|
|
|
* @return mixed previous value
|
|
|
|
|
*/
|
|
|
|
|
function setRevisionId( $revid ) {
|
|
|
|
|
$val = is_null( $revid ) ? null : intval( $revid );
|
|
|
|
|
return wfSetVar( $this->mRevisionId, $val );
|
|
|
|
|
}
|
2004-02-29 08:43:29 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Convert wikitext to HTML and add it to the buffer
|
2005-05-21 17:26:42 +00:00
|
|
|
* Default assumes that the current page title will
|
|
|
|
|
* be used.
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2005-05-21 17:26:42 +00:00
|
|
|
function addWikiText( $text, $linestart = true ) {
|
|
|
|
|
global $wgTitle;
|
2005-05-21 17:41:30 +00:00
|
|
|
$this->addWikiTextTitle($text, $wgTitle, $linestart);
|
2005-05-21 17:26:42 +00:00
|
|
|
}
|
|
|
|
|
|
2005-05-21 17:41:30 +00:00
|
|
|
function addWikiTextWithTitle($text, &$title, $linestart = true) {
|
|
|
|
|
$this->addWikiTextTitle($text, $title, $linestart);
|
2005-05-21 17:26:42 +00:00
|
|
|
}
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2005-05-21 17:41:30 +00:00
|
|
|
function addWikiTextTitle($text, &$title, $linestart) {
|
2005-12-04 18:27:59 +00:00
|
|
|
global $wgParser;
|
2006-07-15 19:36:06 +00:00
|
|
|
wfIncrStats('pcache_not_possible');
|
2005-11-27 06:04:41 +00:00
|
|
|
$parserOutput = $wgParser->parse( $text, $title, $this->mParserOptions,
|
|
|
|
|
$linestart, true, $this->mRevisionId );
|
2006-01-01 20:08:08 +00:00
|
|
|
$this->addParserOutput( $parserOutput );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addParserOutputNoText( &$parserOutput ) {
|
2004-08-21 14:56:07 +00:00
|
|
|
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
|
2005-12-30 09:33:11 +00:00
|
|
|
$this->addCategoryLinks( $parserOutput->getCategories() );
|
2006-05-01 20:35:08 +00:00
|
|
|
$this->mNewSectionLink = $parserOutput->getNewSection();
|
2005-12-30 09:33:11 +00:00
|
|
|
$this->addKeywords( $parserOutput );
|
2005-05-28 11:09:22 +00:00
|
|
|
if ( $parserOutput->getCacheTime() == -1 ) {
|
|
|
|
|
$this->enableClientCache( false );
|
|
|
|
|
}
|
2006-04-18 08:28:01 +00:00
|
|
|
if ( $parserOutput->mHTMLtitle != "" ) {
|
|
|
|
|
$this->mPagetitle = $parserOutput->mHTMLtitle ;
|
|
|
|
|
$this->mSubtitle .= $parserOutput->mSubtitle ;
|
|
|
|
|
}
|
2006-01-01 20:08:08 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2006-01-01 20:08:08 +00:00
|
|
|
function addParserOutput( &$parserOutput ) {
|
|
|
|
|
$this->addParserOutputNoText( $parserOutput );
|
2004-08-21 14:56:07 +00:00
|
|
|
$this->addHTML( $parserOutput->getText() );
|
2005-07-01 00:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Add wikitext to the buffer, assuming that this is the primary text for a page view
|
|
|
|
|
* Saves the text into the parser cache if possible
|
|
|
|
|
*/
|
2005-12-30 09:33:11 +00:00
|
|
|
function addPrimaryWikiText( $text, $article, $cache = true ) {
|
2006-01-05 04:26:52 +00:00
|
|
|
global $wgParser, $wgUser;
|
2004-08-21 14:56:07 +00:00
|
|
|
|
2006-01-23 18:37:46 +00:00
|
|
|
$this->mParserOptions->setTidy(true);
|
2005-12-30 09:33:11 +00:00
|
|
|
$parserOutput = $wgParser->parse( $text, $article->mTitle,
|
2005-11-27 06:04:41 +00:00
|
|
|
$this->mParserOptions, true, true, $this->mRevisionId );
|
2006-01-23 18:37:46 +00:00
|
|
|
$this->mParserOptions->setTidy(false);
|
2006-01-14 23:56:01 +00:00
|
|
|
if ( $cache && $article && $parserOutput->getCacheTime() != -1 ) {
|
2006-01-05 04:26:52 +00:00
|
|
|
$parserCache =& ParserCache::singleton();
|
|
|
|
|
$parserCache->save( $parserOutput, $article, $wgUser );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2006-01-14 23:56:01 +00:00
|
|
|
$this->addParserOutputNoText( $parserOutput );
|
|
|
|
|
$text = $parserOutput->getText();
|
2006-06-13 11:37:09 +00:00
|
|
|
$this->mNoGallery = $parserOutput->getNoGallery();
|
2006-01-14 23:56:01 +00:00
|
|
|
wfRunHooks( 'OutputPageBeforeHTML',array( &$this, &$text ) );
|
|
|
|
|
$parserOutput->setText( $text );
|
|
|
|
|
$this->addHTML( $parserOutput->getText() );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-09-17 15:24:43 +00:00
|
|
|
|
2006-01-23 18:37:46 +00:00
|
|
|
/**
|
|
|
|
|
* For anything that isn't primary text or interface message
|
|
|
|
|
*/
|
|
|
|
|
function addSecondaryWikiText( $text, $linestart = true ) {
|
|
|
|
|
global $wgTitle;
|
|
|
|
|
$this->mParserOptions->setTidy(true);
|
|
|
|
|
$this->addWikiTextTitle($text, $wgTitle, $linestart);
|
|
|
|
|
$this->mParserOptions->setTidy(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-11-25 06:04:16 +00:00
|
|
|
/**
|
|
|
|
|
* Add the output of a QuickTemplate to the output buffer
|
|
|
|
|
* @param QuickTemplate $template
|
|
|
|
|
*/
|
|
|
|
|
function addTemplate( &$template ) {
|
|
|
|
|
ob_start();
|
|
|
|
|
$template->execute();
|
2005-12-30 09:33:11 +00:00
|
|
|
$this->addHTML( ob_get_contents() );
|
2004-11-25 06:04:16 +00:00
|
|
|
ob_end_clean();
|
|
|
|
|
}
|
2004-11-29 11:26:24 +00:00
|
|
|
|
|
|
|
|
/**
|
2006-04-29 13:15:19 +00:00
|
|
|
* Parse wikitext and return the HTML.
|
2004-11-29 11:26:24 +00:00
|
|
|
*/
|
2006-04-29 13:15:19 +00:00
|
|
|
function parse( $text, $linestart = true, $interface = false ) {
|
2004-11-29 11:26:24 +00:00
|
|
|
global $wgParser, $wgTitle;
|
2006-04-29 13:15:19 +00:00
|
|
|
if ( $interface) { $this->mParserOptions->setInterfaceMessage(true); }
|
2005-11-27 06:04:41 +00:00
|
|
|
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions,
|
2005-12-01 08:24:49 +00:00
|
|
|
$linestart, true, $this->mRevisionId );
|
2006-04-29 13:15:19 +00:00
|
|
|
if ( $interface) { $this->mParserOptions->setInterfaceMessage(false); }
|
2004-11-29 11:26:24 +00:00
|
|
|
return $parserOutput->getText();
|
|
|
|
|
}
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
/**
|
|
|
|
|
* @param $article
|
|
|
|
|
* @param $user
|
2005-04-15 18:37:39 +00:00
|
|
|
*
|
|
|
|
|
* @return bool
|
2004-09-17 15:24:43 +00:00
|
|
|
*/
|
2006-03-16 02:57:44 +00:00
|
|
|
function tryParserCache( &$article, $user ) {
|
2006-01-05 04:26:52 +00:00
|
|
|
$parserCache =& ParserCache::singleton();
|
|
|
|
|
$parserOutput = $parserCache->get( $article, $user );
|
2004-06-04 10:40:44 +00:00
|
|
|
if ( $parserOutput !== false ) {
|
|
|
|
|
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
|
2005-12-30 09:33:11 +00:00
|
|
|
$this->addCategoryLinks( $parserOutput->getCategories() );
|
|
|
|
|
$this->addKeywords( $parserOutput );
|
2006-05-01 20:35:08 +00:00
|
|
|
$this->mNewSectionLink = $parserOutput->getNewSection();
|
2006-06-13 11:37:09 +00:00
|
|
|
$this->mNoGallery = $parserOutput->getNoGallery();
|
2006-01-14 23:56:01 +00:00
|
|
|
$text = $parserOutput->getText();
|
|
|
|
|
wfRunHooks( 'OutputPageBeforeHTML', array( &$this, &$text ) );
|
|
|
|
|
$this->addHTML( $text );
|
2005-04-07 23:04:08 +00:00
|
|
|
$t = $parserOutput->getTitleText();
|
|
|
|
|
if( !empty( $t ) ) {
|
|
|
|
|
$this->setPageTitle( $t );
|
|
|
|
|
}
|
2004-06-04 10:40:44 +00:00
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Set the maximum cache time on the Squid in seconds
|
2004-09-17 15:24:43 +00:00
|
|
|
* @param $maxage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-02-08 21:12:07 +00:00
|
|
|
function setSquidMaxage( $maxage ) {
|
2004-03-13 13:42:17 +00:00
|
|
|
$this->mSquidMaxage = $maxage;
|
2004-02-08 21:12:07 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Use enableClientCache(false) to force it to send nocache headers
|
2004-09-17 15:24:43 +00:00
|
|
|
* @param $state
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-03-23 10:19:31 +00:00
|
|
|
function enableClientCache( $state ) {
|
|
|
|
|
return wfSetVar( $this->mEnableClientCache, $state );
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2005-07-24 06:55:45 +00:00
|
|
|
function uncacheableBecauseRequestvars() {
|
|
|
|
|
global $wgRequest;
|
|
|
|
|
return $wgRequest->getText('useskin', false) === false
|
|
|
|
|
&& $wgRequest->getText('uselang', false) === false;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-03 10:18:07 +00:00
|
|
|
function sendCacheControl() {
|
2006-01-10 18:44:39 +00:00
|
|
|
global $wgUseSquid, $wgUseESI, $wgSquidMaxage;
|
2006-05-12 22:45:52 +00:00
|
|
|
$fname = 'OutputPage::sendCacheControl';
|
2005-07-01 00:03:31 +00:00
|
|
|
|
|
|
|
|
if ($this->mETag)
|
|
|
|
|
header("ETag: $this->mETag");
|
|
|
|
|
|
2005-03-08 02:58:43 +00:00
|
|
|
# don't serve compressed data to clients who can't handle it
|
|
|
|
|
# maintain different caches for logged-in users and non-logged in ones
|
2004-08-22 17:24:50 +00:00
|
|
|
header( 'Vary: Accept-Encoding, Cookie' );
|
2005-07-24 06:55:45 +00:00
|
|
|
if( !$this->uncacheableBecauseRequestvars() && $this->mEnableClientCache ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
if( $wgUseSquid && ! isset( $_COOKIE[ini_get( 'session.name') ] ) &&
|
2004-07-08 14:53:54 +00:00
|
|
|
! $this->isPrintable() && $this->mSquidMaxage != 0 )
|
2004-02-04 00:45:48 +00:00
|
|
|
{
|
2004-01-31 12:45:09 +00:00
|
|
|
if ( $wgUseESI ) {
|
2004-02-02 01:40:03 +00:00
|
|
|
# We'll purge the proxy cache explicitly, but require end user agents
|
2004-01-31 12:45:09 +00:00
|
|
|
# to revalidate against the proxy on each visit.
|
|
|
|
|
# Surrogate-Control controls our Squid, Cache-Control downstream caches
|
2006-05-12 22:45:52 +00:00
|
|
|
wfDebug( "$fname: proxy caching with ESI; {$this->mLastModified} **\n", false );
|
2004-01-31 12:45:09 +00:00
|
|
|
# start with a shorter timeout for initial testing
|
|
|
|
|
# header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
|
2004-03-13 13:42:17 +00:00
|
|
|
header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
|
2004-01-31 12:45:09 +00:00
|
|
|
header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
|
|
|
|
|
} else {
|
|
|
|
|
# We'll purge the proxy cache for anons explicitly, but require end user agents
|
|
|
|
|
# to revalidate against the proxy on each visit.
|
2004-07-08 14:53:54 +00:00
|
|
|
# IMPORTANT! The Squid needs to replace the Cache-Control header with
|
2004-01-31 12:45:09 +00:00
|
|
|
# Cache-Control: s-maxage=0, must-revalidate, max-age=0
|
2006-05-12 22:45:52 +00:00
|
|
|
wfDebug( "$fname: local proxy caching; {$this->mLastModified} **\n", false );
|
2004-01-31 12:45:09 +00:00
|
|
|
# start with a shorter timeout for initial testing
|
|
|
|
|
# header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
|
2004-03-13 13:42:17 +00:00
|
|
|
header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
|
2004-01-31 12:45:09 +00:00
|
|
|
}
|
2004-01-31 10:29:31 +00:00
|
|
|
} else {
|
|
|
|
|
# We do want clients to cache if they can, but they *must* check for updates
|
|
|
|
|
# on revisiting the page.
|
2006-05-12 22:45:52 +00:00
|
|
|
wfDebug( "$fname: private caching; {$this->mLastModified} **\n", false );
|
2006-04-27 21:46:03 +00:00
|
|
|
header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
|
2004-01-31 10:29:31 +00:00
|
|
|
header( "Cache-Control: private, must-revalidate, max-age=0" );
|
|
|
|
|
}
|
2004-05-20 12:46:31 +00:00
|
|
|
if($this->mLastModified) header( "Last-modified: {$this->mLastModified}" );
|
2003-07-03 10:18:07 +00:00
|
|
|
} else {
|
2006-05-12 22:45:52 +00:00
|
|
|
wfDebug( "$fname: no caching **\n", false );
|
2004-03-23 10:19:31 +00:00
|
|
|
|
|
|
|
|
# In general, the absence of a last modified header should be enough to prevent
|
|
|
|
|
# the client from using its cache. We send a few other things just to make sure.
|
2006-04-27 21:46:03 +00:00
|
|
|
header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
|
2004-08-22 17:24:50 +00:00
|
|
|
header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
|
|
|
|
|
header( 'Pragma: no-cache' );
|
2003-07-03 10:18:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Finally, all the text has been munged and accumulated into
|
|
|
|
|
* the object, let's actually output it:
|
|
|
|
|
*/
|
2004-09-17 15:24:43 +00:00
|
|
|
function output() {
|
2005-12-26 10:29:22 +00:00
|
|
|
global $wgUser, $wgOutputEncoding;
|
2006-03-28 05:15:10 +00:00
|
|
|
global $wgContLanguageCode, $wgDebugRedirects, $wgMimeType;
|
2006-03-26 19:03:14 +00:00
|
|
|
global $wgJsMimeType, $wgStylePath, $wgUseAjax, $wgScriptPath, $wgServer;
|
2004-10-08 04:27:07 +00:00
|
|
|
|
2003-12-11 20:16:34 +00:00
|
|
|
if( $this->mDoNothing ){
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-08-22 17:24:50 +00:00
|
|
|
$fname = 'OutputPage::output';
|
2003-10-25 08:01:33 +00:00
|
|
|
wfProfileIn( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
|
2006-03-26 19:03:14 +00:00
|
|
|
if ( $wgUseAjax ) {
|
|
|
|
|
$this->addScript( "<script type=\"{$wgJsMimeType}\">
|
|
|
|
|
var wgScriptPath=\"{$wgScriptPath}\";
|
|
|
|
|
var wgServer=\"{$wgServer}\";
|
|
|
|
|
</script>" );
|
|
|
|
|
$this->addScript( "<script type=\"{$wgJsMimeType}\" src=\"{$wgStylePath}/common/ajax.js\"></script>\n" );
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( '' != $this->mRedirect ) {
|
|
|
|
|
if( substr( $this->mRedirect, 0, 4 ) != 'http' ) {
|
2003-12-22 10:21:18 +00:00
|
|
|
# Standards require redirect URLs to be absolute
|
|
|
|
|
global $wgServer;
|
|
|
|
|
$this->mRedirect = $wgServer . $this->mRedirect;
|
|
|
|
|
}
|
2004-03-05 03:18:31 +00:00
|
|
|
if( $this->mRedirectCode == '301') {
|
|
|
|
|
if( !$wgDebugRedirects ) {
|
|
|
|
|
header("HTTP/1.1 {$this->mRedirectCode} Moved Permanently");
|
|
|
|
|
}
|
2004-12-19 11:11:52 +00:00
|
|
|
$this->mLastModified = wfTimestamp( TS_RFC2822 );
|
2004-03-01 22:16:39 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-03-01 22:16:39 +00:00
|
|
|
$this->sendCacheControl();
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-03-05 03:18:31 +00:00
|
|
|
if( $wgDebugRedirects ) {
|
|
|
|
|
$url = htmlspecialchars( $this->mRedirect );
|
|
|
|
|
print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
|
|
|
|
|
print "<p>Location: <a href=\"$url\">$url</a></p>\n";
|
|
|
|
|
print "</body>\n</html>\n";
|
|
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
header( 'Location: '.$this->mRedirect );
|
2004-03-05 03:18:31 +00:00
|
|
|
}
|
2005-07-25 07:00:20 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2005-10-12 03:12:40 +00:00
|
|
|
elseif ( $this->mStatusCode )
|
|
|
|
|
{
|
|
|
|
|
$statusMessage = array(
|
|
|
|
|
100 => 'Continue',
|
|
|
|
|
101 => 'Switching Protocols',
|
|
|
|
|
102 => 'Processing',
|
|
|
|
|
200 => 'OK',
|
|
|
|
|
201 => 'Created',
|
|
|
|
|
202 => 'Accepted',
|
|
|
|
|
203 => 'Non-Authoritative Information',
|
|
|
|
|
204 => 'No Content',
|
|
|
|
|
205 => 'Reset Content',
|
|
|
|
|
206 => 'Partial Content',
|
|
|
|
|
207 => 'Multi-Status',
|
|
|
|
|
300 => 'Multiple Choices',
|
|
|
|
|
301 => 'Moved Permanently',
|
|
|
|
|
302 => 'Found',
|
|
|
|
|
303 => 'See Other',
|
|
|
|
|
304 => 'Not Modified',
|
|
|
|
|
305 => 'Use Proxy',
|
|
|
|
|
307 => 'Temporary Redirect',
|
|
|
|
|
400 => 'Bad Request',
|
|
|
|
|
401 => 'Unauthorized',
|
|
|
|
|
402 => 'Payment Required',
|
|
|
|
|
403 => 'Forbidden',
|
|
|
|
|
404 => 'Not Found',
|
|
|
|
|
405 => 'Method Not Allowed',
|
|
|
|
|
406 => 'Not Acceptable',
|
|
|
|
|
407 => 'Proxy Authentication Required',
|
|
|
|
|
408 => 'Request Timeout',
|
|
|
|
|
409 => 'Conflict',
|
|
|
|
|
410 => 'Gone',
|
|
|
|
|
411 => 'Length Required',
|
|
|
|
|
412 => 'Precondition Failed',
|
|
|
|
|
413 => 'Request Entity Too Large',
|
|
|
|
|
414 => 'Request-URI Too Large',
|
|
|
|
|
415 => 'Unsupported Media Type',
|
|
|
|
|
416 => 'Request Range Not Satisfiable',
|
|
|
|
|
417 => 'Expectation Failed',
|
|
|
|
|
422 => 'Unprocessable Entity',
|
|
|
|
|
423 => 'Locked',
|
|
|
|
|
424 => 'Failed Dependency',
|
|
|
|
|
500 => 'Internal Server Error',
|
|
|
|
|
501 => 'Not Implemented',
|
|
|
|
|
502 => 'Bad Gateway',
|
|
|
|
|
503 => 'Service Unavailable',
|
|
|
|
|
504 => 'Gateway Timeout',
|
|
|
|
|
505 => 'HTTP Version Not Supported',
|
|
|
|
|
507 => 'Insufficient Storage'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if ( $statusMessage[$this->mStatusCode] )
|
|
|
|
|
header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $statusMessage[$this->mStatusCode] );
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-11-12 09:34:11 +00:00
|
|
|
# Buffer output; final headers may depend on later processing
|
|
|
|
|
ob_start();
|
|
|
|
|
|
2004-07-18 08:48:43 +00:00
|
|
|
# Disable temporary placeholders, so that the skin produces HTML
|
|
|
|
|
$sk->postParseLinkColour( false );
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-03 10:01:08 +00:00
|
|
|
header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
|
2004-09-22 04:24:50 +00:00
|
|
|
header( 'Content-language: '.$wgContLanguageCode );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-07-03 04:00:33 +00:00
|
|
|
if ($this->mArticleBodyOnly) {
|
|
|
|
|
$this->out($this->mBodytext);
|
|
|
|
|
} else {
|
|
|
|
|
wfProfileIn( 'Output-skin' );
|
|
|
|
|
$sk->outputPage( $this );
|
|
|
|
|
wfProfileOut( 'Output-skin' );
|
|
|
|
|
}
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2004-11-12 09:34:11 +00:00
|
|
|
$this->sendCacheControl();
|
|
|
|
|
ob_end_flush();
|
2005-07-25 07:00:20 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function out( $ins ) {
|
2004-09-24 13:14:52 +00:00
|
|
|
global $wgInputEncoding, $wgOutputEncoding, $wgContLang;
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == strcmp( $wgInputEncoding, $wgOutputEncoding ) ) {
|
|
|
|
|
$outs = $ins;
|
|
|
|
|
} else {
|
2004-09-24 13:14:52 +00:00
|
|
|
$outs = $wgContLang->iconv( $wgInputEncoding, $wgOutputEncoding, $ins );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( false === $outs ) { $outs = $ins; }
|
|
|
|
|
}
|
|
|
|
|
print $outs;
|
|
|
|
|
}
|
|
|
|
|
|
2006-05-11 22:40:38 +00:00
|
|
|
function setEncodings() {
|
2003-11-18 02:39:38 +00:00
|
|
|
global $wgInputEncoding, $wgOutputEncoding;
|
2004-09-24 13:14:52 +00:00
|
|
|
global $wgUser, $wgContLang;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$wgInputEncoding = strtolower( $wgInputEncoding );
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if( $wgUser->getOption( 'altencoding' ) ) {
|
2004-09-24 13:14:52 +00:00
|
|
|
$wgContLang->setAltEncoding();
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-15 23:06:59 +00:00
|
|
|
if ( empty( $_SERVER['HTTP_ACCEPT_CHARSET'] ) ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOutputEncoding = strtolower( $wgOutputEncoding );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$wgOutputEncoding = $wgInputEncoding;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Returns a HTML comment with the elapsed time since request.
|
|
|
|
|
* This method has no side effects.
|
2005-09-24 13:37:26 +00:00
|
|
|
* Use wfReportTime() instead.
|
2005-04-04 19:31:58 +00:00
|
|
|
* @return string
|
2005-09-24 13:37:26 +00:00
|
|
|
* @deprecated
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
|
|
|
|
function reportTime() {
|
2005-09-24 13:37:26 +00:00
|
|
|
$time = wfReportTime();
|
|
|
|
|
return $time;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2006-01-06 23:09:37 +00:00
|
|
|
/**
|
|
|
|
|
* Produce a "user is blocked" page
|
|
|
|
|
*/
|
2006-06-24 20:58:10 +00:00
|
|
|
function blockedPage( $return = true ) {
|
2006-04-29 23:30:46 +00:00
|
|
|
global $wgUser, $wgContLang, $wgTitle;
|
2006-01-06 23:09:37 +00:00
|
|
|
|
|
|
|
|
$this->setPageTitle( wfMsg( 'blockedtitle' ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
|
|
|
|
$this->setArticleRelated( false );
|
|
|
|
|
|
|
|
|
|
$id = $wgUser->blockedBy();
|
|
|
|
|
$reason = $wgUser->blockedFor();
|
2006-06-01 08:19:02 +00:00
|
|
|
$ip = wfGetIP();
|
2006-01-06 23:09:37 +00:00
|
|
|
|
|
|
|
|
if ( is_numeric( $id ) ) {
|
|
|
|
|
$name = User::whoIs( $id );
|
|
|
|
|
} else {
|
|
|
|
|
$name = $id;
|
|
|
|
|
}
|
|
|
|
|
$link = '[[' . $wgContLang->getNsText( NS_USER ) . ":{$name}|{$name}]]";
|
|
|
|
|
|
|
|
|
|
$this->addWikiText( wfMsg( 'blockedtext', $link, $reason, $ip, $name ) );
|
2006-04-29 23:30:46 +00:00
|
|
|
|
|
|
|
|
# Don't auto-return to special pages
|
2006-06-24 20:58:10 +00:00
|
|
|
if( $return ) {
|
|
|
|
|
$return = $wgTitle->getNamespace() > -1 ? $wgTitle->getPrefixedText() : NULL;
|
|
|
|
|
$this->returnToMain( false, $return );
|
|
|
|
|
}
|
2006-01-06 23:09:37 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Note: these arguments are keys into wfMsg(), not text!
|
|
|
|
|
*/
|
2006-06-07 06:40:24 +00:00
|
|
|
function showErrorPage( $title, $msg ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgTitle;
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mDebugtext .= 'Original title: ' .
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgTitle->getPrefixedText() . "\n";
|
|
|
|
|
$this->setPageTitle( wfMsg( $title ) );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2004-03-23 10:19:31 +00:00
|
|
|
$this->enableClientCache( false );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mRedirect = '';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mBodytext = '';
|
2005-04-10 19:45:56 +00:00
|
|
|
$this->addWikiText( wfMsg( $msg ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain( false );
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
/** @obsolete */
|
|
|
|
|
function errorpage( $title, $msg ) {
|
|
|
|
|
throw new ErrorPageError( $title, $msg );
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-26 06:49:56 +00:00
|
|
|
/**
|
|
|
|
|
* Display an error page indicating that a given version of MediaWiki is
|
|
|
|
|
* required to use it
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $version The version of MediaWiki needed to use the page
|
|
|
|
|
*/
|
|
|
|
|
function versionRequired( $version ) {
|
|
|
|
|
$this->setPageTitle( wfMsg( 'versionrequired', $version ) );
|
|
|
|
|
$this->setHTMLTitle( wfMsg( 'versionrequired', $version ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
|
|
|
|
$this->setArticleRelated( false );
|
|
|
|
|
$this->mBodytext = '';
|
|
|
|
|
|
|
|
|
|
$this->addWikiText( wfMsg( 'versionrequiredtext', $version ) );
|
|
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2005-06-19 06:25:53 +00:00
|
|
|
/**
|
|
|
|
|
* Display an error page noting that a given permission bit is required.
|
|
|
|
|
* This should generally replace the sysopRequired, developerRequired etc.
|
|
|
|
|
* @param string $permission key required
|
|
|
|
|
*/
|
|
|
|
|
function permissionRequired( $permission ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
$this->setPageTitle( wfMsg( 'badaccess' ) );
|
|
|
|
|
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
|
|
|
|
$this->setArticleRelated( false );
|
|
|
|
|
$this->mBodytext = '';
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ) );
|
|
|
|
|
$this->addHTML( wfMsgHtml( 'badaccesstext', $ap, $permission ) );
|
|
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2005-06-19 06:25:53 +00:00
|
|
|
/**
|
|
|
|
|
* @deprecated
|
|
|
|
|
*/
|
2004-09-02 23:28:24 +00:00
|
|
|
function sysopRequired() {
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgUser;
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'sysoptitle' ) );
|
|
|
|
|
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mBodytext = '';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
2004-09-24 18:24:01 +00:00
|
|
|
$ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
|
2005-06-19 06:25:53 +00:00
|
|
|
$this->addHTML( wfMsgHtml( 'sysoptext', $ap ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-19 06:25:53 +00:00
|
|
|
/**
|
|
|
|
|
* @deprecated
|
|
|
|
|
*/
|
2004-09-02 23:28:24 +00:00
|
|
|
function developerRequired() {
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgUser;
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'developertitle' ) );
|
|
|
|
|
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mBodytext = '';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
2004-09-24 18:24:01 +00:00
|
|
|
$ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
|
2005-06-19 06:25:53 +00:00
|
|
|
$this->addHTML( wfMsgHtml( 'developertext', $ap ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
|
|
|
|
|
2006-05-02 15:37:06 +00:00
|
|
|
/**
|
|
|
|
|
* Produce the stock "please login to use the wiki" page
|
|
|
|
|
*/
|
2004-09-02 23:28:24 +00:00
|
|
|
function loginToUse() {
|
2004-09-24 13:14:52 +00:00
|
|
|
global $wgUser, $wgTitle, $wgContLang;
|
2006-05-02 15:37:06 +00:00
|
|
|
$skin = $wgUser->getSkin();
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'loginreqtitle' ) );
|
2006-05-02 15:37:06 +00:00
|
|
|
$this->setHtmlTitle( wfMsg( 'errorpagetitle' ) );
|
|
|
|
|
$this->setRobotPolicy( 'noindex,nofollow' );
|
2004-03-05 13:19:19 +00:00
|
|
|
$this->setArticleFlag( false );
|
2006-05-02 15:37:06 +00:00
|
|
|
|
2006-06-20 18:20:58 +00:00
|
|
|
$loginTitle = Title::makeTitle( NS_SPECIAL, 'Userlogin' );
|
|
|
|
|
$loginLink = $skin->makeKnownLinkObj( $loginTitle, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $wgTitle->getPrefixedUrl() );
|
|
|
|
|
$this->addHtml( wfMsgWikiHtml( 'loginreqpagetext', $loginLink ) );
|
2006-05-02 15:37:06 +00:00
|
|
|
$this->addHtml( "\n<!--" . $wgTitle->getPrefixedUrl() . "-->" );
|
|
|
|
|
|
2006-06-20 18:20:58 +00:00
|
|
|
$this->returnToMain();
|
2004-03-05 13:19:19 +00:00
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
/** @obsolete */
|
2004-09-02 23:28:24 +00:00
|
|
|
function databaseError( $fname, $sql, $error, $errno ) {
|
2006-06-07 06:40:24 +00:00
|
|
|
throw new MWException( "OutputPage::databaseError is obsolete\n" );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function readOnlyPage( $source = null, $protected = false ) {
|
2006-04-04 15:51:35 +00:00
|
|
|
global $wgUser, $wgReadOnlyFile, $wgReadOnly, $wgTitle;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-11-09 11:45:12 +00:00
|
|
|
if( $protected ) {
|
2006-04-04 15:51:35 +00:00
|
|
|
$skin = $wgUser->getSkin();
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'viewsource' ) );
|
2006-04-04 15:51:35 +00:00
|
|
|
$this->setSubtitle( wfMsg( 'viewsourcefor', $skin->makeKnownLinkObj( $wgTitle ) ) );
|
2006-04-25 01:44:04 +00:00
|
|
|
|
|
|
|
|
# Determine if protection is due to the page being a system message
|
|
|
|
|
# and show an appropriate explanation
|
|
|
|
|
if( $wgTitle->getNamespace() == NS_MEDIAWIKI && !$wgUser->isAllowed( 'editinterface' ) ) {
|
|
|
|
|
$this->addWikiText( wfMsg( 'protectedinterface' ) );
|
|
|
|
|
} else {
|
|
|
|
|
$this->addWikiText( wfMsg( 'protectedtext' ) );
|
|
|
|
|
}
|
2003-11-09 11:45:12 +00:00
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'readonly' ) );
|
2005-06-01 06:18:49 +00:00
|
|
|
if ( $wgReadOnly ) {
|
|
|
|
|
$reason = $wgReadOnly;
|
|
|
|
|
} else {
|
|
|
|
|
$reason = file_get_contents( $wgReadOnlyFile );
|
|
|
|
|
}
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->addWikiText( wfMsg( 'readonlytext', $reason ) );
|
2003-11-09 11:45:12 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-30 07:18:38 +00:00
|
|
|
if( is_string( $source ) ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
if( strcmp( $source, '' ) == 0 ) {
|
2006-04-11 10:16:27 +00:00
|
|
|
global $wgTitle;
|
2005-12-28 14:47:30 +00:00
|
|
|
if ( $wgTitle->getNamespace() == NS_MEDIAWIKI ) {
|
2006-04-11 10:16:27 +00:00
|
|
|
$source = wfMsgWeirdKey ( $wgTitle->getText() );
|
2005-12-28 14:47:30 +00:00
|
|
|
} else {
|
2006-07-07 22:15:44 +00:00
|
|
|
$source = '';
|
2005-12-28 14:47:30 +00:00
|
|
|
}
|
2004-04-30 07:18:38 +00:00
|
|
|
}
|
2006-05-15 09:45:14 +00:00
|
|
|
$rows = $wgUser->getIntOption( 'rows' );
|
|
|
|
|
$cols = $wgUser->getIntOption( 'cols' );
|
2006-04-25 01:30:50 +00:00
|
|
|
|
|
|
|
|
$text = "\n<textarea name='wpTextbox1' id='wpTextbox1' cols='$cols' rows='$rows' readonly='readonly'>" .
|
2004-04-29 12:17:33 +00:00
|
|
|
htmlspecialchars( $source ) . "\n</textarea>";
|
2003-11-09 11:45:12 +00:00
|
|
|
$this->addHTML( $text );
|
2003-09-09 05:46:22 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain( false );
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
/** @obsolete */
|
|
|
|
|
function fatalError( $message ) {
|
|
|
|
|
throw new FatalError( $message );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @obsolete */
|
|
|
|
|
function unexpectedValueError( $name, $val ) {
|
|
|
|
|
throw new FatalError( wfMsg( 'unexpected', $name, $val ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @obsolete */
|
|
|
|
|
function fileCopyError( $old, $new ) {
|
|
|
|
|
throw new FatalError( wfMsg( 'filecopyerror', $old, $new ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @obsolete */
|
|
|
|
|
function fileRenameError( $old, $new ) {
|
|
|
|
|
throw new FatalError( wfMsg( 'filerenameerror', $old, $new ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @obsolete */
|
|
|
|
|
function fileDeleteError( $name ) {
|
|
|
|
|
throw new FatalError( wfMsg( 'filedeleteerror', $name ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @obsolete */
|
|
|
|
|
function fileNotFoundError( $name ) {
|
|
|
|
|
throw new FatalError( wfMsg( 'filenotfound', $name ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showFatalError( $message ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->setPageTitle( wfMsg( "internalerror" ) );
|
|
|
|
|
$this->setRobotpolicy( "noindex,nofollow" );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2004-03-23 10:19:31 +00:00
|
|
|
$this->enableClientCache( false );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mRedirect = '';
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mBodytext = $message;
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
function showUnexpectedValueError( $name, $val ) {
|
|
|
|
|
$this->showFatalError( wfMsg( 'unexpected', $name, $val ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
function showFileCopyError( $old, $new ) {
|
|
|
|
|
$this->showFatalError( wfMsg( 'filecopyerror', $old, $new ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
function showFileRenameError( $old, $new ) {
|
|
|
|
|
$this->showFatalError( wfMsg( 'filerenameerror', $old, $new ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
function showFileDeleteError( $name ) {
|
|
|
|
|
$this->showFatalError( wfMsg( 'filedeleteerror', $name ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2006-06-07 06:40:24 +00:00
|
|
|
function showFileNotFoundError( $name ) {
|
|
|
|
|
$this->showFatalError( wfMsg( 'filenotfound', $name ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* return from error messages or notes
|
|
|
|
|
* @param $auto automatically redirect the user after 10 seconds
|
|
|
|
|
* @param $returnto page title to return to. Default is Main Page.
|
|
|
|
|
*/
|
2004-12-10 05:02:23 +00:00
|
|
|
function returnToMain( $auto = true, $returnto = NULL ) {
|
2004-03-29 14:48:07 +00:00
|
|
|
global $wgUser, $wgOut, $wgRequest;
|
2006-06-21 16:28:04 +00:00
|
|
|
|
2004-04-01 12:44:54 +00:00
|
|
|
if ( $returnto == NULL ) {
|
|
|
|
|
$returnto = $wgRequest->getText( 'returnto' );
|
|
|
|
|
}
|
2006-06-21 16:28:04 +00:00
|
|
|
|
|
|
|
|
if ( '' === $returnto ) {
|
2004-09-24 18:24:01 +00:00
|
|
|
$returnto = wfMsgForContent( 'mainpage' );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2006-06-21 16:28:04 +00:00
|
|
|
|
|
|
|
|
if ( is_object( $returnto ) ) {
|
|
|
|
|
$titleObj = $returnto;
|
|
|
|
|
} else {
|
|
|
|
|
$titleObj = Title::newFromText( $returnto );
|
|
|
|
|
}
|
2006-06-23 06:53:05 +00:00
|
|
|
if ( !is_object( $titleObj ) ) {
|
|
|
|
|
$titleObj = Title::newMainPage();
|
|
|
|
|
}
|
2006-06-21 16:28:04 +00:00
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$link = $sk->makeLinkObj( $titleObj, '' );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$r = wfMsg( 'returnto', $link );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( $auto ) {
|
2004-12-10 05:02:23 +00:00
|
|
|
$wgOut->addMeta( 'http:Refresh', '10;url=' . $titleObj->escapeFullURL() );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-04-03 10:59:26 +00:00
|
|
|
$wgOut->addHTML( "\n<p>$r</p>\n" );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2005-07-12 21:23:28 +00:00
|
|
|
* This function takes the title (first item of mGoodLinks), categories, existing and broken links for the page
|
2004-09-02 23:28:24 +00:00
|
|
|
* and uses the first 10 of them for META keywords
|
|
|
|
|
*/
|
2005-12-30 09:33:11 +00:00
|
|
|
function addKeywords( &$parserOutput ) {
|
|
|
|
|
global $wgTitle;
|
|
|
|
|
$this->addKeyword( $wgTitle->getPrefixedText() );
|
|
|
|
|
$count = 1;
|
|
|
|
|
$links2d =& $parserOutput->getLinks();
|
2006-04-02 03:59:07 +00:00
|
|
|
if ( !is_array( $links2d ) ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-12-30 09:33:11 +00:00
|
|
|
foreach ( $links2d as $ns => $dbkeys ) {
|
|
|
|
|
foreach( $dbkeys as $dbkey => $id ) {
|
|
|
|
|
$this->addKeyword( $dbkey );
|
|
|
|
|
if ( ++$count > 10 ) {
|
|
|
|
|
break 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-03-20 13:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2006-01-07 12:48:44 +00:00
|
|
|
* @access private
|
2005-04-04 19:31:58 +00:00
|
|
|
* @return string
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
|
|
|
|
function headElement() {
|
2004-09-24 13:14:52 +00:00
|
|
|
global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
|
2006-03-07 01:10:39 +00:00
|
|
|
global $wgUser, $wgContLang, $wgUseTrackbacks, $wgTitle;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-02-07 14:11:59 +00:00
|
|
|
if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) {
|
2005-04-15 18:37:39 +00:00
|
|
|
$ret = "<?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?>\n";
|
2004-04-03 10:01:08 +00:00
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$ret = '';
|
2004-04-03 10:01:08 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-09 10:15:08 +00:00
|
|
|
$ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\"\n \"$wgDTD\">\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-08-17 12:00:07 +00:00
|
|
|
if ( '' == $this->getHTMLTitle() ) {
|
|
|
|
|
$this->setHTMLTitle( wfMsg( 'pagetitle', $this->getPageTitle() ));
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2005-02-07 14:11:59 +00:00
|
|
|
|
2006-05-31 20:39:14 +00:00
|
|
|
$rtl = $wgContLang->isRTL() ? " dir='RTL'" : '';
|
|
|
|
|
$ret .= "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"$wgContLanguageCode\" lang=\"$wgContLanguageCode\" $rtl>\n";
|
2005-08-17 12:00:07 +00:00
|
|
|
$ret .= "<head>\n<title>" . htmlspecialchars( $this->getHTMLTitle() ) . "</title>\n";
|
2004-04-03 10:01:08 +00:00
|
|
|
array_push( $this->mMetatags, array( "http:Content-type", "$wgMimeType; charset={$wgOutputEncoding}" ) );
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-09 04:53:52 +00:00
|
|
|
$ret .= $this->getHeadLinks();
|
2004-04-27 12:18:48 +00:00
|
|
|
global $wgStylePath;
|
2004-04-09 04:53:52 +00:00
|
|
|
if( $this->isPrintable() ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$media = '';
|
2004-04-09 04:53:52 +00:00
|
|
|
} else {
|
|
|
|
|
$media = "media='print'";
|
|
|
|
|
}
|
2004-09-05 03:25:58 +00:00
|
|
|
$printsheet = htmlspecialchars( "$wgStylePath/common/wikiprintable.css" );
|
2004-04-09 04:53:52 +00:00
|
|
|
$ret .= "<link rel='stylesheet' type='text/css' $media href='$printsheet' />\n";
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$ret .= $sk->getHeadScripts();
|
2004-05-17 23:18:37 +00:00
|
|
|
$ret .= $this->mScripts;
|
2004-04-09 04:53:52 +00:00
|
|
|
$ret .= $sk->getUserStyles();
|
|
|
|
|
|
2005-07-23 05:47:25 +00:00
|
|
|
if ($wgUseTrackbacks && $this->isArticleRelated())
|
|
|
|
|
$ret .= $wgTitle->trackbackRDF();
|
|
|
|
|
|
2004-04-09 04:53:52 +00:00
|
|
|
$ret .= "</head>\n";
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-09 04:53:52 +00:00
|
|
|
function getHeadLinks() {
|
2006-03-07 01:10:39 +00:00
|
|
|
global $wgRequest;
|
2004-08-22 17:24:50 +00:00
|
|
|
$ret = '';
|
2003-04-14 23:10:40 +00:00
|
|
|
foreach ( $this->mMetatags as $tag ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
|
|
|
|
|
$a = 'http-equiv';
|
2003-04-14 23:10:40 +00:00
|
|
|
$tag[0] = substr( $tag[0], 5 );
|
|
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$a = 'name';
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-04-03 10:01:08 +00:00
|
|
|
$ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\" />\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$p = $this->mRobotpolicy;
|
2005-12-08 02:38:46 +00:00
|
|
|
if( $p !== '' && $p != 'index,follow' ) {
|
|
|
|
|
// http://www.robotstxt.org/wc/meta-user.html
|
|
|
|
|
// Only show if it's different from the default robots policy
|
|
|
|
|
$ret .= "<meta name=\"robots\" content=\"$p\" />\n";
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( count( $this->mKeywords ) > 0 ) {
|
2004-04-15 12:27:31 +00:00
|
|
|
$strip = array(
|
2005-05-15 18:39:18 +00:00
|
|
|
"/<.*?>/" => '',
|
|
|
|
|
"/_/" => ' '
|
2004-04-15 12:27:31 +00:00
|
|
|
);
|
2003-04-14 23:10:40 +00:00
|
|
|
$ret .= "<meta name=\"keywords\" content=\"" .
|
2004-04-15 12:27:31 +00:00
|
|
|
htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),implode( ",", $this->mKeywords ))) . "\" />\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
foreach ( $this->mLinktags as $tag ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$ret .= '<link';
|
2004-04-10 11:19:33 +00:00
|
|
|
foreach( $tag as $attr => $val ) {
|
|
|
|
|
$ret .= " $attr=\"" . htmlspecialchars( $val ) . "\"";
|
|
|
|
|
}
|
|
|
|
|
$ret .= " />\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-03-19 08:05:36 +00:00
|
|
|
if( $this->isSyndicated() ) {
|
2004-04-28 06:14:49 +00:00
|
|
|
# FIXME: centralize the mime-type and name information in Feed.php
|
2004-08-22 17:24:50 +00:00
|
|
|
$link = $wgRequest->escapeAppendQuery( 'feed=rss' );
|
2004-04-28 06:14:49 +00:00
|
|
|
$ret .= "<link rel='alternate' type='application/rss+xml' title='RSS 2.0' href='$link' />\n";
|
2004-08-22 17:24:50 +00:00
|
|
|
$link = $wgRequest->escapeAppendQuery( 'feed=atom' );
|
2005-08-15 21:39:30 +00:00
|
|
|
$ret .= "<link rel='alternate' type='application/atom+xml' title='Atom 0.3' href='$link' />\n";
|
2004-03-19 08:05:36 +00:00
|
|
|
}
|
2005-01-18 00:05:35 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
return $ret;
|
|
|
|
|
}
|
2005-07-01 00:03:31 +00:00
|
|
|
|
2005-05-27 11:03:37 +00:00
|
|
|
/**
|
|
|
|
|
* Turn off regular page output and return an error reponse
|
|
|
|
|
* for when rate limiting has triggered.
|
2005-07-05 21:22:25 +00:00
|
|
|
* @todo i18n
|
2005-05-27 11:03:37 +00:00
|
|
|
* @access public
|
|
|
|
|
*/
|
|
|
|
|
function rateLimited() {
|
|
|
|
|
global $wgOut;
|
|
|
|
|
$wgOut->disable();
|
|
|
|
|
wfHttpError( 500, 'Internal Server Error',
|
|
|
|
|
'Sorry, the server has encountered an internal error. ' .
|
|
|
|
|
'Please wait a moment and hit "refresh" to submit the request again.' );
|
|
|
|
|
}
|
2006-05-01 20:35:08 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show an "add new section" link?
|
|
|
|
|
*
|
|
|
|
|
* @return bool True if the parser output instructs us to add one
|
|
|
|
|
*/
|
|
|
|
|
function showNewSectionLink() {
|
|
|
|
|
return $this->mNewSectionLink;
|
|
|
|
|
}
|
2005-05-27 11:03:37 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
?>
|