46 $this->mConverter = $converter;
56 $variants = (
array)$variants;
60 foreach ( $variants
as $variant ) {
61 if ( isset( $this->mBidtable[$variant] ) ) {
62 return $this->mBidtable[$variant];
77 $sepPos = strpos( $text,
'|' );
78 if ( $sepPos !==
false ) {
79 $validFlags = $this->mConverter->mFlags;
81 foreach (
$f as $ff ) {
83 if ( isset( $validFlags[$ff] ) ) {
84 $flags[$validFlags[$ff]] =
true;
87 $text = strval( substr( $text, $sepPos + 1 ) );
92 } elseif ( isset( $flags[
'R'] ) ) {
93 $flags = [
'R' =>
true ];
94 } elseif ( isset( $flags[
'N'] ) ) {
95 $flags = [
'N' =>
true ];
96 } elseif ( isset( $flags[
'-'] ) ) {
97 $flags = [
'-' =>
true ];
98 } elseif ( count( $flags ) == 1 && isset( $flags[
'T'] ) ) {
100 } elseif ( isset( $flags[
'H'] ) ) {
102 $temp = [
'+' =>
true,
'H' =>
true ];
103 if ( isset( $flags[
'T'] ) ) {
106 if ( isset( $flags[
'D'] ) ) {
111 if ( isset( $flags[
'A'] ) ) {
115 if ( isset( $flags[
'D'] ) ) {
116 unset( $flags[
'S'] );
120 $variantFlags = array_intersect( array_keys( $flags ), $this->mConverter->mVariants );
121 if ( $variantFlags ) {
122 $variantFlags = array_flip( $variantFlags );
126 $this->mVariantFlags = $variantFlags;
127 $this->mRules = $text;
128 $this->mFlags = $flags;
139 $variants = $this->mConverter->mVariants;
140 $varsep_pattern = $this->mConverter->getVarSeparatorPattern();
143 $rules = preg_replace(
'/(&[#a-zA-Z0-9]+);/',
"$1\x01", $rules );
144 $choice = preg_split( $varsep_pattern, $rules );
145 $choice = str_replace(
"\x01",
';', $choice );
147 foreach ( $choice
as $c ) {
148 $v = explode(
':', $c, 2 );
149 if ( count( $v ) != 2 ) {
155 $u = explode(
'=>', $v, 2 );
156 $vv = $this->mConverter->validateVariant( $v );
159 if ( count( $u ) == 1 && $to !==
'' && $vv ) {
160 $bidtable[$vv] = $to;
161 } elseif ( count( $u ) == 2 ) {
162 $from = trim( $u[0] );
164 $vv = $this->mConverter->validateVariant( $v );
166 if ( array_key_exists( $vv, $unidtable )
167 && !is_array( $unidtable[$vv] )
170 $unidtable[$vv] = [ $from => $to ];
171 } elseif ( $from !==
'' && $vv ) {
172 $unidtable[$vv][$from] = $to;
176 if ( !isset( $this->mConverter->mVariantNames[$vv] ) ) {
182 $this->mBidtable = $bidtable;
183 $this->mUnidtable = $unidtable;
192 $codesep = $this->mConverter->mDescCodeSep;
193 $varsep = $this->mConverter->mDescVarSep;
195 foreach ( $this->mBidtable
as $k => $v ) {
196 $text .= $this->mConverter->mVariantNames[$k] .
"$codesep$v$varsep";
198 foreach ( $this->mUnidtable
as $k => $a ) {
199 foreach ( $a
as $from => $to ) {
200 $text .= $from .
'⇒' . $this->mConverter->mVariantNames[$k] .
201 "$codesep$to$varsep";
219 if ( count( $bidtable ) + count( $unidtable ) == 0 ) {
225 if ( $disp ===
false ) {
227 $this->mConverter->getVariantFallbacks( $variant ) );
230 if ( $disp ===
false && array_key_exists( $variant, $unidtable ) ) {
231 $disp = array_values( $unidtable[$variant] )[0];
234 if ( $disp ===
false && $this->mConverter->mManualLevel[$variant] ==
'disable' ) {
235 if ( count( $bidtable ) > 0 ) {
236 $disp = array_values( $bidtable )[0];
238 $disp = array_values( array_values( $unidtable )[0] )[0];
256 if ( $variant === $this->mConverter->mMainLanguageCode ) {
265 if ( array_key_exists( $variant, $this->mUnidtable ) ) {
266 $disp = array_values( $this->mUnidtable[$variant] )[0];
281 if ( !$this->mBidtable && !$this->mUnidtable ) {
282 $this->mConvTable = [];
288 $manLevel = $this->mConverter->mManualLevel;
291 foreach ( $this->mConverter->mVariants
as $v ) {
295 if ( !isset( $bidtable[$v] ) ) {
297 $this->mConverter->getVariantFallbacks( $v );
304 if ( isset( $bidtable[$v] ) ) {
305 foreach ( $vmarked
as $vo ) {
311 if ( $manLevel[$v] ==
'bidirectional' ) {
312 $this->mConvTable[$v][$bidtable[$vo]] = $bidtable[$v];
314 if ( $manLevel[$vo] ==
'bidirectional' ) {
315 $this->mConvTable[$vo][$bidtable[$v]] = $bidtable[$vo];
321 if ( ( $manLevel[$v] ==
'bidirectional' || $manLevel[$v] ==
'unidirectional' )
322 && isset( $unidtable[$v] )
324 if ( isset( $this->mConvTable[$v] ) ) {
325 $this->mConvTable[$v] = $unidtable[$v] + $this->mConvTable[$v];
327 $this->mConvTable[$v] = $unidtable[$v];
337 public function parse( $variant =
null ) {
339 $variant = $this->mConverter->getPreferredVariant();
347 if ( $this->mVariantFlags ) {
349 if ( isset( $this->mVariantFlags[$variant] ) ) {
351 $this->mRules = $this->mConverter->autoConvert( $this->mRules,
357 $this->mConverter->getVariantFallbacks( $variant );
358 if ( is_array( $variantFallbacks ) ) {
359 foreach ( $variantFallbacks
as $variantFallback ) {
361 if ( isset( $this->mVariantFlags[$variantFallback] ) ) {
364 $this->mConverter->autoConvert( $this->mRules,
371 $this->mFlags = $flags = [
'R' =>
true ];
374 if ( !isset( $flags[
'R'] ) && !isset( $flags[
'N'] ) ) {
376 $this->mRules = str_replace(
'=>',
'=>', $this->mRules );
381 if ( !$this->mBidtable && !$this->mUnidtable ) {
382 if ( isset( $flags[
'+'] ) || isset( $flags[
'-'] ) ) {
384 if ( $rules !==
'' ) {
385 foreach ( $this->mConverter->mVariants
as $v ) {
386 $this->mBidtable[$v] = $rules;
389 } elseif ( !isset( $flags[
'N'] ) && !isset( $flags[
'T'] ) ) {
390 $this->mFlags = $flags = [
'R' =>
true ];
394 $this->mRuleDisplay =
false;
395 foreach ( $flags
as $flag => $unused ) {
399 $this->mRuleDisplay = $rules;
403 $ruleVar = trim( $rules );
404 $this->mRuleDisplay = $this->mConverter->mVariantNames[$ruleVar] ??
'';
412 $this->mRuleDisplay =
'';
415 $this->mRulesAction =
'remove';
416 $this->mRuleDisplay =
'';
419 $this->mRulesAction =
'add';
420 $this->mRuleDisplay =
'';
427 $this->mRuleDisplay =
'';
433 if ( $this->mRuleDisplay ===
false ) {
434 $this->mRuleDisplay =
'<span class="error">'
435 .
wfMessage(
'converter-manual-rule-error' )->inContentLanguage()->escaped()
447 return $this->mRules !==
'';
Parser for rules of language conversion, parse rules in -{ }- tag.
getRules()
Get conversion rules string.
parse( $variant=null)
Parse rules and flags.
getFlags()
Get conversion flags.
getTextInBidtable( $variants)
Check if variants array in convert array.
getRuleConvertedTitle( $variant)
Similar to getRuleConvertedStr(), but this prefers to use original page title if $variant === $this->...
getDisplay()
Get display text on markup -{...}-.
getRulesAction()
Return how deal with conversion rules.
parseFlags()
Parse flags with syntax -{FLAG| ... }-.
__construct( $text, $converter)
getRuleConvertedStr( $variant)
Parse rules conversion.
generateConvTable()
Generate conversion table for all text.
parseRules()
Generate conversion table.
hasRules()
Checks if there are conversion rules.
getConvTable()
Get conversion table.
getTitle()
Get converted title.
static explode( $separator, $subject)
Workalike for explode() with limited memory usage.
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
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 just before the function returns a value If you return true
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
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))