* Port tests from t/inc/
[mediawiki.git] / includes / OutputPage.php
blob93fde209b1c5b85d97572b7043b089770db5b195
1 <?php
2 if ( ! defined( 'MEDIAWIKI' ) )
3 die( 1 );
5 /**
6 * @todo document
7 */
8 class OutputPage {
9 var $mMetatags = array(), $mKeywords = array(), $mLinktags = array();
10 var $mExtStyles = array();
11 var $mPagetitle = '', $mBodytext = '', $mDebugtext = '';
12 var $mHTMLtitle = '', $mIsarticle = true, $mPrintable = false;
13 var $mSubtitle = '', $mRedirect = '', $mStatusCode;
14 var $mLastModified = '', $mETag = false;
15 var $mCategoryLinks = array(), $mCategories = array(), $mLanguageLinks = array();
17 var $mScripts = '', $mLinkColours, $mPageLinkTitle = '', $mHeadItems = array();
18 var $mInlineMsg = array();
20 var $mTemplateIds = array();
22 var $mAllowUserJs;
23 var $mSuppressQuickbar = false;
24 var $mDoNothing = false;
25 var $mContainsOldMagic = 0, $mContainsNewMagic = 0;
26 var $mIsArticleRelated = true;
27 protected $mParserOptions = null; // lazy initialised, use parserOptions()
29 var $mFeedLinks = array();
31 var $mEnableClientCache = true;
32 var $mArticleBodyOnly = false;
34 var $mNewSectionLink = false;
35 var $mHideNewSectionLink = false;
36 var $mNoGallery = false;
37 var $mPageTitleActionText = '';
38 var $mParseWarnings = array();
39 var $mSquidMaxage = 0;
40 var $mRevisionId = null;
41 protected $mTitle = null;
43 /**
44 * An array of stylesheet filenames (relative from skins path), with options
45 * for CSS media, IE conditions, and RTL/LTR direction.
46 * For internal use; add settings in the skin via $this->addStyle()
48 var $styles = array();
50 /**
51 * Whether to load jQuery core.
53 protected $mJQueryDone = false;
55 private $mIndexPolicy = 'index';
56 private $mFollowPolicy = 'follow';
57 private $mVaryHeader = array( 'Accept-Encoding' => array('list-contains=gzip'),
58 'Cookie' => null );
61 /**
62 * Constructor
63 * Initialise private variables
65 function __construct() {
66 global $wgAllowUserJs;
67 $this->mAllowUserJs = $wgAllowUserJs;
70 /**
71 * Redirect to $url rather than displaying the normal page
73 * @param $url String: URL
74 * @param $responsecode String: HTTP status code
76 public function redirect( $url, $responsecode = '302' ) {
77 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
78 $this->mRedirect = str_replace( "\n", '', $url );
79 $this->mRedirectCode = $responsecode;
82 /**
83 * Get the URL to redirect to, or an empty string if not redirect URL set
85 * @return String
87 public function getRedirect() {
88 return $this->mRedirect;
91 /**
92 * Set the HTTP status code to send with the output.
94 * @param $statusCode Integer
95 * @return nothing
97 public function setStatusCode( $statusCode ) {
98 $this->mStatusCode = $statusCode;
103 * Add a new <meta> tag
104 * To add an http-equiv meta tag, precede the name with "http:"
106 * @param $name tag name
107 * @param $val tag value
109 function addMeta( $name, $val ) {
110 array_push( $this->mMetatags, array( $name, $val ) );
114 * Add a keyword or a list of keywords in the page header
116 * @param $text String or array of strings
118 function addKeyword( $text ) {
119 if( is_array( $text ) ) {
120 $this->mKeywords = array_merge( $this->mKeywords, $text );
121 } else {
122 array_push( $this->mKeywords, $text );
127 * Add a new \<link\> tag to the page header
129 * @param $linkarr Array: associative array of attributes.
131 function addLink( $linkarr ) {
132 array_push( $this->mLinktags, $linkarr );
136 * Add a new \<link\> with "rel" attribute set to "meta"
138 * @param $linkarr Array: associative array mapping attribute names to their
139 * values, both keys and values will be escaped, and the
140 * "rel" attribute will be automatically added
142 function addMetadataLink( $linkarr ) {
143 # note: buggy CC software only reads first "meta" link
144 static $haveMeta = false;
145 $linkarr['rel'] = $haveMeta ? 'alternate meta' : 'meta';
146 $this->addLink( $linkarr );
147 $haveMeta = true;
152 * Add raw HTML to the list of scripts (including \<script\> tag, etc.)
154 * @param $script String: raw HTML
156 function addScript( $script ) {
157 $this->mScripts .= $script . "\n";
161 * Register and add a stylesheet from an extension directory.
163 * @param $url String path to sheet. Provide either a full url (beginning
164 * with 'http', etc) or a relative path from the document root
165 * (beginning with '/'). Otherwise it behaves identically to
166 * addStyle() and draws from the /skins folder.
168 public function addExtensionStyle( $url ) {
169 array_push( $this->mExtStyles, $url );
173 * Get all links added by extensions
175 * @return Array
177 function getExtStyle() {
178 return $this->mExtStyles;
182 * Add a JavaScript file out of skins/common, or a given relative path.
184 * @param $file String: filename in skins/common or complete on-server path
185 * (/foo/bar.js)
187 public function addScriptFile( $file ) {
188 global $wgStylePath, $wgStyleVersion;
189 if( substr( $file, 0, 1 ) == '/' || substr( $file, 0, 7 ) == 'http://' ) {
190 $path = $file;
191 } else {
192 $path = "{$wgStylePath}/common/{$file}";
194 $this->addScript( Html::linkedScript( wfAppendQuery( $path, $wgStyleVersion ) ) );
198 * Add a self-contained script tag with the given contents
200 * @param $script String: JavaScript text, no <script> tags
202 public function addInlineScript( $script ) {
203 $this->mScripts .= Html::inlineScript( "\n$script\n" ) . "\n";
207 * Get all registered JS and CSS tags for the header.
209 * @return String
211 function getScript() {
212 return $this->mScripts . $this->getHeadItems();
216 * Get all header items in a string
218 * @return String
220 function getHeadItems() {
221 $s = '';
222 foreach ( $this->mHeadItems as $item ) {
223 $s .= $item;
225 return $s;
229 * Add or replace an header item to the output
231 * @param $name String: item name
232 * @param $value String: raw HTML
234 public function addHeadItem( $name, $value ) {
235 $this->mHeadItems[$name] = $value;
239 * Check if the header item $name is already set
241 * @param $name String: item name
242 * @return Boolean
244 public function hasHeadItem( $name ) {
245 return isset( $this->mHeadItems[$name] );
249 * Set the value of the ETag HTTP header, only used if $wgUseETag is true
251 * @param $tag String: value of "ETag" header
253 function setETag( $tag ) {
254 $this->mETag = $tag;
258 * Set whether the output should only contain the body of the article,
259 * without any skin, sidebar, etc.
260 * Used e.g. when calling with "action=render".
262 * @param $only Boolean: whether to output only the body of the article
264 public function setArticleBodyOnly( $only ) {
265 $this->mArticleBodyOnly = $only;
269 * Return whether the output will contain only the body of the article
271 * @return Boolean
273 public function getArticleBodyOnly() {
274 return $this->mArticleBodyOnly;
279 * checkLastModified tells the client to use the client-cached page if
280 * possible. If sucessful, the OutputPage is disabled so that
281 * any future call to OutputPage->output() have no effect.
283 * Side effect: sets mLastModified for Last-Modified header
285 * @return Boolean: true iff cache-ok headers was sent.
287 public function checkLastModified( $timestamp ) {
288 global $wgCachePages, $wgCacheEpoch, $wgUser, $wgRequest;
290 if ( !$timestamp || $timestamp == '19700101000000' ) {
291 wfDebug( __METHOD__ . ": CACHE DISABLED, NO TIMESTAMP\n" );
292 return false;
294 if( !$wgCachePages ) {
295 wfDebug( __METHOD__ . ": CACHE DISABLED\n", false );
296 return false;
298 if( $wgUser->getOption( 'nocache' ) ) {
299 wfDebug( __METHOD__ . ": USER DISABLED CACHE\n", false );
300 return false;
303 $timestamp = wfTimestamp( TS_MW, $timestamp );
304 $modifiedTimes = array(
305 'page' => $timestamp,
306 'user' => $wgUser->getTouched(),
307 'epoch' => $wgCacheEpoch
309 wfRunHooks( 'OutputPageCheckLastModified', array( &$modifiedTimes ) );
311 $maxModified = max( $modifiedTimes );
312 $this->mLastModified = wfTimestamp( TS_RFC2822, $maxModified );
314 if( empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
315 wfDebug( __METHOD__ . ": client did not send If-Modified-Since header\n", false );
316 return false;
319 # Make debug info
320 $info = '';
321 foreach ( $modifiedTimes as $name => $value ) {
322 if ( $info !== '' ) {
323 $info .= ', ';
325 $info .= "$name=" . wfTimestamp( TS_ISO_8601, $value );
328 # IE sends sizes after the date like this:
329 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
330 # this breaks strtotime().
331 $clientHeader = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
333 wfSuppressWarnings(); // E_STRICT system time bitching
334 $clientHeaderTime = strtotime( $clientHeader );
335 wfRestoreWarnings();
336 if ( !$clientHeaderTime ) {
337 wfDebug( __METHOD__ . ": unable to parse the client's If-Modified-Since header: $clientHeader\n" );
338 return false;
340 $clientHeaderTime = wfTimestamp( TS_MW, $clientHeaderTime );
342 wfDebug( __METHOD__ . ": client sent If-Modified-Since: " .
343 wfTimestamp( TS_ISO_8601, $clientHeaderTime ) . "\n", false );
344 wfDebug( __METHOD__ . ": effective Last-Modified: " .
345 wfTimestamp( TS_ISO_8601, $maxModified ) . "\n", false );
346 if( $clientHeaderTime < $maxModified ) {
347 wfDebug( __METHOD__ . ": STALE, $info\n", false );
348 return false;
351 # Not modified
352 # Give a 304 response code and disable body output
353 wfDebug( __METHOD__ . ": NOT MODIFIED, $info\n", false );
354 ini_set('zlib.output_compression', 0);
355 $wgRequest->response()->header( "HTTP/1.1 304 Not Modified" );
356 $this->sendCacheControl();
357 $this->disable();
359 // Don't output a compressed blob when using ob_gzhandler;
360 // it's technically against HTTP spec and seems to confuse
361 // Firefox when the response gets split over two packets.
362 wfClearOutputBuffers();
364 return true;
369 * Set the robot policy for the page: <http://www.robotstxt.org/meta.html>
371 * @param $policy String: the literal string to output as the contents of
372 * the meta tag. Will be parsed according to the spec and output in
373 * standardized form.
374 * @return null
376 public function setRobotPolicy( $policy ) {
377 $policy = Article::formatRobotPolicy( $policy );
379 if( isset( $policy['index'] ) ){
380 $this->setIndexPolicy( $policy['index'] );
382 if( isset( $policy['follow'] ) ){
383 $this->setFollowPolicy( $policy['follow'] );
388 * Set the index policy for the page, but leave the follow policy un-
389 * touched.
391 * @param $policy string Either 'index' or 'noindex'.
392 * @return null
394 public function setIndexPolicy( $policy ) {
395 $policy = trim( $policy );
396 if( in_array( $policy, array( 'index', 'noindex' ) ) ) {
397 $this->mIndexPolicy = $policy;
402 * Set the follow policy for the page, but leave the index policy un-
403 * touched.
405 * @param $policy String: either 'follow' or 'nofollow'.
406 * @return null
408 public function setFollowPolicy( $policy ) {
409 $policy = trim( $policy );
410 if( in_array( $policy, array( 'follow', 'nofollow' ) ) ) {
411 $this->mFollowPolicy = $policy;
417 * Set the new value of the "action text", this will be added to the
418 * "HTML title", separated from it with " - ".
420 * @param $text String: new value of the "action text"
422 public function setPageTitleActionText( $text ) {
423 $this->mPageTitleActionText = $text;
427 * Get the value of the "action text"
429 * @return String
431 public function getPageTitleActionText() {
432 if ( isset( $this->mPageTitleActionText ) ) {
433 return $this->mPageTitleActionText;
438 * "HTML title" means the contents of <title>. It is stored as plain, unescaped text and will be run through htmlspecialchars in the skin file.
440 public function setHTMLTitle( $name ) {
441 $this->mHTMLtitle = $name;
445 * Return the "HTML title", i.e. the content of the <title> tag.
447 * @return String
449 public function getHTMLTitle() {
450 return $this->mHTMLtitle;
454 * "Page title" means the contents of \<h1\>. It is stored as a valid HTML fragment.
455 * This function allows good tags like \<sup\> in the \<h1\> tag, but not bad tags like \<script\>.
456 * This function automatically sets \<title\> to the same content as \<h1\> but with all tags removed.
457 * Bad tags that were escaped in \<h1\> will still be escaped in \<title\>, and good tags like \<i\> will be dropped entirely.
459 public function setPageTitle( $name ) {
460 # change "<script>foo&bar</script>" to "&lt;script&gt;foo&amp;bar&lt;/script&gt;"
461 # but leave "<i>foobar</i>" alone
462 $nameWithTags = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $name ) );
463 $this->mPagetitle = $nameWithTags;
465 $taction = $this->getPageTitleActionText();
466 if( !empty( $taction ) ) {
467 $name .= ' - '.$taction;
470 # change "<i>foo&amp;bar</i>" to "foo&bar"
471 $this->setHTMLTitle( wfMsg( 'pagetitle', Sanitizer::stripAllTags( $nameWithTags ) ) );
475 * Return the "page title", i.e. the content of the \<h1\> tag.
477 * @return String
479 public function getPageTitle() {
480 return $this->mPagetitle;
484 * Set the Title object to use
486 * @param $t Title object
488 public function setTitle( $t ) {
489 $this->mTitle = $t;
493 * Get the Title object used in this instance
495 * @return Title
497 public function getTitle() {
498 if ( $this->mTitle instanceof Title ) {
499 return $this->mTitle;
500 } else {
501 wfDebug( __METHOD__ . ' called and $mTitle is null. Return $wgTitle for sanity' );
502 global $wgTitle;
503 return $wgTitle;
508 * Replace the subtile with $str
510 * @param $str String: new value of the subtitle
512 public function setSubtitle( $str ) {
513 $this->mSubtitle = /*$this->parse(*/ $str /*)*/; // @bug 2514
517 * Add $str to the subtitle
519 * @param $str String to add to the subtitle
521 public function appendSubtitle( $str ) {
522 $this->mSubtitle .= /*$this->parse(*/ $str /*)*/; // @bug 2514
526 * Get the subtitle
528 * @return String
530 public function getSubtitle() {
531 return $this->mSubtitle;
536 * Set the page as printable, i.e. it'll be displayed with with all
537 * print styles included
539 public function setPrintable() {
540 $this->mPrintable = true;
544 * Return whether the page is "printable"
546 * @return Boolean
548 public function isPrintable() {
549 return $this->mPrintable;
554 * Disable output completely, i.e. calling output() will have no effect
556 public function disable() {
557 $this->mDoNothing = true;
561 * Return whether the output will be completely disabled
563 * @return Boolean
565 public function isDisabled() {
566 return $this->mDoNothing;
571 * Show an "add new section" link?
573 * @return Boolean
575 public function showNewSectionLink() {
576 return $this->mNewSectionLink;
580 * Forcibly hide the new section link?
582 * @return Boolean
584 public function forceHideNewSectionLink() {
585 return $this->mHideNewSectionLink;
590 * Add or remove feed links in the page header
591 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
592 * for the new version
593 * @see addFeedLink()
595 * @param $show Boolean: true: add default feeds, false: remove all feeds
597 public function setSyndicated( $show = true ) {
598 if ( $show ) {
599 $this->setFeedAppendQuery( false );
600 } else {
601 $this->mFeedLinks = array();
606 * Add default feeds to the page header
607 * This is mainly kept for backward compatibility, see OutputPage::addFeedLink()
608 * for the new version
609 * @see addFeedLink()
611 * @param $val String: query to append to feed links or false to output
612 * default links
614 public function setFeedAppendQuery( $val ) {
615 global $wgAdvertisedFeedTypes;
617 $this->mFeedLinks = array();
619 foreach ( $wgAdvertisedFeedTypes as $type ) {
620 $query = "feed=$type";
621 if ( is_string( $val ) ) {
622 $query .= '&' . $val;
624 $this->mFeedLinks[$type] = $this->getTitle()->getLocalURL( $query );
629 * Add a feed link to the page header
631 * @param $format String: feed type, should be a key of $wgFeedClasses
632 * @param $href String: URL
634 public function addFeedLink( $format, $href ) {
635 $this->mFeedLinks[$format] = $href;
639 * Should we output feed links for this page?
640 * @return Boolean
642 public function isSyndicated() {
643 return count( $this->mFeedLinks ) > 0;
647 * Return URLs for each supported syndication format for this page.
648 * @return array associating format keys with URLs
650 public function getSyndicationLinks() {
651 return $this->mFeedLinks;
655 * Will currently always return null
657 * @return null
659 public function getFeedAppendQuery() {
660 return $this->mFeedLinksAppendQuery;
664 * Set whether the displayed content is related to the source of the
665 * corresponding article on the wiki
666 * Setting true will cause the change "article related" toggle to true
668 * @param $v Boolean
670 public function setArticleFlag( $v ) {
671 $this->mIsarticle = $v;
672 if ( $v ) {
673 $this->mIsArticleRelated = $v;
678 * Return whether the content displayed page is related to the source of
679 * the corresponding article on the wiki
681 * @return Boolean
683 public function isArticle() {
684 return $this->mIsarticle;
688 * Set whether this page is related an article on the wiki
689 * Setting false will cause the change of "article flag" toggle to false
691 * @param $v Boolean
693 public function setArticleRelated( $v ) {
694 $this->mIsArticleRelated = $v;
695 if ( !$v ) {
696 $this->mIsarticle = false;
701 * Return whether this page is related an article on the wiki
703 * @return Boolean
705 public function isArticleRelated() {
706 return $this->mIsArticleRelated;
711 * Add new language links
713 * @param $newLinkArray Associative array mapping language code to the page
714 * name
716 public function addLanguageLinks( $newLinkArray ) {
717 $this->mLanguageLinks += $newLinkArray;
721 * Reset the language links and add new language links
723 * @param $newLinkArray Associative array mapping language code to the page
724 * name
726 public function setLanguageLinks( $newLinkArray ) {
727 $this->mLanguageLinks = $newLinkArray;
731 * Get the list of language links
733 * @return Associative array mapping language code to the page name
735 public function getLanguageLinks() {
736 return $this->mLanguageLinks;
741 * Add an array of categories, with names in the keys
743 * @param $categories Associative array mapping category name to its sort key
745 public function addCategoryLinks( $categories ) {
746 global $wgUser, $wgContLang;
748 if ( !is_array( $categories ) || count( $categories ) == 0 ) {
749 return;
752 # Add the links to a LinkBatch
753 $arr = array( NS_CATEGORY => $categories );
754 $lb = new LinkBatch;
755 $lb->setArray( $arr );
757 # Fetch existence plus the hiddencat property
758 $dbr = wfGetDB( DB_SLAVE );
759 $pageTable = $dbr->tableName( 'page' );
760 $where = $lb->constructSet( 'page', $dbr );
761 $propsTable = $dbr->tableName( 'page_props' );
762 $sql = "SELECT page_id, page_namespace, page_title, page_len, page_is_redirect, pp_value
763 FROM $pageTable LEFT JOIN $propsTable ON pp_propname='hiddencat' AND pp_page=page_id WHERE $where";
764 $res = $dbr->query( $sql, __METHOD__ );
766 # Add the results to the link cache
767 $lb->addResultToCache( LinkCache::singleton(), $res );
769 # Set all the values to 'normal'. This can be done with array_fill_keys in PHP 5.2.0+
770 $categories = array_combine( array_keys( $categories ),
771 array_fill( 0, count( $categories ), 'normal' ) );
773 # Mark hidden categories
774 foreach ( $res as $row ) {
775 if ( isset( $row->pp_value ) ) {
776 $categories[$row->page_title] = 'hidden';
780 # Add the remaining categories to the skin
781 if ( wfRunHooks( 'OutputPageMakeCategoryLinks', array( &$this, $categories, &$this->mCategoryLinks ) ) ) {
782 $sk = $wgUser->getSkin();
783 foreach ( $categories as $category => $type ) {
784 $origcategory = $category;
785 $title = Title::makeTitleSafe( NS_CATEGORY, $category );
786 $wgContLang->findVariantLink( $category, $title, true );
787 if ( $category != $origcategory )
788 if ( array_key_exists( $category, $categories ) )
789 continue;
790 $text = $wgContLang->convertHtml( $title->getText() );
791 $this->mCategories[] = $title->getText();
792 $this->mCategoryLinks[$type][] = $sk->link( $title, $text );
798 * Reset the category links (but not the category list) and add $categories
800 * @param $categories Associative array mapping category name to its sort key
802 public function setCategoryLinks( $categories ) {
803 $this->mCategoryLinks = array();
804 $this->addCategoryLinks( $categories );
808 * Get the list of category links, in a 2-D array with the following format:
809 * $arr[$type][] = $link, where $type is either "normal" or "hidden" (for
810 * hidden categories) and $link a HTML fragment with a link to the category
811 * page
813 * @return Array
815 public function getCategoryLinks() {
816 return $this->mCategoryLinks;
820 * Get the list of category names this page belongs to
822 * @return Array of strings
824 public function getCategories() {
825 return $this->mCategories;
830 * Suppress the quickbar from the output, only for skin supporting
831 * the quickbar
833 public function suppressQuickbar() {
834 $this->mSuppressQuickbar = true;
838 * Return whether the quickbar should be suppressed from the output
840 * @return Boolean
842 public function isQuickbarSuppressed() {
843 return $this->mSuppressQuickbar;
848 * Remove user JavaScript from scripts to load
850 public function disallowUserJs() {
851 $this->mAllowUserJs = false;
855 * Return whether user JavaScript is allowed for this page
857 * @return Boolean
859 public function isUserJsAllowed() {
860 return $this->mAllowUserJs;
865 * Prepend $text to the body HTML
867 * @param $text String: HTML
869 public function prependHTML( $text ) {
870 $this->mBodytext = $text . $this->mBodytext;
874 * Append $text to the body HTML
876 * @param $text String: HTML
878 public function addHTML( $text ) {
879 $this->mBodytext .= $text;
883 * Clear the body HTML
885 public function clearHTML() {
886 $this->mBodytext = '';
890 * Get the body HTML
892 * @return String: HTML
894 public function getHTML() {
895 return $this->mBodytext;
900 * Add $text to the debug output
902 * @param $text String: debug text
904 public function debug( $text ) {
905 $this->mDebugtext .= $text;
910 * @deprecated use parserOptions() instead
912 public function setParserOptions( $options ) {
913 wfDeprecated( __METHOD__ );
914 return $this->parserOptions( $options );
918 * Get/set the ParserOptions object to use for wikitext parsing
920 * @param $options either the ParserOption to use or null to only get the
921 * current ParserOption object
922 * @return current ParserOption object
924 public function parserOptions( $options = null ) {
925 if ( !$this->mParserOptions ) {
926 $this->mParserOptions = new ParserOptions;
928 return wfSetVar( $this->mParserOptions, $options );
932 * Set the revision ID which will be seen by the wiki text parser
933 * for things such as embedded {{REVISIONID}} variable use.
935 * @param $revid Mixed: an positive integer, or null
936 * @return Mixed: previous value
938 public function setRevisionId( $revid ) {
939 $val = is_null( $revid ) ? null : intval( $revid );
940 return wfSetVar( $this->mRevisionId, $val );
944 * Get the current revision ID
946 * @return Integer
948 public function getRevisionId() {
949 return $this->mRevisionId;
953 * Convert wikitext to HTML and add it to the buffer
954 * Default assumes that the current page title will be used.
956 * @param $text String
957 * @param $linestart Boolean: is this the start of a line?
959 public function addWikiText( $text, $linestart = true ) {
960 $title = $this->getTitle(); // Work arround E_STRICT
961 $this->addWikiTextTitle( $text, $title, $linestart );
965 * Add wikitext with a custom Title object
967 * @param $text String: wikitext
968 * @param $title Title object
969 * @param $linestart Boolean: is this the start of a line?
971 public function addWikiTextWithTitle( $text, &$title, $linestart = true ) {
972 $this->addWikiTextTitle( $text, $title, $linestart );
976 * Add wikitext with a custom Title object and
978 * @param $text String: wikitext
979 * @param $title Title object
980 * @param $linestart Boolean: is this the start of a line?
982 function addWikiTextTitleTidy( $text, &$title, $linestart = true ) {
983 $this->addWikiTextTitle( $text, $title, $linestart, true );
987 * Add wikitext with tidy enabled
989 * @param $text String: wikitext
990 * @param $linestart Boolean: is this the start of a line?
992 public function addWikiTextTidy( $text, $linestart = true ) {
993 $title = $this->getTitle();
994 $this->addWikiTextTitleTidy($text, $title, $linestart);
998 * Add wikitext with a custom Title object
1000 * @param $text String: wikitext
1001 * @param $title Title object
1002 * @param $linestart Boolean: is this the start of a line?
1003 * @param $tidy Boolean: whether to use tidy
1005 public function addWikiTextTitle( $text, &$title, $linestart, $tidy = false ) {
1006 global $wgParser;
1008 wfProfileIn( __METHOD__ );
1010 wfIncrStats( 'pcache_not_possible' );
1012 $popts = $this->parserOptions();
1013 $oldTidy = $popts->setTidy( $tidy );
1015 $parserOutput = $wgParser->parse( $text, $title, $popts,
1016 $linestart, true, $this->mRevisionId );
1018 $popts->setTidy( $oldTidy );
1020 $this->addParserOutput( $parserOutput );
1022 wfProfileOut( __METHOD__ );
1026 * Add wikitext to the buffer, assuming that this is the primary text for a page view
1027 * Saves the text into the parser cache if possible.
1029 * @param $text String: wikitext
1030 * @param $article Article object
1031 * @param $cache Boolean
1032 * @deprecated Use Article::outputWikitext
1034 public function addPrimaryWikiText( $text, $article, $cache = true ) {
1035 global $wgParser;
1037 wfDeprecated( __METHOD__ );
1039 $popts = $this->parserOptions();
1040 $popts->setTidy(true);
1041 $parserOutput = $wgParser->parse( $text, $article->mTitle,
1042 $popts, true, true, $this->mRevisionId );
1043 $popts->setTidy(false);
1044 if ( $cache && $article && $parserOutput->getCacheTime() != -1 ) {
1045 $parserCache = ParserCache::singleton();
1046 $parserCache->save( $parserOutput, $article, $popts);
1049 $this->addParserOutput( $parserOutput );
1053 * @deprecated use addWikiTextTidy()
1055 public function addSecondaryWikiText( $text, $linestart = true ) {
1056 wfDeprecated( __METHOD__ );
1057 $this->addWikiTextTitleTidy($text, $this->getTitle(), $linestart);
1062 * Add a ParserOutput object, but without Html
1064 * @param $parserOutput ParserOutput object
1066 public function addParserOutputNoText( &$parserOutput ) {
1067 global $wgExemptFromUserRobotsControl, $wgContentNamespaces;
1069 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
1070 $this->addCategoryLinks( $parserOutput->getCategories() );
1071 $this->mNewSectionLink = $parserOutput->getNewSection();
1072 $this->mHideNewSectionLink = $parserOutput->getHideNewSection();
1074 $this->mParseWarnings = $parserOutput->getWarnings();
1075 if ( $parserOutput->getCacheTime() == -1 ) {
1076 $this->enableClientCache( false );
1078 $this->mNoGallery = $parserOutput->getNoGallery();
1079 $this->mHeadItems = array_merge( $this->mHeadItems, $parserOutput->getHeadItems() );
1080 // Versioning...
1081 foreach ( (array)$parserOutput->mTemplateIds as $ns => $dbks ) {
1082 if ( isset( $this->mTemplateIds[$ns] ) ) {
1083 $this->mTemplateIds[$ns] = $dbks + $this->mTemplateIds[$ns];
1084 } else {
1085 $this->mTemplateIds[$ns] = $dbks;
1088 // Page title
1089 $title = $parserOutput->getTitleText();
1090 if ( $title != '' ) {
1091 $this->setPageTitle( $title );
1094 // Hooks registered in the object
1095 global $wgParserOutputHooks;
1096 foreach ( $parserOutput->getOutputHooks() as $hookInfo ) {
1097 list( $hookName, $data ) = $hookInfo;
1098 if ( isset( $wgParserOutputHooks[$hookName] ) ) {
1099 call_user_func( $wgParserOutputHooks[$hookName], $this, $parserOutput, $data );
1103 wfRunHooks( 'OutputPageParserOutput', array( &$this, $parserOutput ) );
1107 * Add a ParserOutput object
1109 * @param $parserOutput ParserOutput
1111 function addParserOutput( &$parserOutput ) {
1112 $this->addParserOutputNoText( $parserOutput );
1113 $text = $parserOutput->getText();
1114 wfRunHooks( 'OutputPageBeforeHTML',array( &$this, &$text ) );
1115 $this->addHTML( $text );
1120 * Add the output of a QuickTemplate to the output buffer
1122 * @param $template QuickTemplate
1124 public function addTemplate( &$template ) {
1125 ob_start();
1126 $template->execute();
1127 $this->addHTML( ob_get_contents() );
1128 ob_end_clean();
1132 * Parse wikitext and return the HTML.
1134 * @param $text String
1135 * @param $linestart Boolean: is this the start of a line?
1136 * @param $interface Boolean: use interface language ($wgLang instead of
1137 * $wgContLang) while parsing language sensitive magic
1138 * words like GRAMMAR and PLURAL
1139 * @return String: HTML
1141 public function parse( $text, $linestart = true, $interface = false ) {
1142 global $wgParser;
1143 if( is_null( $this->getTitle() ) ) {
1144 throw new MWException( 'Empty $mTitle in ' . __METHOD__ );
1146 $popts = $this->parserOptions();
1147 if ( $interface) { $popts->setInterfaceMessage(true); }
1148 $parserOutput = $wgParser->parse( $text, $this->getTitle(), $popts,
1149 $linestart, true, $this->mRevisionId );
1150 if ( $interface) { $popts->setInterfaceMessage(false); }
1151 return $parserOutput->getText();
1155 * Parse wikitext, strip paragraphs, and return the HTML.
1157 * @param $text String
1158 * @param $linestart Boolean: is this the start of a line?
1159 * @param $interface Boolean: use interface language ($wgLang instead of
1160 * $wgContLang) while parsing language sensitive magic
1161 * words like GRAMMAR and PLURAL
1162 * @return String: HTML
1164 public function parseInline( $text, $linestart = true, $interface = false ) {
1165 $parsed = $this->parse( $text, $linestart, $interface );
1167 $m = array();
1168 if ( preg_match( '/^<p>(.*)\n?<\/p>\n?/sU', $parsed, $m ) ) {
1169 $parsed = $m[1];
1172 return $parsed;
1176 * @deprecated
1178 * @param $article Article
1179 * @return Boolean: true if successful, else false.
1181 public function tryParserCache( &$article ) {
1182 wfDeprecated( __METHOD__ );
1183 $parserOutput = ParserCache::singleton()->get( $article, $article->getParserOptions() );
1185 if ($parserOutput !== false) {
1186 $this->addParserOutput( $parserOutput );
1187 return true;
1188 } else {
1189 return false;
1194 * Set the value of the "s-maxage" part of the "Cache-control" HTTP header
1196 * @param $maxage Integer: maximum cache time on the Squid, in seconds.
1198 public function setSquidMaxage( $maxage ) {
1199 $this->mSquidMaxage = $maxage;
1203 * Use enableClientCache(false) to force it to send nocache headers
1205 * @param $state ??
1207 public function enableClientCache( $state ) {
1208 return wfSetVar( $this->mEnableClientCache, $state );
1212 * Get the list of cookies that will influence on the cache
1214 * @return Array
1216 function getCacheVaryCookies() {
1217 global $wgCookiePrefix, $wgCacheVaryCookies;
1218 static $cookies;
1219 if ( $cookies === null ) {
1220 $cookies = array_merge(
1221 array(
1222 "{$wgCookiePrefix}Token",
1223 "{$wgCookiePrefix}LoggedOut",
1224 session_name()
1226 $wgCacheVaryCookies
1228 wfRunHooks('GetCacheVaryCookies', array( $this, &$cookies ) );
1230 return $cookies;
1234 * Return whether this page is not cacheable because "useskin" or "uselang"
1235 * url parameters were passed
1237 * @return Boolean
1239 function uncacheableBecauseRequestVars() {
1240 global $wgRequest;
1241 return $wgRequest->getText('useskin', false) === false
1242 && $wgRequest->getText('uselang', false) === false;
1246 * Check if the request has a cache-varying cookie header
1247 * If it does, it's very important that we don't allow public caching
1249 * @return Boolean
1251 function haveCacheVaryCookies() {
1252 global $wgRequest;
1253 $cookieHeader = $wgRequest->getHeader( 'cookie' );
1254 if ( $cookieHeader === false ) {
1255 return false;
1257 $cvCookies = $this->getCacheVaryCookies();
1258 foreach ( $cvCookies as $cookieName ) {
1259 # Check for a simple string match, like the way squid does it
1260 if ( strpos( $cookieHeader, $cookieName ) ) {
1261 wfDebug( __METHOD__.": found $cookieName\n" );
1262 return true;
1265 wfDebug( __METHOD__.": no cache-varying cookies found\n" );
1266 return false;
1270 * Add an HTTP header that will influence on the cache
1272 * @param $header String: header name
1273 * @param $option either an Array or null
1275 public function addVaryHeader( $header, $option = null ) {
1276 if ( !array_key_exists( $header, $this->mVaryHeader ) ) {
1277 $this->mVaryHeader[$header] = $option;
1279 elseif( is_array( $option ) ) {
1280 if( is_array( $this->mVaryHeader[$header] ) ) {
1281 $this->mVaryHeader[$header] = array_merge( $this->mVaryHeader[$header], $option );
1283 else {
1284 $this->mVaryHeader[$header] = $option;
1287 $this->mVaryHeader[$header] = array_unique( $this->mVaryHeader[$header] );
1291 * Get a complete X-Vary-Options header
1293 * @return String
1295 public function getXVO() {
1296 $cvCookies = $this->getCacheVaryCookies();
1298 $cookiesOption = array();
1299 foreach ( $cvCookies as $cookieName ) {
1300 $cookiesOption[] = 'string-contains=' . $cookieName;
1302 $this->addVaryHeader( 'Cookie', $cookiesOption );
1304 $headers = array();
1305 foreach( $this->mVaryHeader as $header => $option ) {
1306 $newheader = $header;
1307 if( is_array( $option ) )
1308 $newheader .= ';' . implode( ';', $option );
1309 $headers[] = $newheader;
1311 $xvo = 'X-Vary-Options: ' . implode( ',', $headers );
1313 return $xvo;
1317 * bug 21672: Add Accept-Language to Vary and XVO headers
1318 * if there's no 'variant' parameter existed in GET.
1320 * For example:
1321 * /w/index.php?title=Main_page should always be served; but
1322 * /w/index.php?title=Main_page&variant=zh-cn should never be served.
1324 * patched by Liangent and Philip
1326 function addAcceptLanguage() {
1327 global $wgRequest, $wgContLang;
1328 if( !$wgRequest->getCheck('variant') && $wgContLang->hasVariants() ) {
1329 $variants = $wgContLang->getVariants();
1330 $aloption = array();
1331 foreach ( $variants as $variant ) {
1332 if( $variant === $wgContLang->getCode() )
1333 continue;
1334 else
1335 $aloption[] = "string-contains=$variant";
1337 $this->addVaryHeader( 'Accept-Language', $aloption );
1342 * Send cache control HTTP headers
1344 public function sendCacheControl() {
1345 global $wgUseSquid, $wgUseESI, $wgUseETag, $wgSquidMaxage, $wgRequest, $wgUseXVO;
1347 $response = $wgRequest->response();
1348 if ($wgUseETag && $this->mETag)
1349 $response->header("ETag: $this->mETag");
1351 $this->addAcceptLanguage();
1353 # don't serve compressed data to clients who can't handle it
1354 # maintain different caches for logged-in users and non-logged in ones
1355 $response->header( 'Vary: ' . join( ', ', array_keys( $this->mVaryHeader ) ) );
1357 if ( $wgUseXVO ) {
1358 # Add an X-Vary-Options header for Squid with Wikimedia patches
1359 $response->header( $this->getXVO() );
1362 if( !$this->uncacheableBecauseRequestVars() && $this->mEnableClientCache ) {
1363 if( $wgUseSquid && session_id() == '' &&
1364 ! $this->isPrintable() && $this->mSquidMaxage != 0 && !$this->haveCacheVaryCookies() )
1366 if ( $wgUseESI ) {
1367 # We'll purge the proxy cache explicitly, but require end user agents
1368 # to revalidate against the proxy on each visit.
1369 # Surrogate-Control controls our Squid, Cache-Control downstream caches
1370 wfDebug( __METHOD__ . ": proxy caching with ESI; {$this->mLastModified} **\n", false );
1371 # start with a shorter timeout for initial testing
1372 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
1373 $response->header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
1374 $response->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
1375 } else {
1376 # We'll purge the proxy cache for anons explicitly, but require end user agents
1377 # to revalidate against the proxy on each visit.
1378 # IMPORTANT! The Squid needs to replace the Cache-Control header with
1379 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
1380 wfDebug( __METHOD__ . ": local proxy caching; {$this->mLastModified} **\n", false );
1381 # start with a shorter timeout for initial testing
1382 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
1383 $response->header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
1385 } else {
1386 # We do want clients to cache if they can, but they *must* check for updates
1387 # on revisiting the page.
1388 wfDebug( __METHOD__ . ": private caching; {$this->mLastModified} **\n", false );
1389 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1390 $response->header( "Cache-Control: private, must-revalidate, max-age=0" );
1392 if($this->mLastModified) {
1393 $response->header( "Last-Modified: {$this->mLastModified}" );
1395 } else {
1396 wfDebug( __METHOD__ . ": no caching **\n", false );
1398 # In general, the absence of a last modified header should be enough to prevent
1399 # the client from using its cache. We send a few other things just to make sure.
1400 $response->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
1401 $response->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
1402 $response->header( 'Pragma: no-cache' );
1404 wfRunHooks('CacheHeadersAfterSet', array( $this ) );
1408 * Get the message associed with the HTTP response code $code
1410 * @param $code Integer: status code
1411 * @return String or null: message or null if $code is not in the list of
1412 * messages
1414 public static function getStatusMessage( $code ) {
1415 static $statusMessage = array(
1416 100 => 'Continue',
1417 101 => 'Switching Protocols',
1418 102 => 'Processing',
1419 200 => 'OK',
1420 201 => 'Created',
1421 202 => 'Accepted',
1422 203 => 'Non-Authoritative Information',
1423 204 => 'No Content',
1424 205 => 'Reset Content',
1425 206 => 'Partial Content',
1426 207 => 'Multi-Status',
1427 300 => 'Multiple Choices',
1428 301 => 'Moved Permanently',
1429 302 => 'Found',
1430 303 => 'See Other',
1431 304 => 'Not Modified',
1432 305 => 'Use Proxy',
1433 307 => 'Temporary Redirect',
1434 400 => 'Bad Request',
1435 401 => 'Unauthorized',
1436 402 => 'Payment Required',
1437 403 => 'Forbidden',
1438 404 => 'Not Found',
1439 405 => 'Method Not Allowed',
1440 406 => 'Not Acceptable',
1441 407 => 'Proxy Authentication Required',
1442 408 => 'Request Timeout',
1443 409 => 'Conflict',
1444 410 => 'Gone',
1445 411 => 'Length Required',
1446 412 => 'Precondition Failed',
1447 413 => 'Request Entity Too Large',
1448 414 => 'Request-URI Too Large',
1449 415 => 'Unsupported Media Type',
1450 416 => 'Request Range Not Satisfiable',
1451 417 => 'Expectation Failed',
1452 422 => 'Unprocessable Entity',
1453 423 => 'Locked',
1454 424 => 'Failed Dependency',
1455 500 => 'Internal Server Error',
1456 501 => 'Not Implemented',
1457 502 => 'Bad Gateway',
1458 503 => 'Service Unavailable',
1459 504 => 'Gateway Timeout',
1460 505 => 'HTTP Version Not Supported',
1461 507 => 'Insufficient Storage'
1463 return isset( $statusMessage[$code] ) ? $statusMessage[$code] : null;
1467 * Finally, all the text has been munged and accumulated into
1468 * the object, let's actually output it:
1470 public function output() {
1471 global $wgUser, $wgOutputEncoding, $wgRequest;
1472 global $wgContLanguageCode, $wgDebugRedirects, $wgMimeType;
1473 global $wgUseAjax, $wgAjaxWatch;
1474 global $wgEnableMWSuggest, $wgUniversalEditButton;
1475 global $wgArticle;
1477 if( $this->mDoNothing ){
1478 return;
1480 wfProfileIn( __METHOD__ );
1481 if ( $this->mRedirect != '' ) {
1482 # Standards require redirect URLs to be absolute
1483 $this->mRedirect = wfExpandUrl( $this->mRedirect );
1484 if( $this->mRedirectCode == '301' || $this->mRedirectCode == '303' ) {
1485 if( !$wgDebugRedirects ) {
1486 $message = self::getStatusMessage( $this->mRedirectCode );
1487 $wgRequest->response()->header( "HTTP/1.1 {$this->mRedirectCode} $message" );
1489 $this->mLastModified = wfTimestamp( TS_RFC2822 );
1491 $this->sendCacheControl();
1493 $wgRequest->response()->header( "Content-Type: text/html; charset=utf-8" );
1494 if( $wgDebugRedirects ) {
1495 $url = htmlspecialchars( $this->mRedirect );
1496 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
1497 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
1498 print "</body>\n</html>\n";
1499 } else {
1500 $wgRequest->response()->header( 'Location: ' . $this->mRedirect );
1502 wfProfileOut( __METHOD__ );
1503 return;
1504 } elseif ( $this->mStatusCode ) {
1505 $message = self::getStatusMessage( $this->mStatusCode );
1506 if ( $message )
1507 $wgRequest->response()->header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $message );
1510 $sk = $wgUser->getSkin();
1512 if ( $wgUseAjax ) {
1513 $this->addScriptFile( 'ajax.js' );
1515 wfRunHooks( 'AjaxAddScript', array( &$this ) );
1517 if( $wgAjaxWatch && $wgUser->isLoggedIn() ) {
1518 $this->addScriptFile( 'ajaxwatch.js' );
1521 if ( $wgEnableMWSuggest && !$wgUser->getOption( 'disablesuggest', false ) ){
1522 $this->addScriptFile( 'mwsuggest.js' );
1526 if( $wgUser->getBoolOption( 'editsectiononrightclick' ) ) {
1527 $this->addScriptFile( 'rightclickedit.js' );
1530 if( $wgUniversalEditButton ) {
1531 if( isset( $wgArticle ) && $this->getTitle() && $this->getTitle()->quickUserCan( 'edit' )
1532 && ( $this->getTitle()->exists() || $this->getTitle()->quickUserCan( 'create' ) ) ) {
1533 // Original UniversalEditButton
1534 $msg = wfMsg('edit');
1535 $this->addLink( array(
1536 'rel' => 'alternate',
1537 'type' => 'application/x-wiki',
1538 'title' => $msg,
1539 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
1540 ) );
1541 // Alternate edit link
1542 $this->addLink( array(
1543 'rel' => 'edit',
1544 'title' => $msg,
1545 'href' => $this->getTitle()->getLocalURL( 'action=edit' )
1546 ) );
1550 # Buffer output; final headers may depend on later processing
1551 ob_start();
1553 $wgRequest->response()->header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
1554 $wgRequest->response()->header( 'Content-language: '.$wgContLanguageCode );
1556 if ($this->mArticleBodyOnly) {
1557 $this->out($this->mBodytext);
1558 } else {
1559 // Hook that allows last minute changes to the output page, e.g.
1560 // adding of CSS or Javascript by extensions.
1561 wfRunHooks( 'BeforePageDisplay', array( &$this, &$sk ) );
1563 wfProfileIn( 'Output-skin' );
1564 $sk->outputPage( $this );
1565 wfProfileOut( 'Output-skin' );
1568 $this->sendCacheControl();
1569 ob_end_flush();
1570 wfProfileOut( __METHOD__ );
1574 * Actually output something with print(). Performs an iconv to the
1575 * output encoding, if needed.
1577 * @param $ins String: the string to output
1579 public function out( $ins ) {
1580 global $wgInputEncoding, $wgOutputEncoding, $wgContLang;
1581 if ( 0 == strcmp( $wgInputEncoding, $wgOutputEncoding ) ) {
1582 $outs = $ins;
1583 } else {
1584 $outs = $wgContLang->iconv( $wgInputEncoding, $wgOutputEncoding, $ins );
1585 if ( false === $outs ) { $outs = $ins; }
1587 print $outs;
1591 * @todo document
1593 public static function setEncodings() {
1594 global $wgInputEncoding, $wgOutputEncoding;
1595 global $wgContLang;
1597 $wgInputEncoding = strtolower( $wgInputEncoding );
1599 if ( empty( $_SERVER['HTTP_ACCEPT_CHARSET'] ) ) {
1600 $wgOutputEncoding = strtolower( $wgOutputEncoding );
1601 return;
1603 $wgOutputEncoding = $wgInputEncoding;
1607 * @deprecated use wfReportTime() instead.
1609 * @return String
1611 public function reportTime() {
1612 wfDeprecated( __METHOD__ );
1613 $time = wfReportTime();
1614 return $time;
1618 * Produce a "user is blocked" page.
1620 * @param $return Boolean: whether to have a "return to $wgTitle" message or not.
1621 * @return nothing
1623 function blockedPage( $return = true ) {
1624 global $wgUser, $wgContLang, $wgLang;
1626 $this->setPageTitle( wfMsg( 'blockedtitle' ) );
1627 $this->setRobotPolicy( 'noindex,nofollow' );
1628 $this->setArticleRelated( false );
1630 $name = User::whoIs( $wgUser->blockedBy() );
1631 $reason = $wgUser->blockedFor();
1632 if( $reason == '' ) {
1633 $reason = wfMsg( 'blockednoreason' );
1635 $blockTimestamp = $wgLang->timeanddate( wfTimestamp( TS_MW, $wgUser->mBlock->mTimestamp ), true );
1636 $ip = wfGetIP();
1638 $link = '[[' . $wgContLang->getNsText( NS_USER ) . ":{$name}|{$name}]]";
1640 $blockid = $wgUser->mBlock->mId;
1642 $blockExpiry = $wgUser->mBlock->mExpiry;
1643 if ( $blockExpiry == 'infinity' ) {
1644 // Entry in database (table ipblocks) is 'infinity' but 'ipboptions' uses 'infinite' or 'indefinite'
1645 // Search for localization in 'ipboptions'
1646 $scBlockExpiryOptions = wfMsg( 'ipboptions' );
1647 foreach ( explode( ',', $scBlockExpiryOptions ) as $option ) {
1648 if ( strpos( $option, ":" ) === false )
1649 continue;
1650 list( $show, $value ) = explode( ":", $option );
1651 if ( $value == 'infinite' || $value == 'indefinite' ) {
1652 $blockExpiry = $show;
1653 break;
1656 } else {
1657 $blockExpiry = $wgLang->timeanddate( wfTimestamp( TS_MW, $blockExpiry ), true );
1660 if ( $wgUser->mBlock->mAuto ) {
1661 $msg = 'autoblockedtext';
1662 } else {
1663 $msg = 'blockedtext';
1666 /* $ip returns who *is* being blocked, $intended contains who was meant to be blocked.
1667 * This could be a username, an ip range, or a single ip. */
1668 $intended = $wgUser->mBlock->mAddress;
1670 $this->addWikiMsg( $msg, $link, $reason, $ip, $name, $blockid, $blockExpiry, $intended, $blockTimestamp );
1672 # Don't auto-return to special pages
1673 if( $return ) {
1674 $return = $this->getTitle()->getNamespace() > -1 ? $this->getTitle() : null;
1675 $this->returnToMain( null, $return );
1680 * Output a standard error page
1682 * @param $title String: message key for page title
1683 * @param $msg String: message key for page text
1684 * @param $params Array: message parameters
1686 public function showErrorPage( $title, $msg, $params = array() ) {
1687 if ( $this->getTitle() ) {
1688 $this->mDebugtext .= 'Original title: ' . $this->getTitle()->getPrefixedText() . "\n";
1690 $this->setPageTitle( wfMsg( $title ) );
1691 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
1692 $this->setRobotPolicy( 'noindex,nofollow' );
1693 $this->setArticleRelated( false );
1694 $this->enableClientCache( false );
1695 $this->mRedirect = '';
1696 $this->mBodytext = '';
1698 array_unshift( $params, 'parse' );
1699 array_unshift( $params, $msg );
1700 $this->addHTML( call_user_func_array( 'wfMsgExt', $params ) );
1702 $this->returnToMain();
1706 * Output a standard permission error page
1708 * @param $errors Array: error message keys
1709 * @param $action String: action that was denied or null if unknown
1711 public function showPermissionsErrorPage( $errors, $action = null ) {
1712 $this->mDebugtext .= 'Original title: ' .
1713 $this->getTitle()->getPrefixedText() . "\n";
1714 $this->setPageTitle( wfMsg( 'permissionserrors' ) );
1715 $this->setHTMLTitle( wfMsg( 'permissionserrors' ) );
1716 $this->setRobotPolicy( 'noindex,nofollow' );
1717 $this->setArticleRelated( false );
1718 $this->enableClientCache( false );
1719 $this->mRedirect = '';
1720 $this->mBodytext = '';
1721 $this->addWikiText( $this->formatPermissionsErrorMessage( $errors, $action ) );
1725 * Display an error page indicating that a given version of MediaWiki is
1726 * required to use it
1728 * @param $version Mixed: the version of MediaWiki needed to use the page
1730 public function versionRequired( $version ) {
1731 $this->setPageTitle( wfMsg( 'versionrequired', $version ) );
1732 $this->setHTMLTitle( wfMsg( 'versionrequired', $version ) );
1733 $this->setRobotPolicy( 'noindex,nofollow' );
1734 $this->setArticleRelated( false );
1735 $this->mBodytext = '';
1737 $this->addWikiMsg( 'versionrequiredtext', $version );
1738 $this->returnToMain();
1742 * Display an error page noting that a given permission bit is required.
1744 * @param $permission String: key required
1746 public function permissionRequired( $permission ) {
1747 global $wgLang;
1749 $this->setPageTitle( wfMsg( 'badaccess' ) );
1750 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
1751 $this->setRobotPolicy( 'noindex,nofollow' );
1752 $this->setArticleRelated( false );
1753 $this->mBodytext = '';
1755 $groups = array_map( array( 'User', 'makeGroupLinkWiki' ),
1756 User::getGroupsWithPermission( $permission ) );
1757 if( $groups ) {
1758 $this->addWikiMsg( 'badaccess-groups',
1759 $wgLang->commaList( $groups ),
1760 count( $groups) );
1761 } else {
1762 $this->addWikiMsg( 'badaccess-group0' );
1764 $this->returnToMain();
1768 * @deprecated use permissionRequired()
1770 public function sysopRequired() {
1771 throw new MWException( "Call to deprecated OutputPage::sysopRequired() method\n" );
1775 * @deprecated use permissionRequired()
1777 public function developerRequired() {
1778 throw new MWException( "Call to deprecated OutputPage::developerRequired() method\n" );
1782 * Produce the stock "please login to use the wiki" page
1784 public function loginToUse() {
1785 global $wgUser, $wgContLang;
1787 if( $wgUser->isLoggedIn() ) {
1788 $this->permissionRequired( 'read' );
1789 return;
1792 $skin = $wgUser->getSkin();
1794 $this->setPageTitle( wfMsg( 'loginreqtitle' ) );
1795 $this->setHtmlTitle( wfMsg( 'errorpagetitle' ) );
1796 $this->setRobotPolicy( 'noindex,nofollow' );
1797 $this->setArticleFlag( false );
1799 $loginTitle = SpecialPage::getTitleFor( 'Userlogin' );
1800 $loginLink = $skin->link(
1801 $loginTitle,
1802 wfMsgHtml( 'loginreqlink' ),
1803 array(),
1804 array( 'returnto' => $this->getTitle()->getPrefixedText() ),
1805 array( 'known', 'noclasses' )
1807 $this->addHTML( wfMsgWikiHtml( 'loginreqpagetext', $loginLink ) );
1808 $this->addHTML( "\n<!--" . $this->getTitle()->getPrefixedUrl() . "-->" );
1810 # Don't return to the main page if the user can't read it
1811 # otherwise we'll end up in a pointless loop
1812 $mainPage = Title::newMainPage();
1813 if( $mainPage->userCanRead() )
1814 $this->returnToMain( null, $mainPage );
1818 * Format a list of error messages
1820 * @param $errors An array of arrays returned by Title::getUserPermissionsErrors
1821 * @param $action String: action that was denied or null if unknown
1822 * @return String: the wikitext error-messages, formatted into a list.
1824 public function formatPermissionsErrorMessage( $errors, $action = null ) {
1825 if ($action == null) {
1826 $text = wfMsgNoTrans( 'permissionserrorstext', count($errors)). "\n\n";
1827 } else {
1828 global $wgLang;
1829 $action_desc = wfMsgNoTrans( "action-$action" );
1830 $text = wfMsgNoTrans( 'permissionserrorstext-withaction', count($errors), $action_desc ) . "\n\n";
1833 if (count( $errors ) > 1) {
1834 $text .= '<ul class="permissions-errors">' . "\n";
1836 foreach( $errors as $error )
1838 $text .= '<li>';
1839 $text .= call_user_func_array( 'wfMsgNoTrans', $error );
1840 $text .= "</li>\n";
1842 $text .= '</ul>';
1843 } else {
1844 $text .= "<div class=\"permissions-errors\">\n" . call_user_func_array( 'wfMsgNoTrans', reset( $errors ) ) . "\n</div>";
1847 return $text;
1851 * Display a page stating that the Wiki is in read-only mode,
1852 * and optionally show the source of the page that the user
1853 * was trying to edit. Should only be called (for this
1854 * purpose) after wfReadOnly() has returned true.
1856 * For historical reasons, this function is _also_ used to
1857 * show the error message when a user tries to edit a page
1858 * they are not allowed to edit. (Unless it's because they're
1859 * blocked, then we show blockedPage() instead.) In this
1860 * case, the second parameter should be set to true and a list
1861 * of reasons supplied as the third parameter.
1863 * @todo Needs to be split into multiple functions.
1865 * @param $source String: source code to show (or null).
1866 * @param $protected Boolean: is this a permissions error?
1867 * @param $reasons Array: list of reasons for this error, as returned by Title::getUserPermissionsErrors().
1868 * @param $action String: action that was denied or null if unknown
1870 public function readOnlyPage( $source = null, $protected = false, $reasons = array(), $action = null ) {
1871 global $wgUser;
1872 $skin = $wgUser->getSkin();
1874 $this->setRobotPolicy( 'noindex,nofollow' );
1875 $this->setArticleRelated( false );
1877 // If no reason is given, just supply a default "I can't let you do
1878 // that, Dave" message. Should only occur if called by legacy code.
1879 if ( $protected && empty($reasons) ) {
1880 $reasons[] = array( 'badaccess-group0' );
1883 if ( !empty($reasons) ) {
1884 // Permissions error
1885 if( $source ) {
1886 $this->setPageTitle( wfMsg( 'viewsource' ) );
1887 $this->setSubtitle(
1888 wfMsg(
1889 'viewsourcefor',
1890 $skin->link(
1891 $this->getTitle(),
1892 null,
1893 array(),
1894 array(),
1895 array( 'known', 'noclasses' )
1899 } else {
1900 $this->setPageTitle( wfMsg( 'badaccess' ) );
1902 $this->addWikiText( $this->formatPermissionsErrorMessage( $reasons, $action ) );
1903 } else {
1904 // Wiki is read only
1905 $this->setPageTitle( wfMsg( 'readonly' ) );
1906 $reason = wfReadOnlyReason();
1907 $this->wrapWikiMsg( '<div class="mw-readonly-error">\n$1</div>', array( 'readonlytext', $reason ) );
1910 // Show source, if supplied
1911 if( is_string( $source ) ) {
1912 $this->addWikiMsg( 'viewsourcetext' );
1914 $params = array(
1915 'id' => 'wpTextbox1',
1916 'name' => 'wpTextbox1',
1917 'cols' => $wgUser->getOption( 'cols' ),
1918 'rows' => $wgUser->getOption( 'rows' ),
1919 'readonly' => 'readonly'
1921 $this->addHTML( Html::element( 'textarea', $params, $source ) );
1923 // Show templates used by this article
1924 $skin = $wgUser->getSkin();
1925 $article = new Article( $this->getTitle() );
1926 $this->addHTML( "<div class='templatesUsed'>
1927 {$skin->formatTemplates( $article->getUsedTemplates() )}
1928 </div>
1929 " );
1932 # If the title doesn't exist, it's fairly pointless to print a return
1933 # link to it. After all, you just tried editing it and couldn't, so
1934 # what's there to do there?
1935 if( $this->getTitle()->exists() ) {
1936 $this->returnToMain( null, $this->getTitle() );
1940 /** @deprecated */
1941 public function errorpage( $title, $msg ) {
1942 wfDeprecated( __METHOD__ );
1943 throw new ErrorPageError( $title, $msg );
1946 /** @deprecated */
1947 public function databaseError( $fname, $sql, $error, $errno ) {
1948 throw new MWException( "OutputPage::databaseError is obsolete\n" );
1951 /** @deprecated */
1952 public function fatalError( $message ) {
1953 wfDeprecated( __METHOD__ );
1954 throw new FatalError( $message );
1957 /** @deprecated */
1958 public function unexpectedValueError( $name, $val ) {
1959 wfDeprecated( __METHOD__ );
1960 throw new FatalError( wfMsg( 'unexpected', $name, $val ) );
1963 /** @deprecated */
1964 public function fileCopyError( $old, $new ) {
1965 wfDeprecated( __METHOD__ );
1966 throw new FatalError( wfMsg( 'filecopyerror', $old, $new ) );
1969 /** @deprecated */
1970 public function fileRenameError( $old, $new ) {
1971 wfDeprecated( __METHOD__ );
1972 throw new FatalError( wfMsg( 'filerenameerror', $old, $new ) );
1975 /** @deprecated */
1976 public function fileDeleteError( $name ) {
1977 wfDeprecated( __METHOD__ );
1978 throw new FatalError( wfMsg( 'filedeleteerror', $name ) );
1981 /** @deprecated */
1982 public function fileNotFoundError( $name ) {
1983 wfDeprecated( __METHOD__ );
1984 throw new FatalError( wfMsg( 'filenotfound', $name ) );
1987 public function showFatalError( $message ) {
1988 $this->setPageTitle( wfMsg( "internalerror" ) );
1989 $this->setRobotPolicy( "noindex,nofollow" );
1990 $this->setArticleRelated( false );
1991 $this->enableClientCache( false );
1992 $this->mRedirect = '';
1993 $this->mBodytext = $message;
1996 public function showUnexpectedValueError( $name, $val ) {
1997 $this->showFatalError( wfMsg( 'unexpected', $name, $val ) );
2000 public function showFileCopyError( $old, $new ) {
2001 $this->showFatalError( wfMsg( 'filecopyerror', $old, $new ) );
2004 public function showFileRenameError( $old, $new ) {
2005 $this->showFatalError( wfMsg( 'filerenameerror', $old, $new ) );
2008 public function showFileDeleteError( $name ) {
2009 $this->showFatalError( wfMsg( 'filedeleteerror', $name ) );
2012 public function showFileNotFoundError( $name ) {
2013 $this->showFatalError( wfMsg( 'filenotfound', $name ) );
2017 * Add a "return to" link pointing to a specified title
2019 * @param $title Title to link
2020 * @param $query String: query string
2022 public function addReturnTo( $title, $query = array() ) {
2023 global $wgUser;
2024 $this->addLink( array( 'rel' => 'next', 'href' => $title->getFullUrl() ) );
2025 $link = wfMsgHtml( 'returnto', $wgUser->getSkin()->link(
2026 $title, null, array(), $query ) );
2027 $this->addHTML( "<p id=\"mw-returnto\">{$link}</p>\n" );
2031 * Add a "return to" link pointing to a specified title,
2032 * or the title indicated in the request, or else the main page
2034 * @param $unused No longer used
2035 * @param $returnto Title or String to return to
2036 * @param $returntoquery String: query string for the return to link
2038 public function returnToMain( $unused = null, $returnto = null, $returntoquery = null ) {
2039 global $wgRequest;
2041 if ( $returnto == null ) {
2042 $returnto = $wgRequest->getText( 'returnto' );
2045 if ( $returntoquery == null ) {
2046 $returntoquery = $wgRequest->getText( 'returntoquery' );
2049 if ( $returnto === '' ) {
2050 $returnto = Title::newMainPage();
2053 if ( is_object( $returnto ) ) {
2054 $titleObj = $returnto;
2055 } else {
2056 $titleObj = Title::newFromText( $returnto );
2058 if ( !is_object( $titleObj ) ) {
2059 $titleObj = Title::newMainPage();
2062 $this->addReturnTo( $titleObj, $returntoquery );
2066 * @param $sk Skin The given Skin
2067 * @param $includeStyle Unused (?)
2068 * @return String: The doctype, opening <html>, and head element.
2070 public function headElement( Skin $sk, $includeStyle = true ) {
2071 global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
2072 global $wgXhtmlDefaultNamespace, $wgXhtmlNamespaces, $wgHtml5Version;
2073 global $wgContLang, $wgUseTrackbacks, $wgStyleVersion, $wgHtml5, $wgWellFormedXml;
2074 global $wgUser, $wgRequest, $wgLang;
2076 $this->addMeta( "http:Content-Type", "$wgMimeType; charset={$wgOutputEncoding}" );
2077 if ( $sk->commonPrintStylesheet() ) {
2078 $this->addStyle( 'common/wikiprintable.css', 'print' );
2080 $sk->setupUserCss( $this );
2082 $ret = '';
2084 if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) {
2085 $ret .= "<?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?" . ">\n";
2088 if ( $this->getHTMLTitle() == '' ) {
2089 $this->setHTMLTitle( wfMsg( 'pagetitle', $this->getPageTitle() ));
2092 $dir = $wgContLang->getDir();
2094 if ( $wgHtml5 ) {
2095 if ( $wgWellFormedXml ) {
2096 # Unknown elements and attributes are okay in XML, but unknown
2097 # named entities are well-formedness errors and will break XML
2098 # parsers. Thus we need a doctype that gives us appropriate
2099 # entity definitions. The HTML5 spec permits four legacy
2100 # doctypes as obsolete but conforming, so let's pick one of
2101 # those, although it makes our pages look like XHTML1 Strict.
2102 # Isn't compatibility great?
2103 $ret .= "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
2104 } else {
2105 # Much saner.
2106 $ret .= "<!doctype html>\n";
2108 $ret .= "<html lang=\"$wgContLanguageCode\" dir=\"$dir\" ";
2109 if ( $wgHtml5Version ) $ret .= " version=\"$wgHtml5Version\" ";
2110 $ret .= ">\n";
2111 } else {
2112 $ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\" \"$wgDTD\">\n";
2113 $ret .= "<html xmlns=\"{$wgXhtmlDefaultNamespace}\" ";
2114 foreach($wgXhtmlNamespaces as $tag => $ns) {
2115 $ret .= "xmlns:{$tag}=\"{$ns}\" ";
2117 $ret .= "xml:lang=\"$wgContLanguageCode\" lang=\"$wgContLanguageCode\" dir=\"$dir\">\n";
2120 $ret .= "<head>\n";
2121 $ret .= "<title>" . htmlspecialchars( $this->getHTMLTitle() ) . "</title>\n";
2122 $ret .= implode( "\n", array(
2123 $this->getHeadLinks(),
2124 $this->buildCssLinks(),
2125 $this->getHeadScripts( $sk ),
2126 $this->getHeadItems(),
2128 if( $sk->usercss ){
2129 $ret .= Html::inlineStyle( $sk->usercss );
2132 if ($wgUseTrackbacks && $this->isArticleRelated())
2133 $ret .= $this->getTitle()->trackbackRDF();
2135 $ret .= "</head>\n";
2137 $bodyAttrs = array();
2139 # Crazy edit-on-double-click stuff
2140 $action = $wgRequest->getVal( 'action', 'view' );
2142 if ( $this->getTitle()->getNamespace() != NS_SPECIAL
2143 && !in_array( $action, array( 'edit', 'submit' ) )
2144 && $wgUser->getOption( 'editondblclick' ) ) {
2145 $bodyAttrs['ondblclick'] = "document.location = '" . Xml::escapeJsString( $this->getTitle()->getEditURL() ) . "'";
2148 # Class bloat
2149 $bodyAttrs['class'] = "mediawiki $dir";
2151 if ( $wgLang->capitalizeAllNouns() ) {
2152 # A <body> class is probably not the best way to do this . . .
2153 $bodyAttrs['class'] .= ' capitalize-all-nouns';
2155 $bodyAttrs['class'] .= ' ns-' . $this->getTitle()->getNamespace();
2156 if ( $this->getTitle()->getNamespace() == NS_SPECIAL ) {
2157 $bodyAttrs['class'] .= ' ns-special';
2158 } elseif ( $this->getTitle()->isTalkPage() ) {
2159 $bodyAttrs['class'] .= ' ns-talk';
2160 } else {
2161 $bodyAttrs['class'] .= ' ns-subject';
2163 $bodyAttrs['class'] .= ' ' . Sanitizer::escapeClass( 'page-' . $this->getTitle()->getPrefixedText() );
2164 $bodyAttrs['class'] .= ' skin-' . Sanitizer::escapeClass( $wgUser->getSkin()->getSkinName() );
2166 $ret .= Html::openElement( 'body', $bodyAttrs ) . "\n";
2168 return $ret;
2172 * Gets the global variables and mScripts; also adds userjs to the end if
2173 * enabled
2175 * @param $sk Skin object to use
2176 * @return String: HTML fragment
2178 function getHeadScripts( Skin $sk ) {
2179 global $wgUser, $wgRequest, $wgJsMimeType, $wgUseSiteJs;
2180 global $wgStylePath, $wgStyleVersion;
2182 $scripts = Skin::makeGlobalVariablesScript( $sk->getSkinName() );
2183 $scripts .= Html::linkedScript( "{$wgStylePath}/common/wikibits.js?$wgStyleVersion" );
2185 //add site JS if enabled:
2186 if( $wgUseSiteJs ) {
2187 $jsCache = $wgUser->isLoggedIn() ? '&smaxage=0' : '';
2188 $this->addScriptFile( Skin::makeUrl( '-',
2189 "action=raw$jsCache&gen=js&useskin=" .
2190 urlencode( $sk->getSkinName() )
2195 //add user js if enabled:
2196 if( $this->isUserJsAllowed() && $wgUser->isLoggedIn() ) {
2197 $action = $wgRequest->getVal( 'action', 'view' );
2198 if( $this->mTitle && $this->mTitle->isJsSubpage() and $sk->userCanPreview( $action ) ) {
2199 # XXX: additional security check/prompt?
2200 $this->addInlineScript( $wgRequest->getText( 'wpTextbox1' ) );
2201 } else {
2202 $userpage = $wgUser->getUserPage();
2203 $scriptpage = Title::makeTitleSafe(
2204 NS_USER,
2205 $userpage->getDBkey() . '/' . $sk->getSkinName() . '.js'
2207 if ( $scriptpage && $scriptpage->exists() ) {
2208 $userjs = Skin::makeUrl( $scriptpage->getPrefixedText(), 'action=raw&ctype=' . $wgJsMimeType );
2209 $this->addScriptFile( $userjs );
2214 $scripts .= "\n" . $this->mScripts;
2215 return $scripts;
2219 * Add default \<meta\> tags
2221 protected function addDefaultMeta() {
2222 global $wgVersion, $wgHtml5;
2224 static $called = false;
2225 if ( $called ) {
2226 # Don't run this twice
2227 return;
2229 $called = true;
2231 if ( !$wgHtml5 ) {
2232 $this->addMeta( 'http:Content-Style-Type', 'text/css' ); //bug 15835
2234 $this->addMeta( 'generator', "MediaWiki $wgVersion" );
2236 $p = "{$this->mIndexPolicy},{$this->mFollowPolicy}";
2237 if( $p !== 'index,follow' ) {
2238 // http://www.robotstxt.org/wc/meta-user.html
2239 // Only show if it's different from the default robots policy
2240 $this->addMeta( 'robots', $p );
2243 if ( count( $this->mKeywords ) > 0 ) {
2244 $strip = array(
2245 "/<.*?" . ">/" => '',
2246 "/_/" => ' '
2248 $this->addMeta( 'keywords', preg_replace(array_keys($strip), array_values($strip),implode( ",", $this->mKeywords ) ) );
2253 * @return string HTML tag links to be put in the header.
2255 public function getHeadLinks() {
2256 global $wgRequest, $wgFeed;
2258 // Ideally this should happen earlier, somewhere. :P
2259 $this->addDefaultMeta();
2261 $tags = array();
2263 foreach ( $this->mMetatags as $tag ) {
2264 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
2265 $a = 'http-equiv';
2266 $tag[0] = substr( $tag[0], 5 );
2267 } else {
2268 $a = 'name';
2270 $tags[] = Html::element( 'meta',
2271 array(
2272 $a => $tag[0],
2273 'content' => $tag[1] ) );
2275 foreach ( $this->mLinktags as $tag ) {
2276 $tags[] = Html::element( 'link', $tag );
2279 if( $wgFeed ) {
2280 foreach( $this->getSyndicationLinks() as $format => $link ) {
2281 # Use the page name for the title (accessed through $wgTitle since
2282 # there's no other way). In principle, this could lead to issues
2283 # with having the same name for different feeds corresponding to
2284 # the same page, but we can't avoid that at this low a level.
2286 $tags[] = $this->feedLink(
2287 $format,
2288 $link,
2289 # Used messages: 'page-rss-feed' and 'page-atom-feed' (for an easier grep)
2290 wfMsg( "page-{$format}-feed", $this->getTitle()->getPrefixedText() ) );
2293 # Recent changes feed should appear on every page (except recentchanges,
2294 # that would be redundant). Put it after the per-page feed to avoid
2295 # changing existing behavior. It's still available, probably via a
2296 # menu in your browser. Some sites might have a different feed they'd
2297 # like to promote instead of the RC feed (maybe like a "Recent New Articles"
2298 # or "Breaking news" one). For this, we see if $wgOverrideSiteFeed is defined.
2299 # If so, use it instead.
2301 global $wgOverrideSiteFeed, $wgSitename, $wgAdvertisedFeedTypes;
2302 $rctitle = SpecialPage::getTitleFor( 'Recentchanges' );
2304 if ( $wgOverrideSiteFeed ) {
2305 foreach ( $wgOverrideSiteFeed as $type => $feedUrl ) {
2306 $tags[] = $this->feedLink (
2307 $type,
2308 htmlspecialchars( $feedUrl ),
2309 wfMsg( "site-{$type}-feed", $wgSitename ) );
2311 } elseif ( $this->getTitle()->getPrefixedText() != $rctitle->getPrefixedText() ) {
2312 foreach ( $wgAdvertisedFeedTypes as $format ) {
2313 $tags[] = $this->feedLink(
2314 $format,
2315 $rctitle->getLocalURL( "feed={$format}" ),
2316 wfMsg( "site-{$format}-feed", $wgSitename ) ); # For grep: 'site-rss-feed', 'site-atom-feed'.
2321 return implode( "\n", $tags );
2325 * Generate a <link rel/> for a feed.
2327 * @param $type String: feed type
2328 * @param $url String: URL to the feed
2329 * @param $text String: value of the "title" attribute
2330 * @return String: HTML fragment
2332 private function feedLink( $type, $url, $text ) {
2333 return Html::element( 'link', array(
2334 'rel' => 'alternate',
2335 'type' => "application/$type+xml",
2336 'title' => $text,
2337 'href' => $url ) );
2341 * Add a local or specified stylesheet, with the given media options.
2342 * Meant primarily for internal use...
2344 * @param $style String: URL to the file
2345 * @param $media String: to specify a media type, 'screen', 'printable', 'handheld' or any.
2346 * @param $condition String: for IE conditional comments, specifying an IE version
2347 * @param $dir String: set to 'rtl' or 'ltr' for direction-specific sheets
2349 public function addStyle( $style, $media='', $condition='', $dir='' ) {
2350 $options = array();
2351 // Even though we expect the media type to be lowercase, but here we
2352 // force it to lowercase to be safe.
2353 if( $media )
2354 $options['media'] = $media;
2355 if( $condition )
2356 $options['condition'] = $condition;
2357 if( $dir )
2358 $options['dir'] = $dir;
2359 $this->styles[$style] = $options;
2363 * Adds inline CSS styles
2364 * @param $style_css Mixed: inline CSS
2366 public function addInlineStyle( $style_css ){
2367 $this->mScripts .= Html::inlineStyle( $style_css );
2371 * Build a set of <link>s for the stylesheets specified in the $this->styles array.
2372 * These will be applied to various media & IE conditionals.
2374 public function buildCssLinks() {
2375 $links = array();
2376 foreach( $this->styles as $file => $options ) {
2377 $link = $this->styleLink( $file, $options );
2378 if( $link )
2379 $links[] = $link;
2382 return implode( "\n", $links );
2386 * Generate \<link\> tags for stylesheets
2388 * @param $style String: URL to the file
2389 * @param $options Array: option, can contain 'condition', 'dir', 'media'
2390 * keys
2391 * @return String: HTML fragment
2393 protected function styleLink( $style, $options ) {
2394 global $wgRequest;
2396 if( isset( $options['dir'] ) ) {
2397 global $wgContLang;
2398 $siteDir = $wgContLang->getDir();
2399 if( $siteDir != $options['dir'] )
2400 return '';
2403 if( isset( $options['media'] ) ) {
2404 $media = $this->transformCssMedia( $options['media'] );
2405 if( is_null( $media ) ) {
2406 return '';
2408 } else {
2409 $media = 'all';
2412 if( substr( $style, 0, 1 ) == '/' ||
2413 substr( $style, 0, 5 ) == 'http:' ||
2414 substr( $style, 0, 6 ) == 'https:' ) {
2415 $url = $style;
2416 } else {
2417 global $wgStylePath, $wgStyleVersion;
2418 $url = $wgStylePath . '/' . $style . '?' . $wgStyleVersion;
2421 $link = Html::linkedStyle( $url, $media );
2423 if( isset( $options['condition'] ) ) {
2424 $condition = htmlspecialchars( $options['condition'] );
2425 $link = "<!--[if $condition]>$link<![endif]-->";
2427 return $link;
2431 * Transform "media" attribute based on request parameters
2433 * @param $media String: current value of the "media" attribute
2434 * @return String: modified value of the "media" attribute
2436 function transformCssMedia( $media ) {
2437 global $wgRequest, $wgHandheldForIPhone;
2439 // Switch in on-screen display for media testing
2440 $switches = array(
2441 'printable' => 'print',
2442 'handheld' => 'handheld',
2444 foreach( $switches as $switch => $targetMedia ) {
2445 if( $wgRequest->getBool( $switch ) ) {
2446 if( $media == $targetMedia ) {
2447 $media = '';
2448 } elseif( $media == 'screen' ) {
2449 return null;
2454 // Expand longer media queries as iPhone doesn't grok 'handheld'
2455 if( $wgHandheldForIPhone ) {
2456 $mediaAliases = array(
2457 'screen' => 'screen and (min-device-width: 481px)',
2458 'handheld' => 'handheld, only screen and (max-device-width: 480px)',
2461 if( isset( $mediaAliases[$media] ) ) {
2462 $media = $mediaAliases[$media];
2466 return $media;
2470 * Turn off regular page output and return an error reponse
2471 * for when rate limiting has triggered.
2473 public function rateLimited() {
2474 $this->setPageTitle(wfMsg('actionthrottled'));
2475 $this->setRobotPolicy( 'noindex,follow' );
2476 $this->setArticleRelated( false );
2477 $this->enableClientCache( false );
2478 $this->mRedirect = '';
2479 $this->clearHTML();
2480 $this->setStatusCode(503);
2481 $this->addWikiMsg( 'actionthrottledtext' );
2483 $this->returnToMain( null, $this->getTitle() );
2487 * Show a warning about slave lag
2489 * If the lag is higher than $wgSlaveLagCritical seconds,
2490 * then the warning is a bit more obvious. If the lag is
2491 * lower than $wgSlaveLagWarning, then no warning is shown.
2493 * @param $lag Integer: slave lag
2495 public function showLagWarning( $lag ) {
2496 global $wgSlaveLagWarning, $wgSlaveLagCritical, $wgLang;
2497 if( $lag >= $wgSlaveLagWarning ) {
2498 $message = $lag < $wgSlaveLagCritical
2499 ? 'lag-warn-normal'
2500 : 'lag-warn-high';
2501 $wrap = Html::rawElement( 'div', array( 'class' => "mw-{$message}" ), "\n$1\n" );
2502 $this->wrapWikiMsg( "$wrap\n", array( $message, $wgLang->formatNum( $lag ) ) );
2507 * Add a wikitext-formatted message to the output.
2508 * This is equivalent to:
2510 * $wgOut->addWikiText( wfMsgNoTrans( ... ) )
2512 public function addWikiMsg( /*...*/ ) {
2513 $args = func_get_args();
2514 $name = array_shift( $args );
2515 $this->addWikiMsgArray( $name, $args );
2519 * Add a wikitext-formatted message to the output.
2520 * Like addWikiMsg() except the parameters are taken as an array
2521 * instead of a variable argument list.
2523 * $options is passed through to wfMsgExt(), see that function for details.
2525 public function addWikiMsgArray( $name, $args, $options = array() ) {
2526 $options[] = 'parse';
2527 $text = wfMsgExt( $name, $options, $args );
2528 $this->addHTML( $text );
2532 * This function takes a number of message/argument specifications, wraps them in
2533 * some overall structure, and then parses the result and adds it to the output.
2535 * In the $wrap, $1 is replaced with the first message, $2 with the second, and so
2536 * on. The subsequent arguments may either be strings, in which case they are the
2537 * message names, or arrays, in which case the first element is the message name,
2538 * and subsequent elements are the parameters to that message.
2540 * The special named parameter 'options' in a message specification array is passed
2541 * through to the $options parameter of wfMsgExt().
2543 * Don't use this for messages that are not in users interface language.
2545 * For example:
2547 * $wgOut->wrapWikiMsg( "<div class='error'>\n$1</div>", 'some-error' );
2549 * Is equivalent to:
2551 * $wgOut->addWikiText( "<div class='error'>\n" . wfMsgNoTrans( 'some-error' ) . "</div>" );
2553 * The newline after opening div is needed in some wikitext. See bug 19226.
2555 public function wrapWikiMsg( $wrap /*, ...*/ ) {
2556 $msgSpecs = func_get_args();
2557 array_shift( $msgSpecs );
2558 $msgSpecs = array_values( $msgSpecs );
2559 $s = $wrap;
2560 foreach ( $msgSpecs as $n => $spec ) {
2561 $options = array();
2562 if ( is_array( $spec ) ) {
2563 $args = $spec;
2564 $name = array_shift( $args );
2565 if ( isset( $args['options'] ) ) {
2566 $options = $args['options'];
2567 unset( $args['options'] );
2569 } else {
2570 $args = array();
2571 $name = $spec;
2573 $s = str_replace( '$' . ( $n + 1 ), wfMsgExt( $name, $options, $args ), $s );
2575 $this->addHTML( $this->parse( $s, /*linestart*/true, /*uilang*/true ) );
2579 * Include jQuery core. Use this to avoid loading it multiple times
2580 * before we get a usable script loader.
2582 * @param $modules Array: list of jQuery modules which should be loaded
2583 * @return Array: the list of modules which were not loaded.
2585 public function includeJQuery( $modules = array() ) {
2586 global $wgStylePath, $wgStyleVersion, $wgJsMimeType;
2588 $supportedModules = array( /** TODO: add things here */ );
2589 $unsupported = array_diff( $modules, $supportedModules );
2591 $params = array(
2592 'type' => $wgJsMimeType,
2593 'src' => "$wgStylePath/common/jquery.min.js?$wgStyleVersion",
2595 if ( !$this->mJQueryDone ) {
2596 $this->mJQueryDone = true;
2597 $this->mScripts = Html::element( 'script', $params ) . "\n" . $this->mScripts;
2599 return $unsupported;