Reverting r16861; incompatible change to message texts, breaks a lot of toggle displa...
[lhc/web/wiklou.git] / includes / AutoLoader.php
index 57b3094..810a448 100644 (file)
@@ -10,6 +10,7 @@ function __autoload($className) {
        static $localClasses = array(
                'AjaxDispatcher' => 'includes/AjaxDispatcher.php',
                'AjaxCachePolicy' => 'includes/AjaxFunctions.php',
+               'AjaxResponse' => 'includes/AjaxResponse.php',
                'Article' => 'includes/Article.php',
                'AuthPlugin' => 'includes/AuthPlugin.php',
                'BagOStuff' => 'includes/BagOStuff.php',
@@ -19,14 +20,17 @@ function __autoload($className) {
                'TurckBagOStuff' => 'includes/BagOStuff.php',
                'APCBagOStuff' => 'includes/BagOStuff.php',
                'eAccelBagOStuff' => 'includes/BagOStuff.php',
+               'DBABagOStuff' => 'includes/BagOStuff.php',
                'Block' => 'includes/Block.php',
                'CacheManager' => 'includes/CacheManager.php',
                'CategoryPage' => 'includes/CategoryPage.php',
+               'CategoryViewer' => 'includes/CategoryPage.php',
                'Categoryfinder' => 'includes/Categoryfinder.php',
                'RCCacheEntry' => 'includes/ChangesList.php',
                'ChangesList' => 'includes/ChangesList.php',
                'OldChangesList' => 'includes/ChangesList.php',
                'EnhancedChangesList' => 'includes/ChangesList.php',
+               'CoreParserFunctions' => 'includes/CoreParserFunctions.php',
                'DBObject' => 'includes/Database.php',
                'Database' => 'includes/Database.php',
                'DatabaseMysql' => 'includes/Database.php',
@@ -88,6 +92,7 @@ function __autoload($className) {
                'HTMLCacheUpdateJob' => 'includes/HTMLCacheUpdate.php',
                'Http' => 'includes/HttpFunctions.php',
                'Image' => 'includes/Image.php',
+               'IP' => 'includes/IP.php',
                'ThumbnailImage' => 'includes/Image.php',
                'ImageGallery' => 'includes/ImageGallery.php',
                'ImagePage' => 'includes/ImagePage.php',
@@ -112,16 +117,16 @@ function __autoload($className) {
                'FakeMemCachedClient' => 'includes/ObjectCache.php',
                'OutputPage' => 'includes/OutputPage.php',
                'PageHistory' => 'includes/PageHistory.php',
+               'IndexPager' => 'includes/Pager.php',
+               'ReverseChronologicalPager' => 'includes/Pager.php',
+               'TablePager' => 'includes/Pager.php',
                'Parser' => 'includes/Parser.php',
                'ParserOutput' => 'includes/Parser.php',
                'ParserOptions' => 'includes/Parser.php',
                'ParserCache' => 'includes/ParserCache.php',
-               'element' => 'includes/ParserXML.php',
-               'xml2php' => 'includes/ParserXML.php',
-               'ParserXML' => 'includes/ParserXML.php',
                'ProfilerSimple' => 'includes/ProfilerSimple.php',
                'ProfilerSimpleUDP' => 'includes/ProfilerSimpleUDP.php',
-               'Profiler' => 'includes/Profiling.php',
+               'Profiler' => 'includes/Profiler.php',
                'ProxyTools' => 'includes/ProxyTools.php',
                'ProtectionForm' => 'includes/ProtectionForm.php',
                'QueryPage' => 'includes/QueryPage.php',
@@ -137,7 +142,7 @@ function __autoload($className) {
                'SearchMySQL' => 'includes/SearchMySQL.php',
                'MySQLSearchResultSet' => 'includes/SearchMySQL.php',
                'SearchMySQL4' => 'includes/SearchMySQL4.php',
-               'SearchTsearch2' => 'includes/SearchTsearch2.php',
+               'SearchPostgres' => 'includes/SearchPostgres.php',
                'SearchUpdate' => 'includes/SearchUpdate.php',
                'SearchUpdateMyISAM' => 'includes/SearchUpdate.php',
                'SiteConfiguration' => 'includes/SiteConfiguration.php',
@@ -212,6 +217,7 @@ function __autoload($className) {
                'EmailNotification' => 'includes/UserMailer.php',
                'WatchedItem' => 'includes/WatchedItem.php',
                'WebRequest' => 'includes/WebRequest.php',
+               'WebResponse' => 'includes/WebResponse.php',
                'FauxRequest' => 'includes/WebRequest.php',
                'MediaWiki' => 'includes/Wiki.php',
                'WikiError' => 'includes/WikiError.php',
@@ -220,7 +226,10 @@ function __autoload($className) {
                'Xml' => 'includes/Xml.php',
                'ZhClient' => 'includes/ZhClient.php',
                'memcached' => 'includes/memcached-client.php',
-               'UtfNormal' => 'includes/normal/UtfNormal.php'
+               'UtfNormal' => 'includes/normal/UtfNormal.php',
+               'UsercreateTemplate' => 'includes/templates/Userlogin.php',
+               'UserloginTemplate' => 'includes/templates/Userlogin.php',
+               'Language' => 'languages/Language.php',
        );
        if ( isset( $localClasses[$className] ) ) {
                $filename = $localClasses[$className];