219 '#<(?:mw:)?editsection page="(.*?)" section="(.*?)"(?:/>|>(.*?)(</(?:mw:)?editsection>))#s';
239 public function __construct( $text =
'', $languageLinks = [], $categoryLinks = [],
240 $unused =
false, $titletext =
''
242 $this->mText = $text;
243 $this->mLanguageLinks = $languageLinks;
244 $this->mCategories = $categoryLinks;
245 $this->mTitleText = $titletext;
259 return ( $this->mText !==
null );
271 if ( $this->mText ===
null ) {
272 throw new LogicException(
'This ParserOutput contains no text!' );
306 'enableSectionEditLinks' =>
true,
308 'deduplicateStyles' =>
true,
313 Hooks::runWithoutAbort(
'ParserOutputPostCacheTransform', [ $this, &$text, &
$options ] );
316 $text = Html::rawElement(
'div', [
'class' =>
$options[
'wrapperDivClass'] ], $text );
319 if (
$options[
'enableSectionEditLinks'] ) {
320 $text = preg_replace_callback(
321 self::EDITSECTION_REGEX,
323 $editsectionPage = Title::newFromText( htmlspecialchars_decode( $m[1] ) );
324 $editsectionSection = htmlspecialchars_decode( $m[2] );
325 $editsectionContent = isset( $m[4] ) ? Sanitizer::decodeCharReferences( $m[3] ) :
null;
327 if ( !is_object( $editsectionPage ) ) {
328 throw new MWException(
"Bad parser output text." );
331 $context = RequestContext::getMain();
332 return $context->getSkin()->doEditSectionLink(
342 $text = preg_replace( self::EDITSECTION_REGEX,
'', $text );
346 $text = str_replace( [ Parser::TOC_START, Parser::TOC_END ],
'', $text );
348 $text = preg_replace(
349 '#' . preg_quote( Parser::TOC_START,
'#' ) .
'.*?' . preg_quote( Parser::TOC_END,
'#' ) .
'#s',
355 if (
$options[
'deduplicateStyles'] ) {
357 $text = preg_replace_callback(
358 '#<style\s+([^>]*data-mw-deduplicate\s*=[^>]*)>.*?</style>#s',
359 function ( $m )
use ( &$seen ) {
360 $attr = Sanitizer::decodeTagAttributes( $m[1] );
361 if ( !isset( $attr[
'data-mw-deduplicate'] ) ) {
365 $key = $attr[
'data-mw-deduplicate'];
366 if ( !isset( $seen[$key] ) ) {
375 return Html::element(
'link', [
376 'rel' =>
'mw-deduplicated-inline-style',
385 $text = preg_replace_callback(
386 '#<mw:slotheader>(.*?)</mw:slotheader>#',
388 $role = htmlspecialchars_decode( $m[1] );
404 $this->mWrapperDivClasses[$class] =
true;
412 $this->mWrapperDivClasses = [];
423 return implode(
' ', array_keys( $this->mWrapperDivClasses ) );
431 $this->mSpeculativeRevId = $id;
439 return $this->mSpeculativeRevId;
443 return $this->mLanguageLinks;
447 return $this->mInterwikiLinks;
451 return array_keys( $this->mCategories );
455 return $this->mCategories;
463 return $this->mIndicators;
467 return $this->mTitleText;
471 return $this->mSections;
483 return $this->mLinks;
487 return $this->mTemplates;
491 return $this->mTemplateIds;
495 return $this->mImages;
499 return $this->mFileSearchOptions;
503 return $this->mExternalLinks;
507 $this->mNoGallery = (bool)
$value;
510 return $this->mNoGallery;
514 return $this->mHeadItems;
518 return $this->mModules;
527 return $this->mModuleStyles;
535 return $this->mJsConfigVars;
539 return (
array)$this->mOutputHooks;
543 return array_keys( $this->mWarnings );
547 return $this->mIndexPolicy;
551 return $this->mTOCHTML;
558 return $this->mTimestamp;
562 return $this->mLimitReportData;
566 return $this->mLimitReportJSData;
578 return $this->mEnableOOUI;
582 return wfSetVar( $this->mText, $text );
586 return wfSetVar( $this->mLanguageLinks, $ll );
590 return wfSetVar( $this->mCategories, $cl );
598 return wfSetVar( $this->mSections, $toc );
610 return wfSetVar( $this->mIndexPolicy, $policy );
614 return wfSetVar( $this->mTOCHTML, $tochtml );
618 return wfSetVar( $this->mTimestamp, $timestamp );
630 $this->mCategories[$c] =
$sort;
650 $this->mEnableOOUI = $enable;
654 $this->mLanguageLinks[] =
$t;
658 $this->mWarnings[
$s] = 1;
662 $this->mOutputHooks[] = [ $hook,
$data ];
666 $this->mNewSection = (bool)
$value;
669 $this->mHideNewSection = (bool)
$value;
672 return (
bool)$this->mHideNewSection;
675 return (
bool)$this->mNewSection;
686 return (
bool)preg_match(
'/^' .
688 ( substr( $internal, 0, 2 ) ===
'//' ?
'(?:https?:)?' :
'' ) .
689 preg_quote( $internal,
'/' ) .
697 # We don't register links pointing to our own server, unless... :-)
700 # Replace unnecessary URL escape codes with the referenced character
701 # This prevents spammers from hiding links from the filters
702 $url = Parser::normalizeLinkUrl( $url );
704 $registerExternalLink =
true;
706 $registerExternalLink = !self::isLinkInternal(
$wgServer, $url );
708 if ( $registerExternalLink ) {
709 $this->mExternalLinks[$url] = 1;
720 if (
$title->isExternal() ) {
725 $ns =
$title->getNamespace();
726 $dbk =
$title->getDBkey();
734 } elseif ( $dbk ===
'' ) {
738 if ( !isset( $this->mLinks[$ns] ) ) {
739 $this->mLinks[$ns] = [];
741 if ( is_null( $id ) ) {
742 $id =
$title->getArticleID();
744 $this->mLinks[$ns][$dbk] = $id;
753 public function addImage( $name, $timestamp =
null, $sha1 =
null ) {
754 $this->mImages[
$name] = 1;
755 if ( $timestamp !==
null && $sha1 !==
null ) {
756 $this->mFileSearchOptions[
$name] = [
'time' => $timestamp,
'sha1' => $sha1 ];
767 $ns =
$title->getNamespace();
768 $dbk =
$title->getDBkey();
769 if ( !isset( $this->mTemplates[$ns] ) ) {
770 $this->mTemplates[$ns] = [];
772 $this->mTemplates[$ns][$dbk] = $page_id;
773 if ( !isset( $this->mTemplateIds[$ns] ) ) {
774 $this->mTemplateIds[$ns] = [];
776 $this->mTemplateIds[$ns][$dbk] = $rev_id;
784 if ( !
$title->isExternal() ) {
785 throw new MWException(
'Non-interwiki link passed, internal parser error.' );
787 $prefix =
$title->getInterwiki();
788 if ( !isset( $this->mInterwikiLinks[$prefix] ) ) {
789 $this->mInterwikiLinks[$prefix] = [];
791 $this->mInterwikiLinks[$prefix][
$title->getDBkey()] = 1;
802 if ( $tag !==
false ) {
813 $this->mModules = array_merge( $this->mModules, (
array)
$modules );
820 $this->mModuleStyles = array_merge( $this->mModuleStyles, (
array)
$modules );
831 if ( is_array(
$keys ) ) {
833 $this->mJsConfigVars[$key] =
$value;
851 $this->mHeadItems = array_merge( $this->mHeadItems,
$out->getHeadItemsArray() );
852 $this->mPreventClickjacking = $this->mPreventClickjacking ||
$out->getPreventClickjacking();
872 if (
$title->isSpecialPage() ) {
873 wfDebug( __METHOD__ .
": Not adding tracking category $msg to special page!\n" );
880 ->inContentLanguage()
883 # Allow tracking categories to be disabled by setting them to "-"
884 if ( $cat ===
'-' ) {
888 $containerCategory = Title::makeTitleSafe(
NS_CATEGORY, $cat );
889 if ( $containerCategory ) {
890 $this->
addCategory( $containerCategory->getDBkey(), $this->getProperty(
'defaultsort' ) ?:
'' );
893 wfDebug( __METHOD__ .
": [[MediaWiki:$msg]] is not a valid title!\n" );
935 $this->mFlags[$flag] =
true;
939 return isset( $this->mFlags[$flag] );
1015 return $this->mProperties[
$name] ??
false;
1019 unset( $this->mProperties[
$name] );
1023 if ( !isset( $this->mProperties ) ) {
1024 $this->mProperties = [];
1026 return $this->mProperties;
1035 if ( !isset( $this->mAccessedOptions ) ) {
1038 return array_keys( $this->mAccessedOptions );
1054 $this->mAccessedOptions[$option] =
true;
1099 unset( $this->mExtensionData[$key] );
1101 $this->mExtensionData[$key] =
$value;
1117 return $this->mExtensionData[$key] ??
null;
1122 if ( !$clock || $clock ===
'wall' ) {
1123 $ret[
'wall'] = microtime(
true );
1125 if ( !$clock || $clock ===
'cpu' ) {
1128 $ret[
'cpu'] = $ru[
'ru_utime.tv_sec'] + $ru[
'ru_utime.tv_usec'] / 1e6;
1129 $ret[
'cpu'] += $ru[
'ru_stime.tv_sec'] + $ru[
'ru_stime.tv_usec'] / 1e6;
1140 $this->mParseStartTime = self::getTimes();
1155 if ( !isset( $this->mParseStartTime[$clock] ) ) {
1159 $end = self::getTimes( $clock );
1160 return $end[$clock] - $this->mParseStartTime[$clock];
1183 $this->mLimitReportData[$key] =
$value;
1185 if ( is_array(
$value ) ) {
1186 if ( array_keys(
$value ) === [ 0, 1 ]
1187 && is_numeric(
$value[0] )
1188 && is_numeric(
$value[1] )
1198 if ( strpos( $key,
'-' ) ) {
1199 list( $ns,
$name ) = explode(
'-', $key, 2 );
1200 $this->mLimitReportJSData[$ns][
$name] =
$data;
1202 $this->mLimitReportJSData[$key] =
$data;
1230 return wfSetVar( $this->mPreventClickjacking, $flag );
1240 $this->mMaxAdaptiveExpiry = min( $ttl, $this->mMaxAdaptiveExpiry );
1250 if ( is_infinite( $this->mMaxAdaptiveExpiry ) ) {
1255 if ( is_float( $runtime ) ) {
1256 $slope = ( self::SLOW_AR_TTL - self::FAST_AR_TTL )
1257 / ( self::PARSE_SLOW_SEC - self::PARSE_FAST_SEC );
1259 $point = self::SLOW_AR_TTL - self::PARSE_SLOW_SEC * $slope;
1262 max( $slope * $runtime + $point, self::MIN_AR_TTL ),
1263 $this->mMaxAdaptiveExpiry
1271 array_keys( get_object_vars( $this ) ),
1272 [
'mParseStartTime' ]
1284 $this->mOutputHooks = self::mergeList( $this->mOutputHooks,
$source->getOutputHooks() );
1285 $this->mWarnings = self::mergeMap( $this->mWarnings,
$source->mWarnings );
1286 $this->mTimestamp = $this->
useMaxValue( $this->mTimestamp,
$source->getTimestamp() );
1288 if ( $this->mSpeculativeRevId &&
$source->mSpeculativeRevId
1289 && $this->mSpeculativeRevId !==
$source->mSpeculativeRevId
1292 'Inconsistent speculative revision ID encountered while merging parser output!'
1297 $this->mSpeculativeRevId,
1298 $source->getSpeculativeRevIdUsed()
1301 $this->mParseStartTime,
1305 $this->mFlags = self::mergeMap( $this->mFlags,
$source->mFlags );
1306 $this->mAccessedOptions = self::mergeMap( $this->mAccessedOptions,
$source->mAccessedOptions );
1309 if ( empty( $this->mLimitReportData ) ) {
1310 $this->mLimitReportData =
$source->mLimitReportData;
1312 if ( empty( $this->mLimitReportJSData ) ) {
1313 $this->mLimitReportJSData =
$source->mLimitReportJSData;
1326 $this->mHeadItems = self::mergeMixedList( $this->mHeadItems,
$source->getHeadItems() );
1327 $this->mModules = self::mergeList( $this->mModules,
$source->getModules() );
1328 $this->mModuleStyles = self::mergeList( $this->mModuleStyles,
$source->getModuleStyles() );
1329 $this->mJsConfigVars = self::mergeMap( $this->mJsConfigVars,
$source->getJsConfigVars() );
1330 $this->mMaxAdaptiveExpiry = min( $this->mMaxAdaptiveExpiry,
$source->mMaxAdaptiveExpiry );
1333 if ( $this->mIndexPolicy ===
'noindex' ||
$source->mIndexPolicy ===
'noindex' ) {
1334 $this->mIndexPolicy =
'noindex';
1335 } elseif ( $this->mIndexPolicy !==
'index' ) {
1336 $this->mIndexPolicy =
$source->mIndexPolicy;
1340 $this->mNewSection = $this->mNewSection ||
$source->getNewSection();
1341 $this->mHideNewSection = $this->mHideNewSection ||
$source->getHideNewSection();
1342 $this->mNoGallery = $this->mNoGallery ||
$source->getNoGallery();
1343 $this->mEnableOOUI = $this->mEnableOOUI ||
$source->getEnableOOUI();
1344 $this->mPreventClickjacking = $this->mPreventClickjacking ||
$source->preventClickjacking();
1347 $this->mSections = array_merge( $this->mSections,
$source->getSections() );
1348 $this->mTOCHTML .=
$source->mTOCHTML;
1352 if ( $this->mTitleText ===
null || $this->mTitleText ===
'' ) {
1353 $this->mTitleText =
$source->mTitleText;
1357 $this->mWrapperDivClasses = self::mergeMap(
1358 $this->mWrapperDivClasses,
1363 $this->mIndicators = self::mergeMap( $this->mIndicators,
$source->getIndicators() );
1368 $this->mExtensionData = self::mergeMap(
1369 $this->mExtensionData,
1382 $this->mLanguageLinks = self::mergeList( $this->mLanguageLinks,
$source->getLanguageLinks() );
1383 $this->mCategories = self::mergeMap( $this->mCategories,
$source->getCategories() );
1384 $this->mLinks = self::merge2D( $this->mLinks,
$source->getLinks() );
1385 $this->mTemplates = self::merge2D( $this->mTemplates,
$source->getTemplates() );
1386 $this->mTemplateIds = self::merge2D( $this->mTemplateIds,
$source->getTemplateIds() );
1387 $this->mImages = self::mergeMap( $this->mImages,
$source->getImages() );
1388 $this->mFileSearchOptions = self::mergeMap(
1389 $this->mFileSearchOptions,
1390 $source->getFileSearchOptions()
1392 $this->mExternalLinks = self::mergeMap( $this->mExternalLinks,
$source->getExternalLinks() );
1393 $this->mInterwikiLinks = self::merge2D(
1394 $this->mInterwikiLinks,
1400 $this->mProperties = self::mergeMap( $this->mProperties,
$source->getProperties() );
1405 $this->mExtensionData = self::mergeMap(
1406 $this->mExtensionData,
1412 return array_unique( array_merge( $a, $b ), SORT_REGULAR );
1416 return array_values( array_unique( array_merge( $a, $b ), SORT_REGULAR ) );
1420 return array_replace( $a, $b );
1425 $keys = array_merge( array_keys( $a ), array_keys( $b ) );
1428 if ( empty( $a[$k] ) ) {
1429 $values[$k] = $b[$k];
1430 } elseif ( empty( $b[$k] ) ) {
1431 $values[$k] = $a[$k];
1432 } elseif ( is_array( $a[$k] ) && is_array( $b[$k] ) ) {
1433 $values[$k] = array_replace( $a[$k], $b[$k] );
1435 $values[$k] = $b[$k];
1444 $keys = array_merge( array_keys( $a ), array_keys( $b ) );
1447 if ( is_array( $a[$k] ??
null ) && is_array( $b[$k] ??
null ) ) {
1448 $values[$k] = self::useEachMinValue( $a[$k], $b[$k] );
1450 $values[$k] = self::useMinValue( $a[$k] ??
null, $b[$k] ??
null );
1458 if ( $a ===
null ) {
1462 if ( $b ===
null ) {
1466 return min( $a, $b );
1470 if ( $a ===
null ) {
1474 if ( $b ===
null ) {
1478 return max( $a, $b );
Apache License January http
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgRegisterInternalExternals
By default MediaWiki does not register links pointing to same server in externallinks dataset,...
$wgParserCacheExpireTime
The expiry time for the parser cache, in seconds.
$wgServer
URL of the server.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
wfGetRusage()
Get system resource usage of current request context.
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
wfLogWarning( $msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Parser cache specific expiry check.
updateCacheExpiry( $seconds)
Sets the number of seconds after which this object should expire.
getCacheExpiry()
Returns the number of seconds after which this object should expire.
This class should be covered by a general architecture document which does not exist as of January 20...
static mergeMap(array $a, array $b)
addOutputPageMetadata(OutputPage $out)
Copy items from the OutputPage object into this one.
static getTimes( $clock=null)
getSpeculativeRevIdUsed()
int null $mSpeculativeRevId
Assumed rev ID for {{REVISIONID}} if no revision is set.
addOutputHook( $hook, $data=false)
const SUPPORTS_UNWRAP_TRANSFORM
mergeHtmlMetaDataFrom(ParserOutput $source)
Merges HTML metadata such as head items, JS config vars, and HTTP cache control info from $source int...
static useEachMinValue(array $a, array $b)
setDisplayTitle( $text)
Override the title to be used for display.
addJsConfigVars( $keys, $value=null)
Add one or more variables to be set in mw.config in JavaScript.
setIndicator( $id, $content)
static useMaxValue( $a, $b)
static merge2D(array $a, array $b)
hasText()
Returns true if text was passed to the constructor, or set using setText().
static mergeList(array $a, array $b)
addInterwikiLink( $title)
setEditSectionTokens( $t)
setEnableOOUI( $enable=false)
Enables OOUI, if true, in any OutputPage instance this ParserOutput object is added to.
$mWrapperDivClasses
string CSS classes to use for the wrapping div, stored in the array keys.
getDisplayTitle()
Get the title to be used for display.
addWrapperDivClass( $class)
Add a CSS class to use for the wrapping div.
addTrackingCategory( $msg, $title)
Add a tracking category, getting the title from a system message, or print a debug message if the tit...
finalizeAdaptiveCacheExpiry()
Call this when parsing is done to lower the TTL based on low parse times.
addTemplate( $title, $page_id, $rev_id)
Register a template dependency for this output.
addLink(Title $title, $id=null)
Record a local or interwiki inline link for saving in future link tables.
resetParseStartTime()
Resets the parse start timestamps for future calls to getTimeSinceStart()
static mergeMixedList(array $a, array $b)
preventClickjacking( $flag=null)
Get or set the prevent-clickjacking flag.
mergeTrackingMetaDataFrom(ParserOutput $source)
Merges dependency tracking metadata such as backlinks, images used, and extension data from $source i...
setProperty( $name, $value)
Set a property to be stored in the page_props database table.
recordOption( $option)
Tags a parser option for use in the cache key for this parser output.
addHeadItem( $section, $tag=false)
Add some text to the "<head>".
hasDynamicContent()
Check whether the cache TTL was lowered due to dynamic content.
static useMinValue( $a, $b)
getExtensionData( $key)
Gets extensions data previously attached to this ParserOutput using setExtensionData().
clearWrapperDivClass()
Clears the CSS class to use for the wrapping div, effectively disabling the wrapper div until addWrap...
getText( $options=[])
Get the output HTML.
getTimeSinceStart( $clock)
Returns the time since resetParseStartTime() was last called.
getRawText()
Get the cacheable text with <mw:editsection> markers still in it.
addImage( $name, $timestamp=null, $sha1=null)
Register a file dependency for this output.
updateRuntimeAdaptiveExpiry( $ttl)
Lower the runtime adaptive TTL to at most this value.
getUsedOptions()
Returns the options from its ParserOptions which have been taken into account to produce this output.
const SUPPORTS_STATELESS_TRANSFORMS
Feature flags to indicate to extensions that MediaWiki core supports and uses getText() stateless tra...
setLimitReportData( $key, $value)
Sets parser limit report data for a key.
setExtensionData( $key, $value)
Attaches arbitrary data to this ParserObject.
setTimestamp( $timestamp)
setSpeculativeRevIdUsed( $id)
__construct( $text='', $languageLinks=[], $categoryLinks=[], $unused=false, $titletext='')
static isLinkInternal( $internal, $url)
Checks, if a url is pointing to the own server.
array $mLimitReportJSData
Parser limit report data for JSON.
mergeInternalMetaDataFrom(ParserOutput $source)
Merges internal metadata such as flags, accessed options, and profiling info from $source into this P...
addModuleStyles( $modules)
getWrapperDivClass()
Returns the class (or classes) to be used with the wrapper div for this otuput.
setFlag( $flag)
Fairly generic flag setter thingy.
int $mMaxAdaptiveExpiry
Upper bound of expiry based on parse duration.
Represents a title within MediaWiki.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template to be included in the link
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
namespace and then decline to actually register it file or subcat img or subcat $title
null for the local wiki Added in
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
in this case you re responsible for computing and outputting the entire conflict i the difference between revisions and your text headers and sections and Diff initially an empty< div id="toolbar"></div > Hook subscribers can return false to have no toolbar HTML be loaded overridable Default is either copyrightwarning or copyrightwarning2 overridable Default is editpage tos summary such as anonymity and the real check
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
This document provides an overview of the usage of PageUpdater and that is
scripts txt MediaWiki primary scripts are in the root directory of the software Users should only use these scripts to access the wiki There are also some php that aren t primary scripts but helper files and won t work if they are accessed directly by the web Primary see https
This document describes the XML format used to represent information about external sites known to a MediaWiki installation This information about external sites is used to allow inter wiki links
in the order they appear.