224 '#<(?:mw:)?editsection page="(.*?)" section="(.*?)"(?:/>|>(.*?)(</(?:mw:)?editsection>))#s';
244 public function __construct( $text =
'', $languageLinks = [], $categoryLinks = [],
245 $unused =
false, $titletext =
''
247 $this->mText = $text;
248 $this->mLanguageLinks = $languageLinks;
249 $this->mCategories = $categoryLinks;
250 $this->mTitleText = $titletext;
264 return ( $this->mText !==
null );
276 if ( $this->mText ===
null ) {
277 throw new LogicException(
'This ParserOutput contains no text!' );
311 'enableSectionEditLinks' =>
true,
313 'deduplicateStyles' =>
true,
318 Hooks::runWithoutAbort(
'ParserOutputPostCacheTransform', [ $this, &$text, &
$options ] );
321 $text = Html::rawElement(
'div', [
'class' =>
$options[
'wrapperDivClass'] ], $text );
324 if (
$options[
'enableSectionEditLinks'] ) {
325 $text = preg_replace_callback(
326 self::EDITSECTION_REGEX,
328 $editsectionPage = Title::newFromText( htmlspecialchars_decode( $m[1] ) );
329 $editsectionSection = htmlspecialchars_decode( $m[2] );
330 $editsectionContent = isset( $m[4] ) ? Sanitizer::decodeCharReferences( $m[3] ) :
null;
332 if ( !is_object( $editsectionPage ) ) {
333 throw new MWException(
"Bad parser output text." );
336 $context = RequestContext::getMain();
337 return $context->getSkin()->doEditSectionLink(
347 $text = preg_replace( self::EDITSECTION_REGEX,
'', $text );
351 $text = str_replace( [ Parser::TOC_START, Parser::TOC_END ],
'', $text );
353 $text = preg_replace(
354 '#' . preg_quote( Parser::TOC_START,
'#' ) .
'.*?' . preg_quote( Parser::TOC_END,
'#' ) .
'#s',
360 if (
$options[
'deduplicateStyles'] ) {
362 $text = preg_replace_callback(
363 '#<style\s+([^>]*data-mw-deduplicate\s*=[^>]*)>.*?</style>#s',
364 function ( $m ) use ( &$seen ) {
365 $attr = Sanitizer::decodeTagAttributes( $m[1] );
366 if ( !isset( $attr[
'data-mw-deduplicate'] ) ) {
370 $key = $attr[
'data-mw-deduplicate'];
371 if ( !isset( $seen[$key] ) ) {
380 return Html::element(
'link', [
381 'rel' =>
'mw-deduplicated-inline-style',
390 $text = preg_replace_callback(
391 '#<mw:slotheader>(.*?)</mw:slotheader>#',
393 $role = htmlspecialchars_decode( $m[1] );
409 $this->mWrapperDivClasses[$class] =
true;
417 $this->mWrapperDivClasses = [];
428 return implode(
' ', array_keys( $this->mWrapperDivClasses ) );
436 $this->mSpeculativeRevId = $id;
444 return $this->mSpeculativeRevId;
448 return $this->mLanguageLinks;
452 return $this->mInterwikiLinks;
456 return array_keys( $this->mCategories );
460 return $this->mCategories;
468 return $this->mIndicators;
472 return $this->mTitleText;
476 return $this->mSections;
488 return $this->mLinks;
492 return $this->mTemplates;
496 return $this->mTemplateIds;
500 return $this->mImages;
504 return $this->mFileSearchOptions;
508 return $this->mExternalLinks;
512 $this->mNoGallery = (bool)
$value;
515 return $this->mNoGallery;
519 return $this->mHeadItems;
523 return $this->mModules;
527 return $this->mModuleScripts;
531 return $this->mModuleStyles;
539 return $this->mJsConfigVars;
543 return (
array)$this->mOutputHooks;
547 return array_keys( $this->mWarnings );
551 return $this->mIndexPolicy;
555 return $this->mTOCHTML;
562 return $this->mTimestamp;
566 return $this->mLimitReportData;
570 return $this->mLimitReportJSData;
582 return $this->mEnableOOUI;
586 return wfSetVar( $this->mText, $text );
590 return wfSetVar( $this->mLanguageLinks, $ll );
594 return wfSetVar( $this->mCategories, $cl );
602 return wfSetVar( $this->mSections, $toc );
614 return wfSetVar( $this->mIndexPolicy, $policy );
618 return wfSetVar( $this->mTOCHTML, $tochtml );
622 return wfSetVar( $this->mTimestamp, $timestamp );
634 $this->mCategories[$c] =
$sort;
654 $this->mEnableOOUI = $enable;
658 $this->mLanguageLinks[] =
$t;
662 $this->mWarnings[
$s] = 1;
666 $this->mOutputHooks[] = [ $hook, $data ];
670 $this->mNewSection = (bool)
$value;
673 $this->mHideNewSection = (bool)
$value;
676 return (
bool)$this->mHideNewSection;
679 return (
bool)$this->mNewSection;
690 return (
bool)preg_match(
'/^' .
692 ( substr( $internal, 0, 2 ) ===
'//' ?
'(?:https?:)?' :
'' ) .
693 preg_quote( $internal,
'/' ) .
694 #
check for query/path/anchor or end of
link in each
case
701 # We don't register links pointing to our own server, unless... :-)
704 # Replace unnecessary URL escape codes with the referenced character
705 # This prevents spammers from hiding links from the filters
706 $url = Parser::normalizeLinkUrl( $url );
708 $registerExternalLink =
true;
710 $registerExternalLink = !self::isLinkInternal(
$wgServer, $url );
712 if ( $registerExternalLink ) {
713 $this->mExternalLinks[$url] = 1;
724 if ( $title->isExternal() ) {
729 $ns = $title->getNamespace();
730 $dbk = $title->getDBkey();
738 } elseif ( $dbk ===
'' ) {
742 if ( !isset( $this->mLinks[$ns] ) ) {
743 $this->mLinks[$ns] = [];
745 if ( is_null( $id ) ) {
746 $id = $title->getArticleID();
748 $this->mLinks[$ns][$dbk] = $id;
757 public function addImage( $name, $timestamp =
null, $sha1 =
null ) {
758 $this->mImages[
$name] = 1;
759 if ( $timestamp !==
null && $sha1 !==
null ) {
760 $this->mFileSearchOptions[
$name] = [
'time' => $timestamp,
'sha1' => $sha1 ];
771 $ns = $title->getNamespace();
772 $dbk = $title->getDBkey();
773 if ( !isset( $this->mTemplates[$ns] ) ) {
774 $this->mTemplates[$ns] = [];
776 $this->mTemplates[$ns][$dbk] = $page_id;
777 if ( !isset( $this->mTemplateIds[$ns] ) ) {
778 $this->mTemplateIds[$ns] = [];
780 $this->mTemplateIds[$ns][$dbk] = $rev_id;
788 if ( !$title->isExternal() ) {
789 throw new MWException(
'Non-interwiki link passed, internal parser error.' );
791 $prefix = $title->getInterwiki();
792 if ( !isset( $this->mInterwikiLinks[$prefix] ) ) {
793 $this->mInterwikiLinks[$prefix] = [];
795 $this->mInterwikiLinks[$prefix][$title->getDBkey()] = 1;
806 if ( $tag !==
false ) {
817 $this->mModules = array_merge( $this->mModules, (
array)
$modules );
825 $this->mModuleScripts = array_merge( $this->mModuleScripts, (
array)
$modules );
832 $this->mModuleStyles = array_merge( $this->mModuleStyles, (
array)
$modules );
843 if ( is_array(
$keys ) ) {
845 $this->mJsConfigVars[$key] =
$value;
864 $this->mHeadItems = array_merge( $this->mHeadItems,
$out->getHeadItemsArray() );
865 $this->mPreventClickjacking = $this->mPreventClickjacking ||
$out->getPreventClickjacking();
885 if ( $title->isSpecialPage() ) {
886 wfDebug( __METHOD__ .
": Not adding tracking category $msg to special page!\n" );
893 ->inContentLanguage()
896 # Allow tracking categories to be disabled by setting them to "-"
897 if ( $cat ===
'-' ) {
901 $containerCategory = Title::makeTitleSafe(
NS_CATEGORY, $cat );
902 if ( $containerCategory ) {
903 $this->
addCategory( $containerCategory->getDBkey(), $this->getProperty(
'defaultsort' ) ?:
'' );
906 wfDebug( __METHOD__ .
": [[MediaWiki:$msg]] is not a valid title!\n" );
948 $this->mFlags[$flag] =
true;
952 return isset( $this->mFlags[$flag] );
1028 return $this->mProperties[
$name] ??
false;
1032 unset( $this->mProperties[$name] );
1036 if ( !isset( $this->mProperties ) ) {
1037 $this->mProperties = [];
1039 return $this->mProperties;
1048 if ( !isset( $this->mAccessedOptions ) ) {
1051 return array_keys( $this->mAccessedOptions );
1067 $this->mAccessedOptions[$option] =
true;
1112 unset( $this->mExtensionData[$key] );
1114 $this->mExtensionData[$key] =
$value;
1130 if ( isset( $this->mExtensionData[$key] ) ) {
1131 return $this->mExtensionData[$key];
1139 if ( !$clock || $clock ===
'wall' ) {
1140 $ret[
'wall'] = microtime(
true );
1142 if ( !$clock || $clock ===
'cpu' ) {
1145 $ret[
'cpu'] = $ru[
'ru_utime.tv_sec'] + $ru[
'ru_utime.tv_usec'] / 1e6;
1146 $ret[
'cpu'] += $ru[
'ru_stime.tv_sec'] + $ru[
'ru_stime.tv_usec'] / 1e6;
1157 $this->mParseStartTime = self::getTimes();
1172 if ( !isset( $this->mParseStartTime[$clock] ) ) {
1176 $end = self::getTimes( $clock );
1177 return $end[$clock] - $this->mParseStartTime[$clock];
1200 $this->mLimitReportData[$key] =
$value;
1202 if ( is_array(
$value ) ) {
1203 if ( array_keys(
$value ) === [ 0, 1 ]
1204 && is_numeric(
$value[0] )
1205 && is_numeric(
$value[1] )
1207 $data = [
'value' =>
$value[0],
'limit' =>
$value[1] ];
1215 if ( strpos( $key,
'-' ) ) {
1216 list( $ns, $name ) = explode(
'-', $key, 2 );
1217 $this->mLimitReportJSData[$ns][
$name] = $data;
1219 $this->mLimitReportJSData[$key] = $data;
1247 return wfSetVar( $this->mPreventClickjacking, $flag );
1257 $this->mMaxAdaptiveExpiry = min( $ttl, $this->mMaxAdaptiveExpiry );
1267 if ( is_infinite( $this->mMaxAdaptiveExpiry ) ) {
1272 if ( is_float( $runtime ) ) {
1273 $slope = ( self::SLOW_AR_TTL - self::FAST_AR_TTL )
1274 / ( self::PARSE_SLOW_SEC - self::PARSE_FAST_SEC );
1276 $point = self::SLOW_AR_TTL - self::PARSE_SLOW_SEC * $slope;
1279 max( $slope * $runtime + $point, self::MIN_AR_TTL ),
1280 $this->mMaxAdaptiveExpiry
1288 array_keys( get_object_vars( $this ) ),
1289 [
'mParseStartTime' ]
1301 $this->mOutputHooks = self::mergeList( $this->mOutputHooks,
$source->getOutputHooks() );
1302 $this->mWarnings = self::mergeMap( $this->mWarnings,
$source->mWarnings );
1303 $this->mTimestamp = $this->
useMaxValue( $this->mTimestamp,
$source->getTimestamp() );
1305 if ( $this->mSpeculativeRevId &&
$source->mSpeculativeRevId
1306 && $this->mSpeculativeRevId !==
$source->mSpeculativeRevId
1309 'Inconsistent speculative revision ID encountered while merging parser output!'
1314 $this->mSpeculativeRevId,
1315 $source->getSpeculativeRevIdUsed()
1318 $this->mParseStartTime,
1322 $this->mFlags = self::mergeMap( $this->mFlags,
$source->mFlags );
1323 $this->mAccessedOptions = self::mergeMap( $this->mAccessedOptions,
$source->mAccessedOptions );
1326 if ( empty( $this->mLimitReportData ) ) {
1327 $this->mLimitReportData =
$source->mLimitReportData;
1329 if ( empty( $this->mLimitReportJSData ) ) {
1330 $this->mLimitReportJSData =
$source->mLimitReportJSData;
1343 $this->mHeadItems = self::mergeMixedList( $this->mHeadItems,
$source->getHeadItems() );
1344 $this->mModules = self::mergeList( $this->mModules,
$source->getModules() );
1345 $this->mModuleScripts = self::mergeList( $this->mModuleScripts,
$source->getModuleScripts() );
1346 $this->mModuleStyles = self::mergeList( $this->mModuleStyles,
$source->getModuleStyles() );
1347 $this->mJsConfigVars = self::mergeMap( $this->mJsConfigVars,
$source->getJsConfigVars() );
1348 $this->mMaxAdaptiveExpiry = min( $this->mMaxAdaptiveExpiry,
$source->mMaxAdaptiveExpiry );
1351 if ( $this->mIndexPolicy ===
'noindex' ||
$source->mIndexPolicy ===
'noindex' ) {
1352 $this->mIndexPolicy =
'noindex';
1353 } elseif ( $this->mIndexPolicy !==
'index' ) {
1354 $this->mIndexPolicy =
$source->mIndexPolicy;
1358 $this->mNewSection = $this->mNewSection ||
$source->getNewSection();
1359 $this->mHideNewSection = $this->mHideNewSection ||
$source->getHideNewSection();
1360 $this->mNoGallery = $this->mNoGallery ||
$source->getNoGallery();
1361 $this->mEnableOOUI = $this->mEnableOOUI ||
$source->getEnableOOUI();
1362 $this->mPreventClickjacking = $this->mPreventClickjacking ||
$source->preventClickjacking();
1365 $this->mSections = array_merge( $this->mSections,
$source->getSections() );
1366 $this->mTOCHTML = $this->mTOCHTML .
$source->mTOCHTML;
1370 if ( $this->mTitleText ===
null || $this->mTitleText ===
'' ) {
1371 $this->mTitleText =
$source->mTitleText;
1375 $this->mWrapperDivClasses = self::mergeMap(
1376 $this->mWrapperDivClasses,
1381 $this->mIndicators = self::mergeMap( $this->mIndicators,
$source->getIndicators() );
1386 $this->mExtensionData = self::mergeMap(
1387 $this->mExtensionData,
1400 $this->mLanguageLinks = self::mergeList( $this->mLanguageLinks,
$source->getLanguageLinks() );
1401 $this->mCategories = self::mergeMap( $this->mCategories,
$source->getCategories() );
1402 $this->mLinks = self::merge2D( $this->mLinks,
$source->getLinks() );
1403 $this->mTemplates = self::merge2D( $this->mTemplates,
$source->getTemplates() );
1404 $this->mTemplateIds = self::merge2D( $this->mTemplateIds,
$source->getTemplateIds() );
1405 $this->mImages = self::mergeMap( $this->mImages,
$source->getImages() );
1406 $this->mFileSearchOptions = self::mergeMap(
1407 $this->mFileSearchOptions,
1408 $source->getFileSearchOptions()
1410 $this->mExternalLinks = self::mergeMap( $this->mExternalLinks,
$source->getExternalLinks() );
1411 $this->mInterwikiLinks = self::merge2D(
1412 $this->mInterwikiLinks,
1418 $this->mProperties = self::mergeMap( $this->mProperties,
$source->getProperties() );
1423 $this->mExtensionData = self::mergeMap(
1424 $this->mExtensionData,
1430 return array_unique( array_merge( $a, $b ), SORT_REGULAR );
1434 return array_values( array_unique( array_merge( $a, $b ), SORT_REGULAR ) );
1438 return array_replace( $a, $b );
1443 $keys = array_merge( array_keys( $a ), array_keys( $b ) );
1445 foreach (
$keys as $k ) {
1446 if ( empty( $a[$k] ) ) {
1447 $values[$k] = $b[$k];
1448 } elseif ( empty( $b[$k] ) ) {
1449 $values[$k] = $a[$k];
1450 } elseif ( is_array( $a[$k] ) && is_array( $b[$k] ) ) {
1451 $values[$k] = array_replace( $a[$k], $b[$k] );
1453 $values[$k] = $b[$k];
1462 $keys = array_merge( array_keys( $a ), array_keys( $b ) );
1464 foreach (
$keys as $k ) {
1465 if ( is_array( $a[$k] ??
null ) && is_array( $b[$k] ??
null ) ) {
1466 $values[$k] = self::useEachMinValue( $a[$k], $b[$k] );
1468 $values[$k] = self::useMinValue( $a[$k] ??
null, $b[$k] ??
null );
1476 if ( $a ===
null ) {
1480 if ( $b ===
null ) {
1484 return min( $a, $b );
1488 if ( $a ===
null ) {
1492 if ( $b ===
null ) {
1496 return max( $a, $b );
Apache License January http
$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)
addModuleScripts( $modules)
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
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
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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
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
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 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.