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