2007-01-20 12:50:56 +00:00
|
|
|
<?php
|
2010-08-22 14:31:05 +00:00
|
|
|
/**
|
|
|
|
|
* Options for the PHP parser
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Parser
|
|
|
|
|
*/
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2007-01-20 12:50:56 +00:00
|
|
|
/**
|
|
|
|
|
* Set options of the Parser
|
|
|
|
|
* @todo document
|
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 {
|
2007-01-20 12:50:56 +00:00
|
|
|
# All variables are supposed to be private in theory, although in practise this is not the case.
|
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
|
|
|
var $mUseDynamicDates; # Use DateFormatter to format dates
|
|
|
|
|
var $mInterwikiMagic; # Interlanguage links are removed and returned in an array
|
|
|
|
|
var $mAllowExternalImages; # Allow external images inline
|
|
|
|
|
var $mAllowExternalImagesFrom; # If not, any exception?
|
2008-09-01 18:49:14 +00:00
|
|
|
var $mEnableImageWhitelist; # If not or it doesn't match, should we check an on-wiki whitelist?
|
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
|
|
|
var $mSkin; # Reference to the preferred skin
|
|
|
|
|
var $mDateFormat; # Date format index
|
|
|
|
|
var $mEditSection; # Create "edit section" links
|
|
|
|
|
var $mNumberHeadings; # Automatically number headings
|
|
|
|
|
var $mAllowSpecialInclusion; # Allow inclusion of special pages
|
|
|
|
|
var $mTidy; # Ask for tidy cleanup
|
|
|
|
|
var $mInterfaceMessage; # Which lang to call for PLURAL and GRAMMAR
|
|
|
|
|
var $mTargetLanguage; # Overrides above setting with arbitrary language
|
|
|
|
|
var $mMaxIncludeSize; # Maximum size of template expansions, in bytes
|
|
|
|
|
var $mMaxPPNodeCount; # Maximum number of nodes touched by PPFrame::expand()
|
|
|
|
|
var $mMaxPPExpandDepth; # Maximum recursion depth in PPFrame::expand()
|
|
|
|
|
var $mMaxTemplateDepth; # Maximum recursion depth for templates within templates
|
|
|
|
|
var $mRemoveComments; # Remove HTML comments. ONLY APPLIES TO PREPROCESS OPERATIONS
|
|
|
|
|
var $mTemplateCallback; # Callback for template fetching
|
|
|
|
|
var $mEnableLimitReport; # Enable limit report in an HTML comment on output
|
|
|
|
|
var $mTimestamp; # Timestamp used for {{CURRENTDAY}} etc.
|
2008-09-30 01:00:40 +00:00
|
|
|
var $mExternalLinkTarget; # Target attribute for external links
|
2010-08-05 18:43:49 +00:00
|
|
|
var $mMath; # User math preference (as integer)
|
|
|
|
|
var $mUserLang; # Language code of the User language.
|
2010-08-07 22:35:23 +00:00
|
|
|
var $mThumbSize; # Thumb size preferred by the user.
|
2010-09-02 22:15:20 +00:00
|
|
|
var $mCleanSignatures; #
|
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
|
|
|
|
2010-12-10 18:17:20 +00:00
|
|
|
var $mUser; # Stored user object
|
2009-01-26 18:02:13 +00:00
|
|
|
var $mIsPreview; # Parsing the page for a "preview" operation
|
|
|
|
|
var $mIsSectionPreview; # Parsing the page for a "preview" operation on a single section
|
2010-01-23 15:24:44 +00:00
|
|
|
var $mIsPrintable; # Parsing the printable version of the page
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-10 14:38:14 +00:00
|
|
|
var $mExtraKey = ''; # Extra key that should be present in the caching key.
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
protected $accessedOptions;
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2007-01-20 12:50:56 +00:00
|
|
|
function getUseDynamicDates() { return $this->mUseDynamicDates; }
|
|
|
|
|
function getInterwikiMagic() { return $this->mInterwikiMagic; }
|
|
|
|
|
function getAllowExternalImages() { return $this->mAllowExternalImages; }
|
|
|
|
|
function getAllowExternalImagesFrom() { return $this->mAllowExternalImagesFrom; }
|
2008-09-01 18:49:14 +00:00
|
|
|
function getEnableImageWhitelist() { return $this->mEnableImageWhitelist; }
|
2010-08-09 21:53:21 +00:00
|
|
|
function getEditSection() { $this->accessedOptions['editsection'] = true;
|
2010-12-11 03:52:35 +00:00
|
|
|
return $this->mEditSection; }
|
2010-08-09 21:53:21 +00:00
|
|
|
function getNumberHeadings() { $this->accessedOptions['numberheadings'] = true;
|
2010-12-11 03:52:35 +00:00
|
|
|
return $this->mNumberHeadings; }
|
2007-01-20 12:50:56 +00:00
|
|
|
function getAllowSpecialInclusion() { return $this->mAllowSpecialInclusion; }
|
|
|
|
|
function getTidy() { return $this->mTidy; }
|
|
|
|
|
function getInterfaceMessage() { return $this->mInterfaceMessage; }
|
2008-03-07 14:02:12 +00:00
|
|
|
function getTargetLanguage() { return $this->mTargetLanguage; }
|
2007-01-20 12:50:56 +00:00
|
|
|
function getMaxIncludeSize() { return $this->mMaxIncludeSize; }
|
2007-11-20 10:55:08 +00:00
|
|
|
function getMaxPPNodeCount() { return $this->mMaxPPNodeCount; }
|
2010-08-05 19:01:47 +00:00
|
|
|
function getMaxPPExpandDepth() { return $this->mMaxPPExpandDepth; }
|
2008-01-11 03:25:41 +00:00
|
|
|
function getMaxTemplateDepth() { return $this->mMaxTemplateDepth; }
|
2007-01-20 12:50:56 +00:00
|
|
|
function getRemoveComments() { return $this->mRemoveComments; }
|
2007-11-20 10:55:08 +00:00
|
|
|
function getTemplateCallback() { return $this->mTemplateCallback; }
|
2007-11-30 14:50:48 +00:00
|
|
|
function getEnableLimitReport() { return $this->mEnableLimitReport; }
|
2008-07-31 09:41:28 +00:00
|
|
|
function getCleanSignatures() { return $this->mCleanSignatures; }
|
2008-09-30 01:00:40 +00:00
|
|
|
function getExternalLinkTarget() { return $this->mExternalLinkTarget; }
|
2010-08-09 21:53:21 +00:00
|
|
|
function getMath() { $this->accessedOptions['math'] = true;
|
2010-12-11 03:52:35 +00:00
|
|
|
return $this->mMath; }
|
2010-08-09 21:53:21 +00:00
|
|
|
function getThumbSize() { $this->accessedOptions['thumbsize'] = true;
|
2010-12-11 03:52:35 +00:00
|
|
|
return $this->mThumbSize; }
|
|
|
|
|
|
2009-01-26 18:02:13 +00:00
|
|
|
function getIsPreview() { return $this->mIsPreview; }
|
|
|
|
|
function getIsSectionPreview() { return $this->mIsSectionPreview; }
|
2010-08-09 21:53:21 +00:00
|
|
|
function getIsPrintable() { $this->accessedOptions['printable'] = true;
|
2010-12-11 03:52:35 +00:00
|
|
|
return $this->mIsPrintable; }
|
2010-12-10 18:17:20 +00:00
|
|
|
function getUser() { return $this->mUser; }
|
2009-07-07 16:13:58 +00:00
|
|
|
|
2010-08-11 17:11:24 +00:00
|
|
|
function getSkin( $title = null ) {
|
2007-01-20 12:50:56 +00:00
|
|
|
if ( !isset( $this->mSkin ) ) {
|
2010-08-11 17:11:24 +00:00
|
|
|
$this->mSkin = $this->mUser->getSkin( $title );
|
2007-01-20 12:50:56 +00:00
|
|
|
}
|
|
|
|
|
return $this->mSkin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getDateFormat() {
|
2010-08-09 21:53:21 +00:00
|
|
|
$this->accessedOptions['dateformat'] = true;
|
2007-01-20 12:50:56 +00:00
|
|
|
if ( !isset( $this->mDateFormat ) ) {
|
|
|
|
|
$this->mDateFormat = $this->mUser->getDatePreference();
|
|
|
|
|
}
|
|
|
|
|
return $this->mDateFormat;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-14 07:45:50 +00:00
|
|
|
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
|
|
|
/**
|
|
|
|
|
* You shouldn't use this. Really. $parser->getFunctionLang() is all you need.
|
|
|
|
|
* Using this fragments the cache and is discouraged. Yes, {{int: }} uses this,
|
|
|
|
|
* producing inconsistent tables (Bug 14404).
|
|
|
|
|
*/
|
2010-08-05 18:43:49 +00:00
|
|
|
function getUserLang() {
|
2010-08-09 21:53:21 +00:00
|
|
|
$this->accessedOptions['userlang'] = true;
|
2010-08-05 18:43:49 +00:00
|
|
|
return $this->mUserLang;
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-20 12:50:56 +00:00
|
|
|
function setUseDynamicDates( $x ) { return wfSetVar( $this->mUseDynamicDates, $x ); }
|
|
|
|
|
function setInterwikiMagic( $x ) { return wfSetVar( $this->mInterwikiMagic, $x ); }
|
|
|
|
|
function setAllowExternalImages( $x ) { return wfSetVar( $this->mAllowExternalImages, $x ); }
|
|
|
|
|
function setAllowExternalImagesFrom( $x ) { return wfSetVar( $this->mAllowExternalImagesFrom, $x ); }
|
2008-09-01 18:49:14 +00:00
|
|
|
function setEnableImageWhitelist( $x ) { return wfSetVar( $this->mEnableImageWhitelist, $x ); }
|
2007-01-20 12:50:56 +00:00
|
|
|
function setDateFormat( $x ) { return wfSetVar( $this->mDateFormat, $x ); }
|
|
|
|
|
function setEditSection( $x ) { return wfSetVar( $this->mEditSection, $x ); }
|
|
|
|
|
function setNumberHeadings( $x ) { return wfSetVar( $this->mNumberHeadings, $x ); }
|
|
|
|
|
function setAllowSpecialInclusion( $x ) { return wfSetVar( $this->mAllowSpecialInclusion, $x ); }
|
|
|
|
|
function setTidy( $x ) { return wfSetVar( $this->mTidy, $x); }
|
|
|
|
|
function setSkin( $x ) { $this->mSkin = $x; }
|
|
|
|
|
function setInterfaceMessage( $x ) { return wfSetVar( $this->mInterfaceMessage, $x); }
|
2008-03-07 14:02:12 +00:00
|
|
|
function setTargetLanguage( $x ) { return wfSetVar( $this->mTargetLanguage, $x); }
|
2007-01-20 12:50:56 +00:00
|
|
|
function setMaxIncludeSize( $x ) { return wfSetVar( $this->mMaxIncludeSize, $x ); }
|
2007-11-20 10:55:08 +00:00
|
|
|
function setMaxPPNodeCount( $x ) { return wfSetVar( $this->mMaxPPNodeCount, $x ); }
|
2008-01-11 03:25:41 +00:00
|
|
|
function setMaxTemplateDepth( $x ) { return wfSetVar( $this->mMaxTemplateDepth, $x ); }
|
2007-01-20 12:50:56 +00:00
|
|
|
function setRemoveComments( $x ) { return wfSetVar( $this->mRemoveComments, $x ); }
|
2007-11-20 10:55:08 +00:00
|
|
|
function setTemplateCallback( $x ) { return wfSetVar( $this->mTemplateCallback, $x ); }
|
2007-11-30 14:50:48 +00:00
|
|
|
function enableLimitReport( $x = true ) { return wfSetVar( $this->mEnableLimitReport, $x ); }
|
2008-01-24 04:29:56 +00:00
|
|
|
function setTimestamp( $x ) { return wfSetVar( $this->mTimestamp, $x ); }
|
2008-07-31 09:41:28 +00:00
|
|
|
function setCleanSignatures( $x ) { return wfSetVar( $this->mCleanSignatures, $x ); }
|
2008-09-30 01:00:40 +00:00
|
|
|
function setExternalLinkTarget( $x ) { return wfSetVar( $this->mExternalLinkTarget, $x ); }
|
2010-08-05 15:24:36 +00:00
|
|
|
function setMath( $x ) { return wfSetVar( $this->mMath, $x ); }
|
2010-08-05 18:43:49 +00:00
|
|
|
function setUserLang( $x ) { return wfSetVar( $this->mUserLang, $x ); }
|
2010-09-02 22:15:20 +00:00
|
|
|
function setThumbSize( $x ) { return wfSetVar( $this->mThumbSize, $x ); }
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2009-01-26 18:02:13 +00:00
|
|
|
function setIsPreview( $x ) { return wfSetVar( $this->mIsPreview, $x ); }
|
|
|
|
|
function setIsSectionPreview( $x ) { return wfSetVar( $this->mIsSectionPreview, $x ); }
|
2009-07-07 16:13:58 +00:00
|
|
|
function setIsPrintable( $x ) { return wfSetVar( $this->mIsPrintable, $x ); }
|
|
|
|
|
|
2010-08-10 14:38:14 +00:00
|
|
|
/**
|
|
|
|
|
* Extra key that should be present in the parser cache key.
|
|
|
|
|
*/
|
|
|
|
|
function addExtraKey( $key ) {
|
|
|
|
|
$this->mExtraKey .= '!' . $key;
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-20 13:34:31 +00:00
|
|
|
function __construct( $user = null ) {
|
2007-01-20 12:50:56 +00:00
|
|
|
$this->initialiseFromUser( $user );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get parser options
|
2010-06-09 14:57:59 +00:00
|
|
|
*
|
|
|
|
|
* @param $user User object
|
|
|
|
|
* @return ParserOptions object
|
2007-01-20 12:50:56 +00:00
|
|
|
*/
|
|
|
|
|
static function newFromUser( $user ) {
|
|
|
|
|
return new ParserOptions( $user );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Get user options */
|
|
|
|
|
function initialiseFromUser( $userInput ) {
|
2010-02-03 07:10:58 +00:00
|
|
|
global $wgUseDynamicDates, $wgInterwikiMagic, $wgAllowExternalImages;
|
2008-09-01 18:49:14 +00:00
|
|
|
global $wgAllowExternalImagesFrom, $wgEnableImageWhitelist, $wgAllowSpecialInclusion, $wgMaxArticleSize;
|
2008-07-31 09:41:28 +00:00
|
|
|
global $wgMaxPPNodeCount, $wgMaxTemplateDepth, $wgMaxPPExpandDepth, $wgCleanSignatures;
|
2010-08-05 18:43:49 +00:00
|
|
|
global $wgExternalLinkTarget, $wgLang;
|
2010-01-23 15:24:44 +00:00
|
|
|
|
|
|
|
|
wfProfileIn( __METHOD__ );
|
|
|
|
|
|
2007-01-20 12:50:56 +00:00
|
|
|
if ( !$userInput ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
if ( isset( $wgUser ) ) {
|
|
|
|
|
$user = $wgUser;
|
|
|
|
|
} else {
|
|
|
|
|
$user = new User;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$user =& $userInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->mUser = $user;
|
|
|
|
|
|
|
|
|
|
$this->mUseDynamicDates = $wgUseDynamicDates;
|
|
|
|
|
$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->mSkin = null; # Deferred
|
|
|
|
|
$this->mDateFormat = null; # Deferred
|
|
|
|
|
$this->mEditSection = true;
|
|
|
|
|
$this->mNumberHeadings = $user->getOption( 'numberheadings' );
|
|
|
|
|
$this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
|
|
|
|
|
$this->mTidy = false;
|
|
|
|
|
$this->mInterfaceMessage = false;
|
2008-03-07 14:02:12 +00:00
|
|
|
$this->mTargetLanguage = null; // default depends on InterfaceMessage setting
|
2007-01-20 12:50:56 +00:00
|
|
|
$this->mMaxIncludeSize = $wgMaxArticleSize * 1024;
|
2007-11-20 10:55:08 +00:00
|
|
|
$this->mMaxPPNodeCount = $wgMaxPPNodeCount;
|
2008-03-25 04:26:58 +00:00
|
|
|
$this->mMaxPPExpandDepth = $wgMaxPPExpandDepth;
|
2008-01-11 03:25:41 +00:00
|
|
|
$this->mMaxTemplateDepth = $wgMaxTemplateDepth;
|
2007-01-20 12:50:56 +00:00
|
|
|
$this->mRemoveComments = true;
|
2007-11-20 10:55:08 +00:00
|
|
|
$this->mTemplateCallback = array( 'Parser', 'statelessFetchTemplate' );
|
2007-11-30 14:50:48 +00:00
|
|
|
$this->mEnableLimitReport = false;
|
2008-07-31 09:41:28 +00:00
|
|
|
$this->mCleanSignatures = $wgCleanSignatures;
|
2008-09-30 01:00:40 +00:00
|
|
|
$this->mExternalLinkTarget = $wgExternalLinkTarget;
|
2010-08-05 15:24:36 +00:00
|
|
|
$this->mMath = $user->getOption( 'math' );
|
2010-08-05 18:43:49 +00:00
|
|
|
$this->mUserLang = $wgLang->getCode();
|
2010-08-09 20:39:48 +00:00
|
|
|
$this->mThumbSize = $user->getOption( 'thumbsize' );
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2009-01-26 18:02:13 +00:00
|
|
|
$this->mIsPreview = false;
|
|
|
|
|
$this->mIsSectionPreview = false;
|
2010-08-05 14:37:50 +00:00
|
|
|
$this->mIsPrintable = false;
|
2010-01-23 15:24:44 +00:00
|
|
|
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
2007-01-20 12:50:56 +00:00
|
|
|
}
|
2010-08-09 21:53:21 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the options from this ParserOptions which have been used.
|
|
|
|
|
*/
|
|
|
|
|
public function usedOptions() {
|
|
|
|
|
return array_keys( $this->accessedOptions );
|
|
|
|
|
}
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
/**
|
|
|
|
|
* Resets the memory of options usage.
|
|
|
|
|
*/
|
|
|
|
|
public function resetUsage() {
|
|
|
|
|
$this->accessedOptions = array();
|
|
|
|
|
}
|
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.
|
|
|
|
|
*/
|
|
|
|
|
public static function legacyOptions() {
|
|
|
|
|
global $wgUseDynamicDates;
|
|
|
|
|
$legacyOpts = array( 'math', 'stubthreshold', 'numberheadings', 'userlang', 'thumbsize', 'editsection', 'printable' );
|
|
|
|
|
if ( $wgUseDynamicDates ) {
|
|
|
|
|
$legacyOpts[] = 'dateformat';
|
|
|
|
|
}
|
|
|
|
|
return $legacyOpts;
|
|
|
|
|
}
|
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,
|
2010-12-11 03:52:35 +00:00
|
|
|
* so users sharign 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
|
|
|
* Replaces User::getPageRenderingHash()
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
* @return \string Page rendering hash
|
|
|
|
|
*/
|
|
|
|
|
public function optionsHash( $forOptions ) {
|
|
|
|
|
global $wgContLang, $wgRenderHashAppend;
|
|
|
|
|
|
|
|
|
|
$confstr = '';
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
if ( in_array( 'math', $forOptions ) )
|
|
|
|
|
$confstr .= $this->mMath;
|
|
|
|
|
else
|
|
|
|
|
$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.
|
|
|
|
|
// The conditional is here to avoid a confusing 0
|
|
|
|
|
if ( in_array( 'stubthreshold', $forOptions ) )
|
|
|
|
|
$confstr .= '!0' ;
|
|
|
|
|
else
|
|
|
|
|
$confstr .= '!*' ;
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'dateformat', $forOptions ) )
|
2010-11-01 23:00:53 +00:00
|
|
|
$confstr .= '!' . $this->getDateFormat();
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
if ( in_array( 'numberheadings', $forOptions ) )
|
|
|
|
|
$confstr .= '!' . ( $this->mNumberHeadings ? '1' : '' );
|
|
|
|
|
else
|
|
|
|
|
$confstr .= '!*';
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
if ( in_array( 'userlang', $forOptions ) )
|
|
|
|
|
$confstr .= '!' . $this->mUserLang;
|
|
|
|
|
else
|
|
|
|
|
$confstr .= '!*';
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'thumbsize', $forOptions ) )
|
|
|
|
|
$confstr .= '!' . $this->mThumbSize;
|
|
|
|
|
else
|
|
|
|
|
$confstr .= '!*';
|
|
|
|
|
|
|
|
|
|
// add in language specific options, if any
|
|
|
|
|
// FIXME: This is just a way of retrieving the url/user preferred variant
|
|
|
|
|
$confstr .= $wgContLang->getExtraHashOptions();
|
|
|
|
|
|
|
|
|
|
// Since the skin could be overloading link(), it should be
|
|
|
|
|
// included here but in practice, none of our skins do that.
|
|
|
|
|
// $confstr .= "!" . $this->mSkin->getSkinName();
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-09 21:53:21 +00:00
|
|
|
$confstr .= $wgRenderHashAppend;
|
|
|
|
|
|
|
|
|
|
if ( !$this->mEditSection && in_array( 'editsection', $forOptions ) )
|
|
|
|
|
$confstr .= '!edit=0';
|
|
|
|
|
if ( $this->mIsPrintable && in_array( 'printable', $forOptions ) )
|
|
|
|
|
$confstr .= '!printable=1';
|
2010-12-11 03:52:35 +00:00
|
|
|
|
2010-08-10 14:38:14 +00:00
|
|
|
if ( $this->mExtraKey != '' )
|
|
|
|
|
$confstr .= $this->mExtraKey;
|
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.
|
|
|
|
|
wfRunHooks( 'PageRenderingHash', array( &$confstr ) );
|
|
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
}
|
2007-01-20 12:50:56 +00:00
|
|
|
}
|