2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2003-04-14 23:10:40 +00:00
|
|
|
# See design.doc
|
|
|
|
|
|
2003-08-30 10:04:59 +00:00
|
|
|
if($wgUseTeX) include_once( "Math.php" );
|
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-02-26 13:37:26 +00:00
|
|
|
var $mSubtitle, $mRedirect, $mHeadtext;
|
2003-07-11 07:02:22 +00:00
|
|
|
var $mLastModified, $mCategoryLinks;
|
2003-04-14 23:10:40 +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-01-07 02:51:47 +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;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
function OutputPage()
|
|
|
|
|
{
|
|
|
|
|
$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 =
|
2003-12-10 10:30:14 +00:00
|
|
|
$this->mSubtitle = $this->mDebugtext = $this->mRobotpolicy =
|
|
|
|
|
$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 );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addHeader( $name, $val ) { array_push( $this->mHeaders, "$name: $val" ) ; }
|
|
|
|
|
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 ); }
|
|
|
|
|
function addLink( $rel, $rev, $target ) { array_push( $this->mLinktags, array( $rel, $rev, $target ) ); }
|
|
|
|
|
|
2003-12-11 20:16:34 +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.
|
2003-04-14 23:10:40 +00:00
|
|
|
function checkLastModified ( $timestamp )
|
|
|
|
|
{
|
|
|
|
|
global $wgLang, $wgCachePages, $wgUser;
|
2003-07-10 04:55:41 +00:00
|
|
|
if( !$wgCachePages ) {
|
|
|
|
|
wfDebug( "CACHE DISABLED\n", false );
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
if( preg_match( '/MSIE ([1-4]|5\.0)/', $_SERVER["HTTP_USER_AGENT"] ) ) {
|
|
|
|
|
# IE 5.0 has probs with our caching
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "-- bad client, not caching\n", false );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if( $wgUser->getOption( "nocache" ) ) {
|
|
|
|
|
wfDebug( "USER DISABLED CACHE\n", false );
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2004-01-30 17:07:50 +00:00
|
|
|
|
|
|
|
|
$lastmod = gmdate( "D, j M Y H:i:s", wfTimestamp2Unix(
|
2003-07-10 04:55:41 +00:00
|
|
|
max( $timestamp, $wgUser->mTouched ) ) ) . " GMT";
|
|
|
|
|
|
2003-11-15 23:06:59 +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"] );
|
|
|
|
|
$ismodsince = wfUnix2Timestamp( strtotime( $modsince ) );
|
|
|
|
|
wfDebug( "-- client send If-Modified-Since: " . $modsince . "\n", false );
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "-- we might send Last-Modified : $lastmod\n", false );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if( ($ismodsince >= $timestamp ) and $wgUser->validateCache( $ismodsince ) ) {
|
|
|
|
|
# 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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setRobotpolicy( $str ) { $this->mRobotpolicy = $str; }
|
|
|
|
|
function setHTMLtitle( $name ) { $this->mHTMLtitle = $name; }
|
|
|
|
|
function setPageTitle( $name ) { $this->mPagetitle = $name; }
|
|
|
|
|
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; }
|
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-01-17 09:49:43 +00:00
|
|
|
function setArticleRelated( $v )
|
|
|
|
|
{
|
|
|
|
|
$this->mIsArticleRelated = $v;
|
|
|
|
|
if ( !$v ) {
|
|
|
|
|
$this->mIsarticle = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function setArticleFlag( $v ) {
|
|
|
|
|
$this->mIsarticle = $v;
|
|
|
|
|
if ( $v ) {
|
|
|
|
|
$this->mIsArticleRelated = $v;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-17 10:07:03 +00:00
|
|
|
function isArticleRelated()
|
2004-01-17 09:49:43 +00:00
|
|
|
{
|
|
|
|
|
return $this->mIsArticleRelated;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function getLanguageLinks() {
|
2003-11-09 11:45:12 +00:00
|
|
|
global $wgTitle, $wgLanguageCode;
|
|
|
|
|
global $wgDBconnection, $wgDBname;
|
|
|
|
|
return $this->mLanguageLinks;
|
2003-04-14 23:10:40 +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; }
|
|
|
|
|
function addHeadtext( $text ) { $this->mHeadtext .= $text; }
|
|
|
|
|
function debug( $text ) { $this->mDebugtext .= $text; }
|
|
|
|
|
|
2004-02-29 08:43:29 +00:00
|
|
|
function setParserOptions( $options )
|
|
|
|
|
{
|
|
|
|
|
return wfSetVar( $this->mParserOptions, $options );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# First pass--just handle <nowiki> sections, pass the rest off
|
|
|
|
|
# to doWikiPass2() which does all the real work.
|
|
|
|
|
#
|
2004-02-26 13:37:26 +00:00
|
|
|
# $cacheArticle - assume this text is the main text for the given article
|
|
|
|
|
#
|
|
|
|
|
function addWikiText( $text, $linestart = true, $cacheArticle = NULL )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2004-02-29 08:43:29 +00:00
|
|
|
global $wgParser, $wgParserCache, $wgUser, $wgTitle;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
$parserOutput = false;
|
|
|
|
|
if ( $cacheArticle ) {
|
|
|
|
|
$parserOutput = $wgParserCache->get( $cacheArticle, $wgUser );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
if ( $parserOutput === false ) {
|
2004-02-29 08:43:29 +00:00
|
|
|
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
|
2004-02-26 13:37:26 +00:00
|
|
|
if ( $cacheArticle ) {
|
|
|
|
|
$wgParserCache->save( $parserOutput, $cacheArticle, $wgUser );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
2003-07-05 01:12:22 +00:00
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
|
|
|
|
|
$this->mCategoryLinks += $parserOutput->getCategoryLinks();
|
|
|
|
|
|
|
|
|
|
$this->addHTML( $parserOutput->getText() );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-02-08 21:12:07 +00:00
|
|
|
# Set the maximum cache time on the Squid in seconds
|
|
|
|
|
function setSquidMaxage( $maxage ) {
|
|
|
|
|
global $wgSquidMaxage;
|
|
|
|
|
$wgSquidMaxage = $maxage;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-03 10:18:07 +00:00
|
|
|
function sendCacheControl() {
|
2004-02-08 21:13:42 +00:00
|
|
|
global $wgUseSquid, $wgUseESI, $wgSquidMaxage;
|
2004-01-31 10:29:31 +00:00
|
|
|
# FIXME: This header may cause trouble with some versions of Internet Explorer
|
2004-01-30 17:07:50 +00:00
|
|
|
header( "Vary: Accept-Encoding, Cookie" );
|
2003-07-03 10:18:07 +00:00
|
|
|
if( $this->mLastModified != "" ) {
|
2004-02-04 00:45:48 +00:00
|
|
|
if( $wgUseSquid && ! isset( $_COOKIE[ini_get( "session.name") ] ) &&
|
|
|
|
|
! $this->isPrintable() )
|
|
|
|
|
{
|
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-02-03 13:14:10 +00:00
|
|
|
header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$wgSquidMaxage.', 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-02-03 13:14:10 +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-02-03 14:39:50 +00:00
|
|
|
header( 'Cache-Control: s-maxage='.$wgSquidMaxage.', 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" );
|
|
|
|
|
}
|
2003-07-03 10:18:07 +00:00
|
|
|
header( "Last-modified: {$this->mLastModified}" );
|
|
|
|
|
} else {
|
2003-07-10 04:55:41 +00:00
|
|
|
wfDebug( "** no caching **\n", false );
|
2004-01-31 10:29:31 +00:00
|
|
|
header( "Expires: -1" );
|
|
|
|
|
header( "Cache-Control: no-cache" );
|
2003-07-03 10:18:07 +00:00
|
|
|
header( "Pragma: no-cache" );
|
|
|
|
|
header( "Last-modified: " . gmdate( "D, j M Y H:i:s" ) . " GMT" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# Finally, all the text has been munged and accumulated into
|
|
|
|
|
# the object, let's actually output it:
|
|
|
|
|
#
|
|
|
|
|
function output()
|
|
|
|
|
{
|
|
|
|
|
global $wgUser, $wgLang, $wgDebugComments, $wgCookieExpiration;
|
|
|
|
|
global $wgInputEncoding, $wgOutputEncoding, $wgLanguageCode;
|
2004-03-05 03:18:31 +00:00
|
|
|
global $wgDebugRedirects;
|
2003-12-11 20:16:34 +00:00
|
|
|
if( $this->mDoNothing ){
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-10-25 08:01:33 +00:00
|
|
|
$fname = "OutputPage::output";
|
|
|
|
|
wfProfileIn( $fname );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
|
|
|
|
|
if ( "" != $this->mRedirect ) {
|
2003-12-22 10:21:18 +00:00
|
|
|
if( substr( $this->mRedirect, 0, 4 ) != "http" ) {
|
|
|
|
|
# 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-03-01 22:16:39 +00:00
|
|
|
$this->mLastModified = gmdate( "D, j M Y H:i:s", wfTimestamp2Unix(
|
|
|
|
|
max( $timestamp, $wgUser->mTouched ) ) ) . " GMT";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->sendCacheControl();
|
|
|
|
|
|
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 {
|
|
|
|
|
header( "Location: {$this->mRedirect}" );
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2004-03-01 22:16:39 +00:00
|
|
|
|
2004-03-05 03:18:31 +00:00
|
|
|
|
2004-03-01 22:16:39 +00:00
|
|
|
$this->sendCacheControl();
|
|
|
|
|
|
|
|
|
|
header( "Content-type: text/html; charset={$wgOutputEncoding}" );
|
|
|
|
|
header( "Content-language: {$wgLanguageCode}" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$exp = time() + $wgCookieExpiration;
|
|
|
|
|
foreach( $this->mCookies as $name => $val ) {
|
|
|
|
|
setcookie( $name, $val, $exp, "/" );
|
|
|
|
|
}
|
2004-02-26 13:37:26 +00:00
|
|
|
|
2003-09-11 12:21:03 +00:00
|
|
|
$sk->outputPage( $this );
|
2004-01-10 19:42:33 +00:00
|
|
|
# flush();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function out( $ins )
|
|
|
|
|
{
|
|
|
|
|
global $wgInputEncoding, $wgOutputEncoding, $wgLang;
|
|
|
|
|
if ( 0 == strcmp( $wgInputEncoding, $wgOutputEncoding ) ) {
|
|
|
|
|
$outs = $ins;
|
|
|
|
|
} else {
|
|
|
|
|
$outs = $wgLang->iconv( $wgInputEncoding, $wgOutputEncoding, $ins );
|
|
|
|
|
if ( false === $outs ) { $outs = $ins; }
|
|
|
|
|
}
|
|
|
|
|
print $outs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setEncodings()
|
|
|
|
|
{
|
2003-11-18 02:39:38 +00:00
|
|
|
global $wgInputEncoding, $wgOutputEncoding;
|
2003-04-14 23:10:40 +00:00
|
|
|
global $wgUser, $wgLang;
|
|
|
|
|
|
|
|
|
|
$wgInputEncoding = strtolower( $wgInputEncoding );
|
|
|
|
|
|
|
|
|
|
if( $wgUser->getOption( 'altencoding' ) ) {
|
|
|
|
|
$wgLang->setAltEncoding();
|
|
|
|
|
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;
|
|
|
|
|
}
|
2003-11-15 23:06:59 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
# This code is unused anyway!
|
|
|
|
|
# Commenting out. --bv 2003-11-15
|
|
|
|
|
|
|
|
|
|
$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;
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-11 20:16:34 +00:00
|
|
|
# Returns a HTML comment with the elapsed time since request.
|
|
|
|
|
# This method has no side effects.
|
2003-04-14 23:10:40 +00:00
|
|
|
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();
|
2003-04-14 23:10:40 +00:00
|
|
|
list( $usec, $sec ) = explode( " ", $wgRequestTime );
|
|
|
|
|
$start = (float)$sec + (float)$usec;
|
|
|
|
|
$elapsed = $now - $start;
|
|
|
|
|
$com = sprintf( "<!-- Time since request: %01.2f secs. -->",
|
|
|
|
|
$elapsed );
|
|
|
|
|
return $com;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Note: these arguments are keys into wfMsg(), not text!
|
|
|
|
|
#
|
|
|
|
|
function errorpage( $title, $msg )
|
|
|
|
|
{
|
|
|
|
|
global $wgTitle;
|
|
|
|
|
|
|
|
|
|
$this->mDebugtext .= "Original title: " .
|
|
|
|
|
$wgTitle->getPrefixedText() . "\n";
|
|
|
|
|
$this->setHTMLTitle( wfMsg( "errorpagetitle" ) );
|
|
|
|
|
$this->setPageTitle( wfMsg( $title ) );
|
|
|
|
|
$this->setRobotpolicy( "noindex,nofollow" );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$this->mBodytext = "";
|
|
|
|
|
$this->addHTML( "<p>" . wfMsg( $msg ) . "\n" );
|
|
|
|
|
$this->returnToMain( false );
|
|
|
|
|
|
|
|
|
|
$this->output();
|
2003-12-10 15:05:08 +00:00
|
|
|
wfAbruptExit();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sysopRequired()
|
|
|
|
|
{
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
$this->setHTMLTitle( wfMsg( "errorpagetitle" ) );
|
|
|
|
|
$this->setPageTitle( wfMsg( "sysoptitle" ) );
|
|
|
|
|
$this->setRobotpolicy( "noindex,nofollow" );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mBodytext = "";
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$ap = $sk->makeKnownLink( wfMsg( "administrators" ), "" );
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->addHTML( wfMsg( "sysoptext", $ap ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function developerRequired()
|
|
|
|
|
{
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
$this->setHTMLTitle( wfMsg( "errorpagetitle" ) );
|
|
|
|
|
$this->setPageTitle( wfMsg( "developertitle" ) );
|
|
|
|
|
$this->setRobotpolicy( "noindex,nofollow" );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mBodytext = "";
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$ap = $sk->makeKnownLink( wfMsg( "administrators" ), "" );
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->addHTML( wfMsg( "developertext", $ap ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain();
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-05 13:19:19 +00:00
|
|
|
function loginToUse()
|
|
|
|
|
{
|
|
|
|
|
global $wgUser, $wgTitle, $wgLang;
|
|
|
|
|
|
|
|
|
|
$this->setHTMLTitle( wfMsg( "errorpagetitle" ) );
|
|
|
|
|
$this->setPageTitle( wfMsg( "loginreqtitle" ) );
|
|
|
|
|
$this->setRobotpolicy( "noindex,nofollow" );
|
|
|
|
|
$this->setArticleFlag( false );
|
|
|
|
|
$this->mBodytext = "";
|
|
|
|
|
$this->addWikiText( wfMsg( "loginreqtext" ) );
|
|
|
|
|
|
|
|
|
|
# We put a comment in the .html file so a Sysop can diagnose the page the
|
|
|
|
|
# user can't see.
|
|
|
|
|
$this->addHTML( "\n<!--" .
|
|
|
|
|
$wgLang->getNsText( $wgTitle->getNamespace() ) .
|
|
|
|
|
":" .
|
|
|
|
|
$wgTitle->getDBkey() . "-->" );
|
|
|
|
|
$this->returnToMain(); # Flip back to the main page after 10 seconds.
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-11 13:03:58 +00:00
|
|
|
function databaseError( $fname, &$conn )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2003-04-16 07:30:52 +00:00
|
|
|
global $wgUser, $wgCommandLineMode;
|
2004-01-25 08:58:49 +00:00
|
|
|
|
2003-09-21 13:10:10 +00:00
|
|
|
$this->setPageTitle( wfMsgNoDB( "databaseerror" ) );
|
2003-04-14 23:10:40 +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-04-16 07:30:52 +00:00
|
|
|
if ( $wgCommandLineMode ) {
|
2003-09-21 13:10:10 +00:00
|
|
|
$msg = wfMsgNoDB( "dberrortextcl" );
|
2003-04-16 07:30:52 +00:00
|
|
|
} else {
|
2003-11-15 14:32:58 +00:00
|
|
|
$msg = wfMsgNoDB( "dberrortext" );
|
2003-04-16 07:30:52 +00:00
|
|
|
}
|
2003-09-21 13:10:10 +00:00
|
|
|
|
2004-02-11 13:03:58 +00:00
|
|
|
$msg = str_replace( "$1", htmlspecialchars( $conn->lastQuery() ), $msg );
|
2003-04-14 23:10:40 +00:00
|
|
|
$msg = str_replace( "$2", htmlspecialchars( $fname ), $msg );
|
2004-02-11 13:03:58 +00:00
|
|
|
$msg = str_replace( "$3", $conn->lastErrno(), $msg );
|
|
|
|
|
$msg = str_replace( "$4", htmlspecialchars( $conn->lastError() ), $msg );
|
2003-09-21 13:10:10 +00:00
|
|
|
|
2004-01-25 08:58:49 +00:00
|
|
|
if ( $wgCommandLineMode || !is_object( $wgUser )) {
|
2003-09-21 13:10:10 +00:00
|
|
|
print "$msg\n";
|
2003-12-10 15:05:08 +00:00
|
|
|
wfAbruptExit();
|
2003-04-16 07:30:52 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
$sk = $wgUser->getSkin();
|
2003-09-21 13:10:10 +00:00
|
|
|
$shlink = $sk->makeKnownLink( wfMsgNoDB( "searchhelppage" ),
|
|
|
|
|
wfMsgNoDB( "searchingwikipedia" ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
$msg = str_replace( "$5", $shlink, $msg );
|
|
|
|
|
$this->mBodytext = $msg;
|
|
|
|
|
$this->output();
|
2003-12-10 15:05:08 +00:00
|
|
|
wfAbruptExit();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2003-11-09 11:45:12 +00:00
|
|
|
function readOnlyPage( $source = "", $protected = false )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
global $wgUser, $wgReadOnlyFile;
|
|
|
|
|
|
|
|
|
|
$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 ) {
|
|
|
|
|
$this->setPageTitle( wfMsg( "viewsource" ) );
|
|
|
|
|
$this->addWikiText( wfMsg( "protectedtext" ) );
|
|
|
|
|
} else {
|
|
|
|
|
$this->setPageTitle( wfMsg( "readonly" ) );
|
|
|
|
|
$reason = file_get_contents( $wgReadOnlyFile );
|
|
|
|
|
$this->addHTML( wfMsg( "readonlytext", $reason ) );
|
|
|
|
|
}
|
2003-09-09 05:46:22 +00:00
|
|
|
|
|
|
|
|
if($source) {
|
|
|
|
|
$rows = $wgUser->getOption( "rows" );
|
|
|
|
|
$cols = $wgUser->getOption( "cols" );
|
|
|
|
|
$text .= "</p>\n<textarea cols='$cols' rows='$rows' readonly>" .
|
|
|
|
|
htmlspecialchars( $source ) . "\n</textarea>";
|
2003-11-09 11:45:12 +00:00
|
|
|
$this->addHTML( $text );
|
2003-09-09 05:46:22 +00:00
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->returnToMain( false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fatalError( $message )
|
|
|
|
|
{
|
|
|
|
|
$this->setPageTitle( wfMsg( "internalerror" ) );
|
|
|
|
|
$this->setRobotpolicy( "noindex,nofollow" );
|
2004-01-17 09:49:43 +00:00
|
|
|
$this->setArticleRelated( false );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$this->mBodytext = $message;
|
|
|
|
|
$this->output();
|
2003-12-10 15:05:08 +00:00
|
|
|
wfAbruptExit();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function unexpectedValueError( $name, $val )
|
|
|
|
|
{
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->fatalError( wfMsg( "unexpected", $name, $val ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fileCopyError( $old, $new )
|
|
|
|
|
{
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->fatalError( wfMsg( "filecopyerror", $old, $new ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fileRenameError( $old, $new )
|
|
|
|
|
{
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->fatalError( wfMsg( "filerenameerror", $old, $new ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fileDeleteError( $name )
|
|
|
|
|
{
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->fatalError( wfMsg( "filedeleteerror", $name ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fileNotFoundError( $name )
|
|
|
|
|
{
|
2003-11-15 14:32:58 +00:00
|
|
|
$this->fatalError( wfMsg( "filenotfound", $name ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function returnToMain( $auto = true )
|
|
|
|
|
{
|
|
|
|
|
global $wgUser, $wgOut, $returnto;
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
if ( "" == $returnto ) {
|
|
|
|
|
$returnto = wfMsg( "mainpage" );
|
|
|
|
|
}
|
|
|
|
|
$link = $sk->makeKnownLink( $returnto, "" );
|
|
|
|
|
|
2003-11-15 14:32:58 +00:00
|
|
|
$r = wfMsg( "returnto", $link );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( $auto ) {
|
|
|
|
|
$wgOut->addMeta( "http:Refresh", "10;url=" .
|
|
|
|
|
wfLocalUrlE( wfUrlencode( $returnto ) ) );
|
|
|
|
|
}
|
|
|
|
|
$wgOut->addHTML( "\n<p>$r\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */ function headElement()
|
|
|
|
|
{
|
2003-07-08 20:17:36 +00:00
|
|
|
global $wgDocType, $wgDTD, $wgUser, $wgLanguageCode, $wgOutputEncoding, $wgLang;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-07-02 06:22:03 +00:00
|
|
|
$ret = "<!DOCTYPE HTML PUBLIC \"$wgDocType\"\n \"$wgDTD\">\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( "" == $this->mHTMLtitle ) {
|
|
|
|
|
$this->mHTMLtitle = $this->mPagetitle;
|
|
|
|
|
}
|
2003-07-08 20:17:36 +00:00
|
|
|
$rtl = $wgLang->isRTL() ? " dir='RTL'" : "";
|
|
|
|
|
$ret .= "<html lang=\"$wgLanguageCode\"$rtl><head><title>{$this->mHTMLtitle}</title>\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
array_push( $this->mMetatags, array( "http:Content-type", "text/html; charset={$wgOutputEncoding}" ) );
|
|
|
|
|
foreach ( $this->mMetatags as $tag ) {
|
|
|
|
|
if ( 0 == strcasecmp( "http:", substr( $tag[0], 0, 5 ) ) ) {
|
|
|
|
|
$a = "http-equiv";
|
|
|
|
|
$tag[0] = substr( $tag[0], 5 );
|
|
|
|
|
} else {
|
|
|
|
|
$a = "name";
|
|
|
|
|
}
|
|
|
|
|
$ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\">\n";
|
|
|
|
|
}
|
|
|
|
|
$p = $this->mRobotpolicy;
|
|
|
|
|
if ( "" == $p ) { $p = "index,follow"; }
|
|
|
|
|
$ret .= "<meta name=\"robots\" content=\"$p\">\n";
|
|
|
|
|
|
|
|
|
|
if ( count( $this->mKeywords ) > 0 ) {
|
|
|
|
|
$ret .= "<meta name=\"keywords\" content=\"" .
|
|
|
|
|
implode( ",", $this->mKeywords ) . "\">\n";
|
|
|
|
|
}
|
|
|
|
|
foreach ( $this->mLinktags as $tag ) {
|
|
|
|
|
$ret .= "<link ";
|
|
|
|
|
if ( "" != $tag[0] ) { $ret .= "rel=\"{$tag[0]}\" "; }
|
|
|
|
|
if ( "" != $tag[1] ) { $ret .= "rev=\"{$tag[1]}\" "; }
|
|
|
|
|
$ret .= "href=\"{$tag[2]}\">\n";
|
|
|
|
|
}
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
$ret .= $sk->getHeadScripts();
|
|
|
|
|
$ret .= $sk->getUserStyles();
|
|
|
|
|
|
|
|
|
|
$ret .= "</head>\n";
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|