wiki.techinc.nl/includes/OutputPage.php

952 lines
28 KiB
PHP
Raw Normal View History

<?php
/**
*
* @package MediaWiki
*/
2004-08-12 06:54:58 +00:00
/**
* This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
*/
if( defined( 'MEDIAWIKI' ) ) {
2003-04-14 23:10:40 +00:00
# See design.doc
if($wgUseTeX) require_once( 'Math.php' );
2003-04-14 23:10:40 +00:00
define( 'RLH_FOR_UPDATE', 1 );
/**
* @todo document
* @package MediaWiki
*/
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;
var $mSubtitle, $mRedirect;
var $mLastModified, $mCategoryLinks;
var $mScripts, $mLinkColours;
var $mSuppressQuickbar;
var $mOnloadHandler;
var $mDoNothing;
var $mContainsOldMagic, $mContainsNewMagic;
var $mIsArticleRelated;
var $mParserOptions;
var $mShowFeedLinks = false;
2004-03-23 10:19:31 +00:00
var $mEnableClientCache = true;
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 =
$this->mRedirect = $this->mLastModified =
$this->mSubtitle = $this->mDebugtext = $this->mRobotpolicy =
$this->mOnloadHandler = "";
$this->mIsArticleRelated = $this->mIsarticle = $this->mPrintable = true;
$this->mSuppressQuickbar = $this->mPrintable = false;
2003-04-14 23:10:40 +00:00
$this->mLanguageLinks = array();
$this->mCategoryLinks = array() ;
$this->mDoNothing = false;
$this->mContainsOldMagic = $this->mContainsNewMagic = 0;
$this->mParserOptions = ParserOptions::newFromUser( $temp = NULL );
$this->mSquidMaxage = 0;
$this->mScripts = "";
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 addScript( $script ) { $this->mScripts .= $script; }
function getScript() { return $this->mScripts; }
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
function addMetadataLink( $linkarr ) {
# note: buggy CC software only reads first "meta" link
static $haveMeta = false;
$linkarr['rel'] = ($haveMeta) ? 'alternate meta' : 'meta';
$this->addLink( $linkarr );
$haveMeta = true;
}
/**
* 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;
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;
}
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' ) ) {
2003-07-10 04:55:41 +00:00
wfDebug( "USER DISABLED CACHE\n", false );
2003-04-14 23:10:40 +00:00
return;
}
2004-09-06 10:10:49 +00:00
$lastmod = gmdate( "D, j M Y H:i:s", wfTimestamp(TS_UNIX, max( $timestamp, $wgUser->mTouched ) ) ) . " GMT";
if( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
# IE sends sizes after the date like this:
# 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 ) );
wfDebug( "-- client send If-Modified-Since: " . $modsince . "\n", false );
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;
$this->sendCacheControl();
2003-07-10 04:55:41 +00:00
wfDebug( "CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
$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 getPageTitleActionText () {
global $action;
switch($action) {
case 'edit':
return wfMsg('edit');
case 'history':
return wfMsg('history_short');
case 'protect':
return wfMsg('protect');
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');
case 'info':
return wfMsg('info_short');
default:
return '';
}
}
2003-04-14 23:10:40 +00:00
function setRobotpolicy( $str ) { $this->mRobotpolicy = $str; }
function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; }
function setPageTitle( $name ) {
global $action;
$this->mPagetitle = $name;
if(!empty($action)) {
$taction = $this->getPageTitleActionText();
if( !empty( $taction ) ) {
$name .= ' - '.$taction;
}
}
$this->setHTMLTitle( $name . ' - ' . wfMsg( 'wikititlesuffix' ) );
}
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; }
function setSyndicated( $show = true ) { $this->mShowFeedLinks = $show; }
function isSyndicated() { return $this->mShowFeedLinks; }
function setOnloadHandler( $js ) { $this->mOnloadHandler = $js; }
function getOnloadHandler() { return $this->mOnloadHandler; }
function disable() { $this->mDoNothing = true; }
2003-04-14 23:10:40 +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()
{
return $this->mIsArticleRelated;
}
2003-04-14 23:10:40 +00:00
function getLanguageLinks() {
return $this->mLanguageLinks;
2003-04-14 23:10:40 +00:00
}
2004-06-01 18:29:31 +00:00
function addLanguageLinks($newLinkArray) {
$this->mLanguageLinks += $newLinkArray;
}
function setLanguageLinks($newLinkArray) {
$this->mLanguageLinks = $newLinkArray;
}
2004-06-19 06:46:54 +00:00
function getCategoryLinks() {
return $this->mCategoryLinks;
}
2004-06-19 06:46:54 +00:00
function addCategoryLinks($newLinkArray) {
$this->mCategoryLinks += $newLinkArray;
}
function setCategoryLinks($newLinkArray) {
$this->mCategoryLinks += $newLinkArray;
}
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 debug( $text ) { $this->mDebugtext .= $text; }
function setParserOptions( $options )
{
return wfSetVar( $this->mParserOptions, $options );
}
/**
* Convert wikitext to HTML and add it to the buffer
*/
function addWikiText( $text, $linestart = true )
2003-04-14 23:10:40 +00:00
{
global $wgParser, $wgTitle;
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
$this->mCategoryLinks += $parserOutput->getCategoryLinks();
$this->addHTML( $parserOutput->getText() );
}
/**
* 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
*/
function addPrimaryWikiText( $text, $cacheArticle ) {
global $wgParser, $wgParserCache, $wgUser, $wgTitle;
$parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, true );
# Replace link holders
$text = $parserOutput->getText();
$this->replaceLinkHolders( $text );
$parserOutput->setText( $text );
if ( $cacheArticle ) {
$wgParserCache->save( $parserOutput, $cacheArticle, $wgUser );
2003-04-14 23:10:40 +00:00
}
$this->mLanguageLinks += $parserOutput->getLanguageLinks();
$this->mCategoryLinks += $parserOutput->getCategoryLinks();
$this->addHTML( $text );
2003-04-14 23:10:40 +00:00
}
function tryParserCache( $article, $user ) {
2004-06-04 11:17:38 +00:00
global $wgParserCache;
$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;
}
}
/**
* Set the maximum cache time on the Squid in seconds
*/
function setSquidMaxage( $maxage ) {
$this->mSquidMaxage = $maxage;
}
/**
* Use enableClientCache(false) to force it to send nocache headers
*/
2004-03-23 10:19:31 +00:00
function enableClientCache( $state ) {
return wfSetVar( $this->mEnableClientCache, $state );
}
function sendCacheControl() {
global $wgUseSquid, $wgUseESI;
# FIXME: This header may cause trouble with some versions of Internet Explorer
header( 'Vary: Accept-Encoding, Cookie' );
if( $this->mEnableClientCache ) {
if( $wgUseSquid && ! isset( $_COOKIE[ini_get( 'session.name') ] ) &&
! $this->isPrintable() && $this->mSquidMaxage != 0 )
{
if ( $wgUseESI ) {
# We'll purge the proxy cache explicitly, but require end user agents
# 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"');
header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
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.
# IMPORTANT! The Squid needs to replace the Cache-Control header with
# 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" );
header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
}
} 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" );
}
if($this->mLastModified) header( "Last-modified: {$this->mLastModified}" );
} 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.
header( 'Expires: -1' );
header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
header( 'Pragma: no-cache' );
}
}
/**
* Finally, all the text has been munged and accumulated into
* the object, let's actually output it:
*/
2003-04-14 23:10:40 +00:00
function output()
{
global $wgUser, $wgLang, $wgDebugComments, $wgCookieExpiration;
global $wgInputEncoding, $wgOutputEncoding, $wgLanguageCode;
global $wgDebugRedirects, $wgMimeType, $wgProfiler;
if( $this->mDoNothing ){
return;
}
$fname = 'OutputPage::output';
wfProfileIn( $fname );
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin();
if ( '' != $this->mRedirect ) {
if( substr( $this->mRedirect, 0, 4 ) != 'http' ) {
# Standards require redirect URLs to be absolute
global $wgServer;
$this->mRedirect = $wgServer . $this->mRedirect;
}
if( $this->mRedirectCode == '301') {
if( !$wgDebugRedirects ) {
header("HTTP/1.1 {$this->mRedirectCode} Moved Permanently");
}
$this->mLastModified = gmdate( 'D, j M Y H:i:s' ) . ' GMT';
2004-03-01 22:16:39 +00:00
}
2004-03-01 22:16:39 +00:00
$this->sendCacheControl();
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 );
}
if ( isset( $wgProfiler ) ) { wfDebug( $wgProfiler->getOutput() ); }
2003-04-14 23:10:40 +00:00
return;
}
2004-03-01 22:16:39 +00:00
$this->sendCacheControl();
# Perform link colouring
$this->transformBuffer();
$this->replaceLinkHolders( $this->mSubtitle );
# Disable temporary placeholders, so that the skin produces HTML
$sk->postParseLinkColour( false );
header( "Content-type: $wgMimeType; 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, '/' );
2003-04-14 23:10:40 +00:00
}
$sk->outputPage( $this );
# flush();
2003-04-14 23:10:40 +00:00
}
function out( $ins ) {
2003-04-14 23:10:40 +00:00
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() {
global $wgInputEncoding, $wgOutputEncoding;
2003-04-14 23:10:40 +00:00
global $wgUser, $wgLang;
$wgInputEncoding = strtolower( $wgInputEncoding );
2003-04-14 23:10:40 +00:00
if( $wgUser->getOption( 'altencoding' ) ) {
$wgLang->setAltEncoding();
return;
}
if ( empty( $_SERVER['HTTP_ACCEPT_CHARSET'] ) ) {
2003-04-14 23:10:40 +00:00
$wgOutputEncoding = strtolower( $wgOutputEncoding );
return;
}
/*
# 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-04-14 23:10:40 +00:00
$wgOutputEncoding = $wgInputEncoding;
}
/**
* Returns a HTML comment with the elapsed time since request.
* This method has no side effects.
*/
function reportTime() {
global $wgRequestTime;
2003-04-14 23:10:40 +00:00
$now = wfTime();
list( $usec, $sec ) = explode( ' ', $wgRequestTime );
2003-04-14 23:10:40 +00:00
$start = (float)$sec + (float)$usec;
$elapsed = $now - $start;
# Use real server name if available, so we know which machine
# in a server farm generated the current page.
if ( function_exists( 'posix_uname' ) ) {
$uname = @posix_uname();
} else {
$uname = false;
}
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;
}
/**
* Note: these arguments are keys into wfMsg(), not text!
*/
function errorpage( $title, $msg ) {
2003-04-14 23:10:40 +00:00
global $wgTitle;
$this->mDebugtext .= 'Original title: ' .
2003-04-14 23:10:40 +00:00
$wgTitle->getPrefixedText() . "\n";
$this->setPageTitle( wfMsg( $title ) );
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
$this->setRobotpolicy( 'noindex,nofollow' );
$this->setArticleRelated( false );
2004-03-23 10:19:31 +00:00
$this->enableClientCache( false );
$this->mRedirect = '';
2003-04-14 23:10:40 +00:00
$this->mBodytext = '';
$this->addHTML( '<p>' . wfMsg( $msg ) . "</p>\n" );
2003-04-14 23:10:40 +00:00
$this->returnToMain( false );
$this->output();
wfErrorExit();
2003-04-14 23:10:40 +00:00
}
function sysopRequired() {
2003-04-14 23:10:40 +00:00
global $wgUser;
$this->setPageTitle( wfMsg( 'sysoptitle' ) );
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
$this->setRobotpolicy( 'noindex,nofollow' );
$this->setArticleRelated( false );
$this->mBodytext = '';
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin();
$ap = $sk->makeKnownLink( wfMsg( 'administrators' ), '' );
$this->addHTML( wfMsg( 'sysoptext', $ap ) );
2003-04-14 23:10:40 +00:00
$this->returnToMain();
}
function developerRequired() {
2003-04-14 23:10:40 +00:00
global $wgUser;
$this->setPageTitle( wfMsg( 'developertitle' ) );
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
$this->setRobotpolicy( 'noindex,nofollow' );
$this->setArticleRelated( false );
$this->mBodytext = '';
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin();
$ap = $sk->makeKnownLink( wfMsg( 'administrators' ), '' );
$this->addHTML( wfMsg( 'developertext', $ap ) );
2003-04-14 23:10:40 +00:00
$this->returnToMain();
}
function loginToUse() {
global $wgUser, $wgTitle, $wgLang;
$this->setPageTitle( wfMsg( 'loginreqtitle' ) );
$this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
$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.
}
function databaseError( $fname, $sql, $error, $errno ) {
global $wgUser, $wgCommandLineMode;
$this->setPageTitle( wfMsgNoDB( 'databaseerror' ) );
$this->setRobotpolicy( 'noindex,nofollow' );
$this->setArticleRelated( false );
2004-03-23 10:19:31 +00:00
$this->enableClientCache( false );
$this->mRedirect = '';
2003-04-14 23:10:40 +00:00
if ( $wgCommandLineMode ) {
$msg = wfMsgNoDB( 'dberrortextcl', htmlspecialchars( $sql ),
htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
} else {
$msg = wfMsgNoDB( 'dberrortext', htmlspecialchars( $sql ),
htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
}
2003-09-21 13:10:10 +00:00
if ( $wgCommandLineMode || !is_object( $wgUser )) {
print $msg."\n";
wfErrorExit();
}
2003-04-14 23:10:40 +00:00
$this->mBodytext = $msg;
$this->output();
wfErrorExit();
2003-04-14 23:10:40 +00:00
}
function readOnlyPage( $source = null, $protected = false ) {
2003-04-14 23:10:40 +00:00
global $wgUser, $wgReadOnlyFile;
$this->setRobotpolicy( 'noindex,nofollow' );
$this->setArticleRelated( false );
2003-04-14 23:10:40 +00:00
if( $protected ) {
$this->setPageTitle( wfMsg( 'viewsource' ) );
$this->addWikiText( wfMsg( 'protectedtext' ) );
} else {
$this->setPageTitle( wfMsg( 'readonly' ) );
$reason = file_get_contents( $wgReadOnlyFile );
$this->addWikiText( wfMsg( 'readonlytext', $reason ) );
}
if( is_string( $source ) ) {
if( strcmp( $source, '' ) == 0 ) {
$source = wfMsg( 'noarticletext' );
}
$rows = $wgUser->getOption( 'rows' );
$cols = $wgUser->getOption( 'cols' );
$text = "\n<textarea cols='$cols' rows='$rows' readonly='readonly'>" .
2004-04-29 12:17:33 +00:00
htmlspecialchars( $source ) . "\n</textarea>";
$this->addHTML( $text );
}
2003-04-14 23:10:40 +00:00
$this->returnToMain( false );
}
function fatalError( $message ) {
2003-04-14 23:10:40 +00:00
$this->setPageTitle( wfMsg( "internalerror" ) );
$this->setRobotpolicy( "noindex,nofollow" );
$this->setArticleRelated( false );
2004-03-23 10:19:31 +00:00
$this->enableClientCache( false );
$this->mRedirect = '';
2003-04-14 23:10:40 +00:00
$this->mBodytext = $message;
$this->output();
wfErrorExit();
2003-04-14 23:10:40 +00:00
}
function unexpectedValueError( $name, $val ) {
$this->fatalError( wfMsg( 'unexpected', $name, $val ) );
2003-04-14 23:10:40 +00:00
}
function fileCopyError( $old, $new ) {
$this->fatalError( wfMsg( 'filecopyerror', $old, $new ) );
2003-04-14 23:10:40 +00:00
}
function fileRenameError( $old, $new ) {
$this->fatalError( wfMsg( 'filerenameerror', $old, $new ) );
2003-04-14 23:10:40 +00:00
}
function fileDeleteError( $name ) {
$this->fatalError( wfMsg( 'filedeleteerror', $name ) );
2003-04-14 23:10:40 +00:00
}
function fileNotFoundError( $name ) {
$this->fatalError( wfMsg( 'filenotfound', $name ) );
2003-04-14 23:10:40 +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.
*/
function returnToMain( $auto = true, $returnto = NULL ) {
global $wgUser, $wgOut, $wgRequest;
if ( $returnto == NULL ) {
$returnto = $wgRequest->getText( 'returnto' );
}
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin();
if ( '' == $returnto ) {
$returnto = wfMsg( 'mainpage' );
2003-04-14 23:10:40 +00:00
}
$link = $sk->makeKnownLink( $returnto, '' );
2003-04-14 23:10:40 +00:00
$r = wfMsg( 'returnto', $link );
2003-04-14 23:10:40 +00:00
if ( $auto ) {
$titleObj = Title::newFromText( $returnto );
$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
}
/**
* 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
$a = implode ( ',' , $a ) ;
2004-04-15 12:27:31 +00:00
$strip = array(
"/<.*?" . ">/" => '',
2004-04-15 12:27:31 +00:00
"/[_]/" => ' '
);
$a = htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),$a ));
$wgOut->addMeta ( 'KEYWORDS' , $a ) ;
2004-03-20 13:27:08 +00:00
}
/**
* @private
*/
function headElement() {
global $wgDocType, $wgDTD, $wgLanguageCode, $wgOutputEncoding, $wgMimeType;
global $wgUser, $wgLang, $wgRequest;
2003-04-14 23:10:40 +00:00
$xml = ($wgMimeType == 'text/xml');
if( $xml ) {
$ret = "<" . "?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?" . ">\n";
} else {
$ret = '';
}
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 ) {
$this->mHTMLtitle = wfMsg( "pagetitle", $this->mPagetitle );
2003-04-14 23:10:40 +00:00
}
if( $xml ) {
$xmlbits = "xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\"";
} else {
$xmlbits = '';
}
$rtl = $wgLang->isRTL() ? " dir='RTL'" : '';
$ret .= "<html $xmlbits lang=\"$wgLanguageCode\" $rtl>\n";
$ret .= "<head>\n<title>" . htmlspecialchars( $this->mHTMLtitle ) . "</title>\n";
array_push( $this->mMetatags, array( "http:Content-type", "$wgMimeType; charset={$wgOutputEncoding}" ) );
$ret .= $this->getHeadLinks();
global $wgStylePath;
if( $this->isPrintable() ) {
$media = '';
} else {
$media = "media='print'";
}
2004-09-05 03:25:58 +00:00
$printsheet = htmlspecialchars( "$wgStylePath/common/wikiprintable.css" );
$ret .= "<link rel='stylesheet' type='text/css' $media href='$printsheet' />\n";
$sk = $wgUser->getSkin();
$ret .= $sk->getHeadScripts();
$ret .= $this->mScripts;
$ret .= $sk->getUserStyles();
$ret .= "</head>\n";
return $ret;
}
function getHeadLinks() {
global $wgRequest, $wgStylePath;
$ret = '';
2003-04-14 23:10:40 +00:00
foreach ( $this->mMetatags as $tag ) {
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 {
$a = 'name';
2003-04-14 23:10:40 +00:00
}
$ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\" />\n";
2003-04-14 23:10:40 +00:00
}
$p = $this->mRobotpolicy;
if ( '' == $p ) { $p = 'index,follow'; }
$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-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 ) {
$ret .= '<link';
foreach( $tag as $attr => $val ) {
$ret .= " $attr=\"" . htmlspecialchars( $val ) . "\"";
}
$ret .= " />\n";
2003-04-14 23:10:40 +00:00
}
if( $this->isSyndicated() ) {
# FIXME: centralize the mime-type and name information in Feed.php
$link = $wgRequest->escapeAppendQuery( 'feed=rss' );
$ret .= "<link rel='alternate' type='application/rss+xml' title='RSS 2.0' href='$link' />\n";
$link = $wgRequest->escapeAppendQuery( 'feed=atom' );
$ret .= "<link rel='alternate' type='application/rss+atom' title='Atom 0.3' href='$link' />\n";
}
# FIXME: get these working
# $fix = htmlspecialchars( $wgStylePath . "/ie-png-fix.js" );
# $ret .= "<!--[if gte IE 5.5000]><script type='text/javascript' src='$fix'>< /script><![endif]-->";
2003-04-14 23:10:40 +00:00
return $ret;
}
/**
* Run any necessary pre-output transformations on the buffer text
*/
function transformBuffer( $options = 0 ) {
$this->replaceLinkHolders( $this->mBodytext, $options );
}
/**
* Replace <!--LINK--> link placeholders with actual links, in the buffer
* Placeholders created in Skin::makeLinkObj()
* Returns an array of links found, indexed by PDBK:
* 0 - broken
* 1 - normal link
* 2 - stub
* $options is a bit field, RLH_FOR_UPDATE to select for update
*/
function replaceLinkHolders( &$text, $options = 0 ) {
global $wgUser, $wgLinkCache, $wgUseOldExistenceCheck;
if ( $wgUseOldExistenceCheck ) {
return array();
}
$fname = 'OutputPage::replaceLinkHolders';
wfProfileIn( $fname );
$titles = array();
$pdbks = array();
$colours = array();
# Get placeholders from body
wfProfileIn( $fname.'-match' );
preg_match_all( "/<!--LINK (.*?) (.*?) (.*?) (.*?)-->/", $text, $tmpLinks );
wfProfileOut( $fname.'-match' );
if ( !empty( $tmpLinks[0] ) ) {
wfProfileIn( $fname.'-check' );
$dbr =& wfGetDB( DB_SLAVE );
$cur = $dbr->tableName( 'cur' );
$sk = $wgUser->getSkin();
$threshold = $wgUser->getOption('stubthreshold');
$namespaces =& $tmpLinks[1];
$dbkeys =& $tmpLinks[2];
$queries =& $tmpLinks[3];
$texts =& $tmpLinks[4];
# Sort by namespace
asort( $namespaces );
# Generate query
$query = false;
foreach ( $namespaces as $key => $val ) {
# Make title object
$dbk = $dbkeys[$key];
$title = $titles[$key] = Title::makeTitleSafe( $val, $dbk );
# Skip invalid entries.
# Result will be ugly, but prevents crash.
if ( is_null( $title ) ) {
continue;
}
$pdbk = $pdbks[$key] = $title->getPrefixedDBkey();
# Check if it's in the link cache already
if ( $wgLinkCache->getGoodLinkID( $pdbk ) ) {
$colours[$pdbk] = 1;
} elseif ( $wgLinkCache->isBadLink( $pdbk ) ) {
$colours[$pdbk] = 0;
} else {
# Not in the link cache, add it to the query
if ( !isset( $current ) ) {
$current = $val;
$query = "SELECT cur_id, cur_namespace, cur_title";
if ( $threshold > 0 ) {
$query .= ", LENGTH(cur_text) AS cur_len, cur_is_redirect";
}
$query .= " FROM $cur WHERE (cur_namespace=$val AND cur_title IN(";
} elseif ( $current != $val ) {
$current = $val;
$query .= ")) OR (cur_namespace=$val AND cur_title IN(";
} else {
$query .= ', ';
}
$query .= $dbr->addQuotes( $dbkeys[$key] );
}
}
if ( $query ) {
$query .= '))';
if ( $options & RLH_FOR_UPDATE ) {
$query .= ' FOR UPDATE';
}
$res = $dbr->query( $query, $fname );
# Fetch data and form into an associative array
# non-existent = broken
# 1 = known
# 2 = stub
while ( $s = $dbr->fetchObject($res) ) {
$title = Title::makeTitle( $s->cur_namespace, $s->cur_title );
$pdbk = $title->getPrefixedDBkey();
$wgLinkCache->addGoodLink( $s->cur_id, $pdbk );
if ( $threshold > 0 ) {
$size = $s->cur_len;
if ( $s->cur_is_redirect || $s->cur_namespace != 0 || $length < $threshold ) {
$colours[$pdbk] = 1;
} else {
$colours[$pdbk] = 2;
}
} else {
$colours[$pdbk] = 1;
}
}
}
wfProfileOut( $fname.'-check' );
# Construct search and replace arrays
wfProfileIn( $fname.'-construct' );
global $outputReplace;
$outputReplace = array();
foreach ( $namespaces as $key => $ns ) {
$pdbk = $pdbks[$key];
$searchkey = $tmpLinks[0][$key];
$title = $titles[$key];
if ( empty( $colours[$pdbk] ) ) {
$wgLinkCache->addBadLink( $pdbk );
$colours[$pdbk] = 0;
$outputReplace[$searchkey] = $sk->makeBrokenLinkObj( $title, $texts[$key], $queries[$key] );
} elseif ( $colours[$pdbk] == 1 ) {
$outputReplace[$searchkey] = $sk->makeKnownLinkObj( $title, $texts[$key], $queries[$key] );
} elseif ( $colours[$pdbk] == 2 ) {
$outputReplace[$searchkey] = $sk->makeStubLinkObj( $title, $texts[$key], $queries[$key] );
}
}
wfProfileOut( $fname.'-construct' );
# Do the thing
wfProfileIn( $fname.'-replace' );
$text = preg_replace_callback(
'/(<!--LINK .*? .*? .*? .*?-->)/',
"outputReplaceMatches",
$text);
wfProfileOut( $fname.'-replace' );
}
wfProfileOut( $fname );
return $colours;
}
2003-04-14 23:10:40 +00:00
}
function &outputReplaceMatches($matches) {
global $outputReplace;
return $outputReplace[$matches[1]];
}
}
2003-04-14 23:10:40 +00:00
?>