2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
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
|
|
|
/**
|
|
|
|
|
* This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
|
|
|
|
|
*/
|
2004-08-22 17:24:50 +00:00
|
|
|
if( defined( 'MEDIAWIKI' ) ) {
|
2004-08-06 22:30:47 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# See design.doc
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
if($wgUseTeX) require_once( 'Math.php' );
|
2003-04-14 23:10:40 +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 {
|
|
|
|
|
var $mHeaders, $mCookies, $mMetatags, $mKeywords;
|
|
|
|
|
var $mLinktags, $mPagetitle, $mBodytext, $mDebugtext;
|
|
|
|
|
var $mHTMLtitle, $mRobotpolicy, $mIsarticle, $mPrintable;
|
2004-05-17 23:18:37 +00:00
|
|
|
var $mSubtitle, $mRedirect;
|
2003-07-11 07:02:22 +00:00
|
|
|
var $mLastModified, $mCategoryLinks;
|
2004-08-14 13:34:57 +00:00
|
|
|
var $mScripts, $mLinkColours;
|
2004-07-18 08:48:43 +00:00
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
var $mSuppressQuickbar;
|
2003-12-10 10:30:14 +00:00
|
|
|
var $mOnloadHandler;
|
2003-12-11 20:16:34 +00:00
|
|
|
var $mDoNothing;
|
2004-07-08 14:53:54 +00:00
|
|
|
var $mContainsOldMagic, $mContainsNewMagic;
|
2004-01-17 09:49:43 +00:00
|
|
|
var $mIsArticleRelated;
|
2004-02-29 08:43:29 +00:00
|
|
|
var $mParserOptions;
|
2004-03-19 05:31:18 +00:00
|
|
|
var $mShowFeedLinks = false;
|
2004-03-23 10:19:31 +00:00
|
|
|
var $mEnableClientCache = true;
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
/**
|
|
|
|
|
* Constructor
|
|
|
|
|
* Initialise private variables
|
|
|
|
|
*/
|
|
|
|
|
function OutputPage() {
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mHeaders = $this->mCookies = $this->mMetatags =
|
|
|
|
|
$this->mKeywords = $this->mLinktags = array();
|
|
|
|
|
$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 =
|
2004-09-17 15:24:43 +00:00
|
|
|
$this->mOnloadHandler = '';
|
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();
|
2004-02-26 13:37:26 +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;
|
2004-02-29 08:43:29 +00:00
|
|
|
$this->mParserOptions = ParserOptions::newFromUser( $temp = NULL );
|
2004-03-13 13:42:17 +00:00
|
|
|
$this->mSquidMaxage = 0;
|
2004-09-17 15:24:43 +00:00
|
|
|
$this->mScripts = '';
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
function addHeader( $name, $val ) { array_push( $this->mHeaders, $name.': '.$val ) ; }
|
2003-04-14 23:10:40 +00:00
|
|
|
function addCookie( $name, $val ) { array_push( $this->mCookies, array( $name, $val ) ); }
|
2004-03-01 22:16:39 +00:00
|
|
|
function redirect( $url, $responsecode = '302' ) { $this->mRedirect = $url; $this->mRedirectCode = $responsecode; }
|
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
|
|
|
|
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 ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgLang, $wgCachePages, $wgUser;
|
2004-09-06 10:10:49 +00:00
|
|
|
$timestamp=wfTimestamp(TS_MW,$timestamp);
|
2003-07-10 04:55:41 +00:00
|
|
|
if( !$wgCachePages ) {
|
|
|
|
|
wfDebug( "CACHE DISABLED\n", false );
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-08-22 17:24:50 +00:00
|
|
|
if( $wgUser->getOption( 'nocache' ) ) {
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "USER DISABLED CACHE\n", false );
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2004-03-20 15:03:26 +00:00
|
|
|
|
2004-12-19 11:11:52 +00:00
|
|
|
$lastmod = wfTimestamp( TS_RFC2822, max( $timestamp, $wgUser->mTouched ) );
|
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"] );
|
2004-09-06 10:10:49 +00:00
|
|
|
$ismodsince = wfTimestamp( TS_MW, strtotime( $modsince ) );
|
2003-08-20 07:45:18 +00:00
|
|
|
wfDebug( "-- client send If-Modified-Since: " . $modsince . "\n", false );
|
2004-07-08 14:53:54 +00:00
|
|
|
wfDebug( "-- we might send Last-Modified : $lastmod\n", false );
|
2005-01-18 03:06:20 +00:00
|
|
|
if( ($ismodsince >= $timestamp ) && $wgUser->validateCache( $ismodsince ) ) {
|
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();
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
|
2003-12-11 20:16:34 +00:00
|
|
|
$this->disable();
|
|
|
|
|
return true;
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "READY client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mLastModified = $lastmod;
|
|
|
|
|
}
|
2003-07-10 04:55:41 +00:00
|
|
|
} else {
|
|
|
|
|
wfDebug( "We're confused.\n", false );
|
|
|
|
|
$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':
|
2004-07-08 14:53:54 +00:00
|
|
|
return wfMsg('edit');
|
2004-04-25 00:32:24 +00:00
|
|
|
case 'history':
|
|
|
|
|
return wfMsg('history_short');
|
|
|
|
|
case 'protect':
|
2004-07-08 14:53:54 +00:00
|
|
|
return wfMsg('protect');
|
2004-04-25 00:32:24 +00:00
|
|
|
case 'unprotect':
|
|
|
|
|
return wfMsg('unprotect');
|
|
|
|
|
case 'delete':
|
|
|
|
|
return wfMsg('delete');
|
|
|
|
|
case 'watch':
|
|
|
|
|
return wfMsg('watch');
|
|
|
|
|
case 'unwatch':
|
|
|
|
|
return wfMsg('unwatch');
|
|
|
|
|
case 'submit':
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setHTMLTitle( $name . ' - ' . wfMsg( 'wikititlesuffix' ) );
|
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; }
|
|
|
|
|
function setSubtitle( $str ) { $this->mSubtitle = $str; }
|
|
|
|
|
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
|
|
|
}
|
2004-06-19 06:46:54 +00:00
|
|
|
function addCategoryLinks($newLinkArray) {
|
|
|
|
|
$this->mCategoryLinks += $newLinkArray;
|
|
|
|
|
}
|
|
|
|
|
function setCategoryLinks($newLinkArray) {
|
|
|
|
|
$this->mCategoryLinks += $newLinkArray;
|
|
|
|
|
}
|
|
|
|
|
|
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 = ''; }
|
2003-04-14 23:10:40 +00:00
|
|
|
function debug( $text ) { $this->mDebugtext .= $text; }
|
|
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
function setParserOptions( $options ) {
|
2004-02-29 08:43:29 +00:00
|
|
|
return wfSetVar( $this->mParserOptions, $options );
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Convert wikitext to HTML and add it to the buffer
|
|
|
|
|
*/
|
2004-09-17 15:24:43 +00:00
|
|
|
function addWikiText( $text, $linestart = true ) {
|
2004-09-25 18:22:21 +00:00
|
|
|
global $wgParser, $wgTitle, $wgUseTidy;
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-06-04 10:40:44 +00:00
|
|
|
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
|
2004-08-21 14:56:07 +00:00
|
|
|
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
|
|
|
|
|
$this->mCategoryLinks += $parserOutput->getCategoryLinks();
|
|
|
|
|
$this->addHTML( $parserOutput->getText() );
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
*/
|
2004-08-21 14:56:07 +00:00
|
|
|
function addPrimaryWikiText( $text, $cacheArticle ) {
|
2004-09-25 18:22:21 +00:00
|
|
|
global $wgParser, $wgParserCache, $wgUser, $wgTitle, $wgUseTidy;
|
2004-08-21 14:56:07 +00:00
|
|
|
|
|
|
|
|
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, true );
|
|
|
|
|
|
|
|
|
|
$text = $parserOutput->getText();
|
|
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
if ( $cacheArticle ) {
|
2004-06-04 10:40:44 +00:00
|
|
|
$wgParserCache->save( $parserOutput, $cacheArticle, $wgUser );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
|
|
|
|
|
$this->mCategoryLinks += $parserOutput->getCategoryLinks();
|
2004-08-21 14:56:07 +00:00
|
|
|
$this->addHTML( $text );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-09-17 15:24:43 +00:00
|
|
|
|
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();
|
|
|
|
|
$this->addHtml( ob_get_contents() );
|
|
|
|
|
ob_end_clean();
|
|
|
|
|
}
|
2004-11-29 11:26:24 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse wikitext and return the HTML. This is for special pages that add the text later
|
|
|
|
|
*/
|
|
|
|
|
function parse( $text, $linestart = true ) {
|
|
|
|
|
global $wgParser, $wgTitle;
|
|
|
|
|
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
|
|
|
|
|
return $parserOutput->getText();
|
|
|
|
|
}
|
2004-11-25 06:04:16 +00:00
|
|
|
|
2004-09-17 15:24:43 +00:00
|
|
|
/**
|
|
|
|
|
* @param $article
|
|
|
|
|
* @param $user
|
|
|
|
|
*/
|
2004-06-04 10:40:44 +00:00
|
|
|
function tryParserCache( $article, $user ) {
|
2004-06-04 11:17:38 +00:00
|
|
|
global $wgParserCache;
|
2004-06-04 10:40:44 +00:00
|
|
|
$parserOutput = $wgParserCache->get( $article, $user );
|
|
|
|
|
if ( $parserOutput !== false ) {
|
|
|
|
|
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
|
|
|
|
|
$this->mCategoryLinks += $parserOutput->getCategoryLinks();
|
|
|
|
|
$this->addHTML( $parserOutput->getText() );
|
|
|
|
|
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
|
|
|
|
2003-07-03 10:18:07 +00:00
|
|
|
function sendCacheControl() {
|
2004-03-13 13:42:17 +00:00
|
|
|
global $wgUseSquid, $wgUseESI;
|
2004-01-31 10:29:31 +00:00
|
|
|
# FIXME: This header may cause trouble with some versions of Internet Explorer
|
2004-08-22 17:24:50 +00:00
|
|
|
header( 'Vary: Accept-Encoding, Cookie' );
|
2004-05-20 12:46:31 +00:00
|
|
|
if( $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
|
|
|
|
|
wfDebug( "** proxy caching with ESI; {$this->mLastModified} **\n", false );
|
|
|
|
|
# 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
|
|
|
|
|
wfDebug( "** local proxy caching; {$this->mLastModified} **\n", false );
|
|
|
|
|
# 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.
|
|
|
|
|
wfDebug( "** private caching; {$this->mLastModified} **\n", false );
|
|
|
|
|
header( "Expires: -1" );
|
|
|
|
|
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 {
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "** 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.
|
2004-08-22 17:24:50 +00:00
|
|
|
header( 'Expires: -1' );
|
|
|
|
|
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() {
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgUser, $wgLang, $wgDebugComments, $wgCookieExpiration;
|
2004-09-22 04:24:50 +00:00
|
|
|
global $wgInputEncoding, $wgOutputEncoding, $wgContLanguageCode;
|
2004-07-10 03:09:26 +00:00
|
|
|
global $wgDebugRedirects, $wgMimeType, $wgProfiler;
|
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();
|
|
|
|
|
|
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
|
|
|
}
|
2004-07-10 01:17:37 +00:00
|
|
|
if ( isset( $wgProfiler ) ) { wfDebug( $wgProfiler->getOutput() ); }
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
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-08-21 14:56:07 +00:00
|
|
|
$this->transformBuffer();
|
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
|
|
|
|
|
|
|
|
$exp = time() + $wgCookieExpiration;
|
|
|
|
|
foreach( $this->mCookies as $name => $val ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
setcookie( $name, $val, $exp, '/' );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-11-25 06:04:16 +00:00
|
|
|
wfProfileIn( 'Output-skin' );
|
2003-09-11 12:21:03 +00:00
|
|
|
$sk->outputPage( $this );
|
2004-11-25 06:04:16 +00:00
|
|
|
wfProfileOut( 'Output-skin' );
|
2004-11-12 09:34:11 +00:00
|
|
|
|
|
|
|
|
$this->sendCacheControl();
|
|
|
|
|
ob_end_flush();
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +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;
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2003-11-15 23:06:59 +00:00
|
|
|
/*
|
|
|
|
|
# This code is unused anyway!
|
|
|
|
|
# Commenting out. --bv 2003-11-15
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2003-11-15 23:06:59 +00:00
|
|
|
$a = explode( ",", $_SERVER['HTTP_ACCEPT_CHARSET'] );
|
2003-04-14 23:10:40 +00:00
|
|
|
$best = 0.0;
|
|
|
|
|
$bestset = "*";
|
|
|
|
|
|
|
|
|
|
foreach ( $a as $s ) {
|
|
|
|
|
if ( preg_match( "/(.*);q=(.*)/", $s, $m ) ) {
|
|
|
|
|
$set = $m[1];
|
|
|
|
|
$q = (float)($m[2]);
|
|
|
|
|
} else {
|
|
|
|
|
$set = $s;
|
|
|
|
|
$q = 1.0;
|
|
|
|
|
}
|
|
|
|
|
if ( $q > $best ) {
|
|
|
|
|
$bestset = $set;
|
|
|
|
|
$best = $q;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#if ( "*" == $bestset ) { $bestset = "iso-8859-1"; }
|
|
|
|
|
if ( "*" == $bestset ) { $bestset = $wgOutputEncoding; }
|
|
|
|
|
$wgOutputEncoding = strtolower( $bestset );
|
|
|
|
|
|
|
|
|
|
# Disable for now
|
|
|
|
|
#
|
2003-11-15 23:06:59 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
$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.
|
|
|
|
|
*/
|
|
|
|
|
function reportTime() {
|
2003-12-11 20:16:34 +00:00
|
|
|
global $wgRequestTime;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-02-18 19:12:55 +00:00
|
|
|
$now = wfTime();
|
2004-08-22 17:24:50 +00:00
|
|
|
list( $usec, $sec ) = explode( ' ', $wgRequestTime );
|
2003-04-14 23:10:40 +00:00
|
|
|
$start = (float)$sec + (float)$usec;
|
|
|
|
|
$elapsed = $now - $start;
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-06-04 17:51:09 +00:00
|
|
|
# Use real server name if available, so we know which machine
|
|
|
|
|
# in a server farm generated the current page.
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( function_exists( 'posix_uname' ) ) {
|
2004-06-05 04:22:53 +00:00
|
|
|
$uname = @posix_uname();
|
|
|
|
|
} else {
|
|
|
|
|
$uname = false;
|
|
|
|
|
}
|
2004-06-04 17:51:09 +00:00
|
|
|
if( is_array( $uname ) && isset( $uname['nodename'] ) ) {
|
|
|
|
|
$hostname = $uname['nodename'];
|
|
|
|
|
} else {
|
|
|
|
|
# This may be a virtual server.
|
|
|
|
|
$hostname = $_SERVER['SERVER_NAME'];
|
|
|
|
|
}
|
2004-06-03 09:26:43 +00:00
|
|
|
$com = sprintf( "<!-- Served by %s in %01.2f secs. -->",
|
|
|
|
|
$hostname, $elapsed );
|
2003-04-14 23:10:40 +00:00
|
|
|
return $com;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Note: these arguments are keys into wfMsg(), not text!
|
|
|
|
|
*/
|
|
|
|
|
function errorpage( $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 = '';
|
2004-12-10 05:02:23 +00:00
|
|
|
$this->addHTML( '<p>' . wfMsg( $msg ) . "</p>\n" );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain( false );
|
|
|
|
|
|
|
|
|
|
$this->output();
|
2004-07-24 07:24:04 +00:00
|
|
|
wfErrorExit();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
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' ), '' );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->addHTML( wfMsg( 'sysoptext', $ap ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
|
|
|
|
|
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' ), '' );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->addHTML( wfMsg( 'developertext', $ap ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function loginToUse() {
|
2004-09-24 13:14:52 +00:00
|
|
|
global $wgUser, $wgTitle, $wgContLang;
|
2004-03-05 13:19:19 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'loginreqtitle' ) );
|
|
|
|
|
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
|
|
|
|
|
$this->setRobotpolicy( 'noindex,nofollow' );
|
2004-03-05 13:19:19 +00:00
|
|
|
$this->setArticleFlag( false );
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->mBodytext = '';
|
|
|
|
|
$this->addWikiText( wfMsg( 'loginreqtext' ) );
|
2004-03-05 13:19:19 +00:00
|
|
|
|
|
|
|
|
# We put a comment in the .html file so a Sysop can diagnose the page the
|
|
|
|
|
# user can't see.
|
2004-07-08 14:53:54 +00:00
|
|
|
$this->addHTML( "\n<!--" .
|
2004-09-24 13:14:52 +00:00
|
|
|
$wgContLang->getNsText( $wgTitle->getNamespace() ) .
|
2004-08-22 17:24:50 +00:00
|
|
|
':' .
|
|
|
|
|
$wgTitle->getDBkey() . '-->' );
|
2004-03-05 13:19:19 +00:00
|
|
|
$this->returnToMain(); # Flip back to the main page after 10 seconds.
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function databaseError( $fname, $sql, $error, $errno ) {
|
2005-02-06 06:33:05 +00:00
|
|
|
global $wgUser, $wgCommandLineMode, $wgShowSQLErrors;
|
2004-01-25 08:58:49 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsgNoDB( 'databaseerror' ) );
|
|
|
|
|
$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
|
|
|
|
2005-02-06 06:33:05 +00:00
|
|
|
if( $wgShowSQLErrors ) {
|
|
|
|
|
if ( $wgCommandLineMode ) {
|
|
|
|
|
$msg = wfMsgNoDB( 'dberrortextcl', htmlspecialchars( $sql ),
|
|
|
|
|
htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
|
|
|
|
|
} else {
|
|
|
|
|
$msg = wfMsgNoDB( 'dberrortext', htmlspecialchars( $sql ),
|
|
|
|
|
htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
} else {
|
2005-02-06 06:33:05 +00:00
|
|
|
if( $wgCommandLineMode ) {
|
|
|
|
|
$msg = wfMsg( 'internalerror' );
|
|
|
|
|
} else {
|
|
|
|
|
$msg = htmlspecialchars( wfMsg( 'internalerror' ) );
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
}
|
2003-09-21 13:10:10 +00:00
|
|
|
|
2004-01-25 08:58:49 +00:00
|
|
|
if ( $wgCommandLineMode || !is_object( $wgUser )) {
|
2004-08-22 17:24:50 +00:00
|
|
|
print $msg."\n";
|
2004-07-24 07:24:04 +00:00
|
|
|
wfErrorExit();
|
2003-04-16 07:30:52 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mBodytext = $msg;
|
|
|
|
|
$this->output();
|
2004-07-24 07:24:04 +00:00
|
|
|
wfErrorExit();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function readOnlyPage( $source = null, $protected = false ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgUser, $wgReadOnlyFile;
|
|
|
|
|
|
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 ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->setPageTitle( wfMsg( 'viewsource' ) );
|
|
|
|
|
$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' ) );
|
2003-11-09 11:45:12 +00:00
|
|
|
$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 ) {
|
|
|
|
|
$source = wfMsg( 'noarticletext' );
|
2004-04-30 07:18:38 +00:00
|
|
|
}
|
2004-08-22 17:24:50 +00:00
|
|
|
$rows = $wgUser->getOption( 'rows' );
|
|
|
|
|
$cols = $wgUser->getOption( 'cols' );
|
2004-04-30 07:18:38 +00:00
|
|
|
$text = "\n<textarea 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 );
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function fatalError( $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;
|
|
|
|
|
$this->output();
|
2004-07-24 07:24:04 +00:00
|
|
|
wfErrorExit();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function unexpectedValueError( $name, $val ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->fatalError( wfMsg( 'unexpected', $name, $val ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function fileCopyError( $old, $new ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->fatalError( wfMsg( 'filecopyerror', $old, $new ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function fileRenameError( $old, $new ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->fatalError( wfMsg( 'filerenameerror', $old, $new ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function fileDeleteError( $name ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->fatalError( wfMsg( 'filedeleteerror', $name ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
function fileNotFoundError( $name ) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->fatalError( 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;
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-01 12:44:54 +00:00
|
|
|
if ( $returnto == NULL ) {
|
|
|
|
|
$returnto = $wgRequest->getText( 'returnto' );
|
|
|
|
|
}
|
2004-10-14 05:08:33 +00:00
|
|
|
$returnto = htmlspecialchars( $returnto );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( '' == $returnto ) {
|
2004-09-24 18:24:01 +00:00
|
|
|
$returnto = wfMsgForContent( 'mainpage' );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-12-10 05:02:23 +00:00
|
|
|
$link = $sk->makeKnownLink( $returnto, '' );
|
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-03-06 01:49:16 +00:00
|
|
|
$titleObj = Title::newFromText( $returnto );
|
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
|
|
|
/**
|
|
|
|
|
* This function takes the existing and broken links for the page
|
|
|
|
|
* and uses the first 10 of them for META keywords
|
|
|
|
|
*/
|
|
|
|
|
function addMetaTags () {
|
2004-03-20 13:27:08 +00:00
|
|
|
global $wgLinkCache , $wgOut ;
|
|
|
|
|
$good = array_keys ( $wgLinkCache->mGoodLinks ) ;
|
|
|
|
|
$bad = array_keys ( $wgLinkCache->mBadLinks ) ;
|
|
|
|
|
$a = array_merge ( $good , $bad ) ;
|
|
|
|
|
$a = array_slice ( $a , 0 , 10 ) ; # 10 keywords max
|
2004-08-22 17:24:50 +00:00
|
|
|
$a = implode ( ',' , $a ) ;
|
2004-04-15 12:27:31 +00:00
|
|
|
$strip = array(
|
2004-08-16 19:06:03 +00:00
|
|
|
"/<.*?" . ">/" => '',
|
2004-04-15 12:27:31 +00:00
|
|
|
"/[_]/" => ' '
|
|
|
|
|
);
|
|
|
|
|
$a = htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),$a ));
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
$wgOut->addMeta ( 'KEYWORDS' , $a ) ;
|
2004-03-20 13:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @private
|
|
|
|
|
*/
|
|
|
|
|
function headElement() {
|
2004-09-24 13:14:52 +00:00
|
|
|
global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
|
|
|
|
|
global $wgUser, $wgContLang, $wgRequest;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-02-07 14:03:02 +00:00
|
|
|
$xml = ($wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml');
|
2004-04-03 10:01:08 +00:00
|
|
|
if( $xml ) {
|
|
|
|
|
$ret = "<" . "?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?" . ">\n";
|
|
|
|
|
} 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
|
|
|
|
|
|
|
|
if ( "" == $this->mHTMLtitle ) {
|
2004-04-11 01:25:00 +00:00
|
|
|
$this->mHTMLtitle = wfMsg( "pagetitle", $this->mPagetitle );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-04-03 10:01:08 +00:00
|
|
|
if( $xml ) {
|
2005-02-07 14:03:02 +00:00
|
|
|
$xmlbits = "xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"$wgContLanguageCode\"";
|
2004-04-03 10:01:08 +00:00
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$xmlbits = '';
|
2004-04-03 10:01:08 +00:00
|
|
|
}
|
2004-09-24 13:14:52 +00:00
|
|
|
$rtl = $wgContLang->isRTL() ? " dir='RTL'" : '';
|
|
|
|
|
$ret .= "<html $xmlbits lang=\"$wgContLanguageCode\" $rtl>\n";
|
2004-04-11 01:25:00 +00:00
|
|
|
$ret .= "<head>\n<title>" . htmlspecialchars( $this->mHTMLtitle ) . "</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();
|
|
|
|
|
|
|
|
|
|
$ret .= "</head>\n";
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
2004-07-08 14:53:54 +00:00
|
|
|
|
2004-04-09 04:53:52 +00:00
|
|
|
function getHeadLinks() {
|
2004-04-27 12:18:48 +00:00
|
|
|
global $wgRequest, $wgStylePath;
|
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
|
|
|
}
|
|
|
|
|
$p = $this->mRobotpolicy;
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( '' == $p ) { $p = 'index,follow'; }
|
2004-04-03 10:01:08 +00:00
|
|
|
$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(
|
2004-08-16 19:06:03 +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' );
|
2004-04-28 06:14:49 +00:00
|
|
|
$ret .= "<link rel='alternate' type='application/rss+atom' 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;
|
|
|
|
|
}
|
2004-07-18 03:23:11 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Run any necessary pre-output transformations on the buffer text
|
|
|
|
|
*/
|
|
|
|
|
function transformBuffer( $options = 0 ) {
|
2004-08-21 14:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
2004-12-19 08:00:50 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-08-06 22:30:47 +00:00
|
|
|
|
2004-08-16 23:57:25 +00:00
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|