* Make tests work better together. Tests are now skipped or marked incomplete.
[lhc/web/wiklou.git] / includes / AutoLoader.php
index 4504b1c..0f8019d 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /* This defines autoloading handler for whole MediaWiki framework */
 
 # Locations of core classes
@@ -36,6 +35,8 @@ $wgAutoloadLocalClasses = array(
        'ChangesFeed' => 'includes/ChangesFeed.php',
        'ChangeTags' => 'includes/ChangeTags.php',
        'ChannelFeed' => 'includes/Feed.php',
+       'Cookie' => 'includes/HttpFunctions.php',
+       'CookieJar' => 'includes/HttpFunctions.php',
        'ConcatenatedGzipHistoryBlob' => 'includes/HistoryBlob.php',
        'ConfEditor' => 'includes/ConfEditor.php',
        'ConfEditorParseError' => 'includes/ConfEditor.php',
@@ -82,6 +83,7 @@ $wgAutoloadLocalClasses = array(
        'FakeTitle' => 'includes/FakeTitle.php',
        'FakeMemCachedClient' => 'includes/ObjectCache.php',
        'FauxRequest' => 'includes/WebRequest.php',
+       'FauxResponse' => 'includes/WebResponse.php',
        'FeedItem' => 'includes/Feed.php',
        'FeedUtils' => 'includes/FeedUtils.php',
        'FileDeleteForm' => 'includes/FileDeleteForm.php',
@@ -132,6 +134,7 @@ $wgAutoloadLocalClasses = array(
        'Interwiki' => 'includes/Interwiki.php',
        'IP' => 'includes/IP.php',
        'Job' => 'includes/JobQueue.php',
+       'JSMin' => 'includes/JSMin.php',
        'LCStore_DB' => 'includes/LocalisationCache.php',
        'LCStore_CDB' => 'includes/LocalisationCache.php',
        'LCStore_Null' => 'includes/LocalisationCache.php',
@@ -211,7 +214,10 @@ $wgAutoloadLocalClasses = array(
        'SpecialRedirectToSpecial' => 'includes/SpecialPage.php',
        'SqlBagOStuff' => 'includes/BagOStuff.php',
        'SquidUpdate' => 'includes/SquidUpdate.php',
+       'SquidPurgeClient' => 'includes/SquidPurgeClient.php',
+       'SquidPurgeClientPool' => 'includes/SquidPurgeClient.php',
        'Status' => 'includes/Status.php',
+       'StubContLang' => 'includes/StubObject.php',
        'StubUser' => 'includes/StubObject.php',
        'StubUserLang' => 'includes/StubObject.php',
        'StubObject' => 'includes/StubObject.php',
@@ -225,7 +231,6 @@ $wgAutoloadLocalClasses = array(
        'TitleArrayFromResult' => 'includes/TitleArray.php',
        'TitleListDependency' => 'includes/CacheDependency.php',
        'TransformParameterError' => 'includes/MediaTransformOutput.php',
-       'TurckBagOStuff' => 'includes/BagOStuff.php',
        'UnlistedSpecialPage' => 'includes/SpecialPage.php',
        'UploadBase' => 'includes/upload/UploadBase.php',
        'UploadFromStash' => 'includes/upload/UploadFromStash.php',
@@ -432,6 +437,7 @@ $wgAutoloadLocalClasses = array(
        # includes/parser
        'CoreLinkFunctions' => 'includes/parser/CoreLinkFunctions.php',
        'CoreParserFunctions' => 'includes/parser/CoreParserFunctions.php',
+       'CoreTagHooks' => 'includes/parser/CoreTagHooks.php',
        'DateFormatter' => 'includes/parser/DateFormatter.php',
        'LinkHolderArray' => 'includes/parser/LinkHolderArray.php',
        'LinkMarkerReplacer' => 'includes/parser/Parser_LinkHooks.php',
@@ -611,7 +617,7 @@ class AutoLoader {
        /**
         * autoload - take a class name and attempt to load it
         *
-        * @param string $className Name of class we're looking for.
+        * @param $className String: name of class we're looking for.
         * @return bool Returning false is important on failure as
         * it allows Zend to try and look in other registered autoloaders
         * as well.