cache the title text of an article when there is different ways of presenting the...
[lhc/web/wiklou.git] / includes / OutputPage.php
1 <?php
2 /**
3 * @package MediaWiki
4 */
5
6 /**
7 * This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
8 */
9 if( defined( 'MEDIAWIKI' ) ) {
10
11 # See design.doc
12
13 if($wgUseTeX) require_once( 'Math.php' );
14
15 /**
16 * @todo document
17 * @package MediaWiki
18 */
19 class OutputPage {
20 var $mHeaders, $mCookies, $mMetatags, $mKeywords;
21 var $mLinktags, $mPagetitle, $mBodytext, $mDebugtext;
22 var $mHTMLtitle, $mRobotpolicy, $mIsarticle, $mPrintable;
23 var $mSubtitle, $mRedirect;
24 var $mLastModified, $mCategoryLinks;
25 var $mScripts, $mLinkColours;
26
27 var $mSuppressQuickbar;
28 var $mOnloadHandler;
29 var $mDoNothing;
30 var $mContainsOldMagic, $mContainsNewMagic;
31 var $mIsArticleRelated;
32 var $mParserOptions;
33 var $mShowFeedLinks = false;
34 var $mEnableClientCache = true;
35
36 /**
37 * Constructor
38 * Initialise private variables
39 */
40 function OutputPage() {
41 $this->mHeaders = $this->mCookies = $this->mMetatags =
42 $this->mKeywords = $this->mLinktags = array();
43 $this->mHTMLtitle = $this->mPagetitle = $this->mBodytext =
44 $this->mRedirect = $this->mLastModified =
45 $this->mSubtitle = $this->mDebugtext = $this->mRobotpolicy =
46 $this->mOnloadHandler = '';
47 $this->mIsArticleRelated = $this->mIsarticle = $this->mPrintable = true;
48 $this->mSuppressQuickbar = $this->mPrintable = false;
49 $this->mLanguageLinks = array();
50 $this->mCategoryLinks = array() ;
51 $this->mDoNothing = false;
52 $this->mContainsOldMagic = $this->mContainsNewMagic = 0;
53 $this->mParserOptions = ParserOptions::newFromUser( $temp = NULL );
54 $this->mSquidMaxage = 0;
55 $this->mScripts = '';
56 }
57
58 function addHeader( $name, $val ) { array_push( $this->mHeaders, $name.': '.$val ) ; }
59 function addCookie( $name, $val ) { array_push( $this->mCookies, array( $name, $val ) ); }
60 function redirect( $url, $responsecode = '302' ) { $this->mRedirect = $url; $this->mRedirectCode = $responsecode; }
61
62 # To add an http-equiv meta tag, precede the name with "http:"
63 function addMeta( $name, $val ) { array_push( $this->mMetatags, array( $name, $val ) ); }
64 function addKeyword( $text ) { array_push( $this->mKeywords, $text ); }
65 function addScript( $script ) { $this->mScripts .= $script; }
66 function getScript() { return $this->mScripts; }
67
68 function addLink( $linkarr ) {
69 # $linkarr should be an associative array of attributes. We'll escape on output.
70 array_push( $this->mLinktags, $linkarr );
71 }
72
73 function addMetadataLink( $linkarr ) {
74 # note: buggy CC software only reads first "meta" link
75 static $haveMeta = false;
76 $linkarr['rel'] = ($haveMeta) ? 'alternate meta' : 'meta';
77 $this->addLink( $linkarr );
78 $haveMeta = true;
79 }
80
81 /**
82 * checkLastModified tells the client to use the client-cached page if
83 * possible. If sucessful, the OutputPage is disabled so that
84 * any future call to OutputPage->output() have no effect. The method
85 * returns true iff cache-ok headers was sent.
86 */
87 function checkLastModified ( $timestamp ) {
88 global $wgLang, $wgCachePages, $wgUser;
89 if ( !$timestamp || $timestamp == '19700101000000' ) {
90 wfDebug( "CACHE DISABLED, NO TIMESTAMP\n" );
91 return;
92 }
93 if( !$wgCachePages ) {
94 wfDebug( "CACHE DISABLED\n", false );
95 return;
96 }
97 if( $wgUser->getOption( 'nocache' ) ) {
98 wfDebug( "USER DISABLED CACHE\n", false );
99 return;
100 }
101
102 $timestamp=wfTimestamp(TS_MW,$timestamp);
103 $lastmod = wfTimestamp( TS_RFC2822, max( $timestamp, $wgUser->mTouched ) );
104
105 if( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
106 # IE sends sizes after the date like this:
107 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
108 # this breaks strtotime().
109 $modsince = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
110 $ismodsince = wfTimestamp( TS_MW, strtotime( $modsince ) );
111 wfDebug( "-- client send If-Modified-Since: " . $modsince . "\n", false );
112 wfDebug( "-- we might send Last-Modified : $lastmod\n", false );
113 if( ($ismodsince >= $timestamp ) && $wgUser->validateCache( $ismodsince ) ) {
114 # Make sure you're in a place you can leave when you call us!
115 header( "HTTP/1.0 304 Not Modified" );
116 $this->mLastModified = $lastmod;
117 $this->sendCacheControl();
118 wfDebug( "CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
119 $this->disable();
120 return true;
121 } else {
122 wfDebug( "READY client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
123 $this->mLastModified = $lastmod;
124 }
125 } else {
126 wfDebug( "client did not send If-Modified-Since header\n", false );
127 $this->mLastModified = $lastmod;
128 }
129 }
130
131 function getPageTitleActionText () {
132 global $action;
133 switch($action) {
134 case 'edit':
135 return wfMsg('edit');
136 case 'history':
137 return wfMsg('history_short');
138 case 'protect':
139 return wfMsg('protect');
140 case 'unprotect':
141 return wfMsg('unprotect');
142 case 'delete':
143 return wfMsg('delete');
144 case 'watch':
145 return wfMsg('watch');
146 case 'unwatch':
147 return wfMsg('unwatch');
148 case 'submit':
149 return wfMsg('preview');
150 case 'info':
151 return wfMsg('info_short');
152 default:
153 return '';
154 }
155 }
156
157 function setRobotpolicy( $str ) { $this->mRobotpolicy = $str; }
158 function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; }
159 function setPageTitle( $name ) {
160 global $action, $wgContLang;
161 $name = $wgContLang->convert($name, true);
162 $this->mPagetitle = $name;
163 if(!empty($action)) {
164 $taction = $this->getPageTitleActionText();
165 if( !empty( $taction ) ) {
166 $name .= ' - '.$taction;
167 }
168 }
169 $this->setHTMLTitle( $name . ' - ' . wfMsg( 'wikititlesuffix' ) );
170 }
171 function getHTMLTitle() { return $this->mHTMLtitle; }
172 function getPageTitle() { return $this->mPagetitle; }
173 function setSubtitle( $str ) { $this->mSubtitle = $str; }
174 function getSubtitle() { return $this->mSubtitle; }
175 function isArticle() { return $this->mIsarticle; }
176 function setPrintable() { $this->mPrintable = true; }
177 function isPrintable() { return $this->mPrintable; }
178 function setSyndicated( $show = true ) { $this->mShowFeedLinks = $show; }
179 function isSyndicated() { return $this->mShowFeedLinks; }
180 function setOnloadHandler( $js ) { $this->mOnloadHandler = $js; }
181 function getOnloadHandler() { return $this->mOnloadHandler; }
182 function disable() { $this->mDoNothing = true; }
183
184 function setArticleRelated( $v ) {
185 $this->mIsArticleRelated = $v;
186 if ( !$v ) {
187 $this->mIsarticle = false;
188 }
189 }
190 function setArticleFlag( $v ) {
191 $this->mIsarticle = $v;
192 if ( $v ) {
193 $this->mIsArticleRelated = $v;
194 }
195 }
196
197 function isArticleRelated() { return $this->mIsArticleRelated; }
198
199 function getLanguageLinks() { return $this->mLanguageLinks; }
200 function addLanguageLinks($newLinkArray) {
201 $this->mLanguageLinks += $newLinkArray;
202 }
203 function setLanguageLinks($newLinkArray) {
204 $this->mLanguageLinks = $newLinkArray;
205 }
206
207 function getCategoryLinks() {
208 return $this->mCategoryLinks;
209 }
210 function addCategoryLinks($newLinkArray) {
211 $this->mCategoryLinks += $newLinkArray;
212 }
213 function setCategoryLinks($newLinkArray) {
214 $this->mCategoryLinks += $newLinkArray;
215 }
216
217 function suppressQuickbar() { $this->mSuppressQuickbar = true; }
218 function isQuickbarSuppressed() { return $this->mSuppressQuickbar; }
219
220 function addHTML( $text ) { $this->mBodytext .= $text; }
221 function clearHTML() { $this->mBodytext = ''; }
222 function debug( $text ) { $this->mDebugtext .= $text; }
223
224 function setParserOptions( $options ) {
225 return wfSetVar( $this->mParserOptions, $options );
226 }
227
228 /**
229 * Convert wikitext to HTML and add it to the buffer
230 */
231 function addWikiText( $text, $linestart = true ) {
232 global $wgParser, $wgTitle, $wgUseTidy;
233
234 $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
235 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
236 $this->mCategoryLinks += $parserOutput->getCategoryLinks();
237 $this->addHTML( $parserOutput->getText() );
238 }
239
240 /**
241 * Add wikitext to the buffer, assuming that this is the primary text for a page view
242 * Saves the text into the parser cache if possible
243 */
244 function addPrimaryWikiText( $text, $cacheArticle ) {
245 global $wgParser, $wgParserCache, $wgUser, $wgTitle, $wgUseTidy;
246
247 $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, true );
248
249 $text = $parserOutput->getText();
250
251 if ( $cacheArticle ) {
252 $wgParserCache->save( $parserOutput, $cacheArticle, $wgUser );
253 }
254
255 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
256 $this->mCategoryLinks += $parserOutput->getCategoryLinks();
257 $this->addHTML( $text );
258 }
259
260 /**
261 * Add the output of a QuickTemplate to the output buffer
262 * @param QuickTemplate $template
263 */
264 function addTemplate( &$template ) {
265 ob_start();
266 $template->execute();
267 $this->addHtml( ob_get_contents() );
268 ob_end_clean();
269 }
270
271 /**
272 * Parse wikitext and return the HTML. This is for special pages that add the text later
273 */
274 function parse( $text, $linestart = true ) {
275 global $wgParser, $wgTitle;
276 $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
277 return $parserOutput->getText();
278 }
279
280 /**
281 * @param $article
282 * @param $user
283 */
284 function tryParserCache( $article, $user ) {
285 global $wgParserCache;
286 $parserOutput = $wgParserCache->get( $article, $user );
287 if ( $parserOutput !== false ) {
288 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
289 $this->mCategoryLinks += $parserOutput->getCategoryLinks();
290 $this->addHTML( $parserOutput->getText() );
291 $t = $parserOutput->getTitleText();
292 if( !empty( $t ) ) {
293 $this->setPageTitle( $t );
294 }
295 return true;
296 } else {
297 return false;
298 }
299 }
300
301 /**
302 * Set the maximum cache time on the Squid in seconds
303 * @param $maxage
304 */
305 function setSquidMaxage( $maxage ) {
306 $this->mSquidMaxage = $maxage;
307 }
308
309 /**
310 * Use enableClientCache(false) to force it to send nocache headers
311 * @param $state
312 */
313 function enableClientCache( $state ) {
314 return wfSetVar( $this->mEnableClientCache, $state );
315 }
316
317 function sendCacheControl() {
318 global $wgUseSquid, $wgUseESI;
319 # don't serve compressed data to clients who can't handle it
320 # maintain different caches for logged-in users and non-logged in ones
321 header( 'Vary: Accept-Encoding, Cookie' );
322 if( $this->mEnableClientCache ) {
323 if( $wgUseSquid && ! isset( $_COOKIE[ini_get( 'session.name') ] ) &&
324 ! $this->isPrintable() && $this->mSquidMaxage != 0 )
325 {
326 if ( $wgUseESI ) {
327 # We'll purge the proxy cache explicitly, but require end user agents
328 # to revalidate against the proxy on each visit.
329 # Surrogate-Control controls our Squid, Cache-Control downstream caches
330 wfDebug( "** proxy caching with ESI; {$this->mLastModified} **\n", false );
331 # start with a shorter timeout for initial testing
332 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
333 header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
334 header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
335 } else {
336 # We'll purge the proxy cache for anons explicitly, but require end user agents
337 # to revalidate against the proxy on each visit.
338 # IMPORTANT! The Squid needs to replace the Cache-Control header with
339 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
340 wfDebug( "** local proxy caching; {$this->mLastModified} **\n", false );
341 # start with a shorter timeout for initial testing
342 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
343 header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
344 }
345 } else {
346 # We do want clients to cache if they can, but they *must* check for updates
347 # on revisiting the page.
348 wfDebug( "** private caching; {$this->mLastModified} **\n", false );
349 header( "Expires: -1" );
350 header( "Cache-Control: private, must-revalidate, max-age=0" );
351 }
352 if($this->mLastModified) header( "Last-modified: {$this->mLastModified}" );
353 } else {
354 wfDebug( "** no caching **\n", false );
355
356 # In general, the absence of a last modified header should be enough to prevent
357 # the client from using its cache. We send a few other things just to make sure.
358 header( 'Expires: -1' );
359 header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
360 header( 'Pragma: no-cache' );
361 }
362 }
363
364 /**
365 * Finally, all the text has been munged and accumulated into
366 * the object, let's actually output it:
367 */
368 function output() {
369 global $wgUser, $wgLang, $wgDebugComments, $wgCookieExpiration;
370 global $wgInputEncoding, $wgOutputEncoding, $wgContLanguageCode;
371 global $wgDebugRedirects, $wgMimeType, $wgProfiler;
372
373 if( $this->mDoNothing ){
374 return;
375 }
376 $fname = 'OutputPage::output';
377 wfProfileIn( $fname );
378 $sk = $wgUser->getSkin();
379
380 if ( '' != $this->mRedirect ) {
381 if( substr( $this->mRedirect, 0, 4 ) != 'http' ) {
382 # Standards require redirect URLs to be absolute
383 global $wgServer;
384 $this->mRedirect = $wgServer . $this->mRedirect;
385 }
386 if( $this->mRedirectCode == '301') {
387 if( !$wgDebugRedirects ) {
388 header("HTTP/1.1 {$this->mRedirectCode} Moved Permanently");
389 }
390 $this->mLastModified = wfTimestamp( TS_RFC2822 );
391 }
392
393 $this->sendCacheControl();
394
395 if( $wgDebugRedirects ) {
396 $url = htmlspecialchars( $this->mRedirect );
397 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
398 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
399 print "</body>\n</html>\n";
400 } else {
401 header( 'Location: '.$this->mRedirect );
402 }
403 if ( isset( $wgProfiler ) ) { wfDebug( $wgProfiler->getOutput() ); }
404 return;
405 }
406
407
408 # Buffer output; final headers may depend on later processing
409 ob_start();
410
411 $this->transformBuffer();
412
413 # Disable temporary placeholders, so that the skin produces HTML
414 $sk->postParseLinkColour( false );
415
416 header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
417 header( 'Content-language: '.$wgContLanguageCode );
418
419 $exp = time() + $wgCookieExpiration;
420 foreach( $this->mCookies as $name => $val ) {
421 setcookie( $name, $val, $exp, '/' );
422 }
423
424 wfProfileIn( 'Output-skin' );
425 $sk->outputPage( $this );
426 wfProfileOut( 'Output-skin' );
427
428 $this->sendCacheControl();
429 ob_end_flush();
430 }
431
432 function out( $ins ) {
433 global $wgInputEncoding, $wgOutputEncoding, $wgContLang;
434 if ( 0 == strcmp( $wgInputEncoding, $wgOutputEncoding ) ) {
435 $outs = $ins;
436 } else {
437 $outs = $wgContLang->iconv( $wgInputEncoding, $wgOutputEncoding, $ins );
438 if ( false === $outs ) { $outs = $ins; }
439 }
440 print $outs;
441 }
442
443 function setEncodings() {
444 global $wgInputEncoding, $wgOutputEncoding;
445 global $wgUser, $wgContLang;
446
447 $wgInputEncoding = strtolower( $wgInputEncoding );
448
449 if( $wgUser->getOption( 'altencoding' ) ) {
450 $wgContLang->setAltEncoding();
451 return;
452 }
453
454 if ( empty( $_SERVER['HTTP_ACCEPT_CHARSET'] ) ) {
455 $wgOutputEncoding = strtolower( $wgOutputEncoding );
456 return;
457 }
458
459 /*
460 # This code is unused anyway!
461 # Commenting out. --bv 2003-11-15
462
463 $a = explode( ",", $_SERVER['HTTP_ACCEPT_CHARSET'] );
464 $best = 0.0;
465 $bestset = "*";
466
467 foreach ( $a as $s ) {
468 if ( preg_match( "/(.*);q=(.*)/", $s, $m ) ) {
469 $set = $m[1];
470 $q = (float)($m[2]);
471 } else {
472 $set = $s;
473 $q = 1.0;
474 }
475 if ( $q > $best ) {
476 $bestset = $set;
477 $best = $q;
478 }
479 }
480 #if ( "*" == $bestset ) { $bestset = "iso-8859-1"; }
481 if ( "*" == $bestset ) { $bestset = $wgOutputEncoding; }
482 $wgOutputEncoding = strtolower( $bestset );
483
484 # Disable for now
485 #
486 */
487 $wgOutputEncoding = $wgInputEncoding;
488 }
489
490 /**
491 * Returns a HTML comment with the elapsed time since request.
492 * This method has no side effects.
493 * @return string
494 */
495 function reportTime() {
496 global $wgRequestTime;
497
498 $now = wfTime();
499 list( $usec, $sec ) = explode( ' ', $wgRequestTime );
500 $start = (float)$sec + (float)$usec;
501 $elapsed = $now - $start;
502
503 # Use real server name if available, so we know which machine
504 # in a server farm generated the current page.
505 if ( function_exists( 'posix_uname' ) ) {
506 $uname = @posix_uname();
507 } else {
508 $uname = false;
509 }
510 if( is_array( $uname ) && isset( $uname['nodename'] ) ) {
511 $hostname = $uname['nodename'];
512 } else {
513 # This may be a virtual server.
514 $hostname = $_SERVER['SERVER_NAME'];
515 }
516 $com = sprintf( "<!-- Served by %s in %01.2f secs. -->",
517 $hostname, $elapsed );
518 return $com;
519 }
520
521 /**
522 * Note: these arguments are keys into wfMsg(), not text!
523 */
524 function errorpage( $title, $msg ) {
525 global $wgTitle;
526
527 $this->mDebugtext .= 'Original title: ' .
528 $wgTitle->getPrefixedText() . "\n";
529 $this->setPageTitle( wfMsg( $title ) );
530 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
531 $this->setRobotpolicy( 'noindex,nofollow' );
532 $this->setArticleRelated( false );
533 $this->enableClientCache( false );
534 $this->mRedirect = '';
535
536 $this->mBodytext = '';
537 $this->addHTML( '<p>' . wfMsg( $msg ) . "</p>\n" );
538 $this->returnToMain( false );
539
540 $this->output();
541 wfErrorExit();
542 }
543
544 function sysopRequired() {
545 global $wgUser;
546
547 $this->setPageTitle( wfMsg( 'sysoptitle' ) );
548 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
549 $this->setRobotpolicy( 'noindex,nofollow' );
550 $this->setArticleRelated( false );
551 $this->mBodytext = '';
552
553 $sk = $wgUser->getSkin();
554 $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
555 $this->addHTML( wfMsg( 'sysoptext', $ap ) );
556 $this->returnToMain();
557 }
558
559 function developerRequired() {
560 global $wgUser;
561
562 $this->setPageTitle( wfMsg( 'developertitle' ) );
563 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
564 $this->setRobotpolicy( 'noindex,nofollow' );
565 $this->setArticleRelated( false );
566 $this->mBodytext = '';
567
568 $sk = $wgUser->getSkin();
569 $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
570 $this->addHTML( wfMsg( 'developertext', $ap ) );
571 $this->returnToMain();
572 }
573
574 function loginToUse() {
575 global $wgUser, $wgTitle, $wgContLang;
576
577 $this->setPageTitle( wfMsg( 'loginreqtitle' ) );
578 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
579 $this->setRobotpolicy( 'noindex,nofollow' );
580 $this->setArticleFlag( false );
581 $this->mBodytext = '';
582 $this->addWikiText( wfMsg( 'loginreqtext' ) );
583
584 # We put a comment in the .html file so a Sysop can diagnose the page the
585 # user can't see.
586 $this->addHTML( "\n<!--" .
587 $wgContLang->getNsText( $wgTitle->getNamespace() ) .
588 ':' .
589 $wgTitle->getDBkey() . '-->' );
590 $this->returnToMain(); # Flip back to the main page after 10 seconds.
591 }
592
593 function databaseError( $fname, $sql, $error, $errno ) {
594 global $wgUser, $wgCommandLineMode, $wgShowSQLErrors;
595
596 $this->setPageTitle( wfMsgNoDB( 'databaseerror' ) );
597 $this->setRobotpolicy( 'noindex,nofollow' );
598 $this->setArticleRelated( false );
599 $this->enableClientCache( false );
600 $this->mRedirect = '';
601
602 if( $wgShowSQLErrors ) {
603 if ( $wgCommandLineMode ) {
604 $msg = wfMsgNoDB( 'dberrortextcl', htmlspecialchars( $sql ),
605 htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
606 } else {
607 $msg = wfMsgNoDB( 'dberrortext', htmlspecialchars( $sql ),
608 htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
609 }
610 } else {
611 if( $wgCommandLineMode ) {
612 $msg = wfMsg( 'internalerror' );
613 } else {
614 $msg = htmlspecialchars( wfMsg( 'internalerror' ) );
615 }
616 }
617
618 if ( $wgCommandLineMode || !is_object( $wgUser )) {
619 print $msg."\n";
620 wfErrorExit();
621 }
622 $this->mBodytext = $msg;
623 $this->output();
624 wfErrorExit();
625 }
626
627 function readOnlyPage( $source = null, $protected = false ) {
628 global $wgUser, $wgReadOnlyFile;
629
630 $this->setRobotpolicy( 'noindex,nofollow' );
631 $this->setArticleRelated( false );
632
633 if( $protected ) {
634 $this->setPageTitle( wfMsg( 'viewsource' ) );
635 $this->addWikiText( wfMsg( 'protectedtext' ) );
636 } else {
637 $this->setPageTitle( wfMsg( 'readonly' ) );
638 $reason = file_get_contents( $wgReadOnlyFile );
639 $this->addWikiText( wfMsg( 'readonlytext', $reason ) );
640 }
641
642 if( is_string( $source ) ) {
643 if( strcmp( $source, '' ) == 0 ) {
644 $source = wfMsg( 'noarticletext' );
645 }
646 $rows = $wgUser->getOption( 'rows' );
647 $cols = $wgUser->getOption( 'cols' );
648 $text = "\n<textarea cols='$cols' rows='$rows' readonly='readonly'>" .
649 htmlspecialchars( $source ) . "\n</textarea>";
650 $this->addHTML( $text );
651 }
652
653 $this->returnToMain( false );
654 }
655
656 function fatalError( $message ) {
657 $this->setPageTitle( wfMsg( "internalerror" ) );
658 $this->setRobotpolicy( "noindex,nofollow" );
659 $this->setArticleRelated( false );
660 $this->enableClientCache( false );
661 $this->mRedirect = '';
662
663 $this->mBodytext = $message;
664 $this->output();
665 wfErrorExit();
666 }
667
668 function unexpectedValueError( $name, $val ) {
669 $this->fatalError( wfMsg( 'unexpected', $name, $val ) );
670 }
671
672 function fileCopyError( $old, $new ) {
673 $this->fatalError( wfMsg( 'filecopyerror', $old, $new ) );
674 }
675
676 function fileRenameError( $old, $new ) {
677 $this->fatalError( wfMsg( 'filerenameerror', $old, $new ) );
678 }
679
680 function fileDeleteError( $name ) {
681 $this->fatalError( wfMsg( 'filedeleteerror', $name ) );
682 }
683
684 function fileNotFoundError( $name ) {
685 $this->fatalError( wfMsg( 'filenotfound', $name ) );
686 }
687
688 /**
689 * return from error messages or notes
690 * @param $auto automatically redirect the user after 10 seconds
691 * @param $returnto page title to return to. Default is Main Page.
692 */
693 function returnToMain( $auto = true, $returnto = NULL ) {
694 global $wgUser, $wgOut, $wgRequest;
695
696 if ( $returnto == NULL ) {
697 $returnto = $wgRequest->getText( 'returnto' );
698 }
699 $returnto = htmlspecialchars( $returnto );
700
701 $sk = $wgUser->getSkin();
702 if ( '' == $returnto ) {
703 $returnto = wfMsgForContent( 'mainpage' );
704 }
705 $link = $sk->makeKnownLink( $returnto, '' );
706
707 $r = wfMsg( 'returnto', $link );
708 if ( $auto ) {
709 $titleObj = Title::newFromText( $returnto );
710 $wgOut->addMeta( 'http:Refresh', '10;url=' . $titleObj->escapeFullURL() );
711 }
712 $wgOut->addHTML( "\n<p>$r</p>\n" );
713 }
714
715 /**
716 * This function takes the existing and broken links for the page
717 * and uses the first 10 of them for META keywords
718 */
719 function addMetaTags () {
720 global $wgLinkCache , $wgOut ;
721 $good = array_keys ( $wgLinkCache->mGoodLinks ) ;
722 $bad = array_keys ( $wgLinkCache->mBadLinks ) ;
723 $a = array_merge ( $good , $bad ) ;
724 $a = array_slice ( $a , 0 , 10 ) ; # 10 keywords max
725 $a = implode ( ',' , $a ) ;
726 $strip = array(
727 "/<.*?" . ">/" => '',
728 "/[_]/" => ' '
729 );
730 $a = htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),$a ));
731
732 $wgOut->addMeta ( 'KEYWORDS' , $a ) ;
733 }
734
735 /**
736 * @private
737 * @return string
738 */
739 function headElement() {
740 global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
741 global $wgUser, $wgContLang, $wgRequest;
742
743 if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) {
744 $ret = "<" . "?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?" . ">\n";
745 } else {
746 $ret = '';
747 }
748
749 $ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\"\n \"$wgDTD\">\n";
750
751 if ( "" == $this->mHTMLtitle ) {
752 $this->mHTMLtitle = wfMsg( "pagetitle", $this->mPagetitle );
753 }
754
755 $rtl = $wgContLang->isRTL() ? " dir='RTL'" : '';
756 $ret .= "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"$wgContLanguageCode\" lang=\"$wgContLanguageCode\" $rtl>\n";
757 $ret .= "<head>\n<title>" . htmlspecialchars( $this->mHTMLtitle ) . "</title>\n";
758 array_push( $this->mMetatags, array( "http:Content-type", "$wgMimeType; charset={$wgOutputEncoding}" ) );
759
760 $ret .= $this->getHeadLinks();
761 global $wgStylePath;
762 if( $this->isPrintable() ) {
763 $media = '';
764 } else {
765 $media = "media='print'";
766 }
767 $printsheet = htmlspecialchars( "$wgStylePath/common/wikiprintable.css" );
768 $ret .= "<link rel='stylesheet' type='text/css' $media href='$printsheet' />\n";
769
770 $sk = $wgUser->getSkin();
771 $ret .= $sk->getHeadScripts();
772 $ret .= $this->mScripts;
773 $ret .= $sk->getUserStyles();
774
775 $ret .= "</head>\n";
776 return $ret;
777 }
778
779 function getHeadLinks() {
780 global $wgRequest, $wgStylePath;
781 $ret = '';
782 foreach ( $this->mMetatags as $tag ) {
783 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
784 $a = 'http-equiv';
785 $tag[0] = substr( $tag[0], 5 );
786 } else {
787 $a = 'name';
788 }
789 $ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\" />\n";
790 }
791 $p = $this->mRobotpolicy;
792 if ( '' == $p ) { $p = 'index,follow'; }
793 $ret .= "<meta name=\"robots\" content=\"$p\" />\n";
794
795 if ( count( $this->mKeywords ) > 0 ) {
796 $strip = array(
797 "/<.*?" . ">/" => '',
798 "/[_]/" => ' '
799 );
800 $ret .= "<meta name=\"keywords\" content=\"" .
801 htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),implode( ",", $this->mKeywords ))) . "\" />\n";
802 }
803 foreach ( $this->mLinktags as $tag ) {
804 $ret .= '<link';
805 foreach( $tag as $attr => $val ) {
806 $ret .= " $attr=\"" . htmlspecialchars( $val ) . "\"";
807 }
808 $ret .= " />\n";
809 }
810 if( $this->isSyndicated() ) {
811 # FIXME: centralize the mime-type and name information in Feed.php
812 $link = $wgRequest->escapeAppendQuery( 'feed=rss' );
813 $ret .= "<link rel='alternate' type='application/rss+xml' title='RSS 2.0' href='$link' />\n";
814 $link = $wgRequest->escapeAppendQuery( 'feed=atom' );
815 $ret .= "<link rel='alternate' type='application/rss+atom' title='Atom 0.3' href='$link' />\n";
816 }
817
818 return $ret;
819 }
820
821 /**
822 * Run any necessary pre-output transformations on the buffer text
823 */
824 function transformBuffer( $options = 0 ) {
825 }
826
827
828 }
829
830 }
831
832 ?>