summaryrefslogtreecommitdiff
path: root/includes/AutoLoader.php
blob: de75b41d7f0bb1f528fcd01384b7da11c30a0b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
<?php

/* This defines autoloading handler for whole MediaWiki framework */

ini_set('unserialize_callback_func', '__autoload' );

class AutoLoader {
	# Locations of core classes
	# Extension classes are specified with $wgAutoloadClasses
	static $localClasses = array(
		# Includes
		'AjaxDispatcher' => 'includes/AjaxDispatcher.php',
		'AjaxResponse' => 'includes/AjaxResponse.php',
		'AlphabeticPager' => 'includes/Pager.php',
		'APCBagOStuff' => 'includes/BagOStuff.php',
		'ArrayDiffFormatter' => 'includes/DifferenceEngine.php',
		'Article' => 'includes/Article.php',
		'AtomFeed' => 'includes/Feed.php',
		'AuthPlugin' => 'includes/AuthPlugin.php',
		'Autopromote' => 'includes/Autopromote.php',
		'BagOStuff' => 'includes/BagOStuff.php',
		'Block' => 'includes/Block.php',
		'CacheDependency' => 'includes/CacheDependency.php',
		'Category' => 'includes/Category.php',
		'Categoryfinder' => 'includes/Categoryfinder.php',
		'CategoryPage' => 'includes/CategoryPage.php',
		'CategoryViewer' => 'includes/CategoryPage.php',
		'ChangesList' => 'includes/ChangesList.php',
		'ChangesFeed' => 'includes/ChangesFeed.php',
		'ChannelFeed' => 'includes/Feed.php',
		'ConcatenatedGzipHistoryBlob' => 'includes/HistoryBlob.php',
		'ConstantDependency' => 'includes/CacheDependency.php',
		'DBABagOStuff' => 'includes/BagOStuff.php',
		'DependencyWrapper' => 'includes/CacheDependency.php',
		'_DiffEngine' => 'includes/DifferenceEngine.php',
		'DifferenceEngine' => 'includes/DifferenceEngine.php',
		'DiffFormatter' => 'includes/DifferenceEngine.php',
		'Diff' => 'includes/DifferenceEngine.php',
		'_DiffOp_Add' => 'includes/DifferenceEngine.php',
		'_DiffOp_Change' => 'includes/DifferenceEngine.php',
		'_DiffOp_Copy' => 'includes/DifferenceEngine.php',
		'_DiffOp_Delete' => 'includes/DifferenceEngine.php',
		'_DiffOp' => 'includes/DifferenceEngine.php',
		'DjVuImage' => 'includes/DjVuImage.php',
		'DoubleReplacer' => 'includes/StringUtils.php',
		'DoubleRedirectJob' => 'includes/DoubleRedirectJob.php',
		'Dump7ZipOutput' => 'includes/Export.php',
		'DumpBZip2Output' => 'includes/Export.php',
		'DumpFileOutput' => 'includes/Export.php',
		'DumpFilter' => 'includes/Export.php',
		'DumpGZipOutput' => 'includes/Export.php',
		'DumpLatestFilter' => 'includes/Export.php',
		'DumpMultiWriter' => 'includes/Export.php',
		'DumpNamespaceFilter' => 'includes/Export.php',
		'DumpNotalkFilter' => 'includes/Export.php',
		'DumpOutput' => 'includes/Export.php',
		'DumpPipeOutput' => 'includes/Export.php',
		'eAccelBagOStuff' => 'includes/BagOStuff.php',
		'EditPage' => 'includes/EditPage.php',
		'EmaillingJob' => 'includes/EmaillingJob.php',
		'EmailNotification' => 'includes/UserMailer.php',
		'EnhancedChangesList' => 'includes/ChangesList.php',
		'EnotifNotifyJob' => 'includes/EnotifNotifyJob.php',
		'ErrorPageError' => 'includes/Exception.php',
		'Exif' => 'includes/Exif.php',
		'ExternalEdit' => 'includes/ExternalEdit.php',
		'ExternalStoreDB' => 'includes/ExternalStoreDB.php',
		'ExternalStoreHttp' => 'includes/ExternalStoreHttp.php',
		'ExternalStore' => 'includes/ExternalStore.php',
		'FatalError' => 'includes/Exception.php',
		'FakeTitle' => 'includes/FakeTitle.php',
		'FauxRequest' => 'includes/WebRequest.php',
		'FeedItem' => 'includes/Feed.php',
		'FeedUtils' => 'includes/FeedUtils.php',
		'FileDeleteForm' => 'includes/FileDeleteForm.php',
		'FileDependency' => 'includes/CacheDependency.php',
		'FileRevertForm' => 'includes/FileRevertForm.php',
		'FileStore' => 'includes/FileStore.php',
		'FormatExif' => 'includes/Exif.php',
		'FormOptions' => 'includes/FormOptions.php',
		'FSException' => 'includes/FileStore.php',
		'FSTransaction' => 'includes/FileStore.php',
		'GlobalDependency' => 'includes/CacheDependency.php',
		'HashBagOStuff' => 'includes/BagOStuff.php',
		'HashtableReplacer' => 'includes/StringUtils.php',
		'HistoryBlobCurStub' => 'includes/HistoryBlob.php',
		'HistoryBlob' => 'includes/HistoryBlob.php',
		'HistoryBlobStub' => 'includes/HistoryBlob.php',
		'HTMLCacheUpdate' => 'includes/HTMLCacheUpdate.php',
		'HTMLCacheUpdateJob' => 'includes/HTMLCacheUpdate.php',
		'HTMLFileCache' => 'includes/HTMLFileCache.php',
		'Http' => 'includes/HttpFunctions.php',
		'_HWLDF_WordAccumulator' => 'includes/DifferenceEngine.php',
		'IEContentAnalyzer' => 'includes/IEContentAnalyzer.php',
		'ImageGallery' => 'includes/ImageGallery.php',
		'ImageHistoryList' => 'includes/ImagePage.php',
		'ImagePage' => 'includes/ImagePage.php',
		'ImageQueryPage' => 'includes/ImageQueryPage.php',
		'IncludableSpecialPage' => 'includes/SpecialPage.php',
		'IndexPager' => 'includes/Pager.php',
		'IP' => 'includes/IP.php',
		'Job' => 'includes/JobQueue.php',
		'License' => 'includes/Licenses.php',
		'Licenses' => 'includes/Licenses.php',
		'LinkBatch' => 'includes/LinkBatch.php',
		'LinkCache' => 'includes/LinkCache.php',
		'Linker' => 'includes/Linker.php',
		'LinkFilter' => 'includes/LinkFilter.php',
		'LinksUpdate' => 'includes/LinksUpdate.php',
		'LogPage' => 'includes/LogPage.php',
		'LogPager' => 'includes/LogEventsList.php',
		'LogEventsList' => 'includes/LogEventsList.php',
		'LogReader' => 'includes/LogEventsList.php',
		'LogViewer' => 'includes/LogEventsList.php',
		'MacBinary' => 'includes/MacBinary.php',
		'MagicWordArray' => 'includes/MagicWord.php',
		'MagicWord' => 'includes/MagicWord.php',
		'MailAddress' => 'includes/UserMailer.php',
		'MappedDiff' => 'includes/DifferenceEngine.php',
		'MathRenderer' => 'includes/Math.php',
		'MediaTransformError' => 'includes/MediaTransformOutput.php',
		'MediaTransformOutput' => 'includes/MediaTransformOutput.php',
		'MediaWikiBagOStuff' => 'includes/BagOStuff.php',
		'MediaWiki_I18N' => 'includes/SkinTemplate.php',
		'MediaWiki' => 'includes/Wiki.php',
		'memcached' => 'includes/memcached-client.php',
		'MessageCache' => 'includes/MessageCache.php',
		'MimeMagic' => 'includes/MimeMagic.php',
		'MWException' => 'includes/Exception.php',
		'MWNamespace' => 'includes/Namespace.php',
		'MySQLSearchResultSet' => 'includes/SearchMySQL.php',
		'Namespace' => 'includes/NamespaceCompat.php', // Compat
		'OldChangesList' => 'includes/ChangesList.php',
		'OracleSearchResultSet' => 'includes/SearchOracle.php',
		'OutputPage' => 'includes/OutputPage.php',
		'PageHistory' => 'includes/PageHistory.php',
		'PageHistoryPager' => 'includes/PageHistory.php',
		'PageQueryPage' => 'includes/PageQueryPage.php',
		'Pager' => 'includes/Pager.php',
		'PasswordError' => 'includes/User.php',
		'PatrolLog' => 'includes/PatrolLog.php',
		'PostgresSearchResult' => 'includes/SearchPostgres.php',
		'PostgresSearchResultSet' => 'includes/SearchPostgres.php',
		'PrefixSearch' => 'includes/PrefixSearch.php',
		'Profiler' => 'includes/Profiler.php',
		'ProfilerSimple' => 'includes/ProfilerSimple.php',
		'ProfilerSimpleText' => 'includes/ProfilerSimpleText.php',
		'ProfilerSimpleUDP' => 'includes/ProfilerSimpleUDP.php',
		'ProtectionForm' => 'includes/ProtectionForm.php',
		'QueryPage' => 'includes/QueryPage.php',
		'QuickTemplate' => 'includes/SkinTemplate.php',
		'RawPage' => 'includes/RawPage.php',
		'RCCacheEntry' => 'includes/ChangesList.php',
		'RecentChange' => 'includes/RecentChange.php',
		'RefreshLinksJob' => 'includes/RefreshLinksJob.php',
		'RegexlikeReplacer' => 'includes/StringUtils.php',
		'ReplacementArray' => 'includes/StringUtils.php',
		'Replacer' => 'includes/StringUtils.php',
		'ReverseChronologicalPager' => 'includes/Pager.php',
		'Revision' => 'includes/Revision.php',
		'RSSFeed' => 'includes/Feed.php',
		'Sanitizer' => 'includes/Sanitizer.php',
		'SearchEngineDummy' => 'includes/SearchEngine.php',
		'SearchEngine' => 'includes/SearchEngine.php',
		'SearchHighlighter' => 'includes/SearchEngine.php',
		'SearchMySQL4' => 'includes/SearchMySQL4.php',
		'SearchMySQL' => 'includes/SearchMySQL.php',
		'SearchOracle' => 'includes/SearchOracle.php',
		'SearchPostgres' => 'includes/SearchPostgres.php',
		'SearchResult' => 'includes/SearchEngine.php',
		'SearchResultSet' => 'includes/SearchEngine.php',
		'SearchResultTooMany' => 'includes/SearchEngine.php',
		'SearchUpdate' => 'includes/SearchUpdate.php',
		'SearchUpdateMyISAM' => 'includes/SearchUpdate.php',
		'SiteConfiguration' => 'includes/SiteConfiguration.php',
		'SiteStats' => 'includes/SiteStats.php',
		'SiteStatsUpdate' => 'includes/SiteStats.php',
		'Skin' => 'includes/Skin.php',
		'SkinTemplate' => 'includes/SkinTemplate.php',
		'SpecialMycontributions' => 'includes/SpecialPage.php',
		'SpecialMypage' => 'includes/SpecialPage.php',
		'SpecialMytalk' => 'includes/SpecialPage.php',
		'SpecialPage' => 'includes/SpecialPage.php',
		'SpecialRedirectToSpecial' => 'includes/SpecialPage.php',
		'SqlBagOStuff' => 'includes/BagOStuff.php',
		'SquidUpdate' => 'includes/SquidUpdate.php',
		'Status' => 'includes/Status.php',
		'StringUtils' => 'includes/StringUtils.php',
		'TableDiffFormatter' => 'includes/DifferenceEngine.php',
		'TablePager' => 'includes/Pager.php',
		'ThumbnailImage' => 'includes/MediaTransformOutput.php',
		'TitleDependency' => 'includes/CacheDependency.php',
		'Title' => 'includes/Title.php',
		'TitleListDependency' => 'includes/CacheDependency.php',
		'TransformParameterError' => 'includes/MediaTransformOutput.php',
		'TurckBagOStuff' => 'includes/BagOStuff.php',
		'UnifiedDiffFormatter' => 'includes/DifferenceEngine.php',
		'UnlistedSpecialPage' => 'includes/SpecialPage.php',
		'User' => 'includes/User.php',
		'UserArray' => 'includes/UserArray.php',
		'UserArrayFromResult' => 'includes/UserArray.php',
		'UserMailer' => 'includes/UserMailer.php',
		'UserRightsProxy' => 'includes/UserRightsProxy.php',
		'WatchedItem' => 'includes/WatchedItem.php',
		'WatchlistEditor' => 'includes/WatchlistEditor.php',
		'WebRequest' => 'includes/WebRequest.php',
		'WebResponse' => 'includes/WebResponse.php',
		'WikiError' => 'includes/WikiError.php',
		'WikiErrorMsg' => 'includes/WikiError.php',
		'WikiExporter' => 'includes/Export.php',
		'WikiXmlError' => 'includes/WikiError.php',
		'WordLevelDiff' => 'includes/DifferenceEngine.php',
		'XCacheBagOStuff' => 'includes/BagOStuff.php',
		'XmlDumpWriter' => 'includes/Export.php',
		'Xml' => 'includes/Xml.php',
		'XmlSelect' => 'includes/Xml.php',
		'XmlTypeCheck' => 'includes/XmlTypeCheck.php',
		'ZhClient' => 'includes/ZhClient.php',

		# includes/api
		'ApiBase' => 'includes/api/ApiBase.php',
		'ApiBlock' => 'includes/api/ApiBlock.php',
		'ApiDelete' => 'includes/api/ApiDelete.php',
		'ApiEditPage' => 'includes/api/ApiEditPage.php',
		'ApiEmailUser' => 'includes/api/ApiEmailUser.php',
		'ApiExpandTemplates' => 'includes/api/ApiExpandTemplates.php',
		'ApiFeedWatchlist' => 'includes/api/ApiFeedWatchlist.php',
		'ApiFormatBase' => 'includes/api/ApiFormatBase.php',
		'ApiFormatDbg' => 'includes/api/ApiFormatDbg.php',
		'ApiFormatFeedWrapper' => 'includes/api/ApiFormatBase.php',
		'ApiFormatJson' => 'includes/api/ApiFormatJson.php',
		'ApiFormatPhp' => 'includes/api/ApiFormatPhp.php',
		'ApiFormatTxt' => 'includes/api/ApiFormatTxt.php',
		'ApiFormatWddx' => 'includes/api/ApiFormatWddx.php',
		'ApiFormatXml' => 'includes/api/ApiFormatXml.php',
		'ApiFormatYaml' => 'includes/api/ApiFormatYaml.php',
		'ApiHelp' => 'includes/api/ApiHelp.php',
		'ApiLogin' => 'includes/api/ApiLogin.php',
		'ApiLogout' => 'includes/api/ApiLogout.php',
		'ApiMain' => 'includes/api/ApiMain.php',
		'ApiMove' => 'includes/api/ApiMove.php',
		'ApiOpenSearch' => 'includes/api/ApiOpenSearch.php',
		'ApiPageSet' => 'includes/api/ApiPageSet.php',
		'ApiParamInfo' => 'includes/api/ApiParamInfo.php',
		'ApiParse' => 'includes/api/ApiParse.php',
		'ApiProtect' => 'includes/api/ApiProtect.php',
		'ApiQuery' => 'includes/api/ApiQuery.php',
		'ApiQueryAllCategories' => 'includes/api/ApiQueryAllCategories.php',
		'ApiQueryAllimages' => 'includes/api/ApiQueryAllimages.php',
		'ApiQueryAllLinks' => 'includes/api/ApiQueryAllLinks.php',
		'ApiQueryAllUsers' => 'includes/api/ApiQueryAllUsers.php',
		'ApiQueryAllmessages' => 'includes/api/ApiQueryAllmessages.php',
		'ApiQueryAllpages' => 'includes/api/ApiQueryAllpages.php',
		'ApiQueryBacklinks' => 'includes/api/ApiQueryBacklinks.php',
		'ApiQueryBase' => 'includes/api/ApiQueryBase.php',
		'ApiQueryBlocks' => 'includes/api/ApiQueryBlocks.php',
		'ApiQueryCategories' => 'includes/api/ApiQueryCategories.php',
		'ApiQueryCategoryInfo' => 'includes/api/ApiQueryCategoryInfo.php',
		'ApiQueryCategoryMembers' => 'includes/api/ApiQueryCategoryMembers.php',
		'ApiQueryContributions' => 'includes/api/ApiQueryUserContributions.php',
		'ApiQueryDeletedrevs' => 'includes/api/ApiQueryDeletedrevs.php',
		'ApiQueryExtLinksUsage' => 'includes/api/ApiQueryExtLinksUsage.php',
		'ApiQueryExternalLinks' => 'includes/api/ApiQueryExternalLinks.php',
		'ApiQueryGeneratorBase' => 'includes/api/ApiQueryBase.php',
		'ApiQueryImageInfo' => 'includes/api/ApiQueryImageInfo.php',
		'ApiQueryImages' => 'includes/api/ApiQueryImages.php',
		'ApiQueryInfo' => 'includes/api/ApiQueryInfo.php',
		'ApiQueryLangLinks' => 'includes/api/ApiQueryLangLinks.php',
		'ApiQueryLinks' => 'includes/api/ApiQueryLinks.php',
		'ApiQueryLogEvents' => 'includes/api/ApiQueryLogEvents.php',
		'ApiQueryRandom' => 'includes/api/ApiQueryRandom.php',
		'ApiQueryRecentChanges'=> 'includes/api/ApiQueryRecentChanges.php',
		'ApiQueryRevisions' => 'includes/api/ApiQueryRevisions.php',
		'ApiQuerySearch' => 'includes/api/ApiQuerySearch.php',
		'ApiQuerySiteinfo' => 'includes/api/ApiQuerySiteinfo.php',
		'ApiQueryUserInfo' => 'includes/api/ApiQueryUserInfo.php',
		'ApiQueryUsers' => 'includes/api/ApiQueryUsers.php',
		'ApiQueryWatchlist' => 'includes/api/ApiQueryWatchlist.php',
		'ApiResult' => 'includes/api/ApiResult.php',
		'ApiRollback' => 'includes/api/ApiRollback.php',
		'ApiUnblock' => 'includes/api/ApiUnblock.php',
		'ApiUndelete' => 'includes/api/ApiUndelete.php',
		'Services_JSON' => 'includes/api/ApiFormatJson_json.php',
		'Services_JSON_Error' => 'includes/api/ApiFormatJson_json.php',
		'Spyc' => 'includes/api/ApiFormatYaml_spyc.php',
		'UsageException' => 'includes/api/ApiMain.php',
		'YAMLNode' => 'includes/api/ApiFormatYaml_spyc.php',

		# includes/db
		'Blob' => 'includes/db/Database.php',
		'ChronologyProtector' => 'includes/db/LBFactory.php',
		'Database' => 'includes/db/Database.php',
		'DatabaseMssql' => 'includes/db/DatabaseMssql.php',
		'DatabaseMysql' => 'includes/db/Database.php',
		'DatabaseOracle' => 'includes/db/DatabaseOracle.php',
		'DatabasePostgres' => 'includes/db/DatabasePostgres.php',
		'DatabaseSqlite' => 'includes/db/DatabaseSqlite.php',
		'DBConnectionError' => 'includes/db/Database.php',
		'DBError' => 'includes/db/Database.php',
		'DBObject' => 'includes/db/Database.php',
		'DBQueryError' => 'includes/db/Database.php',
		'DBUnexpectedError' => 'includes/db/Database.php',
		'LBFactory' => 'includes/db/LBFactory.php',
		'LBFactory_Multi' => 'includes/db/LBFactory_Multi.php',
		'LBFactory_Simple' => 'includes/db/LBFactory.php',
		'LoadBalancer' => 'includes/db/LoadBalancer.php',
		'LoadMonitor' => 'includes/db/LoadMonitor.php',
		'LoadMonitor_MySQL' => 'includes/db/LoadMonitor.php',
		'MSSQLField' => 'includes/db/DatabaseMssql.php',
		'MySQLField' => 'includes/db/Database.php',
		'MySQLMasterPos' => 'includes/db/Database.php',
		'ORABlob' => 'includes/db/DatabaseOracle.php',
		'ORAResult' => 'includes/db/DatabaseOracle.php',
		'PostgresField' => 'includes/db/DatabasePostgres.php',
		'ResultWrapper' => 'includes/db/Database.php',
		'SQLiteField' => 'includes/db/DatabaseSqlite.php',

		# includes/filerepo
		'ArchivedFile' => 'includes/filerepo/ArchivedFile.php',
		'File' => 'includes/filerepo/File.php',
		'FileRepo' => 'includes/filerepo/FileRepo.php',
		'FileRepoStatus' => 'includes/filerepo/FileRepoStatus.php',
		'ForeignAPIFile' => 'includes/filerepo/ForeignAPIFile.php',
		'ForeignAPIRepo' => 'includes/filerepo/ForeignAPIRepo.php',
		'ForeignDBFile' => 'includes/filerepo/ForeignDBFile.php',
		'ForeignDBRepo' => 'includes/filerepo/ForeignDBRepo.php',
		'ForeignDBViaLBRepo' => 'includes/filerepo/ForeignDBViaLBRepo.php',
		'FSRepo' => 'includes/filerepo/FSRepo.php',
		'Image' => 'includes/filerepo/Image.php',
		'LocalFile' => 'includes/filerepo/LocalFile.php',
		'LocalFileDeleteBatch' => 'includes/filerepo/LocalFile.php',
		'LocalFileMoveBatch' => 'includes/filerepo/LocalFile.php',
		'LocalFileRestoreBatch' => 'includes/filerepo/LocalFile.php',
		'LocalRepo' => 'includes/filerepo/LocalRepo.php',
		'OldLocalFile' => 'includes/filerepo/OldLocalFile.php',
		'RepoGroup' => 'includes/filerepo/RepoGroup.php',
		'UnregisteredLocalFile' => 'includes/filerepo/UnregisteredLocalFile.php',

		# includes/media
		'BitmapHandler' => 'includes/media/Bitmap.php',
		'BmpHandler' => 'includes/media/BMP.php',
		'DjVuHandler' => 'includes/media/DjVu.php',
		'ImageHandler' => 'includes/media/Generic.php',
		'MediaHandler' => 'includes/media/Generic.php',
		'SvgHandler' => 'includes/media/SVG.php',

		# includes/normal
		'UtfNormal' => 'includes/normal/UtfNormal.php',

		# includes/parser
		'CoreParserFunctions' => 'includes/parser/CoreParserFunctions.php',
		'DateFormatter' => 'includes/parser/DateFormatter.php',
		'OnlyIncludeReplacer' => 'includes/parser/Parser.php',
		'PPDAccum_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'PPDPart' => 'includes/parser/Preprocessor_DOM.php',
		'PPDPart_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'PPDStack' => 'includes/parser/Preprocessor_DOM.php',
		'PPDStackElement' => 'includes/parser/Preprocessor_DOM.php',
		'PPDStackElement_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'PPDStack_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'PPFrame' => 'includes/parser/Preprocessor.php',
		'PPFrame_DOM' => 'includes/parser/Preprocessor_DOM.php',
		'PPFrame_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'PPNode' => 'includes/parser/Preprocessor.php',
		'PPNode_DOM' => 'includes/parser/Preprocessor_DOM.php',
		'PPNode_Hash_Array' => 'includes/parser/Preprocessor_Hash.php',
		'PPNode_Hash_Attr' => 'includes/parser/Preprocessor_Hash.php',
		'PPNode_Hash_Text' => 'includes/parser/Preprocessor_Hash.php',
		'PPNode_Hash_Tree' => 'includes/parser/Preprocessor_Hash.php',
		'PPTemplateFrame_DOM' => 'includes/parser/Preprocessor_DOM.php',
		'PPTemplateFrame_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'Parser' => 'includes/parser/Parser.php',
		'ParserCache' => 'includes/parser/ParserCache.php',
		'ParserOptions' => 'includes/parser/ParserOptions.php',
		'ParserOutput' => 'includes/parser/ParserOutput.php',
		'Parser_DiffTest' => 'includes/parser/Parser_DiffTest.php',
		'Parser_OldPP' => 'includes/parser/Parser_OldPP.php',
		'Preprocessor' => 'includes/parser/Preprocessor.php',
		'Preprocessor_DOM' => 'includes/parser/Preprocessor_DOM.php',
		'Preprocessor_Hash' => 'includes/parser/Preprocessor_Hash.php',
		'StripState' => 'includes/parser/Parser.php',

		# includes/specials
		'AncientPagesPage' => 'includes/specials/SpecialAncientpages.php',
		'BrokenRedirectsPage' => 'includes/specials/SpecialBrokenRedirects.php',
		'ContribsPager' => 'includes/specials/SpecialContributions.php',
		'DBLockForm' => 'includes/specials/SpecialLockdb.php',
		'DBUnlockForm' => 'includes/specials/SpecialUnlockdb.php',
		'DeadendPagesPage' => 'includes/specials/SpecialDeadendpages.php',
		'DisambiguationsPage' => 'includes/specials/SpecialDisambiguations.php',
		'DoubleRedirectsPage' => 'includes/specials/SpecialDoubleRedirects.php',
		'EmailConfirmation' => 'includes/specials/SpecialConfirmemail.php',
		'EmailInvalidation' => 'includes/specials/SpecialConfirmemail.php',
		'EmailUserForm' => 'includes/specials/SpecialEmailuser.php',
		'FewestrevisionsPage' => 'includes/specials/SpecialFewestrevisions.php',
		'FileDuplicateSearchPage' => 'includes/specials/SpecialFileDuplicateSearch.php',
		'IPBlockForm' => 'includes/specials/SpecialBlockip.php',
		'IPBlocklistPager' => 'includes/specials/SpecialIpblocklist.php',
		'IPUnblockForm' => 'includes/specials/SpecialIpblocklist.php',
		'ImportReporter' => 'includes/specials/SpecialImport.php',
		'ImportStreamSource' => 'includes/specials/SpecialImport.php',
		'ImportStringSource' => 'includes/specials/SpecialImport.php',
		'ListredirectsPage' => 'includes/specials/SpecialListredirects.php',
		'LoginForm' => 'includes/specials/SpecialUserlogin.php',
		'LonelyPagesPage' => 'includes/specials/SpecialLonelypages.php',
		'LongPagesPage' => 'includes/specials/SpecialLongpages.php',
		'MIMEsearchPage' => 'includes/specials/SpecialMIMEsearch.php',
		'MostcategoriesPage' => 'includes/specials/SpecialMostcategories.php',
		'MostimagesPage' => 'includes/specials/SpecialMostimages.php',
		'MostlinkedCategoriesPage' => 'includes/specials/SpecialMostlinkedcategories.php',
		'MostlinkedPage' => 'includes/specials/SpecialMostlinked.php',
		'MostrevisionsPage' => 'includes/specials/SpecialMostrevisions.php',
		'MovePageForm' => 'includes/specials/SpecialMovepage.php',
		'SpecialNewpages' => 'includes/specials/SpecialNewpages.php',
		'NewPagesPager' => 'includes/specials/SpecialNewpages.php',
		'PageArchive' => 'includes/specials/SpecialUndelete.php',
		'PasswordResetForm' => 'includes/specials/SpecialResetpass.php',
		'PopularPagesPage' => 'includes/specials/SpecialPopularpages.php',
		'PreferencesForm' => 'includes/specials/SpecialPreferences.php',
		'RandomPage' => 'includes/specials/SpecialRandompage.php',
		'RevisionDeleteForm' => 'includes/specials/SpecialRevisiondelete.php',
		'RevisionDeleter' => 'includes/specials/SpecialRevisiondelete.php',
		'ShortPagesPage' => 'includes/specials/SpecialShortpages.php',
		'SpecialAllpages' => 'includes/specials/SpecialAllpages.php',
		'SpecialBookSources' => 'includes/specials/SpecialBooksources.php',
		'SpecialListGroupRights' => 'includes/specials/SpecialListgrouprights.php',
		'SpecialMostlinkedtemplates' => 'includes/specials/SpecialMostlinkedtemplates.php',
		'SpecialPrefixindex' => 'includes/specials/SpecialPrefixindex.php',
		'SpecialRandomredirect' => 'includes/specials/SpecialRandomredirect.php',
		'SpecialRecentchanges' => 'includes/specials/SpecialRecentchanges.php',
		'SpecialRecentchangeslinked' => 'includes/specials/SpecialRecentchangeslinked.php',
		'SpecialSearch' => 'includes/specials/SpecialSearch.php',
		'SpecialVersion' => 'includes/specials/SpecialVersion.php',
		'UncategorizedCategoriesPage' => 'includes/specials/SpecialUncategorizedcategories.php',
		'UncategorizedPagesPage' => 'includes/specials/SpecialUncategorizedpages.php',
		'UncategorizedTemplatesPage' => 'includes/specials/SpecialUncategorizedtemplates.php',
		'UndeleteForm' => 'includes/specials/SpecialUndelete.php',
		'UnusedCategoriesPage' => 'includes/specials/SpecialUnusedcategories.php',
		'UnusedimagesPage' => 'includes/specials/SpecialUnusedimages.php',
		'UnusedtemplatesPage' => 'includes/specials/SpecialUnusedtemplates.php',
		'UnwatchedpagesPage' => 'includes/specials/SpecialUnwatchedpages.php',
		'UploadForm' => 'includes/specials/SpecialUpload.php',
		'UploadFormMogile' => 'includes/specials/SpecialUploadMogile.php',
		'UserrightsPage' => 'includes/specials/SpecialUserrights.php',
		'UsersPager' => 'includes/specials/SpecialListusers.php',
		'WantedCategoriesPage' => 'includes/specials/SpecialWantedcategories.php',
		'WantedPagesPage' => 'includes/specials/SpecialWantedpages.php',
		'WhatLinksHerePage' => 'includes/specials/SpecialWhatlinkshere.php',
		'WikiImporter' => 'includes/specials/SpecialImport.php',
		'WikiRevision' => 'includes/specials/SpecialImport.php',
		'WithoutInterwikiPage' => 'includes/specials/SpecialWithoutinterwiki.php',

		# includes/templates
		'UsercreateTemplate' => 'includes/templates/Userlogin.php',
		'UserloginTemplate' => 'includes/templates/Userlogin.php',

		# languages
		'Language' => 'languages/Language.php',
		'FakeConverter' => 'languages/Language.php',

		# maintenance/language
		'statsOutput' => 'maintenance/language/StatOutputs.php',
		'wikiStatsOutput' => 'maintenance/language/StatOutputs.php',
		'metawikiStatsOutput' => 'maintenance/language/StatOutputs.php',
		'textStatsOutput' => 'maintenance/language/StatOutputs.php',
		'csvStatsOutput' => 'maintenance/language/StatOutputs.php',

	);

