2007-01-20 12:50:56 +00:00
|
|
|
<?php
|
2010-08-22 14:31:05 +00:00
|
|
|
/**
|
2012-04-30 09:22:16 +00:00
|
|
|
* Options for the PHP parser
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
2010-08-22 14:31:05 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Parser
|
|
|
|
|
*/
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2007-01-20 12:50:56 +00:00
|
|
|
/**
|
2014-07-24 17:43:25 +00:00
|
|
|
* @brief Set options of the Parser
|
2012-01-27 22:07:09 +00:00
|
|
|
*
|
2014-05-10 23:03:45 +00:00
|
|
|
* All member variables are supposed to be private in theory, although in
|
2015-03-16 18:26:52 +00:00
|
|
|
* practice this is not the case.
|
2012-01-27 22:07:09 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Parser
|
2007-01-20 12:50:56 +00:00
|
|
|
*/
|
2010-01-23 15:24:44 +00:00
|
|
|
class ParserOptions {
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Interlanguage links are removed and returned in an array
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mInterwikiMagic;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Allow external images inline?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mAllowExternalImages;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* If not, any exception?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mAllowExternalImagesFrom;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* If not or it doesn't match, should we check an on-wiki whitelist?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mEnableImageWhitelist;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Date format index
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mDateFormat = null;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Create "edit section" links?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mEditSection = true;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Allow inclusion of special pages?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mAllowSpecialInclusion;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Use tidy to cleanup output HTML?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mTidy = false;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2012-01-27 22:07:09 +00:00
|
|
|
/**
|
2014-05-16 00:48:01 +00:00
|
|
|
* Which lang to call for PLURAL and GRAMMAR
|
2012-01-27 22:07:09 +00:00
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mInterfaceMessage = false;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Overrides $mInterfaceMessage with arbitrary language
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mTargetLanguage = null;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum size of template expansions, in bytes
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mMaxIncludeSize;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum number of nodes touched by PPFrame::expand()
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mMaxPPNodeCount;
|
2012-09-15 21:51:58 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum number of nodes generated by Preprocessor::preprocessToObj()
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mMaxGeneratedPPNodeCount;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum recursion depth in PPFrame::expand()
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mMaxPPExpandDepth;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum recursion depth for templates within templates
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mMaxTemplateDepth;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum number of calls per parse to expensive parser functions
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mExpensiveParserFunctionLimit;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Remove HTML comments. ONLY APPLIES TO PREPROCESS OPERATIONS
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mRemoveComments = true;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-09-16 00:07:52 +00:00
|
|
|
/**
|
|
|
|
|
* Callback for current revision fetching. Used as first argument to call_user_func().
|
|
|
|
|
*/
|
|
|
|
|
public $mCurrentRevisionCallback =
|
|
|
|
|
array( 'Parser', 'statelessFetchRevision' );
|
|
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Callback for template fetching. Used as first argument to call_user_func().
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mTemplateCallback =
|
2014-05-16 00:48:01 +00:00
|
|
|
array( 'Parser', 'statelessFetchTemplate' );
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Enable limit report in an HTML comment on output
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mEnableLimitReport = false;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Timestamp used for {{CURRENTDAY}} etc.
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mTimestamp;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Target attribute for external links
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mExternalLinkTarget;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2012-01-27 22:07:09 +00:00
|
|
|
/**
|
2014-05-16 00:48:01 +00:00
|
|
|
* Clean up signature texts?
|
2015-04-01 00:37:28 +00:00
|
|
|
* @see Parser::cleanSig
|
2012-01-27 22:07:09 +00:00
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mCleanSignatures;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Transform wiki markup when saving the page?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mPreSaveTransform = true;
|
2010-12-18 17:56:38 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Whether content conversion should be disabled
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mDisableContentConversion;
|
2012-06-10 15:35:15 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Whether title conversion should be disabled
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mDisableTitleConversion;
|
2012-06-10 15:35:15 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Automatically number headings?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mNumberHeadings;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Thumb size preferred by the user.
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mThumbSize;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum article size of an article to be marked as "stub"
|
|
|
|
|
*/
|
|
|
|
|
private $mStubThreshold;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Language object of the User language.
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mUserLang;
|
Revert r38196, r38204 -- "(bugs 6089, 13079) Show edit section links for transcluded template if, and only if the user can edit it, made Title::getUserPermissionsErrorsInternal() public so that it can be used in Parser and it can pass the User object from ParserOptions. " & co
Cause regression in 19 parser test cases, looks like messing up the tooltips for section edit links.
19 previously failing test(s) now PASSING! :)
* Bug 6563: Edit link generation for section shown by <includeonly> [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Bug 6563: Edit link generation for section suppressed by <includeonly> [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Basic section headings [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Section headings with TOC [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Handling of sections up to level 6 and beyond [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* TOC regression (bug 9764) [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* TOC with wgMaxTocLevel=3 (bug 6204) [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Resolving duplicate section names [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Resolving duplicate section names with differing case (bug 10721) [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Template with sections, __NOTOC__ [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Link inside a section heading [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* TOC regression (bug 12077) [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Fuzz testing: Parser14 [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Fuzz testing: Parser14-table [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Inclusion of !userCanEdit() content [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Out-of-order TOC heading levels [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* -{}- tags within headlines (within html for parserConvert()) [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* Morwen/13: Unclosed link followed by heading [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
* HHP2.2: Heuristics for headings in preprocessor parenthetical structures [Fixed between 29-Jul-2008 22:42:06, 1.14alpha (r38207) and 29-Jul-2008 23:54:51, 1.14alpha (r38207)]
2008-07-29 23:56:30 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* @var User
|
|
|
|
|
* Stored user object
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mUser;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Parsing the page for a "preview" operation?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mIsPreview = false;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Parsing the page for a "preview" operation on a single section?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mIsSectionPreview = false;
|
2012-10-10 18:13:40 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Parsing the printable version of the page?
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mIsPrintable = false;
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2014-05-16 00:48:01 +00:00
|
|
|
/**
|
|
|
|
|
* Extra key that should be present in the caching key.
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public $mExtraKey = '';
|
2014-05-16 00:48:01 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Function to be called when an option is accessed.
|
|
|
|
|
*/
|
|
|
|
|
protected $onAccessCallback = null;
|
2014-05-10 22:52:21 +00:00
|
|
|
|
2014-05-02 20:16:51 +00:00
|
|
|
/**
|
|
|
|
|
* If the page being parsed is a redirect, this should hold the redirect
|
|
|
|
|
* target.
|
|
|
|
|
* @var Title|null
|
|
|
|
|
*/
|
|
|
|
|
private $redirectTarget = null;
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getInterwikiMagic() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mInterwikiMagic;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getAllowExternalImages() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mAllowExternalImages;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getAllowExternalImagesFrom() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mAllowExternalImagesFrom;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getEnableImageWhitelist() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mEnableImageWhitelist;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getEditSection() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mEditSection;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getNumberHeadings() {
|
2014-05-10 23:03:45 +00:00
|
|
|
$this->optionUsed( 'numberheadings' );
|
|
|
|
|
|
|
|
|
|
return $this->mNumberHeadings;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getAllowSpecialInclusion() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mAllowSpecialInclusion;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getTidy() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mTidy;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getInterfaceMessage() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mInterfaceMessage;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getTargetLanguage() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mTargetLanguage;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getMaxIncludeSize() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mMaxIncludeSize;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getMaxPPNodeCount() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mMaxPPNodeCount;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getMaxGeneratedPPNodeCount() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mMaxGeneratedPPNodeCount;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getMaxPPExpandDepth() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mMaxPPExpandDepth;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getMaxTemplateDepth() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mMaxTemplateDepth;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-04 18:56:28 +00:00
|
|
|
/* @since 1.20 */
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getExpensiveParserFunctionLimit() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mExpensiveParserFunctionLimit;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getRemoveComments() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mRemoveComments;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 00:07:52 +00:00
|
|
|
/* @since 1.24 */
|
|
|
|
|
public function getCurrentRevisionCallback() {
|
|
|
|
|
return $this->mCurrentRevisionCallback;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getTemplateCallback() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mTemplateCallback;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getEnableLimitReport() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mEnableLimitReport;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getCleanSignatures() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mCleanSignatures;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getExternalLinkTarget() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mExternalLinkTarget;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getDisableContentConversion() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mDisableContentConversion;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getDisableTitleConversion() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mDisableTitleConversion;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getThumbSize() {
|
2014-05-10 23:03:45 +00:00
|
|
|
$this->optionUsed( 'thumbsize' );
|
|
|
|
|
|
|
|
|
|
return $this->mThumbSize;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getStubThreshold() {
|
2014-05-10 23:03:45 +00:00
|
|
|
$this->optionUsed( 'stubthreshold' );
|
|
|
|
|
|
|
|
|
|
return $this->mStubThreshold;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getIsPreview() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mIsPreview;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getIsSectionPreview() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mIsSectionPreview;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getIsPrintable() {
|
2014-05-10 23:03:45 +00:00
|
|
|
$this->optionUsed( 'printable' );
|
|
|
|
|
|
|
|
|
|
return $this->mIsPrintable;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getUser() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mUser;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getPreSaveTransform() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return $this->mPreSaveTransform;
|
|
|
|
|
}
|
2009-07-07 16:13:58 +00:00
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getDateFormat() {
|
2011-07-10 06:45:40 +00:00
|
|
|
$this->optionUsed( 'dateformat' );
|
2007-01-20 12:50:56 +00:00
|
|
|
if ( !isset( $this->mDateFormat ) ) {
|
|
|
|
|
$this->mDateFormat = $this->mUser->getDatePreference();
|
|
|
|
|
}
|
|
|
|
|
return $this->mDateFormat;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getTimestamp() {
|
2008-01-24 04:29:56 +00:00
|
|
|
if ( !isset( $this->mTimestamp ) ) {
|
|
|
|
|
$this->mTimestamp = wfTimestampNow();
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
return $this->mTimestamp;
|
2008-01-24 04:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
2010-09-29 17:25:17 +00:00
|
|
|
/**
|
2013-08-01 20:37:41 +00:00
|
|
|
* Get the user language used by the parser for this page.
|
|
|
|
|
*
|
2010-09-29 17:25:17 +00:00
|
|
|
* You shouldn't use this. Really. $parser->getFunctionLang() is all you need.
|
2013-08-01 20:37:41 +00:00
|
|
|
*
|
|
|
|
|
* To avoid side-effects where the page will be rendered based on the language
|
|
|
|
|
* of the user who last saved, this function will triger a cache fragmentation.
|
|
|
|
|
* Usage of this method is discouraged for that reason.
|
|
|
|
|
*
|
|
|
|
|
* When saving, this will return the default language instead of the user's.
|
|
|
|
|
*
|
|
|
|
|
* {{int: }} uses this which used to produce inconsistent link tables (bug 14404).
|
2011-10-19 14:16:01 +00:00
|
|
|
*
|
2014-04-21 23:38:39 +00:00
|
|
|
* @return Language
|
2011-10-19 14:16:01 +00:00
|
|
|
* @since 1.19
|
|
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getUserLangObj() {
|
2011-10-19 14:16:01 +00:00
|
|
|
$this->optionUsed( 'userlang' );
|
|
|
|
|
return $this->mUserLang;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Same as getUserLangObj() but returns a string instead.
|
|
|
|
|
*
|
2014-04-21 23:38:39 +00:00
|
|
|
* @return string Language code
|
2011-06-13 07:47:39 +00:00
|
|
|
* @since 1.17
|
2010-09-29 17:25:17 +00:00
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public function getUserLang() {
|
2011-10-19 14:16:01 +00:00
|
|
|
return $this->getUserLangObj()->getCode();
|
2010-08-05 18:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setInterwikiMagic( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mInterwikiMagic, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setAllowExternalImages( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mAllowExternalImages, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setAllowExternalImagesFrom( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mAllowExternalImagesFrom, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setEnableImageWhitelist( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mEnableImageWhitelist, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setDateFormat( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mDateFormat, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setEditSection( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mEditSection, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setNumberHeadings( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mNumberHeadings, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setAllowSpecialInclusion( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mAllowSpecialInclusion, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setTidy( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mTidy, $x );
|
|
|
|
|
}
|
2012-02-12 19:25:28 +00:00
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setInterfaceMessage( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mInterfaceMessage, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setTargetLanguage( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mTargetLanguage, $x, true );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setMaxIncludeSize( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mMaxIncludeSize, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setMaxPPNodeCount( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mMaxPPNodeCount, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setMaxGeneratedPPNodeCount( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mMaxGeneratedPPNodeCount, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setMaxTemplateDepth( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mMaxTemplateDepth, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-04 18:56:28 +00:00
|
|
|
/* @since 1.20 */
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setExpensiveParserFunctionLimit( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mExpensiveParserFunctionLimit, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setRemoveComments( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mRemoveComments, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 00:07:52 +00:00
|
|
|
/* @since 1.24 */
|
|
|
|
|
public function setCurrentRevisionCallback( $x ) {
|
|
|
|
|
return wfSetVar( $this->mCurrentRevisionCallback, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setTemplateCallback( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mTemplateCallback, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function enableLimitReport( $x = true ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mEnableLimitReport, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setTimestamp( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mTimestamp, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setCleanSignatures( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mCleanSignatures, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setExternalLinkTarget( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mExternalLinkTarget, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function disableContentConversion( $x = true ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mDisableContentConversion, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function disableTitleConversion( $x = true ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mDisableTitleConversion, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setUserLang( $x ) {
|
2011-10-19 14:16:01 +00:00
|
|
|
if ( is_string( $x ) ) {
|
|
|
|
|
$x = Language::factory( $x );
|
2011-06-13 07:47:39 +00:00
|
|
|
}
|
2014-05-10 23:03:45 +00:00
|
|
|
|
2011-06-13 07:47:39 +00:00
|
|
|
return wfSetVar( $this->mUserLang, $x );
|
|
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setThumbSize( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mThumbSize, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setStubThreshold( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mStubThreshold, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setPreSaveTransform( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mPreSaveTransform, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setIsPreview( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mIsPreview, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setIsSectionPreview( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mIsSectionPreview, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 20:24:54 +00:00
|
|
|
public function setIsPrintable( $x ) {
|
2014-05-10 23:03:45 +00:00
|
|
|
return wfSetVar( $this->mIsPrintable, $x );
|
|
|
|
|
}
|
2009-07-07 16:13:58 +00:00
|
|
|
|
2014-05-02 20:16:51 +00:00
|
|
|
/**
|
|
|
|
|
* Set the redirect target.
|
|
|
|
|
*
|
|
|
|
|
* Note that setting or changing this does not *make* the page a redirect
|
|
|
|
|
* or change its target, it merely records the information for reference
|
|
|
|
|
* during the parse.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.24
|
|
|
|
|
* @param Title|null $title
|
|
|
|
|
*/
|
|
|
|
|
function setRedirectTarget( $title ) {
|
|
|
|
|
$this->redirectTarget = $title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the previously-set redirect target.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.24
|
|
|
|
|
* @return Title|null
|
|
|
|
|
*/
|
|
|
|
|
function getRedirectTarget() {
|
|
|
|
|
return $this->redirectTarget;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-10 14:38:14 +00:00
|
|
|
/**
|
|
|
|
|
* Extra key that should be present in the parser cache key.
|
2014-08-14 18:22:52 +00:00
|
|
|
* @param string $key
|
2010-08-10 14:38:14 +00:00
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public function addExtraKey( $key ) {
|
2010-08-10 14:38:14 +00:00
|
|
|
$this->mExtraKey .= '!' . $key;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-27 22:07:09 +00:00
|
|
|
/**
|
|
|
|
|
* Constructor
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param User $user
|
|
|
|
|
* @param Language $lang
|
2012-01-27 22:07:09 +00:00
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public function __construct( $user = null, $lang = null ) {
|
2011-10-19 14:16:01 +00:00
|
|
|
if ( $user === null ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
if ( $wgUser === null ) {
|
|
|
|
|
$user = new User;
|
|
|
|
|
} else {
|
|
|
|
|
$user = $wgUser;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( $lang === null ) {
|
|
|
|
|
global $wgLang;
|
2011-10-25 18:14:30 +00:00
|
|
|
if ( !StubObject::isRealObject( $wgLang ) ) {
|
|
|
|
|
$wgLang->_unstub();
|
|
|
|
|
}
|
2011-10-19 14:16:01 +00:00
|
|
|
$lang = $wgLang;
|
|
|
|
|
}
|
|
|
|
|
$this->initialiseFromUser( $user, $lang );
|
2007-01-20 12:50:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-10-19 14:16:01 +00:00
|
|
|
* Get a ParserOptions object from a given user.
|
|
|
|
|
* Language will be taken from $wgLang.
|
2010-06-09 14:57:59 +00:00
|
|
|
*
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param User $user
|
|
|
|
|
* @return ParserOptions
|
2007-01-20 12:50:56 +00:00
|
|
|
*/
|
2011-10-19 14:16:01 +00:00
|
|
|
public static function newFromUser( $user ) {
|
2007-01-20 12:50:56 +00:00
|
|
|
return new ParserOptions( $user );
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-19 14:16:01 +00:00
|
|
|
/**
|
|
|
|
|
* Get a ParserOptions object from a given user and language
|
|
|
|
|
*
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param User $user
|
|
|
|
|
* @param Language $lang
|
|
|
|
|
* @return ParserOptions
|
2011-10-19 14:16:01 +00:00
|
|
|
*/
|
|
|
|
|
public static function newFromUserAndLang( User $user, Language $lang ) {
|
|
|
|
|
return new ParserOptions( $user, $lang );
|
|
|
|
|
}
|
2010-01-23 15:24:44 +00:00
|
|
|
|
2011-10-19 14:16:01 +00:00
|
|
|
/**
|
|
|
|
|
* Get a ParserOptions object from a IContextSource object
|
|
|
|
|
*
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param IContextSource $context
|
|
|
|
|
* @return ParserOptions
|
2011-10-19 14:16:01 +00:00
|
|
|
*/
|
|
|
|
|
public static function newFromContext( IContextSource $context ) {
|
2011-11-21 16:13:21 +00:00
|
|
|
return new ParserOptions( $context->getUser(), $context->getLanguage() );
|
2011-10-19 14:16:01 +00:00
|
|
|
}
|
2010-01-23 15:24:44 +00:00
|
|
|
|
2012-10-10 18:13:40 +00:00
|
|
|
/**
|
|
|
|
|
* Get user options
|
2012-01-27 22:07:09 +00:00
|
|
|
*
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param User $user
|
|
|
|
|
* @param Language $lang
|
2012-01-27 22:07:09 +00:00
|
|
|
*/
|
2011-10-19 14:16:01 +00:00
|
|
|
private function initialiseFromUser( $user, $lang ) {
|
2013-02-06 16:35:46 +00:00
|
|
|
global $wgInterwikiMagic, $wgAllowExternalImages,
|
2011-10-19 14:16:01 +00:00
|
|
|
$wgAllowExternalImagesFrom, $wgEnableImageWhitelist, $wgAllowSpecialInclusion,
|
|
|
|
|
$wgMaxArticleSize, $wgMaxPPNodeCount, $wgMaxTemplateDepth, $wgMaxPPExpandDepth,
|
2012-09-15 21:51:58 +00:00
|
|
|
$wgCleanSignatures, $wgExternalLinkTarget, $wgExpensiveParserFunctionLimit,
|
2012-06-10 15:35:15 +00:00
|
|
|
$wgMaxGeneratedPPNodeCount, $wgDisableLangConversion, $wgDisableTitleConversion;
|
2007-01-20 12:50:56 +00:00
|
|
|
|
2014-12-04 09:42:20 +00:00
|
|
|
// *UPDATE* ParserOptions::matches() if any of this changes as needed
|
2007-01-20 12:50:56 +00:00
|
|
|
$this->mInterwikiMagic = $wgInterwikiMagic;
|
|
|
|
|
$this->mAllowExternalImages = $wgAllowExternalImages;
|
|
|
|
|
$this->mAllowExternalImagesFrom = $wgAllowExternalImagesFrom;
|
2008-09-01 18:49:14 +00:00
|
|
|
$this->mEnableImageWhitelist = $wgEnableImageWhitelist;
|
2007-01-20 12:50:56 +00:00
|
|
|
$this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
|
|
|
|
|
$this->mMaxIncludeSize = $wgMaxArticleSize * 1024;
|
2007-11-20 10:55:08 +00:00
|
|
|
$this->mMaxPPNodeCount = $wgMaxPPNodeCount;
|
2012-09-15 21:51:58 +00:00
|
|
|
$this->mMaxGeneratedPPNodeCount = $wgMaxGeneratedPPNodeCount;
|
2008-03-25 04:26:58 +00:00
|
|
|
$this->mMaxPPExpandDepth = $wgMaxPPExpandDepth;
|
2008-01-11 03:25:41 +00:00
|
|
|
$this->mMaxTemplateDepth = $wgMaxTemplateDepth;
|
2012-05-04 18:56:28 +00:00
|
|
|
$this->mExpensiveParserFunctionLimit = $wgExpensiveParserFunctionLimit;
|
2008-07-31 09:41:28 +00:00
|
|
|
$this->mCleanSignatures = $wgCleanSignatures;
|
2008-09-30 01:00:40 +00:00
|
|
|
$this->mExternalLinkTarget = $wgExternalLinkTarget;
|
2012-06-10 15:35:15 +00:00
|
|
|
$this->mDisableContentConversion = $wgDisableLangConversion;
|
|
|
|
|
$this->mDisableTitleConversion = $wgDisableLangConversion || $wgDisableTitleConversion;
|
2010-12-18 17:56:38 +00:00
|
|
|
|
2011-10-19 14:16:01 +00:00
|
|
|
$this->mUser = $user;
|
2010-12-18 17:56:38 +00:00
|
|
|
$this->mNumberHeadings = $user->getOption( 'numberheadings' );
|
2010-08-09 20:39:48 +00:00
|
|
|
$this->mThumbSize = $user->getOption( 'thumbsize' );
|
2011-02-20 15:03:25 +00:00
|
|
|
$this->mStubThreshold = $user->getStubThreshold();
|
2011-10-19 14:16:01 +00:00
|
|
|
$this->mUserLang = $lang;
|
2010-01-23 15:24:44 +00:00
|
|
|
|
2007-01-20 12:50:56 +00:00
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
|
2014-12-04 09:42:20 +00:00
|
|
|
/**
|
|
|
|
|
* Check if these options match that of another options set
|
|
|
|
|
*
|
|
|
|
|
* This ignores report limit settings that only affect HTML comments
|
|
|
|
|
*
|
2015-04-01 00:13:47 +00:00
|
|
|
* @param ParserOptions $other
|
2014-12-04 09:42:20 +00:00
|
|
|
* @return bool
|
|
|
|
|
* @since 1.25
|
|
|
|
|
*/
|
|
|
|
|
public function matches( ParserOptions $other ) {
|
|
|
|
|
$fields = array_keys( get_class_vars( __CLASS__ ) );
|
|
|
|
|
$fields = array_diff( $fields, array(
|
|
|
|
|
'mEnableLimitReport', // only effects HTML comments
|
|
|
|
|
'onAccessCallback', // only used for ParserOutput option tracking
|
|
|
|
|
) );
|
|
|
|
|
foreach ( $fields as $field ) {
|
|
|
|
|
if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Check the object and lazy-loaded options
|
|
|
|
|
return (
|
|
|
|
|
$this->mUserLang->getCode() === $other->mUserLang->getCode() &&
|
|
|
|
|
$this->getDateFormat() === $other->getDateFormat()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
/**
|
2010-12-26 19:21:45 +00:00
|
|
|
* Registers a callback for tracking which ParserOptions which are used.
|
|
|
|
|
* This is a private API with the parser.
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param callable $callback
|
2010-08-09 21:53:21 +00:00
|
|
|
*/
|
2014-08-11 20:24:54 +00:00
|
|
|
public function registerWatcher( $callback ) {
|
2010-12-26 19:21:45 +00:00
|
|
|
$this->onAccessCallback = $callback;
|
2010-08-09 21:53:21 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
/**
|
2010-12-26 19:21:45 +00:00
|
|
|
* Called when an option is accessed.
|
2014-04-21 23:38:39 +00:00
|
|
|
* @param string $optionName Name of the option
|
2010-08-09 21:53:21 +00:00
|
|
|
*/
|
2014-01-20 09:00:54 +00:00
|
|
|
public function optionUsed( $optionName ) {
|
2010-12-26 19:21:45 +00:00
|
|
|
if ( $this->onAccessCallback ) {
|
|
|
|
|
call_user_func( $this->onAccessCallback, $optionName );
|
|
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
/**
|
2010-12-11 03:52:35 +00:00
|
|
|
* Returns the full array of options that would have been used by
|
2010-08-09 21:53:21 +00:00
|
|
|
* in 1.16.
|
|
|
|
|
* Used to get the old parser cache entries when available.
|
2012-02-09 21:35:05 +00:00
|
|
|
* @return array
|
2010-08-09 21:53:21 +00:00
|
|
|
*/
|
|
|
|
|
public static function legacyOptions() {
|
2014-05-10 23:03:45 +00:00
|
|
|
return array(
|
|
|
|
|
'stubthreshold',
|
|
|
|
|
'numberheadings',
|
|
|
|
|
'userlang',
|
|
|
|
|
'thumbsize',
|
|
|
|
|
'editsection',
|
|
|
|
|
'printable'
|
|
|
|
|
);
|
2010-08-09 21:53:21 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
/**
|
|
|
|
|
* Generate a hash string with the values set on these ParserOptions
|
|
|
|
|
* for the keys given in the array.
|
|
|
|
|
* This will be used as part of the hash key for the parser cache,
|
2014-04-23 14:20:40 +00:00
|
|
|
* so users sharing the options with vary for the same page share
|
2010-08-09 21:53:21 +00:00
|
|
|
* the same cached data safely.
|
2010-12-11 03:52:35 +00:00
|
|
|
*
|
2010-08-09 21:53:21 +00:00
|
|
|
* Extensions which require it should install 'PageRenderingHash' hook,
|
|
|
|
|
* which will give them a chance to modify this key based on their own
|
|
|
|
|
* settings.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.17
|
2014-04-08 15:29:17 +00:00
|
|
|
* @param array $forOptions
|
|
|
|
|
* @param Title $title Used to get the content language of the page (since r97636)
|
2012-01-27 22:07:09 +00:00
|
|
|
* @return string Page rendering hash
|
2010-08-09 21:53:21 +00:00
|
|
|
*/
|
2011-09-20 15:55:08 +00:00
|
|
|
public function optionsHash( $forOptions, $title = null ) {
|
2011-09-22 20:31:23 +00:00
|
|
|
global $wgRenderHashAppend;
|
2010-08-09 21:53:21 +00:00
|
|
|
|
2014-01-20 09:00:54 +00:00
|
|
|
// FIXME: Once the cache key is reorganized this argument
|
|
|
|
|
// can be dropped. It was used when the math extension was
|
|
|
|
|
// part of core.
|
|
|
|
|
$confstr = '*';
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
// Space assigned for the stubthreshold but unused
|
2010-12-11 03:52:35 +00:00
|
|
|
// since it disables the parser cache, its value will always
|
2010-08-09 21:53:21 +00:00
|
|
|
// be 0 when this function is called by parsercache.
|
2011-07-10 06:45:40 +00:00
|
|
|
if ( in_array( 'stubthreshold', $forOptions ) ) {
|
2011-02-20 15:03:25 +00:00
|
|
|
$confstr .= '!' . $this->mStubThreshold;
|
2011-07-10 06:45:40 +00:00
|
|
|
} else {
|
2013-02-09 21:44:24 +00:00
|
|
|
$confstr .= '!*';
|
2011-07-10 06:45:40 +00:00
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
|
2011-07-10 06:45:40 +00:00
|
|
|
if ( in_array( 'dateformat', $forOptions ) ) {
|
2010-11-01 23:00:53 +00:00
|
|
|
$confstr .= '!' . $this->getDateFormat();
|
2011-07-10 06:45:40 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2011-07-10 06:45:40 +00:00
|
|
|
if ( in_array( 'numberheadings', $forOptions ) ) {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!' . ( $this->mNumberHeadings ? '1' : '' );
|
2011-07-10 06:45:40 +00:00
|
|
|
} else {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!*';
|
2011-07-10 06:45:40 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2011-07-10 06:45:40 +00:00
|
|
|
if ( in_array( 'userlang', $forOptions ) ) {
|
2011-10-19 14:16:01 +00:00
|
|
|
$confstr .= '!' . $this->mUserLang->getCode();
|
2011-07-10 06:45:40 +00:00
|
|
|
} else {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!*';
|
2011-07-10 06:45:40 +00:00
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
|
2011-07-10 06:45:40 +00:00
|
|
|
if ( in_array( 'thumbsize', $forOptions ) ) {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!' . $this->mThumbSize;
|
2011-07-10 06:45:40 +00:00
|
|
|
} else {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!*';
|
2011-07-10 06:45:40 +00:00
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
|
|
|
|
|
// add in language specific options, if any
|
2011-05-17 22:03:20 +00:00
|
|
|
// @todo FIXME: This is just a way of retrieving the url/user preferred variant
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( !is_null( $title ) ) {
|
2011-09-22 20:31:23 +00:00
|
|
|
$confstr .= $title->getPageLanguage()->getExtraHashOptions();
|
|
|
|
|
} else {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
$confstr .= $wgContLang->getExtraHashOptions();
|
|
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
|
|
|
|
|
$confstr .= $wgRenderHashAppend;
|
|
|
|
|
|
2011-01-04 11:31:06 +00:00
|
|
|
if ( !in_array( 'editsection', $forOptions ) ) {
|
|
|
|
|
$confstr .= '!*';
|
|
|
|
|
} elseif ( !$this->mEditSection ) {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!edit=0';
|
2011-01-04 11:31:06 +00:00
|
|
|
}
|
2011-07-10 06:45:40 +00:00
|
|
|
|
|
|
|
|
if ( $this->mIsPrintable && in_array( 'printable', $forOptions ) ) {
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= '!printable=1';
|
2011-07-10 06:45:40 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2013-04-20 15:38:24 +00:00
|
|
|
if ( $this->mExtraKey != '' ) {
|
2010-08-10 14:38:14 +00:00
|
|
|
$confstr .= $this->mExtraKey;
|
2013-04-20 15:38:24 +00:00
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
// Give a chance for extensions to modify the hash, if they have
|
|
|
|
|
// extra options or other effects on the parser cache.
|
2014-12-09 07:23:30 +00:00
|
|
|
Hooks::run( 'PageRenderingHash', array( &$confstr, $this->getUser(), &$forOptions ) );
|
2010-08-09 21:53:21 +00:00
|
|
|
|
|
|
|
|
// Make it a valid memcached key fragment
|
|
|
|
|
$confstr = str_replace( ' ', '_', $confstr );
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
return $confstr;
|
|
|
|
|
}
|
2014-06-03 20:10:02 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets a hook to force that a page exists, and sets a current revision callback to return a
|
|
|
|
|
* revision with custom content when the current revision of the page is requested.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.25
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param Content $content
|
|
|
|
|
* @param User $user The user that the fake revision is attributed to
|
|
|
|
|
* @return ScopedCallback to unset the hook
|
|
|
|
|
*/
|
|
|
|
|
public function setupFakeRevision( $title, $content, $user ) {
|
|
|
|
|
$oldCallback = $this->setCurrentRevisionCallback( function ( $titleToCheck, $parser = false ) use ( $title, $content, $user, &$oldCallback ) {
|
|
|
|
|
if ( $titleToCheck->equals( $title ) ) {
|
|
|
|
|
return new Revision( array(
|
|
|
|
|
'page' => $title->getArticleID(),
|
|
|
|
|
'user_text' => $user->getName(),
|
|
|
|
|
'user' => $user->getId(),
|
|
|
|
|
'parent_id' => $title->getLatestRevId(),
|
|
|
|
|
'title' => $title,
|
|
|
|
|
'content' => $content
|
|
|
|
|
) );
|
|
|
|
|
} else {
|
|
|
|
|
return call_user_func( $oldCallback, $titleToCheck, $parser );
|
|
|
|
|
}
|
|
|
|
|
} );
|
|
|
|
|
global $wgHooks;
|
|
|
|
|
$wgHooks['TitleExists'][] =
|
|
|
|
|
function ( $titleToCheck, &$exists ) use ( $title ) {
|
|
|
|
|
if ( $titleToCheck->equals( $title ) ) {
|
|
|
|
|
$exists = true;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
end( $wgHooks['TitleExists'] );
|
|
|
|
|
$key = key( $wgHooks['TitleExists'] );
|
|
|
|
|
LinkCache::singleton()->clearBadLink( $title->getPrefixedDBkey() );
|
|
|
|
|
return new ScopedCallback( function () use ( $title, $key ) {
|
|
|
|
|
global $wgHooks;
|
|
|
|
|
unset( $wgHooks['TitleExists'][$key] );
|
|
|
|
|
LinkCache::singleton()->clearLink( $title );
|
|
|
|
|
} );
|
|
|
|
|
}
|
2007-01-20 12:50:56 +00:00
|
|
|
}
|