Use the new and more accurate classes for Arabic per
[lhc/web/wiklou.git] / languages / LanguageConverter.php
index 69f148f..57af7bc 100644 (file)
@@ -34,7 +34,6 @@ class LanguageConverter {
        var $mFlags;
        var $mDescCodeSep = ':',$mDescVarSep = ';';
        var $mUcfirst = false;
-       var $mGroups = array();
 
        const CACHE_VERSION_KEY = 'VERSION 6';
 
@@ -426,22 +425,15 @@ class LanguageConverter {
         * @public
         */
        function parserConvert( $text, &$parser ) {
-               global $wgUser, $wgEnableVariants;
-
-               /* disable entire conversion engine if the user had been disabled it */
-               $variantConv = $wgUser->getOption( 'variantconversion' );
-               if ( ( $wgEnableVariants == true ) && ( $variantConv === 0 ) ) { 
-                       $wgEnableVariants = false;
-               }
-
+               global $wgDisableLangConversion;
                /* don't do anything if this is the conversion table */
                if ( $parser->getTitle()->getNamespace() == NS_MEDIAWIKI &&
-                                strpos($parser->mTitle->getText(), 'onversiontable') !== false ) 
+                                strpos($parser->mTitle->getText(), "Conversiontable") !== false ) 
                {
                        return $text;
                }
 
-               if ( !$wgEnableVariants )
+               if ( $wgDisableLangConversion )
                        return $text;
 
                $text = $this->convert( $text );
@@ -580,11 +572,11 @@ class LanguageConverter {
         * @public
         */
        function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
-               global $wgEnableVariants, $wgDisableTitleConversion, $wgRequest, $wgUser;
+               global $wgDisableLangConversion, $wgDisableTitleConversion, $wgRequest, $wgUser;
                $isredir = $wgRequest->getText( 'redirect', 'yes' );
                $action = $wgRequest->getText( 'action' );
                $linkconvert = $wgRequest->getText( 'linkconvert', 'yes' );
-               $disableLinkConversion = !$wgEnableVariants || $wgDisableTitleConversion;
+               $disableLinkConversion = $wgDisableLangConversion || $wgDisableTitleConversion;
                $linkBatch = new LinkBatch();
 
                $ns=NS_MAIN;
@@ -685,7 +677,7 @@ class LanguageConverter {
         * load conversion tables either from the cache or the disk
         * @private
         */
-       function loadTables( $fromcache = true ) {
+       function loadTables($fromcache=true) {
                global $wgMemc;
                if( $this->mTablesLoaded )
                        return;
@@ -703,14 +695,9 @@ class LanguageConverter {
                        // we will first load the default tables
                        // then update them using things in MediaWiki:Zhconversiontable/*
                        $this->loadDefaultTables();
-                       foreach( $this->mVariants as $var ) {
-                               $cached = $this->parseCachedTable( $var );
-                               // load group convert table, e.g. [[MediaWiki:Groupconversiontable-StarTrek]].
-                               foreach( $this->mGroups as $group ) {
-                                       $cachedgroup = $this->parseCachedTable( $var, '', true, "Groupconversiontable-$group" );
-                                       $cached = array_merge( $cached, $cachedgroup );
-                               }
-                               $this->mTables[$var]->mergeArray( $cached );
+                       foreach($this->mVariants as $var) {
+                               $cached = $this->parseCachedTable($var);
+                               $this->mTables[$var]->mergeArray($cached);
                        }
 
                        $this->postLoadTables();
@@ -758,24 +745,24 @@ class LanguageConverter {
         *      and will be parsed recursively if $recursive=true
         *
         */
-       function parseCachedTable($code, $subpage='', $recursive=true, $table='Conversiontable') {
+       function parseCachedTable($code, $subpage='', $recursive=true) {
                global $wgMessageCache;
                static $parsed = array();
 
                if(!is_object($wgMessageCache))
                        return array();
 
-               $key = "$table/".$code;
+               $key = 'Conversiontable/'.$code;
                if($subpage)
                        $key .= '/' . $subpage;
 
                if(array_key_exists($key, $parsed))
                        return array();
-               
+
                if ( strpos( $code, '/' ) === false ) {
-                       $txt = $wgMessageCache->get( $table, true, $code );
+                       $txt = $wgMessageCache->get( 'Conversiontable', true, $code );
                } else {
-                       $title = Title::makeTitleSafe( NS_MEDIAWIKI, "$table/$code" );
+                       $title = Title::makeTitleSafe( NS_MEDIAWIKI, "Conversiontable/$code" );
                        if ( $title && $title->exists() ) {
                                $article = new Article( $title );
                                $txt = $article->getContents();
@@ -783,9 +770,10 @@ class LanguageConverter {
                                $txt = '';
                        }
                }
+
                // get all subpage links of the form
                // [[MediaWiki:conversiontable/zh-xx/...|...]]
-               $linkhead = $this->mLangObj->getNsText(NS_MEDIAWIKI) . ":$table";
+               $linkhead = $this->mLangObj->getNsText(NS_MEDIAWIKI) . ':Conversiontable';
                $subs = explode('[[', $txt);
                $sublinks = array();
                foreach( $subs as $sub ) {
@@ -804,6 +792,7 @@ class LanguageConverter {
                        }
                }
 
+
                // parse the mappings in this page
                $blocks = explode($this->mMarkup['begin'], $txt);
                array_shift($blocks);
@@ -897,17 +886,6 @@ class LanguageConverter {
                $ret = $this->mMarkup['begin'] . 'R|' . $text . $this->mMarkup['end'];
                return $ret;
        }
-       
-       /**
-        * Callback function for magicword 'groupconvert'
-        *
-        * @param string $group: the group name called for
-        * @return blank string
-        */
-       function groupConvert( $group ) {
-               $this->mGroups[] = $group;
-               return '';
-       }
 }
 
 /**