	/**
	 * autoload - take a class name and attempt to load it
	 * 
	 * @param string $className 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. 
	 */
	static function autoload( $className ) {
		global $wgAutoloadClasses;

		wfProfileIn( __METHOD__ );
		if ( isset( self::$localClasses[$className] ) ) {
			$filename = self::$localClasses[$className];
		} elseif ( isset( $wgAutoloadClasses[$className] ) ) {
			$filename = $wgAutoloadClasses[$className];
		} else {
			# Try a different capitalisation
			# The case can sometimes be wrong when unserializing PHP 4 objects
			$filename = false;
			$lowerClass = strtolower( $className );
			foreach ( self::$localClasses as $class2 => $file2 ) {
				if ( strtolower( $class2 ) == $lowerClass ) {
					$filename = $file2;
				}
			}
			if ( !$filename ) {
				# Give up
				wfProfileOut( __METHOD__ );
				return false;
			}
		}

		# Make an absolute path, this improves performance by avoiding some stat calls
		if ( substr( $filename, 0, 1 ) != '/' && substr( $filename, 1, 1 ) != ':' ) {
			global $IP;
			$filename = "$IP/$filename";
		}
		require( $filename );
		wfProfileOut( __METHOD__ );
		return true;
	}

	static function loadAllExtensions() {
		global $wgAutoloadClasses;

		foreach( $wgAutoloadClasses as $class => $file ) {
			if( !( class_exists( $class ) || interface_exists( $class ) ) ) {
				require( $file );
			}
		}
	}
}

function wfLoadAllExtensions() {
	AutoLoader::loadAllExtensions();
}

if ( function_exists( 'spl_autoload_register' ) ) {
	spl_autoload_register( array( 'AutoLoader', 'autoload' ) );
} else {
	function __autoload( $class ) {
		AutoLoader::autoload( $class );
	}
}