* Reorganised the includes directory, creating subdirectories db, parser and specials
authorTim Starling <tstarling@users.mediawiki.org>
Mon, 16 Jun 2008 20:21:26 +0000 (20:21 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Mon, 16 Jun 2008 20:21:26 +0000 (20:21 +0000)
commitc6b902f180a39b12c2f53125a73c79e70b8968e9
treee6e63467fedf48d034401d6bbf8dd2368babe49c
parent328e3473d61a11358d23017597672e7c1b2b44c8
* Reorganised the includes directory, creating subdirectories db, parser and specials
* Wrote a tool to check the integrity of the autoloader class list, fixed some issues that came up.
* Start the autoloader before LocalSettings.php, so that when an extension writer thinks an inefficient one-file special page extension is the way to go, they don't have to use explicit includes to make the class inheritance work. Should continue to work with $IP set in LocalSettings.php as long as $IP is set before extensions are included.
197 files changed:
includes/AutoLoader.php
includes/CoreParserFunctions.php [deleted file]
includes/Database.php [deleted file]
includes/DatabaseMssql.php [deleted file]
includes/DatabaseOracle.php [deleted file]
includes/DatabasePostgres.php [deleted file]
includes/DatabaseSqlite.php [deleted file]
includes/DateFormatter.php [deleted file]
includes/LBFactory.php [deleted file]
includes/LBFactory_Multi.php [deleted file]
includes/LoadBalancer.php [deleted file]
includes/Parser.php [deleted file]
includes/ParserCache.php [deleted file]
includes/ParserOptions.php [deleted file]
includes/ParserOutput.php [deleted file]
includes/Parser_DiffTest.php [deleted file]
includes/Parser_OldPP.php [deleted file]
includes/Preprocessor.php [deleted file]
includes/Preprocessor_DOM.php [deleted file]
includes/Preprocessor_Hash.php [deleted file]
includes/Setup.php
includes/SpecialAllmessages.php [deleted file]
includes/SpecialAllpages.php [deleted file]
includes/SpecialAncientpages.php [deleted file]
includes/SpecialBlockip.php [deleted file]
includes/SpecialBlockme.php [deleted file]
includes/SpecialBooksources.php [deleted file]
includes/SpecialBrokenRedirects.php [deleted file]
includes/SpecialCategories.php [deleted file]
includes/SpecialConfirmemail.php [deleted file]
includes/SpecialContributions.php [deleted file]
includes/SpecialDeadendpages.php [deleted file]
includes/SpecialDisambiguations.php [deleted file]
includes/SpecialDoubleRedirects.php [deleted file]
includes/SpecialEmailuser.php [deleted file]
includes/SpecialExport.php [deleted file]
includes/SpecialFewestrevisions.php [deleted file]
includes/SpecialFileDuplicateSearch.php [deleted file]
includes/SpecialFilepath.php [deleted file]
includes/SpecialImagelist.php [deleted file]
includes/SpecialImport.php [deleted file]
includes/SpecialIpblocklist.php [deleted file]
includes/SpecialListgrouprights.php [deleted file]
includes/SpecialListredirects.php [deleted file]
includes/SpecialListusers.php [deleted file]
includes/SpecialLockdb.php [deleted file]
includes/SpecialLog.php [deleted file]
includes/SpecialLonelypages.php [deleted file]
includes/SpecialLongpages.php [deleted file]
includes/SpecialMIMEsearch.php [deleted file]
includes/SpecialMergeHistory.php [deleted file]
includes/SpecialMissingFiles.php [deleted file]
includes/SpecialMostcategories.php [deleted file]
includes/SpecialMostimages.php [deleted file]
includes/SpecialMostlinked.php [deleted file]
includes/SpecialMostlinkedcategories.php [deleted file]
includes/SpecialMostlinkedtemplates.php [deleted file]
includes/SpecialMostrevisions.php [deleted file]
includes/SpecialMovepage.php [deleted file]
includes/SpecialNewimages.php [deleted file]
includes/SpecialNewpages.php [deleted file]
includes/SpecialPage.php
includes/SpecialPopularpages.php [deleted file]
includes/SpecialPreferences.php [deleted file]
includes/SpecialPrefixindex.php [deleted file]
includes/SpecialProtectedpages.php [deleted file]
includes/SpecialProtectedtitles.php [deleted file]
includes/SpecialRandompage.php [deleted file]
includes/SpecialRandomredirect.php [deleted file]
includes/SpecialRecentchanges.php [deleted file]
includes/SpecialRecentchangeslinked.php [deleted file]
includes/SpecialResetpass.php [deleted file]
includes/SpecialRevisiondelete.php [deleted file]
includes/SpecialSearch.php [deleted file]
includes/SpecialShortpages.php [deleted file]
includes/SpecialSpecialpages.php [deleted file]
includes/SpecialStatistics.php [deleted file]
includes/SpecialUncategorizedcategories.php [deleted file]
includes/SpecialUncategorizedimages.php [deleted file]
includes/SpecialUncategorizedpages.php [deleted file]
includes/SpecialUncategorizedtemplates.php [deleted file]
includes/SpecialUndelete.php [deleted file]
includes/SpecialUnlockdb.php [deleted file]
includes/SpecialUnusedcategories.php [deleted file]
includes/SpecialUnusedimages.php [deleted file]
includes/SpecialUnusedtemplates.php [deleted file]
includes/SpecialUnwatchedpages.php [deleted file]
includes/SpecialUpload.php [deleted file]
includes/SpecialUploadMogile.php [deleted file]
includes/SpecialUserlogin.php [deleted file]
includes/SpecialUserlogout.php [deleted file]
includes/SpecialUserrights.php [deleted file]
includes/SpecialVersion.php [deleted file]
includes/SpecialWantedcategories.php [deleted file]
includes/SpecialWantedpages.php [deleted file]
includes/SpecialWatchlist.php [deleted file]
includes/SpecialWhatlinkshere.php [deleted file]
includes/SpecialWithoutinterwiki.php [deleted file]
includes/WebStart.php
includes/db/Database.php [new file with mode: 0644]
includes/db/DatabaseMssql.php [new file with mode: 0755]
includes/db/DatabaseOracle.php [new file with mode: 0644]
includes/db/DatabasePostgres.php [new file with mode: 0644]
includes/db/DatabaseSqlite.php [new file with mode: 0644]
includes/db/LBFactory.php [new file with mode: 0644]
includes/db/LBFactory_Multi.php [new file with mode: 0644]
includes/db/LoadBalancer.php [new file with mode: 0644]
includes/parser/CoreParserFunctions.php [new file with mode: 0644]
includes/parser/DateFormatter.php [new file with mode: 0644]
includes/parser/Parser.php [new file with mode: 0644]
includes/parser/ParserCache.php [new file with mode: 0644]
includes/parser/ParserOptions.php [new file with mode: 0644]
includes/parser/ParserOutput.php [new file with mode: 0644]
includes/parser/Parser_DiffTest.php [new file with mode: 0644]
includes/parser/Parser_OldPP.php [new file with mode: 0644]
includes/parser/Preprocessor.php [new file with mode: 0644]
includes/parser/Preprocessor_DOM.php [new file with mode: 0644]
includes/parser/Preprocessor_Hash.php [new file with mode: 0644]
includes/specials/Allmessages.php [new file with mode: 0644]
includes/specials/Allpages.php [new file with mode: 0644]
includes/specials/Ancientpages.php [new file with mode: 0644]
includes/specials/Blockip.php [new file with mode: 0644]
includes/specials/Blockme.php [new file with mode: 0644]
includes/specials/Booksources.php [new file with mode: 0644]
includes/specials/BrokenRedirects.php [new file with mode: 0644]
includes/specials/Categories.php [new file with mode: 0644]
includes/specials/Confirmemail.php [new file with mode: 0644]
includes/specials/Contributions.php [new file with mode: 0644]
includes/specials/Deadendpages.php [new file with mode: 0644]
includes/specials/Disambiguations.php [new file with mode: 0644]
includes/specials/DoubleRedirects.php [new file with mode: 0644]
includes/specials/Emailuser.php [new file with mode: 0644]
includes/specials/Export.php [new file with mode: 0644]
includes/specials/Fewestrevisions.php [new file with mode: 0644]
includes/specials/FileDuplicateSearch.php [new file with mode: 0644]
includes/specials/Filepath.php [new file with mode: 0644]
includes/specials/Imagelist.php [new file with mode: 0644]
includes/specials/Import.php [new file with mode: 0644]
includes/specials/Ipblocklist.php [new file with mode: 0644]
includes/specials/Listgrouprights.php [new file with mode: 0644]
includes/specials/Listredirects.php [new file with mode: 0644]
includes/specials/Listusers.php [new file with mode: 0644]
includes/specials/Lockdb.php [new file with mode: 0644]
includes/specials/Log.php [new file with mode: 0644]
includes/specials/Lonelypages.php [new file with mode: 0644]
includes/specials/Longpages.php [new file with mode: 0644]
includes/specials/MIMEsearch.php [new file with mode: 0644]
includes/specials/MergeHistory.php [new file with mode: 0644]
includes/specials/MissingFiles.php [new file with mode: 0644]
includes/specials/Mostcategories.php [new file with mode: 0644]
includes/specials/Mostimages.php [new file with mode: 0644]
includes/specials/Mostlinked.php [new file with mode: 0644]
includes/specials/Mostlinkedcategories.php [new file with mode: 0644]
includes/specials/Mostlinkedtemplates.php [new file with mode: 0644]
includes/specials/Mostrevisions.php [new file with mode: 0644]
includes/specials/Movepage.php [new file with mode: 0644]
includes/specials/Newimages.php [new file with mode: 0644]
includes/specials/Newpages.php [new file with mode: 0644]
includes/specials/Popularpages.php [new file with mode: 0644]
includes/specials/Preferences.php [new file with mode: 0644]
includes/specials/Prefixindex.php [new file with mode: 0644]
includes/specials/Protectedpages.php [new file with mode: 0644]
includes/specials/Protectedtitles.php [new file with mode: 0644]
includes/specials/Randompage.php [new file with mode: 0644]
includes/specials/Randomredirect.php [new file with mode: 0644]
includes/specials/Recentchanges.php [new file with mode: 0644]
includes/specials/Recentchangeslinked.php [new file with mode: 0644]
includes/specials/Resetpass.php [new file with mode: 0644]
includes/specials/Revisiondelete.php [new file with mode: 0644]
includes/specials/Search.php [new file with mode: 0644]
includes/specials/Shortpages.php [new file with mode: 0644]
includes/specials/Specialpages.php [new file with mode: 0644]
includes/specials/Statistics.php [new file with mode: 0644]
includes/specials/Uncategorizedcategories.php [new file with mode: 0644]
includes/specials/Uncategorizedimages.php [new file with mode: 0644]
includes/specials/Uncategorizedpages.php [new file with mode: 0644]
includes/specials/Uncategorizedtemplates.php [new file with mode: 0644]
includes/specials/Undelete.php [new file with mode: 0644]
includes/specials/Unlockdb.php [new file with mode: 0644]
includes/specials/Unusedcategories.php [new file with mode: 0644]
includes/specials/Unusedimages.php [new file with mode: 0644]
includes/specials/Unusedtemplates.php [new file with mode: 0644]
includes/specials/Unwatchedpages.php [new file with mode: 0644]
includes/specials/Upload.php [new file with mode: 0644]
includes/specials/UploadMogile.php [new file with mode: 0644]
includes/specials/Userlogin.php [new file with mode: 0644]
includes/specials/Userlogout.php [new file with mode: 0644]
includes/specials/Userrights.php [new file with mode: 0644]
includes/specials/Version.php [new file with mode: 0644]
includes/specials/Wantedcategories.php [new file with mode: 0644]
includes/specials/Wantedpages.php [new file with mode: 0644]
includes/specials/Watchlist.php [new file with mode: 0644]
includes/specials/Whatlinkshere.php [new file with mode: 0644]
includes/specials/Withoutinterwiki.php [new file with mode: 0644]
includes/templates/Userlogin.php
maintenance/checkAutoLoader.php [new file with mode: 0644]
maintenance/commandLine.inc