MediaWiki  1.28.1
LanguageConverter.php
Go to the documentation of this file.
1 <?php
22 
38  static public $languagesWithVariants = [
39  'gan',
40  'iu',
41  'kk',
42  'ku',
43  'shi',
44  'sr',
45  'tg',
46  'uz',
47  'zh',
48  ];
49 
51  public $mVariants;
54  public $mTablesLoaded = false;
55  public $mTables;
56  // 'bidirectional' 'unidirectional' 'disable' for each variant
57  public $mManualLevel;
58 
62  public $mCacheKey;
63 
64  public $mLangObj;
65  public $mFlags;
66  public $mDescCodeSep = ':', $mDescVarSep = ';';
67  public $mUcfirst = false;
68  public $mConvRuleTitle = false;
69  public $mURLVariant;
70  public $mUserVariant;
72  public $mMaxDepth = 10;
74 
75  const CACHE_VERSION_KEY = 'VERSION 7';
76 
87  public function __construct( $langobj, $maincode, $variants = [],
88  $variantfallbacks = [], $flags = [],
89  $manualLevel = [] ) {
91  $this->mLangObj = $langobj;
92  $this->mMainLanguageCode = $maincode;
93  $this->mVariants = array_diff( $variants, $wgDisabledVariants );
94  $this->mVariantFallbacks = $variantfallbacks;
95  $this->mVariantNames = Language::fetchLanguageNames();
96  $this->mCacheKey = wfMemcKey( 'conversiontables', $maincode );
97  $defaultflags = [
98  // 'S' show converted text
99  // '+' add rules for alltext
100  // 'E' the gave flags is error
101  // these flags above are reserved for program
102  'A' => 'A', // add rule for convert code (all text convert)
103  'T' => 'T', // title convert
104  'R' => 'R', // raw content
105  'D' => 'D', // convert description (subclass implement)
106  '-' => '-', // remove convert (not implement)
107  'H' => 'H', // add rule for convert code (but no display in placed code)
108  'N' => 'N' // current variant name
109  ];
110  $this->mFlags = array_merge( $defaultflags, $flags );
111  foreach ( $this->mVariants as $v ) {
112  if ( array_key_exists( $v, $manualLevel ) ) {
113  $this->mManualLevel[$v] = $manualLevel[$v];
114  } else {
115  $this->mManualLevel[$v] = 'bidirectional';
116  }
117  $this->mFlags[$v] = $v;
118  }
119  }
120 
127  public function getVariants() {
128  return $this->mVariants;
129  }
130 
142  public function getVariantFallbacks( $variant ) {
143  if ( isset( $this->mVariantFallbacks[$variant] ) ) {
144  return $this->mVariantFallbacks[$variant];
145  }
147  }
148 
153  public function getConvRuleTitle() {
154  return $this->mConvRuleTitle;
155  }
156 
161  public function getPreferredVariant() {
163 
164  $req = $this->getURLVariant();
165 
166  if ( $wgUser->isSafeToLoad() && $wgUser->isLoggedIn() && !$req ) {
167  $req = $this->getUserVariant();
168  } elseif ( !$req ) {
169  $req = $this->getHeaderVariant();
170  }
171 
172  if ( $wgDefaultLanguageVariant && !$req ) {
173  $req = $this->validateVariant( $wgDefaultLanguageVariant );
174  }
175 
176  // This function, unlike the other get*Variant functions, is
177  // not memoized (i.e. there return value is not cached) since
178  // new information might appear during processing after this
179  // is first called.
180  if ( $this->validateVariant( $req ) ) {
181  return $req;
182  }
184  }
185 
191  public function getDefaultVariant() {
193 
194  $req = $this->getURLVariant();
195 
196  if ( !$req ) {
197  $req = $this->getHeaderVariant();
198  }
199 
200  if ( $wgDefaultLanguageVariant && !$req ) {
201  $req = $this->validateVariant( $wgDefaultLanguageVariant );
202  }
203 
204  if ( $req ) {
205  return $req;
206  }
208  }
209 
215  public function validateVariant( $variant = null ) {
216  if ( $variant !== null && in_array( $variant, $this->mVariants ) ) {
217  return $variant;
218  }
219  return null;
220  }
221 
227  public function getURLVariant() {
229 
230  if ( $this->mURLVariant ) {
231  return $this->mURLVariant;
232  }
233 
234  // see if the preference is set in the request
235  $ret = $wgRequest->getText( 'variant' );
236 
237  if ( !$ret ) {
238  $ret = $wgRequest->getVal( 'uselang' );
239  }
240 
241  $this->mURLVariant = $this->validateVariant( $ret );
242  return $this->mURLVariant;
243  }
244 
250  protected function getUserVariant() {
252 
253  // memoizing this function wreaks havoc on parserTest.php
254  /*
255  if ( $this->mUserVariant ) {
256  return $this->mUserVariant;
257  }
258  */
259 
260  // Get language variant preference from logged in users
261  // Don't call this on stub objects because that causes infinite
262  // recursion during initialisation
263  if ( !$wgUser->isSafeToLoad() ) {
264  return false;
265  }
266  if ( $wgUser->isLoggedIn() ) {
267  if ( $this->mMainLanguageCode == $wgContLang->getCode() ) {
268  $ret = $wgUser->getOption( 'variant' );
269  } else {
270  $ret = $wgUser->getOption( 'variant-' . $this->mMainLanguageCode );
271  }
272  } else {
273  // figure out user lang without constructing wgLang to avoid
274  // infinite recursion
275  $ret = $wgUser->getOption( 'language' );
276  }
277 
278  $this->mUserVariant = $this->validateVariant( $ret );
279  return $this->mUserVariant;
280  }
281 
287  protected function getHeaderVariant() {
289 
290  if ( $this->mHeaderVariant ) {
291  return $this->mHeaderVariant;
292  }
293 
294  // see if some supported language variant is set in the
295  // HTTP header.
296  $languages = array_keys( $wgRequest->getAcceptLang() );
297  if ( empty( $languages ) ) {
298  return null;
299  }
300 
301  $fallbackLanguages = [];
302  foreach ( $languages as $language ) {
303  $this->mHeaderVariant = $this->validateVariant( $language );
304  if ( $this->mHeaderVariant ) {
305  break;
306  }
307 
308  // To see if there are fallbacks of current language.
309  // We record these fallback variants, and process
310  // them later.
311  $fallbacks = $this->getVariantFallbacks( $language );
312  if ( is_string( $fallbacks ) && $fallbacks !== $this->mMainLanguageCode ) {
313  $fallbackLanguages[] = $fallbacks;
314  } elseif ( is_array( $fallbacks ) ) {
315  $fallbackLanguages =
316  array_merge( $fallbackLanguages, $fallbacks );
317  }
318  }
319 
320  if ( !$this->mHeaderVariant ) {
321  // process fallback languages now
322  $fallback_languages = array_unique( $fallbackLanguages );
323  foreach ( $fallback_languages as $language ) {
324  $this->mHeaderVariant = $this->validateVariant( $language );
325  if ( $this->mHeaderVariant ) {
326  break;
327  }
328  }
329  }
330 
331  return $this->mHeaderVariant;
332  }
333 
344  public function autoConvert( $text, $toVariant = false ) {
345 
346  $this->loadTables();
347 
348  if ( !$toVariant ) {
349  $toVariant = $this->getPreferredVariant();
350  if ( !$toVariant ) {
351  return $text;
352  }
353  }
354 
355  if ( $this->guessVariant( $text, $toVariant ) ) {
356  return $text;
357  }
358 
359  /* we convert everything except:
360  1. HTML markups (anything between < and >)
361  2. HTML entities
362  3. placeholders created by the parser
363  */
364  $marker = '|' . Parser::MARKER_PREFIX . '[\-a-zA-Z0-9]+';
365 
366  // this one is needed when the text is inside an HTML markup
367  $htmlfix = '|<[^>]+$|^[^<>]*>';
368 
369  // disable convert to variants between <code> tags
370  $codefix = '<code>.+?<\/code>|';
371  // disable conversion of <script> tags
372  $scriptfix = '<script.*?>.*?<\/script>|';
373  // disable conversion of <pre> tags
374  $prefix = '<pre.*?>.*?<\/pre>|';
375 
376  $reg = '/' . $codefix . $scriptfix . $prefix .
377  '<[^>]+>|&[a-zA-Z#][a-z0-9]+;' . $marker . $htmlfix . '/s';
378  $startPos = 0;
379  $sourceBlob = '';
380  $literalBlob = '';
381 
382  // Guard against delimiter nulls in the input
383  $text = str_replace( "\000", '', $text );
384 
385  $markupMatches = null;
386  $elementMatches = null;
387  while ( $startPos < strlen( $text ) ) {
388  if ( preg_match( $reg, $text, $markupMatches, PREG_OFFSET_CAPTURE, $startPos ) ) {
389  $elementPos = $markupMatches[0][1];
390  $element = $markupMatches[0][0];
391  } else {
392  $elementPos = strlen( $text );
393  $element = '';
394  }
395 
396  // Queue the part before the markup for translation in a batch
397  $sourceBlob .= substr( $text, $startPos, $elementPos - $startPos ) . "\000";
398 
399  // Advance to the next position
400  $startPos = $elementPos + strlen( $element );
401 
402  // Translate any alt or title attributes inside the matched element
403  if ( $element !== ''
404  && preg_match( '/^(<[^>\s]*)\s([^>]*)(.*)$/', $element, $elementMatches )
405  ) {
406  $attrs = Sanitizer::decodeTagAttributes( $elementMatches[2] );
407  $changed = false;
408  foreach ( [ 'title', 'alt' ] as $attrName ) {
409  if ( !isset( $attrs[$attrName] ) ) {
410  continue;
411  }
412  $attr = $attrs[$attrName];
413  // Don't convert URLs
414  if ( !strpos( $attr, '://' ) ) {
415  $attr = $this->recursiveConvertTopLevel( $attr, $toVariant );
416  }
417 
418  // Remove HTML tags to avoid disrupting the layout
419  $attr = preg_replace( '/<[^>]+>/', '', $attr );
420  if ( $attr !== $attrs[$attrName] ) {
421  $attrs[$attrName] = $attr;
422  $changed = true;
423  }
424  }
425  if ( $changed ) {
426  $element = $elementMatches[1] . Html::expandAttributes( $attrs ) .
427  $elementMatches[3];
428  }
429  }
430  $literalBlob .= $element . "\000";
431  }
432 
433  // Do the main translation batch
434  $translatedBlob = $this->translate( $sourceBlob, $toVariant );
435 
436  // Put the output back together
437  $translatedIter = StringUtils::explode( "\000", $translatedBlob );
438  $literalIter = StringUtils::explode( "\000", $literalBlob );
439  $output = '';
440  while ( $translatedIter->valid() && $literalIter->valid() ) {
441  $output .= $translatedIter->current();
442  $output .= $literalIter->current();
443  $translatedIter->next();
444  $literalIter->next();
445  }
446 
447  return $output;
448  }
449 
459  public function translate( $text, $variant ) {
460  // If $text is empty or only includes spaces, do nothing
461  // Otherwise translate it
462  if ( trim( $text ) ) {
463  $this->loadTables();
464  $text = $this->mTables[$variant]->replace( $text );
465  }
466  return $text;
467  }
468 
475  public function autoConvertToAllVariants( $text ) {
476  $this->loadTables();
477 
478  $ret = [];
479  foreach ( $this->mVariants as $variant ) {
480  $ret[$variant] = $this->translate( $text, $variant );
481  }
482 
483  return $ret;
484  }
485 
491  protected function applyManualConv( $convRule ) {
492  // Use syntax -{T|zh-cn:TitleCN; zh-tw:TitleTw}- to custom
493  // title conversion.
494  // Bug 24072: $mConvRuleTitle was overwritten by other manual
495  // rule(s) not for title, this breaks the title conversion.
496  $newConvRuleTitle = $convRule->getTitle();
497  if ( $newConvRuleTitle ) {
498  // So I add an empty check for getTitle()
499  $this->mConvRuleTitle = $newConvRuleTitle;
500  }
501 
502  // merge/remove manual conversion rules to/from global table
503  $convTable = $convRule->getConvTable();
504  $action = $convRule->getRulesAction();
505  foreach ( $convTable as $variant => $pair ) {
506  if ( !$this->validateVariant( $variant ) ) {
507  continue;
508  }
509 
510  if ( $action == 'add' ) {
511  // More efficient than array_merge(), about 2.5 times.
512  foreach ( $pair as $from => $to ) {
513  $this->mTables[$variant]->setPair( $from, $to );
514  }
515  } elseif ( $action == 'remove' ) {
516  $this->mTables[$variant]->removeArray( $pair );
517  }
518  }
519  }
520 
528  public function convertTitle( $title ) {
529  $variant = $this->getPreferredVariant();
530  $index = $title->getNamespace();
531  if ( $index !== NS_MAIN ) {
532  $text = $this->convertNamespace( $index, $variant ) . ':';
533  } else {
534  $text = '';
535  }
536  $text .= $this->translate( $title->getText(), $variant );
537  return $text;
538  }
539 
547  public function convertNamespace( $index, $variant = null ) {
548  if ( $index === NS_MAIN ) {
549  return '';
550  }
551 
552  if ( $variant === null ) {
553  $variant = $this->getPreferredVariant();
554  }
555 
556  $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
557  $key = $cache->makeKey( 'languageconverter', 'namespace-text', $index, $variant );
558  $nsVariantText = $cache->get( $key );
559  if ( $nsVariantText !== false ) {
560  return $nsVariantText;
561  }
562 
563  // First check if a message gives a converted name in the target variant.
564  $nsConvMsg = wfMessage( 'conversion-ns' . $index )->inLanguage( $variant );
565  if ( $nsConvMsg->exists() ) {
566  $nsVariantText = $nsConvMsg->plain();
567  }
568 
569  // Then check if a message gives a converted name in content language
570  // which needs extra translation to the target variant.
571  if ( $nsVariantText === false ) {
572  $nsConvMsg = wfMessage( 'conversion-ns' . $index )->inContentLanguage();
573  if ( $nsConvMsg->exists() ) {
574  $nsVariantText = $this->translate( $nsConvMsg->plain(), $variant );
575  }
576  }
577 
578  if ( $nsVariantText === false ) {
579  // No message exists, retrieve it from the target variant's namespace names.
580  $langObj = $this->mLangObj->factory( $variant );
581  $nsVariantText = $langObj->getFormattedNsText( $index );
582  }
583 
584  $cache->set( $key, $nsVariantText, 60 );
585 
586  return $nsVariantText;
587  }
588 
603  public function convert( $text ) {
604  $variant = $this->getPreferredVariant();
605  return $this->convertTo( $text, $variant );
606  }
607 
615  public function convertTo( $text, $variant ) {
617  if ( $wgDisableLangConversion ) {
618  return $text;
619  }
620  // Reset converter state for a new converter run.
621  $this->mConvRuleTitle = false;
622  return $this->recursiveConvertTopLevel( $text, $variant );
623  }
624 
634  protected function recursiveConvertTopLevel( $text, $variant, $depth = 0 ) {
635  $startPos = 0;
636  $out = '';
637  $length = strlen( $text );
638  $shouldConvert = !$this->guessVariant( $text, $variant );
639 
640  while ( $startPos < $length ) {
641  $pos = strpos( $text, '-{', $startPos );
642 
643  if ( $pos === false ) {
644  // No more markup, append final segment
645  $fragment = substr( $text, $startPos );
646  $out .= $shouldConvert ? $this->autoConvert( $fragment, $variant ) : $fragment;
647  return $out;
648  }
649 
650  // Markup found
651  // Append initial segment
652  $fragment = substr( $text, $startPos, $pos - $startPos );
653  $out .= $shouldConvert ? $this->autoConvert( $fragment, $variant ) : $fragment;
654 
655  // Advance position
656  $startPos = $pos;
657 
658  // Do recursive conversion
659  $out .= $this->recursiveConvertRule( $text, $variant, $startPos, $depth + 1 );
660  }
661 
662  return $out;
663  }
664 
676  protected function recursiveConvertRule( $text, $variant, &$startPos, $depth = 0 ) {
677  // Quick sanity check (no function calls)
678  if ( $text[$startPos] !== '-' || $text[$startPos + 1] !== '{' ) {
679  throw new MWException( __METHOD__ . ': invalid input string' );
680  }
681 
682  $startPos += 2;
683  $inner = '';
684  $warningDone = false;
685  $length = strlen( $text );
686 
687  while ( $startPos < $length ) {
688  $m = false;
689  preg_match( '/-\{|\}-/', $text, $m, PREG_OFFSET_CAPTURE, $startPos );
690  if ( !$m ) {
691  // Unclosed rule
692  break;
693  }
694 
695  $token = $m[0][0];
696  $pos = $m[0][1];
697 
698  // Markup found
699  // Append initial segment
700  $inner .= substr( $text, $startPos, $pos - $startPos );
701 
702  // Advance position
703  $startPos = $pos;
704 
705  switch ( $token ) {
706  case '-{':
707  // Check max depth
708  if ( $depth >= $this->mMaxDepth ) {
709  $inner .= '-{';
710  if ( !$warningDone ) {
711  $inner .= '<span class="error">' .
712  wfMessage( 'language-converter-depth-warning' )
713  ->numParams( $this->mMaxDepth )->inContentLanguage()->text() .
714  '</span>';
715  $warningDone = true;
716  }
717  $startPos += 2;
718  continue;
719  }
720  // Recursively parse another rule
721  $inner .= $this->recursiveConvertRule( $text, $variant, $startPos, $depth + 1 );
722  break;
723  case '}-':
724  // Apply the rule
725  $startPos += 2;
726  $rule = new ConverterRule( $inner, $this );
727  $rule->parse( $variant );
728  $this->applyManualConv( $rule );
729  return $rule->getDisplay();
730  default:
731  throw new MWException( __METHOD__ . ': invalid regex match' );
732  }
733  }
734 
735  // Unclosed rule
736  if ( $startPos < $length ) {
737  $inner .= substr( $text, $startPos );
738  }
739  $startPos = $length;
740  return '-{' . $this->autoConvert( $inner, $variant );
741  }
742 
754  public function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
755  # If the article has already existed, there is no need to
756  # check it again, otherwise it may cause a fault.
757  if ( is_object( $nt ) && $nt->exists() ) {
758  return;
759  }
760 
762  $isredir = $wgRequest->getText( 'redirect', 'yes' );
763  $action = $wgRequest->getText( 'action' );
764  if ( $action == 'edit' && $wgRequest->getBool( 'redlink' ) ) {
765  $action = 'view';
766  }
767  $linkconvert = $wgRequest->getText( 'linkconvert', 'yes' );
768  $disableLinkConversion = $wgDisableLangConversion
770  $linkBatch = new LinkBatch();
771 
772  $ns = NS_MAIN;
773 
774  if ( $disableLinkConversion ||
775  ( !$ignoreOtherCond &&
776  ( $isredir == 'no'
777  || $action == 'edit'
778  || $action == 'submit'
779  || $linkconvert == 'no' ) ) ) {
780  return;
781  }
782 
783  if ( is_object( $nt ) ) {
784  $ns = $nt->getNamespace();
785  }
786 
787  $variants = $this->autoConvertToAllVariants( $link );
788  if ( !$variants ) { // give up
789  return;
790  }
791 
792  $titles = [];
793 
794  foreach ( $variants as $v ) {
795  if ( $v != $link ) {
796  $varnt = Title::newFromText( $v, $ns );
797  if ( !is_null( $varnt ) ) {
798  $linkBatch->addObj( $varnt );
799  $titles[] = $varnt;
800  }
801  }
802  }
803 
804  // fetch all variants in single query
805  $linkBatch->execute();
806 
807  foreach ( $titles as $varnt ) {
808  if ( $varnt->getArticleID() > 0 ) {
809  $nt = $varnt;
810  $link = $varnt->getText();
811  break;
812  }
813  }
814  }
815 
821  public function getExtraHashOptions() {
822  $variant = $this->getPreferredVariant();
823 
824  return '!' . $variant;
825  }
826 
837  public function guessVariant( $text, $variant ) {
838  return false;
839  }
840 
848  function loadDefaultTables() {
849  $name = get_class( $this );
850 
851  throw new MWException( "Must implement loadDefaultTables() method in class $name" );
852  }
853 
859  function loadTables( $fromCache = true ) {
861 
862  if ( $this->mTablesLoaded ) {
863  return;
864  }
865 
866  $this->mTablesLoaded = true;
867  $this->mTables = false;
868  $cache = ObjectCache::getInstance( $wgLanguageConverterCacheType );
869  if ( $fromCache ) {
870  wfProfileIn( __METHOD__ . '-cache' );
871  $this->mTables = $cache->get( $this->mCacheKey );
872  wfProfileOut( __METHOD__ . '-cache' );
873  }
874  if ( !$this->mTables || !array_key_exists( self::CACHE_VERSION_KEY, $this->mTables ) ) {
875  wfProfileIn( __METHOD__ . '-recache' );
876  // not in cache, or we need a fresh reload.
877  // We will first load the default tables
878  // then update them using things in MediaWiki:Conversiontable/*
879  $this->loadDefaultTables();
880  foreach ( $this->mVariants as $var ) {
881  $cached = $this->parseCachedTable( $var );
882  $this->mTables[$var]->mergeArray( $cached );
883  }
884 
885  $this->postLoadTables();
886  $this->mTables[self::CACHE_VERSION_KEY] = true;
887 
888  $cache->set( $this->mCacheKey, $this->mTables, 43200 );
889  wfProfileOut( __METHOD__ . '-recache' );
890  }
891  }
892 
896  function postLoadTables() {
897  }
898 
904  function reloadTables() {
905  if ( $this->mTables ) {
906  unset( $this->mTables );
907  }
908 
909  $this->mTablesLoaded = false;
910  $this->loadTables( false );
911  }
912 
932  function parseCachedTable( $code, $subpage = '', $recursive = true ) {
933  static $parsed = [];
934 
935  $key = 'Conversiontable/' . $code;
936  if ( $subpage ) {
937  $key .= '/' . $subpage;
938  }
939  if ( array_key_exists( $key, $parsed ) ) {
940  return [];
941  }
942 
943  $parsed[$key] = true;
944 
945  if ( $subpage === '' ) {
946  $txt = MessageCache::singleton()->getMsgFromNamespace( $key, $code );
947  } else {
948  $txt = false;
950  if ( $title && $title->exists() ) {
951  $revision = Revision::newFromTitle( $title );
952  if ( $revision ) {
953  if ( $revision->getContentModel() == CONTENT_MODEL_WIKITEXT ) {
954  $txt = $revision->getContent( Revision::RAW )->getNativeData();
955  }
956 
957  // @todo in the future, use a specialized content model, perhaps based on json!
958  }
959  }
960  }
961 
962  # Nothing to parse if there's no text
963  if ( $txt === false || $txt === null || $txt === '' ) {
964  return [];
965  }
966 
967  // get all subpage links of the form
968  // [[MediaWiki:Conversiontable/zh-xx/...|...]]
969  $linkhead = $this->mLangObj->getNsText( NS_MEDIAWIKI ) .
970  ':Conversiontable';
971  $subs = StringUtils::explode( '[[', $txt );
972  $sublinks = [];
973  foreach ( $subs as $sub ) {
974  $link = explode( ']]', $sub, 2 );
975  if ( count( $link ) != 2 ) {
976  continue;
977  }
978  $b = explode( '|', $link[0], 2 );
979  $b = explode( '/', trim( $b[0] ), 3 );
980  if ( count( $b ) == 3 ) {
981  $sublink = $b[2];
982  } else {
983  $sublink = '';
984  }
985 
986  if ( $b[0] == $linkhead && $b[1] == $code ) {
987  $sublinks[] = $sublink;
988  }
989  }
990 
991  // parse the mappings in this page
992  $blocks = StringUtils::explode( '-{', $txt );
993  $ret = [];
994  $first = true;
995  foreach ( $blocks as $block ) {
996  if ( $first ) {
997  // Skip the part before the first -{
998  $first = false;
999  continue;
1000  }
1001  $mappings = explode( '}-', $block, 2 )[0];
1002  $stripped = str_replace( [ "'", '"', '*', '#' ], '', $mappings );
1003  $table = StringUtils::explode( ';', $stripped );
1004  foreach ( $table as $t ) {
1005  $m = explode( '=>', $t, 3 );
1006  if ( count( $m ) != 2 ) {
1007  continue;
1008  }
1009  // trim any trailling comments starting with '//'
1010  $tt = explode( '//', $m[1], 2 );
1011  $ret[trim( $m[0] )] = trim( $tt[0] );
1012  }
1013  }
1014 
1015  // recursively parse the subpages
1016  if ( $recursive ) {
1017  foreach ( $sublinks as $link ) {
1018  $s = $this->parseCachedTable( $code, $link, $recursive );
1019  $ret = $s + $ret;
1020  }
1021  }
1022 
1023  if ( $this->mUcfirst ) {
1024  foreach ( $ret as $k => $v ) {
1025  $ret[$this->mLangObj->ucfirst( $k )] = $this->mLangObj->ucfirst( $v );
1026  }
1027  }
1028  return $ret;
1029  }
1030 
1039  public function markNoConversion( $text, $noParse = false ) {
1040  # don't mark if already marked
1041  if ( strpos( $text, '-{' ) || strpos( $text, '}-' ) ) {
1042  return $text;
1043  }
1044 
1045  $ret = "-{R|$text}-";
1046  return $ret;
1047  }
1048 
1057  function convertCategoryKey( $key ) {
1058  return $key;
1059  }
1060 
1067  public function updateConversionTable( Title $titleobj ) {
1068  if ( $titleobj->getNamespace() == NS_MEDIAWIKI ) {
1069  $title = $titleobj->getDBkey();
1070  $t = explode( '/', $title, 3 );
1071  $c = count( $t );
1072  if ( $c > 1 && $t[0] == 'Conversiontable' ) {
1073  if ( $this->validateVariant( $t[1] ) ) {
1074  $this->reloadTables();
1075  }
1076  }
1077  }
1078  }
1079 
1085  if ( is_null( $this->mVarSeparatorPattern ) ) {
1086  // varsep_pattern for preg_split:
1087  // text should be splited by ";" only if a valid variant
1088  // name exist after the markup, for example:
1089  // -{zh-hans:<span style="font-size:120%;">xxx</span>;zh-hant:\
1090  // <span style="font-size:120%;">yyy</span>;}-
1091  // we should split it as:
1092  // [
1093  // [0] => 'zh-hans:<span style="font-size:120%;">xxx</span>'
1094  // [1] => 'zh-hant:<span style="font-size:120%;">yyy</span>'
1095  // [2] => ''
1096  // ]
1097  $pat = '/;\s*(?=';
1098  foreach ( $this->mVariants as $variant ) {
1099  // zh-hans:xxx;zh-hant:yyy
1100  $pat .= $variant . '\s*:|';
1101  // xxx=>zh-hans:yyy; xxx=>zh-hant:zzz
1102  $pat .= '[^;]*?=>\s*' . $variant . '\s*:|';
1103  }
1104  $pat .= '\s*$)/';
1105  $this->mVarSeparatorPattern = $pat;
1106  }
1108  }
1109 }
convertCategoryKey($key)
Convert the sorting key for category links.
const MARKER_PREFIX
Definition: Parser.php:134
updateConversionTable(Title $titleobj)
Refresh the cache of conversion tables when MediaWiki:Conversiontable* is updated.
static decodeTagAttributes($text)
Return an associative array of attribute names and values from a partial tag string.
Definition: Sanitizer.php:1287
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
Definition: hooks.txt:802
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:239
__construct($langobj, $maincode, $variants=[], $variantfallbacks=[], $flags=[], $manualLevel=[])
Constructor.
const NS_MAIN
Definition: Defines.php:56
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
Definition: hooks.txt:1936
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
convertTo($text, $variant)
Same as convert() except a extra parameter to custom variant.
if(!$wgDBerrorLogTZ) $wgRequest
Definition: Setup.php:664
getVarSeparatorPattern()
Get the cached separator pattern for ConverterRule::parseRules()
static getInstance($id)
Get a cached instance of the specified type of cache object.
Definition: ObjectCache.php:92
wfProfileIn($functionname)
Begin profiling of a function.
recursiveConvertTopLevel($text, $variant, $depth=0)
Recursively convert text on the outside.
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 MediaWikiServices
Definition: injection.txt:23
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2703
Base class for language conversion.
getExtraHashOptions()
Returns language specific hash options.
markNoConversion($text, $noParse=false)
Enclose a string with the "no conversion" tag.
parseCachedTable($code, $subpage= '', $recursive=true)
Parse the conversion table stored in the cache.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:262
loadTables($fromCache=true)
Load conversion tables either from the cache or the disk.
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target...
Definition: Revision.php:128
static fetchLanguageNames($inLanguage=null, $include= 'mw')
Get an array of language names, indexed by code.
Definition: Language.php:800
postLoadTables()
Hook for post processing after conversion tables are loaded.
wfProfileOut($functionname= 'missing')
Stop profiling of a function.
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2889
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:32
getVariantFallbacks($variant)
In case some variant is not defined in the markup, we need to have some fallback. ...
getDBkey()
Get the main part with underscores.
Definition: Title.php:898
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 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 unsetoffset-wrap String Wrap the message in html(usually something like"&lt
switch($options['output']) $languages
Definition: transstat.php:76
getURLVariant()
Get the variant specified in the URL.
findVariantLink(&$link, &$nt, $ignoreOtherCond=false)
If a language supports multiple variants, it is possible that non-existing link in one variant actual...
recursiveConvertRule($text, $variant, &$startPos, $depth=0)
Recursively convert text on the inside.
reloadTables()
Reload the conversion tables.
$cache
Definition: mcc.php:33
Parser for rules of language conversion , parse rules in -{ }- tag.
getUserVariant()
Determine if the user has a variant set.
translate($text, $variant)
Translate a string to a variant.
$wgLanguageConverterCacheType
The cache type for storing language conversion tables, which are used when parsing certain text and i...
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:535
$wgDisableTitleConversion
Whether to enable language variant conversion for links.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:953
$wgDisabledVariants
Disabled variants array of language variant conversion.
getVariants()
Get all valid variants.
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:921
static expandAttributes(array $attribs)
Given an associative array of element attributes, generate a string to stick after the element name i...
Definition: Html.php:470
const RAW
Definition: Revision.php:94
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
Definition: distributors.txt:9
$wgDisableLangConversion
Whether to enable language variant conversion.
$wgDefaultLanguageVariant
Default variant code, if false, the default will be the language code.
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 modifiable & $code
Definition: hooks.txt:802
const NS_MEDIAWIKI
Definition: Defines.php:64
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1046
$from
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
Definition: injection.txt:35
this hook is for auditing only $req
Definition: hooks.txt:1007
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition: linkcache.txt:17
getHeaderVariant()
Determine the language variant from the Accept-Language header.
guessVariant($text, $variant)
Guess if a text is written in a variant.
string $mCacheKey
Memcached key name.
getDefaultVariant()
Get default variant.
applyManualConv($convRule)
Apply manual conversion rules.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition: design.txt:56
autoConvert($text, $toVariant=false)
Dictionary-based conversion.
getConvRuleTitle()
Get the title produced by the conversion rule.
convert($text)
Convert text to different variants of a language.
wfMemcKey()
Make a cache key for the local wiki.
static explode($separator, $subject)
Workalike for explode() with limited memory usage.
validateVariant($variant=null)
Validate the variant.
convertNamespace($index, $variant=null)
Get the namespace display name in the preferred variant.
static array $languagesWithVariants
languages supporting variants
getPreferredVariant()
Get preferred language variant.
autoConvertToAllVariants($text)
Call translate() to convert text to all valid variants.
loadDefaultTables()
Load default conversion tables.
static singleton()
Get the signleton instance of this class.
$wgUser
Definition: Setup.php:806
convertTitle($title)
Auto convert a Title object to a readable string in the preferred variant.
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:300