2014-09-26 23:13:23 +00:00
|
|
|
<?php
|
2014-11-14 19:00:36 +00:00
|
|
|
// This file is generated by maintenance/generateLocalAutoload.php, do not adjust manually
|
2018-04-08 19:39:46 +00:00
|
|
|
// phpcs:disable Generic.Files.LineLength
|
2014-09-26 23:13:23 +00:00
|
|
|
global $wgAutoloadLocalClasses;
|
|
|
|
|
|
2016-02-17 21:08:07 +00:00
|
|
|
$wgAutoloadLocalClasses = [
|
2016-10-01 17:00:53 +00:00
|
|
|
'APCUBagOStuff' => __DIR__ . '/includes/libs/objectcache/APCUBagOStuff.php',
|
2017-12-20 22:45:23 +00:00
|
|
|
'AbkhazUppercaseCollation' => __DIR__ . '/includes/collation/AbkhazUppercaseCollation.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'AbstractContent' => __DIR__ . '/includes/content/AbstractContent.php',
|
2022-06-20 07:05:31 +00:00
|
|
|
'AbstractPbkdf2Password' => __DIR__ . '/includes/password/AbstractPbkdf2Password.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Action' => __DIR__ . '/includes/actions/Action.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'ActiveUsersPager' => __DIR__ . '/includes/specials/pagers/ActiveUsersPager.php',
|
2015-05-13 18:23:52 +00:00
|
|
|
'ActivityUpdateJob' => __DIR__ . '/includes/jobqueue/jobs/ActivityUpdateJob.php',
|
2022-12-16 11:41:52 +00:00
|
|
|
'ActorMigration' => __DIR__ . '/includes/user/ActorMigration.php',
|
|
|
|
|
'ActorMigrationBase' => __DIR__ . '/includes/user/ActorMigrationBase.php',
|
2018-08-21 17:36:45 +00:00
|
|
|
'AddChangeTag' => __DIR__ . '/maintenance/addChangeTag.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'AddRFCandPMIDInterwiki' => __DIR__ . '/maintenance/addRFCandPMIDInterwiki.php',
|
2016-04-18 18:03:53 +00:00
|
|
|
'AddSite' => __DIR__ . '/maintenance/addSite.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'AllMessagesTablePager' => __DIR__ . '/includes/specials/pagers/AllMessagesTablePager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'AllTrans' => __DIR__ . '/maintenance/language/alltrans.php',
|
|
|
|
|
'AlphabeticPager' => __DIR__ . '/includes/pager/AlphabeticPager.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiAMCreateAccount' => __DIR__ . '/includes/api/ApiAMCreateAccount.php',
|
2023-07-18 00:26:34 +00:00
|
|
|
'ApiAcquireTempUserName' => __DIR__ . '/includes/api/ApiAcquireTempUserName.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiAuthManagerHelper' => __DIR__ . '/includes/api/ApiAuthManagerHelper.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiBase' => __DIR__ . '/includes/api/ApiBase.php',
|
|
|
|
|
'ApiBlock' => __DIR__ . '/includes/api/ApiBlock.php',
|
2019-04-29 07:47:31 +00:00
|
|
|
'ApiBlockInfoTrait' => __DIR__ . '/includes/api/ApiBlockInfoTrait.php',
|
2016-07-08 22:52:20 +00:00
|
|
|
'ApiCSPReport' => __DIR__ . '/includes/api/ApiCSPReport.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiChangeAuthenticationData' => __DIR__ . '/includes/api/ApiChangeAuthenticationData.php',
|
2020-01-11 23:49:41 +00:00
|
|
|
'ApiChangeContentModel' => __DIR__ . '/includes/api/ApiChangeContentModel.php',
|
2015-01-29 20:14:40 +00:00
|
|
|
'ApiCheckToken' => __DIR__ . '/includes/api/ApiCheckToken.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiClearHasMsg' => __DIR__ . '/includes/api/ApiClearHasMsg.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiClientLogin' => __DIR__ . '/includes/api/ApiClientLogin.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiComparePages' => __DIR__ . '/includes/api/ApiComparePages.php',
|
API: Overhaul ApiResult, make format=xml not throw, and add json formatversion
ApiResult was a mess: some methods could only be used with an array
reference instead of manipulating the stored data, methods that had both
array-ref and internal-data versions had names that didn't at all
correspond, some methods that worked on an array reference were
annoyingly non-static, and then the whole mess with setIndexedTagName.
ApiFormatXml is also entirely annoying to deal with, as it liked to
throw exceptions if certain metadata wasn't provided that no other
formatter required. Its legacy also means we have this silly convention
of using empty-string rather than boolean true, annoying restrictions on
keys (leading to things that should be hashes being arrays of key-value
object instead), '*' used as a key all over the place, and so on.
So, changes here:
* ApiResult is no longer an ApiBase or a ContextSource.
* Wherever sensible, ApiResult provides a static method working on an
arrayref and a non-static method working on internal data.
* Metadata is now always added to ApiResult's internal data structure.
Formatters are responsible for stripping it if necessary. "raw mode"
is deprecated.
* New metadata to replace the '*' key, solve the array() => '[]' vs '{}'
question, and so on.
* New class for formatting warnings and errors using i18n messages, and
support for multiple errors and a more machine-readable format for
warnings. For the moment, though, the actual output will not be changing
yet (see T47843 for future plans).
* New formatversion parameter for format=json and format=php, to select
between BC mode and the modern output.
* In BC mode, booleans will be converted to empty-string presence style;
modules currently returning booleans will need to use
ApiResult::META_BC_BOOLS to preserve their current output.
Actual changes to the API modules' output (e.g. actually returning
booleans for the new formatversion) beyond the use of
ApiResult::setContentValue() are left for a future change.
Bug: T76728
Bug: T57371
Bug: T33629
Change-Id: I7b37295e8862b188d1f3b0cd07f66ac34629678f
2014-12-03 22:14:22 +00:00
|
|
|
'ApiContinuationManager' => __DIR__ . '/includes/api/ApiContinuationManager.php',
|
2023-10-31 20:10:38 +00:00
|
|
|
'ApiCreateTempUserTrait' => __DIR__ . '/includes/api/ApiCreateTempUserTrait.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiDelete' => __DIR__ . '/includes/api/ApiDelete.php',
|
|
|
|
|
'ApiDisabled' => __DIR__ . '/includes/api/ApiDisabled.php',
|
|
|
|
|
'ApiEditPage' => __DIR__ . '/includes/api/ApiEditPage.php',
|
|
|
|
|
'ApiEmailUser' => __DIR__ . '/includes/api/ApiEmailUser.php',
|
API: Overhaul ApiResult, make format=xml not throw, and add json formatversion
ApiResult was a mess: some methods could only be used with an array
reference instead of manipulating the stored data, methods that had both
array-ref and internal-data versions had names that didn't at all
correspond, some methods that worked on an array reference were
annoyingly non-static, and then the whole mess with setIndexedTagName.
ApiFormatXml is also entirely annoying to deal with, as it liked to
throw exceptions if certain metadata wasn't provided that no other
formatter required. Its legacy also means we have this silly convention
of using empty-string rather than boolean true, annoying restrictions on
keys (leading to things that should be hashes being arrays of key-value
object instead), '*' used as a key all over the place, and so on.
So, changes here:
* ApiResult is no longer an ApiBase or a ContextSource.
* Wherever sensible, ApiResult provides a static method working on an
arrayref and a non-static method working on internal data.
* Metadata is now always added to ApiResult's internal data structure.
Formatters are responsible for stripping it if necessary. "raw mode"
is deprecated.
* New metadata to replace the '*' key, solve the array() => '[]' vs '{}'
question, and so on.
* New class for formatting warnings and errors using i18n messages, and
support for multiple errors and a more machine-readable format for
warnings. For the moment, though, the actual output will not be changing
yet (see T47843 for future plans).
* New formatversion parameter for format=json and format=php, to select
between BC mode and the modern output.
* In BC mode, booleans will be converted to empty-string presence style;
modules currently returning booleans will need to use
ApiResult::META_BC_BOOLS to preserve their current output.
Actual changes to the API modules' output (e.g. actually returning
booleans for the new formatversion) beyond the use of
ApiResult::setContentValue() are left for a future change.
Bug: T76728
Bug: T57371
Bug: T33629
Change-Id: I7b37295e8862b188d1f3b0cd07f66ac34629678f
2014-12-03 22:14:22 +00:00
|
|
|
'ApiErrorFormatter' => __DIR__ . '/includes/api/ApiErrorFormatter.php',
|
2019-04-20 22:38:11 +00:00
|
|
|
'ApiErrorFormatter_BackCompat' => __DIR__ . '/includes/api/ApiErrorFormatter_BackCompat.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiExpandTemplates' => __DIR__ . '/includes/api/ApiExpandTemplates.php',
|
|
|
|
|
'ApiFeedContributions' => __DIR__ . '/includes/api/ApiFeedContributions.php',
|
|
|
|
|
'ApiFeedRecentChanges' => __DIR__ . '/includes/api/ApiFeedRecentChanges.php',
|
|
|
|
|
'ApiFeedWatchlist' => __DIR__ . '/includes/api/ApiFeedWatchlist.php',
|
|
|
|
|
'ApiFileRevert' => __DIR__ . '/includes/api/ApiFileRevert.php',
|
|
|
|
|
'ApiFormatBase' => __DIR__ . '/includes/api/ApiFormatBase.php',
|
|
|
|
|
'ApiFormatFeedWrapper' => __DIR__ . '/includes/api/ApiFormatFeedWrapper.php',
|
|
|
|
|
'ApiFormatJson' => __DIR__ . '/includes/api/ApiFormatJson.php',
|
|
|
|
|
'ApiFormatNone' => __DIR__ . '/includes/api/ApiFormatNone.php',
|
|
|
|
|
'ApiFormatPhp' => __DIR__ . '/includes/api/ApiFormatPhp.php',
|
|
|
|
|
'ApiFormatRaw' => __DIR__ . '/includes/api/ApiFormatRaw.php',
|
|
|
|
|
'ApiFormatXml' => __DIR__ . '/includes/api/ApiFormatXml.php',
|
2019-04-13 23:27:04 +00:00
|
|
|
'ApiFormatXmlRsd' => __DIR__ . '/includes/api/ApiFormatXmlRsd.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiHelp' => __DIR__ . '/includes/api/ApiHelp.php',
|
2014-11-07 23:57:14 +00:00
|
|
|
'ApiHelpParamValueMessage' => __DIR__ . '/includes/api/ApiHelpParamValueMessage.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiImageRotate' => __DIR__ . '/includes/api/ApiImageRotate.php',
|
|
|
|
|
'ApiImport' => __DIR__ . '/includes/api/ApiImport.php',
|
2019-04-06 12:24:57 +00:00
|
|
|
'ApiImportReporter' => __DIR__ . '/includes/api/ApiImportReporter.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiLinkAccount' => __DIR__ . '/includes/api/ApiLinkAccount.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiLogin' => __DIR__ . '/includes/api/ApiLogin.php',
|
|
|
|
|
'ApiLogout' => __DIR__ . '/includes/api/ApiLogout.php',
|
|
|
|
|
'ApiMain' => __DIR__ . '/includes/api/ApiMain.php',
|
2015-02-04 11:32:00 +00:00
|
|
|
'ApiManageTags' => __DIR__ . '/includes/api/ApiManageTags.php',
|
2015-12-30 04:53:34 +00:00
|
|
|
'ApiMergeHistory' => __DIR__ . '/includes/api/ApiMergeHistory.php',
|
API: Overhaul ApiResult, make format=xml not throw, and add json formatversion
ApiResult was a mess: some methods could only be used with an array
reference instead of manipulating the stored data, methods that had both
array-ref and internal-data versions had names that didn't at all
correspond, some methods that worked on an array reference were
annoyingly non-static, and then the whole mess with setIndexedTagName.
ApiFormatXml is also entirely annoying to deal with, as it liked to
throw exceptions if certain metadata wasn't provided that no other
formatter required. Its legacy also means we have this silly convention
of using empty-string rather than boolean true, annoying restrictions on
keys (leading to things that should be hashes being arrays of key-value
object instead), '*' used as a key all over the place, and so on.
So, changes here:
* ApiResult is no longer an ApiBase or a ContextSource.
* Wherever sensible, ApiResult provides a static method working on an
arrayref and a non-static method working on internal data.
* Metadata is now always added to ApiResult's internal data structure.
Formatters are responsible for stripping it if necessary. "raw mode"
is deprecated.
* New metadata to replace the '*' key, solve the array() => '[]' vs '{}'
question, and so on.
* New class for formatting warnings and errors using i18n messages, and
support for multiple errors and a more machine-readable format for
warnings. For the moment, though, the actual output will not be changing
yet (see T47843 for future plans).
* New formatversion parameter for format=json and format=php, to select
between BC mode and the modern output.
* In BC mode, booleans will be converted to empty-string presence style;
modules currently returning booleans will need to use
ApiResult::META_BC_BOOLS to preserve their current output.
Actual changes to the API modules' output (e.g. actually returning
booleans for the new formatversion) beyond the use of
ApiResult::setContentValue() are left for a future change.
Bug: T76728
Bug: T57371
Bug: T33629
Change-Id: I7b37295e8862b188d1f3b0cd07f66ac34629678f
2014-12-03 22:14:22 +00:00
|
|
|
'ApiMessage' => __DIR__ . '/includes/api/ApiMessage.php',
|
2018-05-25 00:59:49 +00:00
|
|
|
'ApiMessageTrait' => __DIR__ . '/includes/api/ApiMessageTrait.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiModuleManager' => __DIR__ . '/includes/api/ApiModuleManager.php',
|
|
|
|
|
'ApiMove' => __DIR__ . '/includes/api/ApiMove.php',
|
|
|
|
|
'ApiOpenSearch' => __DIR__ . '/includes/api/ApiOpenSearch.php',
|
2019-04-13 23:27:04 +00:00
|
|
|
'ApiOpenSearchFormatJson' => __DIR__ . '/includes/api/ApiOpenSearchFormatJson.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiOptions' => __DIR__ . '/includes/api/ApiOptions.php',
|
|
|
|
|
'ApiPageSet' => __DIR__ . '/includes/api/ApiPageSet.php',
|
|
|
|
|
'ApiParamInfo' => __DIR__ . '/includes/api/ApiParamInfo.php',
|
|
|
|
|
'ApiParse' => __DIR__ . '/includes/api/ApiParse.php',
|
|
|
|
|
'ApiPatrol' => __DIR__ . '/includes/api/ApiPatrol.php',
|
|
|
|
|
'ApiProtect' => __DIR__ . '/includes/api/ApiProtect.php',
|
|
|
|
|
'ApiPurge' => __DIR__ . '/includes/api/ApiPurge.php',
|
|
|
|
|
'ApiQuery' => __DIR__ . '/includes/api/ApiQuery.php',
|
|
|
|
|
'ApiQueryAllCategories' => __DIR__ . '/includes/api/ApiQueryAllCategories.php',
|
|
|
|
|
'ApiQueryAllDeletedRevisions' => __DIR__ . '/includes/api/ApiQueryAllDeletedRevisions.php',
|
|
|
|
|
'ApiQueryAllImages' => __DIR__ . '/includes/api/ApiQueryAllImages.php',
|
|
|
|
|
'ApiQueryAllLinks' => __DIR__ . '/includes/api/ApiQueryAllLinks.php',
|
|
|
|
|
'ApiQueryAllMessages' => __DIR__ . '/includes/api/ApiQueryAllMessages.php',
|
|
|
|
|
'ApiQueryAllPages' => __DIR__ . '/includes/api/ApiQueryAllPages.php',
|
2015-09-27 19:43:05 +00:00
|
|
|
'ApiQueryAllRevisions' => __DIR__ . '/includes/api/ApiQueryAllRevisions.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryAllUsers' => __DIR__ . '/includes/api/ApiQueryAllUsers.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiQueryAuthManagerInfo' => __DIR__ . '/includes/api/ApiQueryAuthManagerInfo.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryBacklinks' => __DIR__ . '/includes/api/ApiQueryBacklinks.php',
|
|
|
|
|
'ApiQueryBacklinksprop' => __DIR__ . '/includes/api/ApiQueryBacklinksprop.php',
|
|
|
|
|
'ApiQueryBase' => __DIR__ . '/includes/api/ApiQueryBase.php',
|
2019-09-05 18:24:28 +00:00
|
|
|
'ApiQueryBlockInfoTrait' => __DIR__ . '/includes/api/ApiQueryBlockInfoTrait.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryBlocks' => __DIR__ . '/includes/api/ApiQueryBlocks.php',
|
|
|
|
|
'ApiQueryCategories' => __DIR__ . '/includes/api/ApiQueryCategories.php',
|
|
|
|
|
'ApiQueryCategoryInfo' => __DIR__ . '/includes/api/ApiQueryCategoryInfo.php',
|
|
|
|
|
'ApiQueryCategoryMembers' => __DIR__ . '/includes/api/ApiQueryCategoryMembers.php',
|
|
|
|
|
'ApiQueryContributors' => __DIR__ . '/includes/api/ApiQueryContributors.php',
|
|
|
|
|
'ApiQueryDeletedRevisions' => __DIR__ . '/includes/api/ApiQueryDeletedRevisions.php',
|
|
|
|
|
'ApiQueryDeletedrevs' => __DIR__ . '/includes/api/ApiQueryDeletedrevs.php',
|
|
|
|
|
'ApiQueryDisabled' => __DIR__ . '/includes/api/ApiQueryDisabled.php',
|
|
|
|
|
'ApiQueryDuplicateFiles' => __DIR__ . '/includes/api/ApiQueryDuplicateFiles.php',
|
|
|
|
|
'ApiQueryExtLinksUsage' => __DIR__ . '/includes/api/ApiQueryExtLinksUsage.php',
|
|
|
|
|
'ApiQueryExternalLinks' => __DIR__ . '/includes/api/ApiQueryExternalLinks.php',
|
|
|
|
|
'ApiQueryFileRepoInfo' => __DIR__ . '/includes/api/ApiQueryFileRepoInfo.php',
|
|
|
|
|
'ApiQueryFilearchive' => __DIR__ . '/includes/api/ApiQueryFilearchive.php',
|
2015-12-20 09:41:34 +00:00
|
|
|
'ApiQueryGeneratorBase' => __DIR__ . '/includes/api/ApiQueryGeneratorBase.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryIWBacklinks' => __DIR__ . '/includes/api/ApiQueryIWBacklinks.php',
|
|
|
|
|
'ApiQueryIWLinks' => __DIR__ . '/includes/api/ApiQueryIWLinks.php',
|
|
|
|
|
'ApiQueryImageInfo' => __DIR__ . '/includes/api/ApiQueryImageInfo.php',
|
|
|
|
|
'ApiQueryImages' => __DIR__ . '/includes/api/ApiQueryImages.php',
|
|
|
|
|
'ApiQueryInfo' => __DIR__ . '/includes/api/ApiQueryInfo.php',
|
|
|
|
|
'ApiQueryLangBacklinks' => __DIR__ . '/includes/api/ApiQueryLangBacklinks.php',
|
|
|
|
|
'ApiQueryLangLinks' => __DIR__ . '/includes/api/ApiQueryLangLinks.php',
|
2019-05-16 09:42:05 +00:00
|
|
|
'ApiQueryLanguageinfo' => __DIR__ . '/includes/api/ApiQueryLanguageinfo.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryLinks' => __DIR__ . '/includes/api/ApiQueryLinks.php',
|
|
|
|
|
'ApiQueryLogEvents' => __DIR__ . '/includes/api/ApiQueryLogEvents.php',
|
2016-01-20 18:17:07 +00:00
|
|
|
'ApiQueryMyStashedFiles' => __DIR__ . '/includes/api/ApiQueryMyStashedFiles.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryPagePropNames' => __DIR__ . '/includes/api/ApiQueryPagePropNames.php',
|
|
|
|
|
'ApiQueryPageProps' => __DIR__ . '/includes/api/ApiQueryPageProps.php',
|
|
|
|
|
'ApiQueryPagesWithProp' => __DIR__ . '/includes/api/ApiQueryPagesWithProp.php',
|
|
|
|
|
'ApiQueryPrefixSearch' => __DIR__ . '/includes/api/ApiQueryPrefixSearch.php',
|
|
|
|
|
'ApiQueryProtectedTitles' => __DIR__ . '/includes/api/ApiQueryProtectedTitles.php',
|
|
|
|
|
'ApiQueryQueryPage' => __DIR__ . '/includes/api/ApiQueryQueryPage.php',
|
|
|
|
|
'ApiQueryRandom' => __DIR__ . '/includes/api/ApiQueryRandom.php',
|
|
|
|
|
'ApiQueryRecentChanges' => __DIR__ . '/includes/api/ApiQueryRecentChanges.php',
|
|
|
|
|
'ApiQueryRevisions' => __DIR__ . '/includes/api/ApiQueryRevisions.php',
|
|
|
|
|
'ApiQueryRevisionsBase' => __DIR__ . '/includes/api/ApiQueryRevisionsBase.php',
|
|
|
|
|
'ApiQuerySearch' => __DIR__ . '/includes/api/ApiQuerySearch.php',
|
|
|
|
|
'ApiQuerySiteinfo' => __DIR__ . '/includes/api/ApiQuerySiteinfo.php',
|
|
|
|
|
'ApiQueryStashImageInfo' => __DIR__ . '/includes/api/ApiQueryStashImageInfo.php',
|
|
|
|
|
'ApiQueryTags' => __DIR__ . '/includes/api/ApiQueryTags.php',
|
|
|
|
|
'ApiQueryTokens' => __DIR__ . '/includes/api/ApiQueryTokens.php',
|
2018-05-25 00:46:30 +00:00
|
|
|
'ApiQueryUserContribs' => __DIR__ . '/includes/api/ApiQueryUserContribs.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiQueryUserInfo' => __DIR__ . '/includes/api/ApiQueryUserInfo.php',
|
|
|
|
|
'ApiQueryUsers' => __DIR__ . '/includes/api/ApiQueryUsers.php',
|
|
|
|
|
'ApiQueryWatchlist' => __DIR__ . '/includes/api/ApiQueryWatchlist.php',
|
|
|
|
|
'ApiQueryWatchlistRaw' => __DIR__ . '/includes/api/ApiQueryWatchlistRaw.php',
|
2018-05-25 00:59:49 +00:00
|
|
|
'ApiRawMessage' => __DIR__ . '/includes/api/ApiRawMessage.php',
|
2016-01-11 18:20:22 +00:00
|
|
|
'ApiRemoveAuthenticationData' => __DIR__ . '/includes/api/ApiRemoveAuthenticationData.php',
|
|
|
|
|
'ApiResetPassword' => __DIR__ . '/includes/api/ApiResetPassword.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiResult' => __DIR__ . '/includes/api/ApiResult.php',
|
|
|
|
|
'ApiRevisionDelete' => __DIR__ . '/includes/api/ApiRevisionDelete.php',
|
|
|
|
|
'ApiRollback' => __DIR__ . '/includes/api/ApiRollback.php',
|
|
|
|
|
'ApiRsd' => __DIR__ . '/includes/api/ApiRsd.php',
|
API: Overhaul ApiResult, make format=xml not throw, and add json formatversion
ApiResult was a mess: some methods could only be used with an array
reference instead of manipulating the stored data, methods that had both
array-ref and internal-data versions had names that didn't at all
correspond, some methods that worked on an array reference were
annoyingly non-static, and then the whole mess with setIndexedTagName.
ApiFormatXml is also entirely annoying to deal with, as it liked to
throw exceptions if certain metadata wasn't provided that no other
formatter required. Its legacy also means we have this silly convention
of using empty-string rather than boolean true, annoying restrictions on
keys (leading to things that should be hashes being arrays of key-value
object instead), '*' used as a key all over the place, and so on.
So, changes here:
* ApiResult is no longer an ApiBase or a ContextSource.
* Wherever sensible, ApiResult provides a static method working on an
arrayref and a non-static method working on internal data.
* Metadata is now always added to ApiResult's internal data structure.
Formatters are responsible for stripping it if necessary. "raw mode"
is deprecated.
* New metadata to replace the '*' key, solve the array() => '[]' vs '{}'
question, and so on.
* New class for formatting warnings and errors using i18n messages, and
support for multiple errors and a more machine-readable format for
warnings. For the moment, though, the actual output will not be changing
yet (see T47843 for future plans).
* New formatversion parameter for format=json and format=php, to select
between BC mode and the modern output.
* In BC mode, booleans will be converted to empty-string presence style;
modules currently returning booleans will need to use
ApiResult::META_BC_BOOLS to preserve their current output.
Actual changes to the API modules' output (e.g. actually returning
booleans for the new formatversion) beyond the use of
ApiResult::setContentValue() are left for a future change.
Bug: T76728
Bug: T57371
Bug: T33629
Change-Id: I7b37295e8862b188d1f3b0cd07f66ac34629678f
2014-12-03 22:14:22 +00:00
|
|
|
'ApiSerializable' => __DIR__ . '/includes/api/ApiSerializable.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiSetNotificationTimestamp' => __DIR__ . '/includes/api/ApiSetNotificationTimestamp.php',
|
2017-01-04 00:51:24 +00:00
|
|
|
'ApiSetPageLanguage' => __DIR__ . '/includes/api/ApiSetPageLanguage.php',
|
2014-11-20 00:33:51 +00:00
|
|
|
'ApiStashEdit' => __DIR__ . '/includes/api/ApiStashEdit.php',
|
2015-04-15 01:33:08 +00:00
|
|
|
'ApiTag' => __DIR__ . '/includes/api/ApiTag.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiUnblock' => __DIR__ . '/includes/api/ApiUnblock.php',
|
|
|
|
|
'ApiUndelete' => __DIR__ . '/includes/api/ApiUndelete.php',
|
|
|
|
|
'ApiUpload' => __DIR__ . '/includes/api/ApiUpload.php',
|
2016-10-19 16:54:25 +00:00
|
|
|
'ApiUsageException' => __DIR__ . '/includes/api/ApiUsageException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiUserrights' => __DIR__ . '/includes/api/ApiUserrights.php',
|
2016-12-01 22:29:29 +00:00
|
|
|
'ApiValidatePassword' => __DIR__ . '/includes/api/ApiValidatePassword.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ApiWatch' => __DIR__ . '/includes/api/ApiWatch.php',
|
2020-06-04 20:16:23 +00:00
|
|
|
'ApiWatchlistTrait' => __DIR__ . '/includes/api/ApiWatchlistTrait.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ArchivedFile' => __DIR__ . '/includes/filerepo/file/ArchivedFile.php',
|
2018-12-04 07:46:38 +00:00
|
|
|
'Argon2Password' => __DIR__ . '/includes/password/Argon2Password.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'ArrayDiffFormatter' => __DIR__ . '/includes/libs/Diff/ArrayDiffFormatter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ArrayUtils' => __DIR__ . '/includes/libs/ArrayUtils.php',
|
|
|
|
|
'Article' => __DIR__ . '/includes/page/Article.php',
|
|
|
|
|
'AssembleUploadChunksJob' => __DIR__ . '/includes/jobqueue/jobs/AssembleUploadChunksJob.php',
|
2022-10-17 11:10:57 +00:00
|
|
|
'AtomFeed' => __DIR__ . '/includes/Feed/AtomFeed.php',
|
2016-01-13 16:54:48 +00:00
|
|
|
'AtomicSectionUpdate' => __DIR__ . '/includes/deferred/AtomicSectionUpdate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'AttachLatest' => __DIR__ . '/maintenance/attachLatest.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'AuthManagerSpecialPage' => __DIR__ . '/includes/specialpage/AuthManagerSpecialPage.php',
|
2016-07-19 20:43:17 +00:00
|
|
|
'AutoCommitUpdate' => __DIR__ . '/includes/deferred/AutoCommitUpdate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'AutoloadGenerator' => __DIR__ . '/includes/utils/AutoloadGenerator.php',
|
|
|
|
|
'BacklinkCache' => __DIR__ . '/includes/cache/BacklinkCache.php',
|
|
|
|
|
'BacklinkJobUtils' => __DIR__ . '/includes/jobqueue/utils/BacklinkJobUtils.php',
|
2018-08-02 05:10:29 +00:00
|
|
|
'BackupDumper' => __DIR__ . '/maintenance/includes/BackupDumper.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BackupReader' => __DIR__ . '/maintenance/importDump.php',
|
2016-05-17 21:22:05 +00:00
|
|
|
'BadRequestError' => __DIR__ . '/includes/exception/BadRequestError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BadTitleError' => __DIR__ . '/includes/exception/BadTitleError.php',
|
2015-02-25 08:22:50 +00:00
|
|
|
'BagOStuff' => __DIR__ . '/includes/libs/objectcache/BagOStuff.php',
|
2020-10-22 18:38:06 +00:00
|
|
|
'BanConverter' => __DIR__ . '/includes/language/converters/BanConverter.php',
|
2018-01-08 21:10:35 +00:00
|
|
|
'BaseDump' => __DIR__ . '/includes/export/BaseDump.php',
|
2019-07-25 12:11:06 +00:00
|
|
|
'BaseSearchResultSet' => __DIR__ . '/includes/search/BaseSearchResultSet.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BaseTemplate' => __DIR__ . '/includes/skins/BaseTemplate.php',
|
2017-04-28 04:52:49 +00:00
|
|
|
'BashkirUppercaseCollation' => __DIR__ . '/includes/collation/BashkirUppercaseCollation.php',
|
2015-07-30 22:09:11 +00:00
|
|
|
'BatchRowIterator' => __DIR__ . '/includes/utils/BatchRowIterator.php',
|
|
|
|
|
'BatchRowUpdate' => __DIR__ . '/includes/utils/BatchRowUpdate.php',
|
|
|
|
|
'BatchRowWriter' => __DIR__ . '/includes/utils/BatchRowWriter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BcryptPassword' => __DIR__ . '/includes/password/BcryptPassword.php',
|
2021-07-29 06:28:12 +00:00
|
|
|
'BenchmarkCommentFormatter' => __DIR__ . '/maintenance/benchmarks/benchmarkCommentFormatter.php',
|
2021-08-23 04:42:39 +00:00
|
|
|
'BenchmarkEval' => __DIR__ . '/maintenance/benchmarks/benchmarkEval.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BenchmarkHooks' => __DIR__ . '/maintenance/benchmarks/benchmarkHooks.php',
|
2023-10-03 00:01:22 +00:00
|
|
|
'BenchmarkJsValidate' => __DIR__ . '/maintenance/benchmarks/benchmarkJsValidate.php',
|
2022-10-10 11:46:50 +00:00
|
|
|
'BenchmarkJsonCodec' => __DIR__ . '/maintenance/benchmarks/benchmarkJsonCodec.php',
|
benchmarks: Add benchmarks for MapCacheLRU and HashBagOStuff
Currently, HashBagOStuff leads in most benchmarks, except for
the --fill benchmark, where MapCacheLRU is faster on HHVM.
(by invoking with `PHP=hhvm mwscript maintenance/bench...`)
Run in MediaWiki-Vagrant (Debian Jessie) on MacBook Pro host.
$ benchmarkLruHash.php --count 50000 --construct
Running PHP 5.6.30-0+deb8u1:
- HashBagOStuff-construct (22% faster)
total: 446.20ms (min: 0.01ms, median: 0.01ms, max: 2.09ms)
- MapCacheLRU-construct
total: 575.31ms (min: 0.01ms, median: 0.01ms, max: 3.51ms)
Running PHP version 5.6.99-hhvm:
- HashBagOStuff-construct (13% faster)
total: 124.70ms (min: 0.00ms, median: 0.00ms, max: 1.27ms)
- MapCacheLRU-construct
total: 143.76ms (min: 0.00ms, median: 0.00ms, max: 2.01ms)
For MapCacheLRU, the main slowdown is its use of Wikimedia\Assert.
Removing that would make it faster than HashBagOStuff.
$ benchmarkLruHash.php --count 3000 --fill
Running PHP 5.6.30-0+deb8u1:
- HashBagOStuff-fill (22% faster)
total: 10196.82ms (min: 2.91ms, median: 3.24ms, max: 9.51ms)
- MapCacheLRU-fill
total: 13197.13ms (min: 3.92ms, median: 4.31ms, max: 9.90ms)
Running PHP version 5.6.99-hhvm:
- HashBagOStuff-fill
total: 5700.37ms (min: 1.71ms, median: 1.85ms, max: 8.24ms)
- MapCacheLRU-fill (11% faster)
total: 4986.90ms (min: 1.48ms, median: 1.62ms, max: 6.93ms)
Change-Id: Icd03f872dddb308f162c72674c8d2aa6092395e5
2017-07-27 21:09:41 +00:00
|
|
|
'BenchmarkLruHash' => __DIR__ . '/maintenance/benchmarks/benchmarkLruHash.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BenchmarkParse' => __DIR__ . '/maintenance/benchmarks/benchmarkParse.php',
|
|
|
|
|
'BenchmarkPurge' => __DIR__ . '/maintenance/benchmarks/benchmarkPurge.php',
|
2018-01-27 17:46:12 +00:00
|
|
|
'BenchmarkSanitizer' => __DIR__ . '/maintenance/benchmarks/benchmarkSanitizer.php',
|
2022-03-29 15:48:30 +00:00
|
|
|
'BenchmarkSettings' => __DIR__ . '/maintenance/benchmarks/benchmarkSettings.php',
|
2017-03-23 01:51:43 +00:00
|
|
|
'BenchmarkTidy' => __DIR__ . '/maintenance/benchmarks/benchmarkTidy.php',
|
2018-08-13 01:57:39 +00:00
|
|
|
'BenchmarkTitleValue' => __DIR__ . '/maintenance/benchmarks/benchmarkTitleValue.php',
|
2022-02-14 05:20:37 +00:00
|
|
|
'BenchmarkTruncate' => __DIR__ . '/maintenance/benchmarks/benchmarkTruncate.php',
|
2019-12-18 01:24:42 +00:00
|
|
|
'Benchmarker' => __DIR__ . '/maintenance/includes/Benchmarker.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'BitmapHandler' => __DIR__ . '/includes/media/BitmapHandler.php',
|
|
|
|
|
'BitmapHandler_ClientOnly' => __DIR__ . '/includes/media/BitmapHandler_ClientOnly.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'BitmapMetadataHandler' => __DIR__ . '/includes/media/BitmapMetadataHandler.php',
|
2016-09-14 10:11:41 +00:00
|
|
|
'Blob' => __DIR__ . '/includes/libs/rdbms/encasing/Blob.php',
|
2019-05-13 14:18:07 +00:00
|
|
|
'Block' => __DIR__ . '/includes/block/DatabaseBlock.php',
|
2016-05-06 02:56:37 +00:00
|
|
|
'BlockLevelPass' => __DIR__ . '/includes/parser/BlockLevelPass.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'BlockListPager' => __DIR__ . '/includes/specials/pagers/BlockListPager.php',
|
2014-08-04 21:12:53 +00:00
|
|
|
'BlockLogFormatter' => __DIR__ . '/includes/logging/BlockLogFormatter.php',
|
2020-02-27 22:57:39 +00:00
|
|
|
'BlockUsers' => __DIR__ . '/maintenance/blockUsers.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'BmpHandler' => __DIR__ . '/includes/media/BmpHandler.php',
|
2016-02-01 20:44:03 +00:00
|
|
|
'BotPassword' => __DIR__ . '/includes/user/BotPassword.php',
|
2023-02-27 16:40:57 +00:00
|
|
|
'BufferingStatsdDataFactory' => __DIR__ . '/includes/libs/Stats/BufferingStatsdDataFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CLIParser' => __DIR__ . '/maintenance/parse.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'CacheDependency' => __DIR__ . '/includes/language/dependency/CacheDependency.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CacheTime' => __DIR__ . '/includes/parser/CacheTime.php',
|
2016-01-30 01:09:57 +00:00
|
|
|
'CachedBagOStuff' => __DIR__ . '/includes/libs/objectcache/CachedBagOStuff.php',
|
2015-02-06 02:00:26 +00:00
|
|
|
'CachingSiteStore' => __DIR__ . '/includes/site/CachingSiteStore.php',
|
2017-09-12 17:12:29 +00:00
|
|
|
'CannotCreateActorException' => __DIR__ . '/includes/exception/CannotCreateActorException.php',
|
2023-02-09 18:59:23 +00:00
|
|
|
'CategoriesRdf' => __DIR__ . '/includes/Category/CategoriesRdf.php',
|
|
|
|
|
'Category' => __DIR__ . '/includes/Category/Category.php',
|
2017-08-22 00:05:53 +00:00
|
|
|
'CategoryChangesAsRdf' => __DIR__ . '/maintenance/categoryChangesAsRdf.php',
|
2015-09-17 09:51:25 +00:00
|
|
|
'CategoryMembershipChange' => __DIR__ . '/includes/changes/CategoryMembershipChange.php',
|
2015-11-15 02:29:37 +00:00
|
|
|
'CategoryMembershipChangeJob' => __DIR__ . '/includes/jobqueue/jobs/CategoryMembershipChangeJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CategoryPage' => __DIR__ . '/includes/page/CategoryPage.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'CategoryPager' => __DIR__ . '/includes/specials/pagers/CategoryPager.php',
|
2023-02-09 18:59:23 +00:00
|
|
|
'CategoryViewer' => __DIR__ . '/includes/Category/CategoryViewer.php',
|
2015-12-09 18:05:59 +00:00
|
|
|
'CdnCacheUpdate' => __DIR__ . '/includes/deferred/CdnCacheUpdate.php',
|
2015-11-13 06:41:37 +00:00
|
|
|
'CdnPurgeJob' => __DIR__ . '/includes/jobqueue/jobs/CdnPurgeJob.php',
|
2021-06-22 19:28:29 +00:00
|
|
|
'CentralIdLookup' => __DIR__ . '/includes/user/CentralId/CentralIdLookup.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ChangePassword' => __DIR__ . '/maintenance/changePassword.php',
|
2015-04-16 17:40:04 +00:00
|
|
|
'ChangeTags' => __DIR__ . '/includes/changetags/ChangeTags.php',
|
2015-04-15 01:31:53 +00:00
|
|
|
'ChangeTagsList' => __DIR__ . '/includes/changetags/ChangeTagsList.php',
|
|
|
|
|
'ChangeTagsLogItem' => __DIR__ . '/includes/changetags/ChangeTagsLogItem.php',
|
|
|
|
|
'ChangeTagsLogList' => __DIR__ . '/includes/changetags/ChangeTagsLogList.php',
|
|
|
|
|
'ChangeTagsRevisionItem' => __DIR__ . '/includes/changetags/ChangeTagsRevisionItem.php',
|
|
|
|
|
'ChangeTagsRevisionList' => __DIR__ . '/includes/changetags/ChangeTagsRevisionList.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ChangesFeed' => __DIR__ . '/includes/changes/ChangesFeed.php',
|
|
|
|
|
'ChangesList' => __DIR__ . '/includes/changes/ChangesList.php',
|
Back-end of new RecentChanges page, refactoring
Generate old RC, Related changes (it was already displayed and working
on 'Related changes' before this change), and Watchlist/etc. and data
for new UI from back-end.
This moves everything used for defining the old (unstructured) and new
(structured) filters into unified objects, ChangesListFilter and
ChangesListFilterGroup (and sub-classes).
This includes the query logic (see below) and logic for adding
CSS attribution classes.
This is a breaking change (for subclasses of ChangesListSpecialpage)
due to the signature (and name) change of buildMainQueryConds and
doMainQuery. An alternative that I don't think is a breaking change
would be to put the filter->DB logic in runMainQueryHook, but then it's
doing more than just running a hook.
This is because it used to only build $conds here, but it's clear from
filterOnUserExperienceLevel filters need more than this. I added all
the DB parameters from the hook, but this could be debated.
I have an checked and fixed the WMF-deployed extensions affected by
this.
Other than that, there should be full back-compat (including legacy
filters not using the new system).
* add hidepatrolled/hideunpatrolled to new UI.
* Move userExpLevel from RC to ChangesListSpecialPage. Although for
now the structured UI only displays on RC anyway, when it displays on
watchlist, it seems we'll want userExpLevel there.
Change this to make 'all' exclude unregistered users.
* Don't have front-end convert none-selected to 'all' on string_options.
* Needs the hideanons/hideliu special redirect to be done before this
is merged (T151873)
Bug: T152754
Bug: T152797
Change-Id: Iec2d82f6a830403d1c948a280efa58992e0cdee7
2017-02-14 07:55:37 +00:00
|
|
|
'ChangesListBooleanFilter' => __DIR__ . '/includes/changes/ChangesListBooleanFilter.php',
|
|
|
|
|
'ChangesListBooleanFilterGroup' => __DIR__ . '/includes/changes/ChangesListBooleanFilterGroup.php',
|
|
|
|
|
'ChangesListFilter' => __DIR__ . '/includes/changes/ChangesListFilter.php',
|
|
|
|
|
'ChangesListFilterGroup' => __DIR__ . '/includes/changes/ChangesListFilterGroup.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ChangesListSpecialPage' => __DIR__ . '/includes/specialpage/ChangesListSpecialPage.php',
|
Back-end of new RecentChanges page, refactoring
Generate old RC, Related changes (it was already displayed and working
on 'Related changes' before this change), and Watchlist/etc. and data
for new UI from back-end.
This moves everything used for defining the old (unstructured) and new
(structured) filters into unified objects, ChangesListFilter and
ChangesListFilterGroup (and sub-classes).
This includes the query logic (see below) and logic for adding
CSS attribution classes.
This is a breaking change (for subclasses of ChangesListSpecialpage)
due to the signature (and name) change of buildMainQueryConds and
doMainQuery. An alternative that I don't think is a breaking change
would be to put the filter->DB logic in runMainQueryHook, but then it's
doing more than just running a hook.
This is because it used to only build $conds here, but it's clear from
filterOnUserExperienceLevel filters need more than this. I added all
the DB parameters from the hook, but this could be debated.
I have an checked and fixed the WMF-deployed extensions affected by
this.
Other than that, there should be full back-compat (including legacy
filters not using the new system).
* add hidepatrolled/hideunpatrolled to new UI.
* Move userExpLevel from RC to ChangesListSpecialPage. Although for
now the structured UI only displays on RC anyway, when it displays on
watchlist, it seems we'll want userExpLevel there.
Change this to make 'all' exclude unregistered users.
* Don't have front-end convert none-selected to 'all' on string_options.
* Needs the hideanons/hideliu special redirect to be done before this
is merged (T151873)
Bug: T152754
Bug: T152797
Change-Id: Iec2d82f6a830403d1c948a280efa58992e0cdee7
2017-02-14 07:55:37 +00:00
|
|
|
'ChangesListStringOptionsFilter' => __DIR__ . '/includes/changes/ChangesListStringOptionsFilter.php',
|
|
|
|
|
'ChangesListStringOptionsFilterGroup' => __DIR__ . '/includes/changes/ChangesListStringOptionsFilterGroup.php',
|
2022-10-17 11:10:57 +00:00
|
|
|
'ChannelFeed' => __DIR__ . '/includes/Feed/ChannelFeed.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CheckBadRedirects' => __DIR__ . '/maintenance/checkBadRedirects.php',
|
2014-12-08 20:08:52 +00:00
|
|
|
'CheckComposerLockUpToDate' => __DIR__ . '/maintenance/checkComposerLockUpToDate.php',
|
2019-04-14 10:19:12 +00:00
|
|
|
'CheckDependencies' => __DIR__ . '/maintenance/checkDependencies.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CheckImages' => __DIR__ . '/maintenance/checkImages.php',
|
2023-01-08 21:31:07 +00:00
|
|
|
'CheckStorage' => __DIR__ . '/maintenance/storage/checkStorage.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CheckUsernames' => __DIR__ . '/maintenance/checkUsernames.php',
|
2019-04-14 15:04:32 +00:00
|
|
|
'ClassCollector' => __DIR__ . '/includes/utils/ClassCollector.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CleanupBlocks' => __DIR__ . '/maintenance/cleanupBlocks.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'CleanupCaps' => __DIR__ . '/maintenance/cleanupCaps.php',
|
2016-07-13 15:30:37 +00:00
|
|
|
'CleanupEmptyCategories' => __DIR__ . '/maintenance/cleanupEmptyCategories.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'CleanupImages' => __DIR__ . '/maintenance/cleanupImages.php',
|
New maintenance script to clean up rows with invalid DB keys
The TitleValue constructor, used by the link cache among other things,
throws an exception for DB keys which do not satisfy a simple sanity test
(starting or ending with _, or containing a space, tab, CR or LF
character). This has broken certain special pages on a number of WMF sites;
see T99736, T146778 and T155091.
The new cleanupInvalidDbKeys.php script allows these bogus entries to be
removed from the DB, making sure these exceptions won't be thrown in the
future. It cleans the title columns of the page, archive, redirect,
logging, category, protected_titles, recentchanges, watchlist, pagelinks,
templatelinks, and categorylinks tables.
The script doesn't support batching; most wikis should have fewer than 500
broken entries in each table. If need be, the script can be run several
times.
To make the LIKE queries work properly I had to fix the broken escaping
behaviour of Database::buildLike() -- previously it had a habit of double-
escaping things. Now an ESCAPE clause is added to change the escape
character from the problematic default backslash, and tests are added to
cover the changes.
Bug: T155091
Change-Id: I908e795e884e35be91852c0eaf056d6acfda31d8
2017-03-10 13:27:27 +00:00
|
|
|
'CleanupInvalidDbKeys' => __DIR__ . '/maintenance/cleanupInvalidDbKeys.php',
|
2022-09-09 10:30:24 +00:00
|
|
|
'CleanupPageLang' => __DIR__ . '/maintenance/cleanupPageLang.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CleanupPreferences' => __DIR__ . '/maintenance/cleanupPreferences.php',
|
|
|
|
|
'CleanupRemovedModules' => __DIR__ . '/maintenance/cleanupRemovedModules.php',
|
|
|
|
|
'CleanupSpam' => __DIR__ . '/maintenance/cleanupSpam.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'CleanupUploadStash' => __DIR__ . '/maintenance/cleanupUploadStash.php',
|
|
|
|
|
'CleanupWatchlist' => __DIR__ . '/maintenance/cleanupWatchlist.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ClearInterwikiCache' => __DIR__ . '/maintenance/clearInterwikiCache.php',
|
2016-03-14 21:07:39 +00:00
|
|
|
'ClearUserWatchlistJob' => __DIR__ . '/includes/jobqueue/jobs/ClearUserWatchlistJob.php',
|
2018-03-02 20:42:57 +00:00
|
|
|
'ClearWatchlistNotificationsJob' => __DIR__ . '/includes/jobqueue/jobs/ClearWatchlistNotificationsJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CliInstaller' => __DIR__ . '/includes/installer/CliInstaller.php',
|
|
|
|
|
'CloneDatabase' => __DIR__ . '/includes/db/CloneDatabase.php',
|
2020-09-23 10:38:07 +00:00
|
|
|
'CodeCleanerGlobalsPass' => __DIR__ . '/maintenance/CodeCleanerGlobalsPass.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CodeContentHandler' => __DIR__ . '/includes/content/CodeContentHandler.php',
|
2023-06-23 19:38:08 +00:00
|
|
|
'CodexHTMLForm' => __DIR__ . '/includes/htmlform/CodexHTMLForm.php',
|
2019-05-28 22:22:18 +00:00
|
|
|
'CollapsibleFieldsetLayout' => __DIR__ . '/includes/htmlform/CollapsibleFieldsetLayout.php',
|
2016-04-03 08:23:20 +00:00
|
|
|
'Collation' => __DIR__ . '/includes/collation/Collation.php',
|
|
|
|
|
'CollationCkb' => __DIR__ . '/includes/collation/CollationCkb.php',
|
2023-01-19 07:56:30 +00:00
|
|
|
'CommandLineInstaller' => __DIR__ . '/maintenance/install.php',
|
2022-12-28 21:50:03 +00:00
|
|
|
'CommentStore' => __DIR__ . '/includes/CommentStore/CommentStore.php',
|
|
|
|
|
'CommentStoreComment' => __DIR__ . '/includes/CommentStore/CommentStoreComment.php',
|
2023-01-10 10:07:09 +00:00
|
|
|
'CompareLanguageConverterOutput' => __DIR__ . '/maintenance/compareLanguageConverterOutput.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CompareParserCache' => __DIR__ . '/maintenance/compareParserCache.php',
|
|
|
|
|
'CompareParsers' => __DIR__ . '/maintenance/compareParsers.php',
|
2015-10-25 23:55:47 +00:00
|
|
|
'ComposerInstalled' => __DIR__ . '/includes/libs/composer/ComposerInstalled.php',
|
2014-12-08 20:08:52 +00:00
|
|
|
'ComposerJson' => __DIR__ . '/includes/libs/composer/ComposerJson.php',
|
|
|
|
|
'ComposerLock' => __DIR__ . '/includes/libs/composer/ComposerLock.php',
|
2019-07-21 18:34:23 +00:00
|
|
|
'ComposerPhpunitXmlCoverageEdit' => __DIR__ . '/includes/composer/ComposerPhpunitXmlCoverageEdit.php',
|
2017-11-15 01:55:22 +00:00
|
|
|
'ComposerVendorHtaccessCreator' => __DIR__ . '/includes/composer/ComposerVendorHtaccessCreator.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CompressOld' => __DIR__ . '/maintenance/storage/compressOld.php',
|
2019-03-25 19:29:47 +00:00
|
|
|
'ConcatenatedGzipHistoryBlob' => __DIR__ . '/includes/historyblob/ConcatenatedGzipHistoryBlob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Config' => __DIR__ . '/includes/config/Config.php',
|
|
|
|
|
'ConfigException' => __DIR__ . '/includes/config/ConfigException.php',
|
|
|
|
|
'ConfigFactory' => __DIR__ . '/includes/config/ConfigFactory.php',
|
2023-05-04 21:41:21 +00:00
|
|
|
'ConfiguredReadOnlyMode' => __DIR__ . '/includes/libs/rdbms/ConfiguredReadOnlyMode.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'ConstantDependency' => __DIR__ . '/includes/language/dependency/ConstantDependency.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Content' => __DIR__ . '/includes/content/Content.php',
|
|
|
|
|
'ContentHandler' => __DIR__ . '/includes/content/ContentHandler.php',
|
2020-01-11 23:49:41 +00:00
|
|
|
'ContentModelChange' => __DIR__ . '/includes/content/ContentModelChange.php',
|
2015-03-29 03:36:01 +00:00
|
|
|
'ContentModelLogFormatter' => __DIR__ . '/includes/logging/ContentModelLogFormatter.php',
|
2023-02-16 12:36:41 +00:00
|
|
|
'ContentSecurityPolicy' => __DIR__ . '/includes/Request/ContentSecurityPolicy.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ContextSource' => __DIR__ . '/includes/context/ContextSource.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'ContribsPager' => __DIR__ . '/includes/specials/pagers/ContribsPager.php',
|
Implement extension registration from an extension.json file
Introduces wfLoadExtension()/wfLoadSkin() which should be used in
LocalSettings.php rather than require-ing a PHP entry point.
Extensions and skins would add "extension.json" or "skin.json" files
in their root, which contains all the information typically
present in PHP entry point files (classes to autoload, special pages,
API modules, etc.) A full schema can be found at
docs/extension.schema.json, and a script to validate these to the
schema is provided. An additional script is provided to convert
typical PHP entry point files into their JSON equivalents.
The basic flow of loading an extension goes like:
* Get the ExtensionRegistry singleton instance
* ExtensionRegistry takes a filename, reads the file or tries
to get the parsed JSON from APC if possible.
* The JSON is run through a Processor instance,
which registers things with the appropriate
global settings.
* The output of the processor is cached in APC if possible.
* The extension/skin is marked as loaded in the
ExtensionRegistry and a callback function is executed
if one was specified.
For ideal performance, a batch loading method is also provided:
* The absolute path name to the JSON file is queued
in the ExtensionRegistry instance.
* When loadFromQueue() is called, it constructs a hash
unique to the members of the current queue, and sees
if the queue has been cached in APC. If not, it processes
each file individually, and combines the result of each
Processor into one giant array, which is cached in APC.
* The giant array then sets various global settings,
defines constants, and calls callbacks.
To invalidate the cached processed info, by default the mtime
of each JSON file is checked. However that can be slow if you
have a large number of extensions, so you can set $wgExtensionInfoMTime
to the mtime of one file, and `touch` it whenever you update
your extensions.
Change-Id: I7074b65d07c5c7d4e3f1fb0755d74a0b07ed4596
2014-10-15 00:31:15 +00:00
|
|
|
'ConvertExtensionToRegistration' => __DIR__ . '/maintenance/convertExtensionToRegistration.php',
|
2019-08-25 17:55:34 +00:00
|
|
|
'ConverterRule' => __DIR__ . '/includes/language/ConverterRule.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Cookie' => __DIR__ . '/includes/libs/Cookie.php',
|
2016-04-03 08:46:36 +00:00
|
|
|
'CookieJar' => __DIR__ . '/includes/libs/CookieJar.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CopyFileBackend' => __DIR__ . '/maintenance/copyFileBackend.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'CopyFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/CopyFileOp.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CopyJobQueue' => __DIR__ . '/maintenance/copyJobQueue.php',
|
2020-06-05 02:54:51 +00:00
|
|
|
'CoreMagicVariables' => __DIR__ . '/includes/parser/CoreMagicVariables.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CoreParserFunctions' => __DIR__ . '/includes/parser/CoreParserFunctions.php',
|
|
|
|
|
'CoreTagHooks' => __DIR__ . '/includes/parser/CoreTagHooks.php',
|
|
|
|
|
'CreateAndPromote' => __DIR__ . '/maintenance/createAndPromote.php',
|
2020-07-18 15:07:10 +00:00
|
|
|
'CreateBotPassword' => __DIR__ . '/maintenance/createBotPassword.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'CreateFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/CreateFileOp.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CreditsAction' => __DIR__ . '/includes/actions/CreditsAction.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'CrhConverter' => __DIR__ . '/includes/language/converters/CrhConverter.php',
|
2016-10-04 17:48:02 +00:00
|
|
|
'CryptHKDF' => __DIR__ . '/includes/libs/CryptHKDF.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'CssContent' => __DIR__ . '/includes/content/CssContent.php',
|
|
|
|
|
'CssContentHandler' => __DIR__ . '/includes/content/CssContentHandler.php',
|
|
|
|
|
'CsvStatsOutput' => __DIR__ . '/maintenance/language/StatOutputs.php',
|
2017-04-28 04:52:49 +00:00
|
|
|
'CustomUppercaseCollation' => __DIR__ . '/includes/collation/CustomUppercaseCollation.php',
|
2016-09-22 19:12:01 +00:00
|
|
|
'DBAccessError' => __DIR__ . '/includes/libs/rdbms/exception/DBAccessError.php',
|
rdbms: Move IDBAccessObject from /includes/dao/ to /libs/rdbms
* Is generally useful for Rdbms consumers.
* Has no dependencies besides stable constants and interface from Rdbms.
* Is generic, i.e. not specific to MediaWiki in its naming, purpose,
or required domain knowledge.
Current rationale is that "dao" is not a recognised component
in MediaWiki core. Its super tiny and a handful of changes in over a
decade, so seems overkill to make a big deal out of it by creating a
whole new component for it in all the usual places. Yet, having it
fall into a gap with no owner for issue tracking, code review, no
documentation, and no definition of what this directory is for
exactly, is also counter-productive. Hence, finding a suitable place
for it.
Change-Id: I8cbb9ebfa8873085a30cb355e3299493538006ae
2023-06-01 12:32:23 +00:00
|
|
|
'DBAccessObjectUtils' => __DIR__ . '/includes/libs/rdbms/DBAccessObjectUtils.php',
|
2016-09-22 19:12:01 +00:00
|
|
|
'DBConnectionError' => __DIR__ . '/includes/libs/rdbms/exception/DBConnectionError.php',
|
2016-09-14 18:55:33 +00:00
|
|
|
'DBError' => __DIR__ . '/includes/libs/rdbms/exception/DBError.php',
|
2016-09-22 19:12:01 +00:00
|
|
|
'DBExpectedError' => __DIR__ . '/includes/libs/rdbms/exception/DBExpectedError.php',
|
|
|
|
|
'DBQueryError' => __DIR__ . '/includes/libs/rdbms/exception/DBQueryError.php',
|
|
|
|
|
'DBReadOnlyError' => __DIR__ . '/includes/libs/rdbms/exception/DBReadOnlyError.php',
|
|
|
|
|
'DBReplicationWaitError' => __DIR__ . '/includes/libs/rdbms/exception/DBReplicationWaitError.php',
|
2015-02-06 02:00:26 +00:00
|
|
|
'DBSiteStore' => __DIR__ . '/includes/site/DBSiteStore.php',
|
2016-09-22 19:12:01 +00:00
|
|
|
'DBTransactionError' => __DIR__ . '/includes/libs/rdbms/exception/DBTransactionError.php',
|
|
|
|
|
'DBTransactionSizeError' => __DIR__ . '/includes/libs/rdbms/exception/DBTransactionSizeError.php',
|
|
|
|
|
'DBUnexpectedError' => __DIR__ . '/includes/libs/rdbms/exception/DBUnexpectedError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DataUpdate' => __DIR__ . '/includes/deferred/DataUpdate.php',
|
|
|
|
|
'DatabaseInstaller' => __DIR__ . '/includes/installer/DatabaseInstaller.php',
|
|
|
|
|
'DatabaseLag' => __DIR__ . '/maintenance/lag.php',
|
2019-04-14 01:05:34 +00:00
|
|
|
'DatabaseLogEntry' => __DIR__ . '/includes/logging/DatabaseLogEntry.php',
|
2023-08-10 22:12:01 +00:00
|
|
|
'DatabaseMysqlBase' => __DIR__ . '/includes/libs/rdbms/database/DatabaseMySQL.php',
|
|
|
|
|
'DatabaseMysqli' => __DIR__ . '/includes/libs/rdbms/database/DatabaseMySQL.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DatabaseUpdater' => __DIR__ . '/includes/installer/DatabaseUpdater.php',
|
|
|
|
|
'DateFormats' => __DIR__ . '/maintenance/language/date-formats.php',
|
|
|
|
|
'DateFormatter' => __DIR__ . '/includes/parser/DateFormatter.php',
|
Rehabilitate DateFormatter
This code is surprisingly little changed since I added the class in
November 2003, and needs some modernisation.
* Remove the "linked" option, unused since 1.21. Similarly, make the
"match-whole" option implied. This allows the regexes to be
simplified. Nothing will be broken, according to CodeSearch.
* Instead of ucfirst(), use the canonical month name from the language.
This will work with e.g. French which does not capitalise month names.
* Stop caching DateFormatter instances in APC. Caching was added
in 2005 when initialisation was being done on every request, but now
it is only needed when parsing a page with {{#formatdate}}, which is
rarely, and the constructor overhead is only 200µs after Language
object data initialisation. Instead, use an in-process cache via a
factory service.
* Add docs and extra tests.
* Remove todo note obsolete since 38 minutes after the original commit.
* Rename many variables.
* Use double-slash comments
* Don't store the Language object, just get arrays.
* Use mb_strtolower() instead of Language::lc() -- any customisation of
Language::lc() would break PCRE case-insensitive matching.
* Use named subpatterns instead of "keys"
* Remove the ISO1/ISO2 distinction, the only difference was linking.
* Use closure variables instead of temporary object members
Change-Id: I25fb1203dba2930724d7bc28ad0d51f59f88e1ea
2019-04-10 05:33:57 +00:00
|
|
|
'DateFormatterFactory' => __DIR__ . '/includes/parser/DateFormatterFactory.php',
|
2016-07-22 02:32:09 +00:00
|
|
|
'DeferrableCallback' => __DIR__ . '/includes/deferred/DeferrableCallback.php',
|
2015-11-30 22:02:53 +00:00
|
|
|
'DeferrableUpdate' => __DIR__ . '/includes/deferred/DeferrableUpdate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DeferredUpdates' => __DIR__ . '/includes/deferred/DeferredUpdates.php',
|
2020-05-06 14:37:00 +00:00
|
|
|
'DeferredUpdatesScope' => __DIR__ . '/includes/deferred/DeferredUpdatesScope.php',
|
2023-08-24 23:38:02 +00:00
|
|
|
'DeferredUpdatesScopeMediaWikiStack' => __DIR__ . '/includes/deferred/DeferredUpdatesScopeMediaWikiStack.php',
|
2020-05-06 14:37:00 +00:00
|
|
|
'DeferredUpdatesScopeStack' => __DIR__ . '/includes/deferred/DeferredUpdatesScopeStack.php',
|
2019-10-28 11:48:37 +00:00
|
|
|
'Deflate' => __DIR__ . '/includes/libs/Deflate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DeleteAction' => __DIR__ . '/includes/actions/DeleteAction.php',
|
|
|
|
|
'DeleteArchivedFiles' => __DIR__ . '/maintenance/deleteArchivedFiles.php',
|
|
|
|
|
'DeleteArchivedRevisions' => __DIR__ . '/maintenance/deleteArchivedRevisions.php',
|
2018-03-17 23:34:32 +00:00
|
|
|
'DeleteAutoPatrolLogs' => __DIR__ . '/maintenance/deleteAutoPatrolLogs.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DeleteBatch' => __DIR__ . '/maintenance/deleteBatch.php',
|
|
|
|
|
'DeleteDefaultMessages' => __DIR__ . '/maintenance/deleteDefaultMessages.php',
|
|
|
|
|
'DeleteEqualMessages' => __DIR__ . '/maintenance/deleteEqualMessages.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'DeleteFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/DeleteFileOp.php',
|
2015-09-22 19:07:05 +00:00
|
|
|
'DeleteLinksJob' => __DIR__ . '/includes/jobqueue/jobs/DeleteLinksJob.php',
|
2018-06-10 23:05:59 +00:00
|
|
|
'DeleteLocalPasswords' => __DIR__ . '/maintenance/includes/DeleteLocalPasswords.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DeleteLogFormatter' => __DIR__ . '/includes/logging/DeleteLogFormatter.php',
|
|
|
|
|
'DeleteOldRevisions' => __DIR__ . '/maintenance/deleteOldRevisions.php',
|
|
|
|
|
'DeleteOrphanedRevisions' => __DIR__ . '/maintenance/deleteOrphanedRevisions.php',
|
2018-08-28 22:01:48 +00:00
|
|
|
'DeletePageJob' => __DIR__ . '/includes/jobqueue/jobs/DeletePageJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DeleteSelfExternals' => __DIR__ . '/maintenance/deleteSelfExternals.php',
|
2019-10-14 07:36:51 +00:00
|
|
|
'DeleteTag' => __DIR__ . '/maintenance/deleteTag.php',
|
2021-09-18 09:09:39 +00:00
|
|
|
'DeleteUserEmail' => __DIR__ . '/maintenance/deleteUserEmail.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'DeletedContribsPager' => __DIR__ . '/includes/specials/pagers/DeletedContribsPager.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'DependencyWrapper' => __DIR__ . '/includes/language/dependency/DependencyWrapper.php',
|
2022-10-25 16:58:49 +00:00
|
|
|
'DeprecatedGlobal' => __DIR__ . '/includes/StubObject/DeprecatedGlobal.php',
|
2015-12-21 10:32:48 +00:00
|
|
|
'DeprecatedInterfaceFinder' => __DIR__ . '/maintenance/findDeprecated.php',
|
2018-07-11 17:34:26 +00:00
|
|
|
'DeprecationHelper' => __DIR__ . '/includes/debug/DeprecationHelper.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DerivativeContext' => __DIR__ . '/includes/context/DerivativeContext.php',
|
2022-10-28 10:04:25 +00:00
|
|
|
'DerivativeRequest' => __DIR__ . '/includes/Request/DerivativeRequest.php',
|
2022-05-06 09:09:56 +00:00
|
|
|
'DerivativeResourceLoaderContext' => __DIR__ . '/includes/ResourceLoader/DerivativeContext.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'DescribeFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/DescribeFileOp.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'Diff' => __DIR__ . '/includes/libs/Diff/Diff.php',
|
|
|
|
|
'DiffEngine' => __DIR__ . '/includes/libs/Diff/DiffEngine.php',
|
|
|
|
|
'DiffFormatter' => __DIR__ . '/includes/libs/Diff/DiffFormatter.php',
|
2019-03-25 19:29:47 +00:00
|
|
|
'DiffHistoryBlob' => __DIR__ . '/includes/historyblob/DiffHistoryBlob.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'DiffOp' => __DIR__ . '/includes/libs/Diff/DiffOp.php',
|
|
|
|
|
'DiffOpAdd' => __DIR__ . '/includes/libs/Diff/DiffOpAdd.php',
|
|
|
|
|
'DiffOpChange' => __DIR__ . '/includes/libs/Diff/DiffOpChange.php',
|
|
|
|
|
'DiffOpCopy' => __DIR__ . '/includes/libs/Diff/DiffOpCopy.php',
|
|
|
|
|
'DiffOpDelete' => __DIR__ . '/includes/libs/Diff/DiffOpDelete.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DifferenceEngine' => __DIR__ . '/includes/diff/DifferenceEngine.php',
|
[MCR] Render multi-slot diffs
Move logic for rendering a diff between two content objects out of
DifferenceEngine, into a new SlotDiffRenderer class. Make
DifferenceEngine use multiple SlotDiffRenderers, one per slot.
This separates the class tree for changing high-level diff properties
such as the header or the revision selection method (same as before:
subclass DifferenceEngine and override ContentHandler::getDiffEngineClass
or implement GetDifferenceEngine) and the one for changing the actual
diff rendering for a given content type (subclass SlotDiffRenderer and
override ContentHandler::getSlotDiffRenderer or implement
GetSlotDiffRenderer). To keep B/C, when SlotDiffRenderer is not overridden
for a given content type but DifferenceEngine is, that DifferenceEngine
will be used instead.
The weak point of the scheme is overriding the DifferenceEngine methods
passing control to the SlotDiffRenderers (the ones calling
getDifferenceEngines), without calling the parent. These are:
showDiffStyle, getDiffBody, getDiffBodyCacheKeyParams. Extensions doing
that will probably break in unpredictable ways (most likely, only
showing the main slot diff). Nothing in gerrit does it, at least.
A new GetSlotDiffRenderer hook is added to modify rendering for content
models not owned by the extension, much like how GetDifferenceEngine
works.
Also deprecates public access to mNewRev/mOldRev and creates public
getters instead. DifferenceEngine never supported external changes to
those properties, this just acknowledges it.
Bug: T194731
Change-Id: I2f8a9dbebd2290b7feafb20e2bb2a2693e18ba11
Depends-On: I04e885a33bfce5bccc807b9bcfe1eaa577a9fd47
Depends-On: I203d8895bf436b7fee53fe4718dede8a3b1768bc
2018-07-11 09:24:07 +00:00
|
|
|
'DifferenceEngineSlotDiffRenderer' => __DIR__ . '/includes/diff/DifferenceEngineSlotDiffRenderer.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Digit2Html' => __DIR__ . '/maintenance/language/digit2html.php',
|
2018-11-16 02:22:26 +00:00
|
|
|
'DisabledSpecialPage' => __DIR__ . '/includes/specialpage/DisabledSpecialPage.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'DjVuHandler' => __DIR__ . '/includes/media/DjVuHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DjVuImage' => __DIR__ . '/includes/media/DjVuImage.php',
|
2017-03-29 18:06:32 +00:00
|
|
|
'DnsSrvDiscoverer' => __DIR__ . '/includes/libs/DnsSrvDiscoverer.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DoubleRedirectJob' => __DIR__ . '/includes/jobqueue/jobs/DoubleRedirectJob.php',
|
2022-12-05 11:29:37 +00:00
|
|
|
'DummyLinker' => __DIR__ . '/includes/linker/DummyLinker.php',
|
2016-08-09 17:22:09 +00:00
|
|
|
'DummySearchIndexFieldDefinition' => __DIR__ . '/includes/search/DummySearchIndexFieldDefinition.php',
|
2015-12-28 22:23:22 +00:00
|
|
|
'Dump7ZipOutput' => __DIR__ . '/includes/export/Dump7ZipOutput.php',
|
|
|
|
|
'DumpBZip2Output' => __DIR__ . '/includes/export/DumpBZip2Output.php',
|
2015-12-31 09:46:54 +00:00
|
|
|
'DumpBackup' => __DIR__ . '/maintenance/dumpBackup.php',
|
2016-12-16 22:48:46 +00:00
|
|
|
'DumpCategoriesAsRdf' => __DIR__ . '/maintenance/dumpCategoriesAsRdf.php',
|
2015-12-31 09:46:54 +00:00
|
|
|
'DumpDBZip2Output' => __DIR__ . '/includes/export/DumpDBZip2Output.php',
|
2015-12-28 22:23:22 +00:00
|
|
|
'DumpFileOutput' => __DIR__ . '/includes/export/DumpFileOutput.php',
|
|
|
|
|
'DumpFilter' => __DIR__ . '/includes/export/DumpFilter.php',
|
|
|
|
|
'DumpGZipOutput' => __DIR__ . '/includes/export/DumpGZipOutput.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DumpIterator' => __DIR__ . '/maintenance/dumpIterator.php',
|
2019-03-20 05:25:06 +00:00
|
|
|
'DumpLBZip2Output' => __DIR__ . '/includes/export/DumpLBZip2Output.php',
|
2015-12-28 22:23:22 +00:00
|
|
|
'DumpLatestFilter' => __DIR__ . '/includes/export/DumpLatestFilter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DumpLinks' => __DIR__ . '/maintenance/dumpLinks.php',
|
|
|
|
|
'DumpMessages' => __DIR__ . '/maintenance/language/dumpMessages.php',
|
2015-12-28 22:23:22 +00:00
|
|
|
'DumpMultiWriter' => __DIR__ . '/includes/export/DumpMultiWriter.php',
|
|
|
|
|
'DumpNamespaceFilter' => __DIR__ . '/includes/export/DumpNamespaceFilter.php',
|
|
|
|
|
'DumpNotalkFilter' => __DIR__ . '/includes/export/DumpNotalkFilter.php',
|
|
|
|
|
'DumpOutput' => __DIR__ . '/includes/export/DumpOutput.php',
|
|
|
|
|
'DumpPipeOutput' => __DIR__ . '/includes/export/DumpPipeOutput.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DumpRenderer' => __DIR__ . '/maintenance/renderDump.php',
|
|
|
|
|
'DumpRev' => __DIR__ . '/maintenance/storage/dumpRev.php',
|
2016-07-08 20:22:27 +00:00
|
|
|
'DumpStringOutput' => __DIR__ . '/includes/export/DumpStringOutput.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'DumpUploads' => __DIR__ . '/maintenance/dumpUploads.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'DuplicateJob' => __DIR__ . '/includes/jobqueue/jobs/DuplicateJob.php',
|
2019-10-28 11:48:37 +00:00
|
|
|
'EasyDeflate' => __DIR__ . '/includes/libs/Deflate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'EditAction' => __DIR__ . '/includes/actions/EditAction.php',
|
|
|
|
|
'EditCLI' => __DIR__ . '/maintenance/edit.php',
|
2023-02-13 19:56:51 +00:00
|
|
|
'EditPage' => __DIR__ . '/includes/editpage/EditPage.php',
|
2017-09-12 21:03:26 +00:00
|
|
|
'EditWatchlistCheckboxSeriesField' => __DIR__ . '/includes/specials/formfields/EditWatchlistCheckboxSeriesField.php',
|
|
|
|
|
'EditWatchlistNormalHTMLForm' => __DIR__ . '/includes/specials/forms/EditWatchlistNormalHTMLForm.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'EmailNotification' => __DIR__ . '/includes/mail/EmailNotification.php',
|
|
|
|
|
'EmaillingJob' => __DIR__ . '/includes/jobqueue/jobs/EmaillingJob.php',
|
2015-02-25 08:22:50 +00:00
|
|
|
'EmptyBagOStuff' => __DIR__ . '/includes/libs/objectcache/EmptyBagOStuff.php',
|
2018-07-29 02:42:42 +00:00
|
|
|
'EmptyUserGroup' => __DIR__ . '/maintenance/emptyUserGroup.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'EnConverter' => __DIR__ . '/includes/language/converters/EnConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'EncryptedPassword' => __DIR__ . '/includes/password/EncryptedPassword.php',
|
|
|
|
|
'EnhancedChangesList' => __DIR__ . '/includes/changes/EnhancedChangesList.php',
|
|
|
|
|
'EnotifNotifyJob' => __DIR__ . '/includes/jobqueue/jobs/EnotifNotifyJob.php',
|
2016-08-23 04:20:49 +00:00
|
|
|
'EnqueueableDataUpdate' => __DIR__ . '/includes/deferred/EnqueueableDataUpdate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'EraseArchivedFile' => __DIR__ . '/maintenance/eraseArchivedFile.php',
|
|
|
|
|
'ErrorPageError' => __DIR__ . '/includes/exception/ErrorPageError.php',
|
2017-03-21 18:47:52 +00:00
|
|
|
'EtcdConfig' => __DIR__ . '/includes/config/EtcdConfig.php',
|
2017-09-01 01:53:18 +00:00
|
|
|
'EtcdConfigParseError' => __DIR__ . '/includes/config/EtcdConfigParseError.php',
|
2015-04-27 19:35:58 +00:00
|
|
|
'EventRelayer' => __DIR__ . '/includes/libs/eventrelayer/EventRelayer.php',
|
2023-06-09 20:58:57 +00:00
|
|
|
'EventRelayerGroup' => __DIR__ . '/includes/libs/eventrelayer/EventRelayerGroup.php',
|
2016-04-03 08:47:52 +00:00
|
|
|
'EventRelayerNull' => __DIR__ . '/includes/libs/eventrelayer/EventRelayerNull.php',
|
2017-10-20 07:36:03 +00:00
|
|
|
'ExecutableFinder' => __DIR__ . '/includes/utils/ExecutableFinder.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Exif' => __DIR__ . '/includes/media/Exif.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'ExifBitmapHandler' => __DIR__ . '/includes/media/ExifBitmapHandler.php',
|
2023-08-23 12:06:00 +00:00
|
|
|
'ExpireTemporaryAccounts' => __DIR__ . '/maintenance/expireTemporaryAccounts.php',
|
2015-01-29 04:59:50 +00:00
|
|
|
'ExplodeIterator' => __DIR__ . '/includes/libs/ExplodeIterator.php',
|
2017-12-13 16:59:45 +00:00
|
|
|
'ExportProgressFilter' => __DIR__ . '/includes/export/ExportProgressFilter.php',
|
2015-02-25 18:16:13 +00:00
|
|
|
'ExportSites' => __DIR__ . '/maintenance/exportSites.php',
|
2018-04-08 23:26:01 +00:00
|
|
|
'ExtensionDependencyError' => __DIR__ . '/includes/registration/ExtensionDependencyError.php',
|
2016-12-01 07:04:27 +00:00
|
|
|
'ExtensionJsonValidationError' => __DIR__ . '/includes/registration/ExtensionJsonValidationError.php',
|
|
|
|
|
'ExtensionJsonValidator' => __DIR__ . '/includes/registration/ExtensionJsonValidator.php',
|
Implement extension registration from an extension.json file
Introduces wfLoadExtension()/wfLoadSkin() which should be used in
LocalSettings.php rather than require-ing a PHP entry point.
Extensions and skins would add "extension.json" or "skin.json" files
in their root, which contains all the information typically
present in PHP entry point files (classes to autoload, special pages,
API modules, etc.) A full schema can be found at
docs/extension.schema.json, and a script to validate these to the
schema is provided. An additional script is provided to convert
typical PHP entry point files into their JSON equivalents.
The basic flow of loading an extension goes like:
* Get the ExtensionRegistry singleton instance
* ExtensionRegistry takes a filename, reads the file or tries
to get the parsed JSON from APC if possible.
* The JSON is run through a Processor instance,
which registers things with the appropriate
global settings.
* The output of the processor is cached in APC if possible.
* The extension/skin is marked as loaded in the
ExtensionRegistry and a callback function is executed
if one was specified.
For ideal performance, a batch loading method is also provided:
* The absolute path name to the JSON file is queued
in the ExtensionRegistry instance.
* When loadFromQueue() is called, it constructs a hash
unique to the members of the current queue, and sees
if the queue has been cached in APC. If not, it processes
each file individually, and combines the result of each
Processor into one giant array, which is cached in APC.
* The giant array then sets various global settings,
defines constants, and calls callbacks.
To invalidate the cached processed info, by default the mtime
of each JSON file is checked. However that can be slow if you
have a large number of extensions, so you can set $wgExtensionInfoMTime
to the mtime of one file, and `touch` it whenever you update
your extensions.
Change-Id: I7074b65d07c5c7d4e3f1fb0755d74a0b07ed4596
2014-10-15 00:31:15 +00:00
|
|
|
'ExtensionProcessor' => __DIR__ . '/includes/registration/ExtensionProcessor.php',
|
|
|
|
|
'ExtensionRegistry' => __DIR__ . '/includes/registration/ExtensionRegistry.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ExternalStore' => __DIR__ . '/includes/externalstore/ExternalStore.php',
|
2018-02-27 06:24:46 +00:00
|
|
|
'ExternalStoreAccess' => __DIR__ . '/includes/externalstore/ExternalStoreAccess.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ExternalStoreDB' => __DIR__ . '/includes/externalstore/ExternalStoreDB.php',
|
2018-02-27 06:24:46 +00:00
|
|
|
'ExternalStoreException' => __DIR__ . '/includes/externalstore/ExternalStoreException.php',
|
2017-11-14 11:17:34 +00:00
|
|
|
'ExternalStoreFactory' => __DIR__ . '/includes/externalstore/ExternalStoreFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ExternalStoreHttp' => __DIR__ . '/includes/externalstore/ExternalStoreHttp.php',
|
|
|
|
|
'ExternalStoreMedium' => __DIR__ . '/includes/externalstore/ExternalStoreMedium.php',
|
2018-02-27 06:24:46 +00:00
|
|
|
'ExternalStoreMemory' => __DIR__ . '/includes/externalstore/ExternalStoreMemory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ExternalStoreMwstore' => __DIR__ . '/includes/externalstore/ExternalStoreMwstore.php',
|
2018-01-11 12:20:35 +00:00
|
|
|
'ExternalUserNames' => __DIR__ . '/includes/user/ExternalUserNames.php',
|
2016-10-18 22:36:24 +00:00
|
|
|
'FSFile' => __DIR__ . '/includes/libs/filebackend/fsfile/FSFile.php',
|
2016-09-21 22:36:16 +00:00
|
|
|
'FSFileBackend' => __DIR__ . '/includes/libs/filebackend/FSFileBackend.php',
|
2019-04-15 09:30:24 +00:00
|
|
|
'FSFileBackendDirList' => __DIR__ . '/includes/libs/filebackend/fileiteration/FSFileBackendDirList.php',
|
|
|
|
|
'FSFileBackendFileList' => __DIR__ . '/includes/libs/filebackend/fileiteration/FSFileBackendFileList.php',
|
|
|
|
|
'FSFileBackendList' => __DIR__ . '/includes/libs/filebackend/fileiteration/FSFileBackendList.php',
|
|
|
|
|
'FSFileOpHandle' => __DIR__ . '/includes/libs/filebackend/fileophandle/FSFileOpHandle.php',
|
2016-09-18 04:42:56 +00:00
|
|
|
'FSLockManager' => __DIR__ . '/includes/libs/lockmanager/FSLockManager.php',
|
2020-03-03 14:33:54 +00:00
|
|
|
'FakeMaintenance' => __DIR__ . '/maintenance/includes/FakeMaintenance.php',
|
2020-07-19 19:50:37 +00:00
|
|
|
'FallbackContent' => __DIR__ . '/includes/content/FallbackContent.php',
|
|
|
|
|
'FallbackContentHandler' => __DIR__ . '/includes/content/FallbackContentHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FatalError' => __DIR__ . '/includes/exception/FatalError.php',
|
2022-10-28 10:04:25 +00:00
|
|
|
'FauxRequest' => __DIR__ . '/includes/Request/FauxRequest.php',
|
|
|
|
|
'FauxRequestUpload' => __DIR__ . '/includes/Request/FauxRequestUpload.php',
|
2023-03-01 17:02:32 +00:00
|
|
|
'FauxResponse' => __DIR__ . '/includes/Request/FauxResponse.php',
|
2019-10-07 14:29:09 +00:00
|
|
|
'FauxSearchResult' => __DIR__ . '/includes/search/FauxSearchResult.php',
|
|
|
|
|
'FauxSearchResultSet' => __DIR__ . '/includes/search/FauxSearchResultSet.php',
|
2022-10-17 11:10:57 +00:00
|
|
|
'FeedItem' => __DIR__ . '/includes/Feed/FeedItem.php',
|
|
|
|
|
'FeedUtils' => __DIR__ . '/includes/Feed/FeedUtils.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FetchText' => __DIR__ . '/maintenance/fetchText.php',
|
2016-09-14 10:11:41 +00:00
|
|
|
'Field' => __DIR__ . '/includes/libs/rdbms/field/Field.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'File' => __DIR__ . '/includes/filerepo/file/File.php',
|
2015-12-21 10:32:48 +00:00
|
|
|
'FileAwareNodeVisitor' => __DIR__ . '/maintenance/findDeprecated.php',
|
2016-09-18 07:54:54 +00:00
|
|
|
'FileBackend' => __DIR__ . '/includes/libs/filebackend/FileBackend.php',
|
2015-03-10 13:26:14 +00:00
|
|
|
'FileBackendDBRepoWrapper' => __DIR__ . '/includes/filerepo/FileBackendDBRepoWrapper.php',
|
2019-04-15 09:30:24 +00:00
|
|
|
'FileBackendError' => __DIR__ . '/includes/libs/filebackend/exception/FileBackendError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FileBackendGroup' => __DIR__ . '/includes/filebackend/FileBackendGroup.php',
|
2016-09-23 04:54:49 +00:00
|
|
|
'FileBackendMultiWrite' => __DIR__ . '/includes/libs/filebackend/FileBackendMultiWrite.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'FileBackendStore' => __DIR__ . '/includes/libs/filebackend/FileBackendStore.php',
|
2019-04-15 09:30:24 +00:00
|
|
|
'FileBackendStoreOpHandle' => __DIR__ . '/includes/libs/filebackend/fileophandle/FileBackendStoreOpHandle.php',
|
|
|
|
|
'FileBackendStoreShardDirIterator' => __DIR__ . '/includes/libs/filebackend/fileiteration/FileBackendStoreShardDirIterator.php',
|
|
|
|
|
'FileBackendStoreShardFileIterator' => __DIR__ . '/includes/libs/filebackend/fileiteration/FileBackendStoreShardFileIterator.php',
|
|
|
|
|
'FileBackendStoreShardListIterator' => __DIR__ . '/includes/libs/filebackend/fileiteration/FileBackendStoreShardListIterator.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FileCacheBase' => __DIR__ . '/includes/cache/FileCacheBase.php',
|
2016-09-14 00:52:33 +00:00
|
|
|
'FileContentHandler' => __DIR__ . '/includes/content/FileContentHandler.php',
|
2015-09-25 01:27:28 +00:00
|
|
|
'FileContentsHasher' => __DIR__ . '/includes/utils/FileContentsHasher.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'FileDeleteForm' => __DIR__ . '/includes/page/File/FileDeleteForm.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'FileDependency' => __DIR__ . '/includes/language/dependency/FileDependency.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'FileOp' => __DIR__ . '/includes/libs/filebackend/fileop/FileOp.php',
|
|
|
|
|
'FileOpBatch' => __DIR__ . '/includes/libs/filebackend/FileOpBatch.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'FileOpPerfTest' => __DIR__ . '/maintenance/fileOpPerfTest.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FileRepo' => __DIR__ . '/includes/filerepo/FileRepo.php',
|
2020-03-30 20:20:27 +00:00
|
|
|
'FindBadBlobs' => __DIR__ . '/maintenance/findBadBlobs.php',
|
2021-04-09 16:39:38 +00:00
|
|
|
'FindClasses' => __DIR__ . '/maintenance/findClasses.php',
|
2015-12-21 10:32:48 +00:00
|
|
|
'FindDeprecated' => __DIR__ . '/maintenance/findDeprecated.php',
|
2020-09-07 21:53:07 +00:00
|
|
|
'FindMissingActors' => __DIR__ . '/maintenance/findMissingActors.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FindMissingFiles' => __DIR__ . '/maintenance/findMissingFiles.php',
|
2015-10-28 20:01:50 +00:00
|
|
|
'FindOrphanedFiles' => __DIR__ . '/maintenance/findOrphanedFiles.php',
|
2015-10-21 05:44:33 +00:00
|
|
|
'FixDefaultJsonContentPages' => __DIR__ . '/maintenance/fixDefaultJsonContentPages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FixDoubleRedirects' => __DIR__ . '/maintenance/fixDoubleRedirects.php',
|
installer: Add database updater for 2008/2011 redirect schema changes
In 2008, the `redirect` table was added, and in 2011, it gained the
fields `rd_interwiki` and `rd_fragment`. We have never performed
proper maintenance for those changes, instead relying on code in
WikiPage to update it when the page was visited, or on an optional
run of refreshLinks.php.
I would like to remove the code in WikiPage, so we probably need to
perform this maintenance in the database updater. You know, for the
millions of people who have been dutifully upgrading their MediaWiki
installations since 2008, but never visited the pages there.
The script is a trimmed-down version of refreshLinks.php, without all
the weird stuff, and using a better index for the queries.
Bug: T346290
Change-Id: Iea251d2737b2fb472c4efb060ad2b97735b4ac53
2023-09-21 22:49:31 +00:00
|
|
|
'FixInconsistentRedirects' => __DIR__ . '/maintenance/fixInconsistentRedirects.php',
|
2023-06-05 23:16:06 +00:00
|
|
|
'FixLegacyEncoding' => __DIR__ . '/maintenance/storage/fixLegacyEncoding.php',
|
2020-11-13 13:27:42 +00:00
|
|
|
'FixMergeHistoryCorruption' => __DIR__ . '/maintenance/fixMergeHistoryCorruption.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FixTimestamps' => __DIR__ . '/maintenance/fixTimestamps.php',
|
|
|
|
|
'FixUserRegistration' => __DIR__ . '/maintenance/fixUserRegistration.php',
|
|
|
|
|
'ForeignAPIFile' => __DIR__ . '/includes/filerepo/file/ForeignAPIFile.php',
|
|
|
|
|
'ForeignAPIRepo' => __DIR__ . '/includes/filerepo/ForeignAPIRepo.php',
|
|
|
|
|
'ForeignDBFile' => __DIR__ . '/includes/filerepo/file/ForeignDBFile.php',
|
|
|
|
|
'ForeignDBRepo' => __DIR__ . '/includes/filerepo/ForeignDBRepo.php',
|
|
|
|
|
'ForeignDBViaLBRepo' => __DIR__ . '/includes/filerepo/ForeignDBViaLBRepo.php',
|
2022-11-02 17:28:31 +00:00
|
|
|
'ForeignResourceManager' => __DIR__ . '/includes/ResourceLoader/ForeignResourceManager.php',
|
2014-12-10 11:24:47 +00:00
|
|
|
'ForeignTitle' => __DIR__ . '/includes/title/ForeignTitle.php',
|
|
|
|
|
'ForeignTitleFactory' => __DIR__ . '/includes/title/ForeignTitleFactory.php',
|
2022-10-15 18:21:29 +00:00
|
|
|
'ForkController' => __DIR__ . '/includes/Maintenance/ForkController.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FormAction' => __DIR__ . '/includes/actions/FormAction.php',
|
2023-02-16 19:27:21 +00:00
|
|
|
'FormOptions' => __DIR__ . '/includes/Html/FormOptions.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FormSpecialPage' => __DIR__ . '/includes/specialpage/FormSpecialPage.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'FormatInstallDoc' => __DIR__ . '/maintenance/formatInstallDoc.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FormatJson' => __DIR__ . '/includes/json/FormatJson.php',
|
|
|
|
|
'FormatMetadata' => __DIR__ . '/includes/media/FormatMetadata.php',
|
Refactor RCFeed configuration (backwards compatible)
Previously:
* Engines had to be registered in $wgRCEngines.
* The RCFeedEngine classes took no constructor arguments and
were expected to send whatever text is previously formatted
without any information about it. This generic design was
flexible in allowing one to use any formatter with any engine
with minimal configuration and no need for additional classes.
* Each feed configured their destination by setting a 'uri'
option that encodes the name of the engine in PHP as the uri
scheme. Other uri components had to be used for any other
parameters to the engine (host, port, path). While fairly
limited, it was sufficient for the default engines in core.
Changes:
* Allow feed classes to be directly associated with a feed in $wgRCFeeds
via a new 'class' option - without the indirection of 'uri' and
$wgRCEngines. All options are passed to the given class constructor.
This matches the design used elsewhere in MediaWiki. (ObjectCache,
FileRepo, FileBackend, JobQueue, LBFactory, etc.)
This means we no longer enforce a 1:1 mapping of internet protocols
to a specific feed engine, and it allows settings to be passed
without being encoded as a URI neccecarily.
Main use case for this refactor is EventBus (see I7edc4d57fa),
Interestingly, this matches the (then incorrect) documentation
written for $wgRCFeeds in 2961884b43 (which mentions an 'engine'
property that would do the same thing).
* Move the default 'omit' filters and unrestricted 'formatter' handling
to a new FormattedRCFeed class, which remains the default.
* Deprecate RecentChange::getEngine() in favour of RCFeed::factory().
* Document wgRCEngines as "@since 1.22". Follows 2961884b43, ffc71cb6af.
Change-Id: I8be497c623c5d928762e3d3406a388f4d91add9a
2017-01-06 01:27:43 +00:00
|
|
|
'FormattedRCFeed' => __DIR__ . '/includes/rcfeed/FormattedRCFeed.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'FormlessAction' => __DIR__ . '/includes/actions/FormlessAction.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'GIFHandler' => __DIR__ . '/includes/media/GIFHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GIFMetadataExtractor' => __DIR__ . '/includes/media/GIFMetadataExtractor.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'GanConverter' => __DIR__ . '/includes/language/converters/GanConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GenderCache' => __DIR__ . '/includes/cache/GenderCache.php',
|
2023-03-14 09:54:58 +00:00
|
|
|
'GenerateAutoload' => __DIR__ . '/maintenance/generateAutoload.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GenerateCollationData' => __DIR__ . '/maintenance/language/generateCollationData.php',
|
2022-06-01 20:53:05 +00:00
|
|
|
'GenerateConfigSchema' => __DIR__ . '/maintenance/generateConfigSchema.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GenerateJsonI18n' => __DIR__ . '/maintenance/generateJsonI18n.php',
|
|
|
|
|
'GenerateNormalizerDataAr' => __DIR__ . '/maintenance/language/generateNormalizerDataAr.php',
|
|
|
|
|
'GenerateNormalizerDataMl' => __DIR__ . '/maintenance/language/generateNormalizerDataMl.php',
|
2019-04-10 13:46:32 +00:00
|
|
|
'GeneratePhpCharToUpperMappings' => __DIR__ . '/maintenance/mediawiki.Title/generatePhpCharToUpperMappings.php',
|
2020-10-11 02:18:47 +00:00
|
|
|
'GenerateSchemaChangeSql' => __DIR__ . '/maintenance/generateSchemaChangeSql.php',
|
2020-01-18 19:10:13 +00:00
|
|
|
'GenerateSchemaSql' => __DIR__ . '/maintenance/generateSchemaSql.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GenerateSitemap' => __DIR__ . '/maintenance/generateSitemap.php',
|
2019-04-09 17:02:03 +00:00
|
|
|
'GenerateUcfirstOverrides' => __DIR__ . '/maintenance/language/generateUcfirstOverrides.php',
|
|
|
|
|
'GenerateUpperCharTable' => __DIR__ . '/maintenance/language/generateUpperCharTable.php',
|
2019-03-30 06:07:48 +00:00
|
|
|
'GenericParameterJob' => __DIR__ . '/includes/jobqueue/GenericParameterJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GetConfiguration' => __DIR__ . '/maintenance/getConfiguration.php',
|
|
|
|
|
'GetLagTimes' => __DIR__ . '/maintenance/getLagTimes.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'GetReplicaServer' => __DIR__ . '/maintenance/getReplicaServer.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GetTextMaint' => __DIR__ . '/maintenance/getText.php',
|
2023-08-21 16:23:23 +00:00
|
|
|
'GitInfo' => __DIR__ . '/includes/utils/GitInfo.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'GlobalDependency' => __DIR__ . '/includes/language/dependency/GlobalDependency.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'GlobalVarConfig' => __DIR__ . '/includes/config/GlobalVarConfig.php',
|
2022-02-09 23:57:14 +00:00
|
|
|
'GrepPages' => __DIR__ . '/maintenance/grep.php',
|
2018-08-17 14:53:59 +00:00
|
|
|
'GuzzleHttpRequest' => __DIR__ . '/includes/http/GuzzleHttpRequest.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLApiField' => __DIR__ . '/includes/htmlform/fields/HTMLApiField.php',
|
|
|
|
|
'HTMLAutoCompleteSelectField' => __DIR__ . '/includes/htmlform/fields/HTMLAutoCompleteSelectField.php',
|
|
|
|
|
'HTMLButtonField' => __DIR__ . '/includes/htmlform/fields/HTMLButtonField.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HTMLCacheUpdateJob' => __DIR__ . '/includes/jobqueue/jobs/HTMLCacheUpdateJob.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLCheckField' => __DIR__ . '/includes/htmlform/fields/HTMLCheckField.php',
|
|
|
|
|
'HTMLCheckMatrix' => __DIR__ . '/includes/htmlform/fields/HTMLCheckMatrix.php',
|
|
|
|
|
'HTMLComboboxField' => __DIR__ . '/includes/htmlform/fields/HTMLComboboxField.php',
|
2016-09-22 17:28:29 +00:00
|
|
|
'HTMLDateTimeField' => __DIR__ . '/includes/htmlform/fields/HTMLDateTimeField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLEditTools' => __DIR__ . '/includes/htmlform/fields/HTMLEditTools.php',
|
2018-03-22 05:15:16 +00:00
|
|
|
'HTMLExpiryField' => __DIR__ . '/includes/htmlform/fields/HTMLExpiryField.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HTMLFileCache' => __DIR__ . '/includes/cache/HTMLFileCache.php',
|
2020-12-04 20:02:21 +00:00
|
|
|
'HTMLFileField' => __DIR__ . '/includes/htmlform/fields/HTMLFileField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLFloatField' => __DIR__ . '/includes/htmlform/fields/HTMLFloatField.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HTMLForm' => __DIR__ . '/includes/htmlform/HTMLForm.php',
|
2019-04-14 02:40:03 +00:00
|
|
|
'HTMLFormActionFieldLayout' => __DIR__ . '/includes/htmlform/HTMLFormActionFieldLayout.php',
|
2016-07-30 23:19:26 +00:00
|
|
|
'HTMLFormElement' => __DIR__ . '/includes/htmlform/HTMLFormElement.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HTMLFormField' => __DIR__ . '/includes/htmlform/HTMLFormField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLFormFieldCloner' => __DIR__ . '/includes/htmlform/fields/HTMLFormFieldCloner.php',
|
2019-04-14 02:40:03 +00:00
|
|
|
'HTMLFormFieldLayout' => __DIR__ . '/includes/htmlform/HTMLFormFieldLayout.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HTMLFormFieldRequiredOptionsException' => __DIR__ . '/includes/htmlform/HTMLFormFieldRequiredOptionsException.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLFormFieldWithButton' => __DIR__ . '/includes/htmlform/fields/HTMLFormFieldWithButton.php',
|
|
|
|
|
'HTMLHiddenField' => __DIR__ . '/includes/htmlform/fields/HTMLHiddenField.php',
|
|
|
|
|
'HTMLInfoField' => __DIR__ . '/includes/htmlform/fields/HTMLInfoField.php',
|
|
|
|
|
'HTMLIntField' => __DIR__ . '/includes/htmlform/fields/HTMLIntField.php',
|
|
|
|
|
'HTMLMultiSelectField' => __DIR__ . '/includes/htmlform/fields/HTMLMultiSelectField.php',
|
2018-12-14 17:55:01 +00:00
|
|
|
'HTMLNamespacesMultiselectField' => __DIR__ . '/includes/htmlform/fields/HTMLNamespacesMultiselectField.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HTMLNestedFilterable' => __DIR__ . '/includes/htmlform/HTMLNestedFilterable.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLRadioField' => __DIR__ . '/includes/htmlform/fields/HTMLRadioField.php',
|
2016-09-21 01:33:26 +00:00
|
|
|
'HTMLRestrictionsField' => __DIR__ . '/includes/htmlform/fields/HTMLRestrictionsField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLSelectAndOtherField' => __DIR__ . '/includes/htmlform/fields/HTMLSelectAndOtherField.php',
|
|
|
|
|
'HTMLSelectField' => __DIR__ . '/includes/htmlform/fields/HTMLSelectField.php',
|
2019-01-22 03:35:32 +00:00
|
|
|
'HTMLSelectLanguageField' => __DIR__ . '/includes/htmlform/fields/HTMLSelectLanguageField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLSelectLimitField' => __DIR__ . '/includes/htmlform/fields/HTMLSelectLimitField.php',
|
|
|
|
|
'HTMLSelectNamespace' => __DIR__ . '/includes/htmlform/fields/HTMLSelectNamespace.php',
|
|
|
|
|
'HTMLSelectNamespaceWithButton' => __DIR__ . '/includes/htmlform/fields/HTMLSelectNamespaceWithButton.php',
|
|
|
|
|
'HTMLSelectOrOtherField' => __DIR__ . '/includes/htmlform/fields/HTMLSelectOrOtherField.php',
|
2016-10-27 01:23:18 +00:00
|
|
|
'HTMLSizeFilterField' => __DIR__ . '/includes/htmlform/fields/HTMLSizeFilterField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLSubmitField' => __DIR__ . '/includes/htmlform/fields/HTMLSubmitField.php',
|
|
|
|
|
'HTMLTagFilter' => __DIR__ . '/includes/htmlform/fields/HTMLTagFilter.php',
|
2021-03-16 11:49:33 +00:00
|
|
|
'HTMLTagMultiselectField' => __DIR__ . '/includes/htmlform/fields/HTMLTagMultiselectField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLTextAreaField' => __DIR__ . '/includes/htmlform/fields/HTMLTextAreaField.php',
|
|
|
|
|
'HTMLTextField' => __DIR__ . '/includes/htmlform/fields/HTMLTextField.php',
|
|
|
|
|
'HTMLTextFieldWithButton' => __DIR__ . '/includes/htmlform/fields/HTMLTextFieldWithButton.php',
|
2022-06-03 16:21:38 +00:00
|
|
|
'HTMLTimezoneField' => __DIR__ . '/includes/htmlform/fields/HTMLTimezoneField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLTitleTextField' => __DIR__ . '/includes/htmlform/fields/HTMLTitleTextField.php',
|
2018-08-30 00:33:32 +00:00
|
|
|
'HTMLTitlesMultiselectField' => __DIR__ . '/includes/htmlform/fields/HTMLTitlesMultiselectField.php',
|
2023-05-10 16:24:22 +00:00
|
|
|
'HTMLToggleSwitchField' => __DIR__ . '/includes/htmlform/fields/HTMLToggleSwitchField.php',
|
2016-07-30 21:59:24 +00:00
|
|
|
'HTMLUserTextField' => __DIR__ . '/includes/htmlform/fields/HTMLUserTextField.php',
|
2017-01-08 02:37:29 +00:00
|
|
|
'HTMLUsersMultiselectField' => __DIR__ . '/includes/htmlform/fields/HTMLUsersMultiselectField.php',
|
2016-09-18 22:49:34 +00:00
|
|
|
'HTTPFileStreamer' => __DIR__ . '/includes/libs/filebackend/HTTPFileStreamer.php',
|
2015-02-25 08:22:50 +00:00
|
|
|
'HashBagOStuff' => __DIR__ . '/includes/libs/objectcache/HashBagOStuff.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HashConfig' => __DIR__ . '/includes/config/HashConfig.php',
|
|
|
|
|
'HashRing' => __DIR__ . '/includes/libs/HashRing.php',
|
2015-02-26 14:53:08 +00:00
|
|
|
'HashSiteStore' => __DIR__ . '/includes/site/HashSiteStore.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HistoryAction' => __DIR__ . '/includes/actions/HistoryAction.php',
|
2019-03-25 19:29:47 +00:00
|
|
|
'HistoryBlob' => __DIR__ . '/includes/historyblob/HistoryBlob.php',
|
|
|
|
|
'HistoryBlobCurStub' => __DIR__ . '/includes/historyblob/HistoryBlobCurStub.php',
|
|
|
|
|
'HistoryBlobStub' => __DIR__ . '/includes/historyblob/HistoryBlobStub.php',
|
2022-11-28 23:18:35 +00:00
|
|
|
'HistoryBlobUtils' => __DIR__ . '/includes/historyblob/HistoryBlobUtils.php',
|
2019-03-08 20:56:38 +00:00
|
|
|
'HistoryPager' => __DIR__ . '/includes/actions/pagers/HistoryPager.php',
|
2023-02-16 19:27:21 +00:00
|
|
|
'Html' => __DIR__ . '/includes/Html/Html.php',
|
Add LinkRenderer (rewrite of Linker::link())
This is a rewrite of Linker::link() to a non-static, LinkTarget-based
interface. Users of plain Linker::link() with no options can use the
LinkRenderer instance provided by MediaWikiServices. Others that
have specific options should create and configure their own instance,
which can be used to create as many links as necessary.
The main entrypoints for making links are:
* ->makeLink( $target, $text, $attribs, $query );
* ->makeKnownLink( $target, $text, $attribs, $query );
* ->makeBrokenLink( $target, $text, $attribs, $query );
The order of the parameters are the same as Linker::link(), except
$options are now part of the LinkRenderer instance, and
known/broken status requires calling the function explicitly.
Additionally, instead of passing in raw $html for the link text, the
$text parameter will automatically be escaped unless it is specially
marked as safe HTML using the MediaWiki\Linker\HtmlArmor class.
The LinkBegin and LinkEnd hooks are now deprecated, but still function
for backwards-compatability. Clients should migrate to the nearly-
equivalent LinkRendererBegin and LinkRendererEnd hooks.
The main differences between the hooks are:
* Passing HtmlPageLinkRenderer object instead of deprecated DummyLinker
* Using LinkTarget instead of Title
* Begin hook can no longer change known/broken status of link. Use the
TitleIsAlwaysKnown hook for that.
* $options are no longer passed, they can be read (but shouldn't be
modified!) from the LinkRenderer object.
Bug: T469
Change-Id: I057cc86ae6404a080aa3c8e0e956ecbb10a897d5
2016-04-21 20:13:21 +00:00
|
|
|
'HtmlArmor' => __DIR__ . '/includes/libs/HtmlArmor.php',
|
2019-03-15 00:23:26 +00:00
|
|
|
'HtmlCacheUpdater' => __DIR__ . '/includes/cache/HtmlCacheUpdater.php',
|
|
|
|
|
'HtmlFileCacheUpdate' => __DIR__ . '/includes/deferred/HtmlFileCacheUpdate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'HttpError' => __DIR__ . '/includes/exception/HttpError.php',
|
|
|
|
|
'HttpStatus' => __DIR__ . '/includes/libs/HttpStatus.php',
|
2018-05-25 00:59:49 +00:00
|
|
|
'IApiMessage' => __DIR__ . '/includes/api/IApiMessage.php',
|
2023-02-27 16:40:57 +00:00
|
|
|
'IBufferingStatsdDataFactory' => __DIR__ . '/includes/libs/Stats/IBufferingStatsdDataFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'IContextSource' => __DIR__ . '/includes/context/IContextSource.php',
|
rdbms: Move IDBAccessObject from /includes/dao/ to /libs/rdbms
* Is generally useful for Rdbms consumers.
* Has no dependencies besides stable constants and interface from Rdbms.
* Is generic, i.e. not specific to MediaWiki in its naming, purpose,
or required domain knowledge.
Current rationale is that "dao" is not a recognised component
in MediaWiki core. Its super tiny and a handful of changes in over a
decade, so seems overkill to make a big deal out of it by creating a
whole new component for it in all the usual places. Yet, having it
fall into a gap with no owner for issue tracking, code review, no
documentation, and no definition of what this directory is for
exactly, is also counter-productive. Hence, finding a suitable place
for it.
Change-Id: I8cbb9ebfa8873085a30cb355e3299493538006ae
2023-06-01 12:32:23 +00:00
|
|
|
'IDBAccessObject' => __DIR__ . '/includes/libs/rdbms/IDBAccessObject.php',
|
2022-12-26 19:33:50 +00:00
|
|
|
'IForeignRepoWithDB' => __DIR__ . '/includes/filerepo/IForeignRepoWithDB.php',
|
2022-02-08 16:11:51 +00:00
|
|
|
'IForeignRepoWithMWApi' => __DIR__ . '/includes/filerepo/IForeignRepoWithMWApi.php',
|
2019-02-04 20:00:06 +00:00
|
|
|
'IJobSpecification' => __DIR__ . '/includes/jobqueue/IJobSpecification.php',
|
2020-02-10 14:08:01 +00:00
|
|
|
'ILanguageConverter' => __DIR__ . '/includes/language/ILanguageConverter.php',
|
2019-02-01 19:05:30 +00:00
|
|
|
'ILocalizedException' => __DIR__ . '/includes/exception/ILocalizedException.php',
|
2016-09-23 03:46:16 +00:00
|
|
|
'IMaintainableDatabase' => __DIR__ . '/includes/libs/rdbms/database/IMaintainableDatabase.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'IPTC' => __DIR__ . '/includes/media/IPTC.php',
|
|
|
|
|
'IRCColourfulRCFeedFormatter' => __DIR__ . '/includes/rcfeed/IRCColourfulRCFeedFormatter.php',
|
2019-07-22 15:28:48 +00:00
|
|
|
'ISearchResultSet' => __DIR__ . '/includes/search/ISearchResultSet.php',
|
2019-07-08 19:12:16 +00:00
|
|
|
'IStoreKeyEncoder' => __DIR__ . '/includes/libs/objectcache/IStoreKeyEncoder.php',
|
2016-04-03 08:23:20 +00:00
|
|
|
'IcuCollation' => __DIR__ . '/includes/collation/IcuCollation.php',
|
|
|
|
|
'IdentityCollation' => __DIR__ . '/includes/collation/IdentityCollation.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ImageBuilder' => __DIR__ . '/maintenance/rebuildImages.php',
|
|
|
|
|
'ImageGalleryBase' => __DIR__ . '/includes/gallery/ImageGalleryBase.php',
|
2022-02-01 01:11:09 +00:00
|
|
|
'ImageGalleryClassNotFoundException' => __DIR__ . '/includes/gallery/ImageGalleryClassNotFoundException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ImageHandler' => __DIR__ . '/includes/media/ImageHandler.php',
|
2016-02-03 12:26:01 +00:00
|
|
|
'ImageHistoryList' => __DIR__ . '/includes/page/ImageHistoryList.php',
|
|
|
|
|
'ImageHistoryPseudoPager' => __DIR__ . '/includes/page/ImageHistoryPseudoPager.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'ImageListPager' => __DIR__ . '/includes/specials/pagers/ImageListPager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ImagePage' => __DIR__ . '/includes/page/ImagePage.php',
|
|
|
|
|
'ImageQueryPage' => __DIR__ . '/includes/specialpage/ImageQueryPage.php',
|
2023-02-28 03:53:59 +00:00
|
|
|
'ImportExtensionMessages' => __DIR__ . '/maintenance/language/importExtensionMessages.php',
|
2016-12-16 22:45:20 +00:00
|
|
|
'ImportImages' => __DIR__ . '/maintenance/importImages.php',
|
2015-11-10 18:56:19 +00:00
|
|
|
'ImportLogFormatter' => __DIR__ . '/includes/logging/ImportLogFormatter.php',
|
2017-09-12 21:03:26 +00:00
|
|
|
'ImportReporter' => __DIR__ . '/includes/specials/helpers/ImportReporter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ImportSiteScripts' => __DIR__ . '/maintenance/importSiteScripts.php',
|
2015-02-25 18:16:13 +00:00
|
|
|
'ImportSites' => __DIR__ . '/maintenance/importSites.php',
|
2015-12-28 22:27:48 +00:00
|
|
|
'ImportSource' => __DIR__ . '/includes/import/ImportSource.php',
|
|
|
|
|
'ImportStreamSource' => __DIR__ . '/includes/import/ImportStreamSource.php',
|
|
|
|
|
'ImportStringSource' => __DIR__ . '/includes/import/ImportStringSource.php',
|
2016-01-07 03:09:47 +00:00
|
|
|
'ImportTextFiles' => __DIR__ . '/maintenance/importTextFiles.php',
|
2014-12-10 11:24:47 +00:00
|
|
|
'ImportTitleFactory' => __DIR__ . '/includes/title/ImportTitleFactory.php',
|
2017-07-04 21:46:46 +00:00
|
|
|
'ImportableOldRevision' => __DIR__ . '/includes/import/ImportableOldRevision.php',
|
|
|
|
|
'ImportableOldRevisionImporter' => __DIR__ . '/includes/import/ImportableOldRevisionImporter.php',
|
2017-07-04 21:07:04 +00:00
|
|
|
'ImportableUploadRevision' => __DIR__ . '/includes/import/ImportableUploadRevision.php',
|
|
|
|
|
'ImportableUploadRevisionImporter' => __DIR__ . '/includes/import/ImportableUploadRevisionImporter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'IncludableSpecialPage' => __DIR__ . '/includes/specialpage/IncludableSpecialPage.php',
|
2019-01-20 23:11:59 +00:00
|
|
|
'IncompatibleDiffTypesException' => __DIR__ . '/includes/diff/IncompatibleDiffTypesException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'IndexPager' => __DIR__ . '/includes/pager/IndexPager.php',
|
|
|
|
|
'InfoAction' => __DIR__ . '/includes/actions/InfoAction.php',
|
|
|
|
|
'InitEditCount' => __DIR__ . '/maintenance/initEditCount.php',
|
|
|
|
|
'InitSiteStats' => __DIR__ . '/maintenance/initSiteStats.php',
|
2017-03-02 21:21:43 +00:00
|
|
|
'InitUserPreference' => __DIR__ . '/maintenance/initUserPreference.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'InstallDocFormatter' => __DIR__ . '/includes/installer/InstallDocFormatter.php',
|
|
|
|
|
'Installer' => __DIR__ . '/includes/installer/Installer.php',
|
2016-05-19 00:40:56 +00:00
|
|
|
'InstallerOverrides' => __DIR__ . '/includes/installer/InstallerOverrides.php',
|
2016-02-10 10:04:28 +00:00
|
|
|
'InstallerSessionProvider' => __DIR__ . '/includes/installer/InstallerSessionProvider.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Interwiki' => __DIR__ . '/includes/interwiki/Interwiki.php',
|
2023-06-09 16:14:32 +00:00
|
|
|
'InvalidJpegException' => __DIR__ . '/includes/media/InvalidJpegException.php',
|
|
|
|
|
'InvalidPSIRException' => __DIR__ . '/includes/media/InvalidPSIRException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'InvalidPassword' => __DIR__ . '/includes/password/InvalidPassword.php',
|
2023-06-09 16:14:32 +00:00
|
|
|
'InvalidSVGException' => __DIR__ . '/includes/media/InvalidSVGException.php',
|
|
|
|
|
'InvalidTiffException' => __DIR__ . '/includes/media/InvalidTiffException.php',
|
2021-05-13 01:23:59 +00:00
|
|
|
'InvalidateBotPasswords' => __DIR__ . '/maintenance/invalidateBotPasswords.php',
|
2021-08-23 18:03:39 +00:00
|
|
|
'InvalidateUserSessions' => __DIR__ . '/maintenance/invalidateUserSessions.php',
|
2016-10-04 17:56:35 +00:00
|
|
|
'IteratorDecorator' => __DIR__ . '/includes/libs/iterators/IteratorDecorator.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'IuConverter' => __DIR__ . '/includes/language/converters/IuConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'JSCompilerContext' => __DIR__ . '/includes/libs/jsminplus.php',
|
|
|
|
|
'JSMinPlus' => __DIR__ . '/includes/libs/jsminplus.php',
|
|
|
|
|
'JSNode' => __DIR__ . '/includes/libs/jsminplus.php',
|
|
|
|
|
'JSONRCFeedFormatter' => __DIR__ . '/includes/rcfeed/JSONRCFeedFormatter.php',
|
|
|
|
|
'JSParseHelper' => __DIR__ . '/maintenance/jsparse.php',
|
|
|
|
|
'JSParser' => __DIR__ . '/includes/libs/jsminplus.php',
|
|
|
|
|
'JSToken' => __DIR__ . '/includes/libs/jsminplus.php',
|
|
|
|
|
'JSTokenizer' => __DIR__ . '/includes/libs/jsminplus.php',
|
|
|
|
|
'JavaScriptContent' => __DIR__ . '/includes/content/JavaScriptContent.php',
|
|
|
|
|
'JavaScriptContentHandler' => __DIR__ . '/includes/content/JavaScriptContentHandler.php',
|
|
|
|
|
'Job' => __DIR__ . '/includes/jobqueue/Job.php',
|
|
|
|
|
'JobQueue' => __DIR__ . '/includes/jobqueue/JobQueue.php',
|
2019-02-06 18:39:20 +00:00
|
|
|
'JobQueueConnectionError' => __DIR__ . '/includes/jobqueue/exception/JobQueueConnectionError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'JobQueueDB' => __DIR__ . '/includes/jobqueue/JobQueueDB.php',
|
2018-10-24 19:28:02 +00:00
|
|
|
'JobQueueEnqueueUpdate' => __DIR__ . '/includes/deferred/JobQueueEnqueueUpdate.php',
|
2019-02-06 18:39:20 +00:00
|
|
|
'JobQueueError' => __DIR__ . '/includes/jobqueue/exception/JobQueueError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'JobQueueFederated' => __DIR__ . '/includes/jobqueue/JobQueueFederated.php',
|
|
|
|
|
'JobQueueGroup' => __DIR__ . '/includes/jobqueue/JobQueueGroup.php',
|
2016-01-13 05:51:09 +00:00
|
|
|
'JobQueueMemory' => __DIR__ . '/includes/jobqueue/JobQueueMemory.php',
|
2019-02-06 18:39:20 +00:00
|
|
|
'JobQueueReadOnlyError' => __DIR__ . '/includes/jobqueue/exception/JobQueueReadOnlyError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'JobQueueRedis' => __DIR__ . '/includes/jobqueue/JobQueueRedis.php',
|
|
|
|
|
'JobRunner' => __DIR__ . '/includes/jobqueue/JobRunner.php',
|
|
|
|
|
'JobSpecification' => __DIR__ . '/includes/jobqueue/JobSpecification.php',
|
2021-03-14 01:07:51 +00:00
|
|
|
'Jpeg2000Handler' => __DIR__ . '/includes/media/Jpeg2000Handler.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'JpegHandler' => __DIR__ . '/includes/media/JpegHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'JpegMetadataExtractor' => __DIR__ . '/includes/media/JpegMetadataExtractor.php',
|
|
|
|
|
'JsonContent' => __DIR__ . '/includes/content/JsonContent.php',
|
|
|
|
|
'JsonContentHandler' => __DIR__ . '/includes/content/JsonContentHandler.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'KuConverter' => __DIR__ . '/includes/language/converters/KuConverter.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'LCStore' => __DIR__ . '/includes/language/LCStore.php',
|
|
|
|
|
'LCStoreCDB' => __DIR__ . '/includes/language/LCStoreCDB.php',
|
|
|
|
|
'LCStoreDB' => __DIR__ . '/includes/language/LCStoreDB.php',
|
|
|
|
|
'LCStoreNull' => __DIR__ . '/includes/language/LCStoreNull.php',
|
|
|
|
|
'LCStoreStaticArray' => __DIR__ . '/includes/language/LCStoreStaticArray.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LangMemUsage' => __DIR__ . '/maintenance/language/langmemusage.php',
|
2021-07-31 21:23:21 +00:00
|
|
|
'Language' => __DIR__ . '/includes/language/Language.php',
|
|
|
|
|
'LanguageAr' => __DIR__ . '/includes/languages/LanguageAr.php',
|
|
|
|
|
'LanguageAz' => __DIR__ . '/includes/languages/LanguageAz.php',
|
|
|
|
|
'LanguageBe_tarask' => __DIR__ . '/includes/languages/LanguageBe_tarask.php',
|
|
|
|
|
'LanguageBs' => __DIR__ . '/includes/languages/LanguageBs.php',
|
2019-06-13 21:02:36 +00:00
|
|
|
'LanguageCode' => __DIR__ . '/includes/language/LanguageCode.php',
|
2020-10-22 18:38:06 +00:00
|
|
|
'LanguageConverter' => __DIR__ . '/includes/language/LanguageConverter.php',
|
|
|
|
|
'LanguageConverterIcu' => __DIR__ . '/includes/language/LanguageConverterIcu.php',
|
|
|
|
|
'LanguageConverterSpecific' => __DIR__ . '/includes/language/LanguageConverterSpecific.php',
|
2021-07-31 21:23:21 +00:00
|
|
|
'LanguageCu' => __DIR__ . '/includes/languages/LanguageCu.php',
|
|
|
|
|
'LanguageDsb' => __DIR__ . '/includes/languages/LanguageDsb.php',
|
|
|
|
|
'LanguageEn' => __DIR__ . '/includes/languages/LanguageEn.php',
|
|
|
|
|
'LanguageFi' => __DIR__ . '/includes/languages/LanguageFi.php',
|
|
|
|
|
'LanguageGa' => __DIR__ . '/includes/languages/LanguageGa.php',
|
|
|
|
|
'LanguageGan' => __DIR__ . '/includes/languages/LanguageGan.php',
|
|
|
|
|
'LanguageHsb' => __DIR__ . '/includes/languages/LanguageHsb.php',
|
|
|
|
|
'LanguageHu' => __DIR__ . '/includes/languages/LanguageHu.php',
|
|
|
|
|
'LanguageHy' => __DIR__ . '/includes/languages/LanguageHy.php',
|
|
|
|
|
'LanguageJa' => __DIR__ . '/includes/languages/LanguageJa.php',
|
|
|
|
|
'LanguageKaa' => __DIR__ . '/includes/languages/LanguageKaa.php',
|
|
|
|
|
'LanguageKk' => __DIR__ . '/includes/languages/LanguageKk.php',
|
|
|
|
|
'LanguageKk_cyrl' => __DIR__ . '/includes/languages/LanguageKk_cyrl.php',
|
|
|
|
|
'LanguageKm' => __DIR__ . '/includes/languages/LanguageKm.php',
|
|
|
|
|
'LanguageKsh' => __DIR__ . '/includes/languages/LanguageKsh.php',
|
|
|
|
|
'LanguageLa' => __DIR__ . '/includes/languages/LanguageLa.php',
|
|
|
|
|
'LanguageMl' => __DIR__ . '/includes/languages/LanguageMl.php',
|
|
|
|
|
'LanguageMy' => __DIR__ . '/includes/languages/LanguageMy.php',
|
|
|
|
|
'LanguageOs' => __DIR__ . '/includes/languages/LanguageOs.php',
|
|
|
|
|
'LanguageQqx' => __DIR__ . '/includes/languages/LanguageQqx.php',
|
|
|
|
|
'LanguageSl' => __DIR__ . '/includes/languages/LanguageSl.php',
|
|
|
|
|
'LanguageTr' => __DIR__ . '/includes/languages/LanguageTr.php',
|
|
|
|
|
'LanguageTyv' => __DIR__ . '/includes/languages/LanguageTyv.php',
|
|
|
|
|
'LanguageWa' => __DIR__ . '/includes/languages/LanguageWa.php',
|
2014-07-26 14:55:14 +00:00
|
|
|
'LanguageWuu' => __DIR__ . '/includes/languages/LanguageWuu.php',
|
2021-07-31 21:23:21 +00:00
|
|
|
'LanguageYue' => __DIR__ . '/includes/languages/LanguageYue.php',
|
|
|
|
|
'LanguageZh' => __DIR__ . '/includes/languages/LanguageZh.php',
|
|
|
|
|
'LanguageZh_hans' => __DIR__ . '/includes/languages/LanguageZh_hans.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LayeredParameterizedPassword' => __DIR__ . '/includes/password/LayeredParameterizedPassword.php',
|
2019-04-14 01:05:34 +00:00
|
|
|
'LegacyLogFormatter' => __DIR__ . '/includes/logging/LegacyLogFormatter.php',
|
2017-09-12 21:03:26 +00:00
|
|
|
'License' => __DIR__ . '/includes/specials/helpers/License.php',
|
|
|
|
|
'Licenses' => __DIR__ . '/includes/specials/formfields/Licenses.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LinkBatch' => __DIR__ . '/includes/cache/LinkBatch.php',
|
|
|
|
|
'LinkCache' => __DIR__ . '/includes/cache/LinkCache.php',
|
2023-03-01 21:05:04 +00:00
|
|
|
'LinkFilter' => __DIR__ . '/includes/ExternalLinks/LinkFilter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LinkHolderArray' => __DIR__ . '/includes/parser/LinkHolderArray.php',
|
2022-12-05 11:29:37 +00:00
|
|
|
'Linker' => __DIR__ . '/includes/linker/Linker.php',
|
2021-12-10 02:36:13 +00:00
|
|
|
'LinksDeletionUpdate' => __DIR__ . '/includes/deferred/LinksUpdate/LinksDeletionUpdate.php',
|
|
|
|
|
'LinksUpdate' => __DIR__ . '/includes/deferred/LinksUpdate/LinksUpdate.php',
|
2023-02-16 19:27:21 +00:00
|
|
|
'ListToggle' => __DIR__ . '/includes/Html/ListToggle.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ListVariants' => __DIR__ . '/maintenance/language/listVariants.php',
|
2016-09-14 09:40:29 +00:00
|
|
|
'LoadBalancer' => __DIR__ . '/includes/libs/rdbms/loadbalancer/LoadBalancer.php',
|
2016-09-18 02:00:01 +00:00
|
|
|
'LoadBalancerSingle' => __DIR__ . '/includes/libs/rdbms/loadbalancer/LoadBalancerSingle.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LocalFile' => __DIR__ . '/includes/filerepo/file/LocalFile.php',
|
2019-04-06 10:02:26 +00:00
|
|
|
'LocalFileDeleteBatch' => __DIR__ . '/includes/filerepo/file/LocalFileDeleteBatch.php',
|
|
|
|
|
'LocalFileLockError' => __DIR__ . '/includes/filerepo/file/LocalFileLockError.php',
|
|
|
|
|
'LocalFileMoveBatch' => __DIR__ . '/includes/filerepo/file/LocalFileMoveBatch.php',
|
|
|
|
|
'LocalFileRestoreBatch' => __DIR__ . '/includes/filerepo/file/LocalFileRestoreBatch.php',
|
2021-06-22 19:28:29 +00:00
|
|
|
'LocalIdLookup' => __DIR__ . '/includes/user/CentralId/LocalIdLookup.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LocalRepo' => __DIR__ . '/includes/filerepo/LocalRepo.php',
|
|
|
|
|
'LocalSettingsGenerator' => __DIR__ . '/includes/installer/LocalSettingsGenerator.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'LocalisationCache' => __DIR__ . '/includes/language/LocalisationCache.php',
|
|
|
|
|
'LocalisationCacheBulkLoad' => __DIR__ . '/includes/language/LocalisationCacheBulkLoad.php',
|
2016-12-08 18:38:45 +00:00
|
|
|
'LocalizedException' => __DIR__ . '/includes/exception/LocalizedException.php',
|
2016-09-18 04:42:56 +00:00
|
|
|
'LockManager' => __DIR__ . '/includes/libs/lockmanager/LockManager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LockManagerGroup' => __DIR__ . '/includes/filebackend/lockmanager/LockManagerGroup.php',
|
|
|
|
|
'LogEntry' => __DIR__ . '/includes/logging/LogEntry.php',
|
2019-04-14 01:05:34 +00:00
|
|
|
'LogEntryBase' => __DIR__ . '/includes/logging/LogEntryBase.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'LogEventsList' => __DIR__ . '/includes/logging/LogEventsList.php',
|
|
|
|
|
'LogFormatter' => __DIR__ . '/includes/logging/LogFormatter.php',
|
|
|
|
|
'LogPage' => __DIR__ . '/includes/logging/LogPage.php',
|
|
|
|
|
'LogPager' => __DIR__ . '/includes/logging/LogPager.php',
|
2016-02-01 20:44:03 +00:00
|
|
|
'LoggedOutEditToken' => __DIR__ . '/includes/user/LoggedOutEditToken.php',
|
2020-03-03 14:33:54 +00:00
|
|
|
'LoggedUpdateMaintenance' => __DIR__ . '/maintenance/includes/LoggedUpdateMaintenance.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'LoginHelper' => __DIR__ . '/includes/specials/helpers/LoginHelper.php',
|
|
|
|
|
'LoginSignupSpecialPage' => __DIR__ . '/includes/specialpage/LoginSignupSpecialPage.php',
|
2019-01-15 03:15:18 +00:00
|
|
|
'MSCompoundFileReader' => __DIR__ . '/includes/libs/mime/MSCompoundFileReader.php',
|
2016-07-26 10:42:57 +00:00
|
|
|
'MWCallableUpdate' => __DIR__ . '/includes/deferred/MWCallableUpdate.php',
|
2019-01-02 22:16:44 +00:00
|
|
|
'MWCallbackStream' => __DIR__ . '/includes/http/MWCallbackStream.php',
|
2016-12-24 11:58:38 +00:00
|
|
|
'MWContentSerializationException' => __DIR__ . '/includes/exception/MWContentSerializationException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MWCryptHKDF' => __DIR__ . '/includes/utils/MWCryptHKDF.php',
|
2016-10-02 06:19:28 +00:00
|
|
|
'MWCryptHash' => __DIR__ . '/includes/libs/MWCryptHash.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MWCryptRand' => __DIR__ . '/includes/utils/MWCryptRand.php',
|
|
|
|
|
'MWDebug' => __DIR__ . '/includes/debug/MWDebug.php',
|
|
|
|
|
'MWDocGen' => __DIR__ . '/maintenance/mwdocgen.php',
|
2019-09-05 16:58:07 +00:00
|
|
|
'MWDoxygenFilter' => __DIR__ . '/maintenance/includes/MWDoxygenFilter.php',
|
2023-01-13 18:54:08 +00:00
|
|
|
'MWEval' => __DIR__ . '/maintenance/eval.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MWException' => __DIR__ . '/includes/exception/MWException.php',
|
|
|
|
|
'MWExceptionHandler' => __DIR__ . '/includes/exception/MWExceptionHandler.php',
|
2016-09-14 03:57:54 +00:00
|
|
|
'MWExceptionRenderer' => __DIR__ . '/includes/exception/MWExceptionRenderer.php',
|
2016-09-19 01:39:59 +00:00
|
|
|
'MWFileProps' => __DIR__ . '/includes/utils/MWFileProps.php',
|
2016-10-02 05:46:07 +00:00
|
|
|
'MWHttpRequest' => __DIR__ . '/includes/http/MWHttpRequest.php',
|
2016-09-30 21:06:02 +00:00
|
|
|
'MWLBFactory' => __DIR__ . '/includes/db/MWLBFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MWOldPassword' => __DIR__ . '/includes/password/MWOldPassword.php',
|
2015-12-02 17:10:26 +00:00
|
|
|
'MWRestrictions' => __DIR__ . '/includes/utils/MWRestrictions.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MWSaltedPassword' => __DIR__ . '/includes/password/MWSaltedPassword.php',
|
|
|
|
|
'MWTidy' => __DIR__ . '/includes/parser/MWTidy.php',
|
2023-08-19 03:35:06 +00:00
|
|
|
'MWTimestamp' => __DIR__ . '/includes/utils/MWTimestamp.php',
|
2016-12-24 11:58:38 +00:00
|
|
|
'MWUnknownContentModelException' => __DIR__ . '/includes/exception/MWUnknownContentModelException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MachineReadableRCFeedFormatter' => __DIR__ . '/includes/rcfeed/MachineReadableRCFeedFormatter.php',
|
2022-12-09 12:28:41 +00:00
|
|
|
'MagicWord' => __DIR__ . '/includes/parser/MagicWord.php',
|
|
|
|
|
'MagicWordArray' => __DIR__ . '/includes/parser/MagicWordArray.php',
|
|
|
|
|
'MagicWordFactory' => __DIR__ . '/includes/parser/MagicWordFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MailAddress' => __DIR__ . '/includes/mail/MailAddress.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'MainConfigDependency' => __DIR__ . '/includes/language/dependency/MainConfigDependency.php',
|
2016-11-28 18:26:14 +00:00
|
|
|
'MaintainableDBConnRef' => __DIR__ . '/includes/libs/rdbms/database/MaintainableDBConnRef.php',
|
2020-03-03 14:33:54 +00:00
|
|
|
'Maintenance' => __DIR__ . '/maintenance/includes/Maintenance.php',
|
2015-12-18 22:33:55 +00:00
|
|
|
'MakeTestEdits' => __DIR__ . '/maintenance/makeTestEdits.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MalformedTitleException' => __DIR__ . '/includes/title/MalformedTitleException.php',
|
2019-03-22 20:34:37 +00:00
|
|
|
'ManageForeignResources' => __DIR__ . '/maintenance/manageForeignResources.php',
|
2017-01-19 00:02:16 +00:00
|
|
|
'ManageJobs' => __DIR__ . '/maintenance/manageJobs.php',
|
2019-04-14 01:05:34 +00:00
|
|
|
'ManualLogEntry' => __DIR__ . '/includes/logging/ManualLogEntry.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MapCacheLRU' => __DIR__ . '/includes/libs/MapCacheLRU.php',
|
|
|
|
|
'MappedIterator' => __DIR__ . '/includes/libs/MappedIterator.php',
|
|
|
|
|
'MarkpatrolledAction' => __DIR__ . '/includes/actions/MarkpatrolledAction.php',
|
|
|
|
|
'McTest' => __DIR__ . '/maintenance/mctest.php',
|
2022-12-03 06:20:05 +00:00
|
|
|
'Mcc' => __DIR__ . '/maintenance/mcc.php',
|
2018-09-18 15:36:59 +00:00
|
|
|
'McrRestoreAction' => __DIR__ . '/includes/actions/McrRestoreAction.php',
|
2018-07-17 19:23:25 +00:00
|
|
|
'McrUndoAction' => __DIR__ . '/includes/actions/McrUndoAction.php',
|
2019-11-18 15:13:45 +00:00
|
|
|
'MediaFileTrait' => __DIR__ . '/includes/filerepo/file/MediaFileTrait.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MediaHandler' => __DIR__ . '/includes/media/MediaHandler.php',
|
2016-07-26 02:19:25 +00:00
|
|
|
'MediaHandlerFactory' => __DIR__ . '/includes/media/MediaHandlerFactory.php',
|
2021-05-26 00:48:41 +00:00
|
|
|
'MediaHandlerState' => __DIR__ . '/includes/media/MediaHandlerState.php',
|
2019-03-30 11:16:51 +00:00
|
|
|
'MediaTransformError' => __DIR__ . '/includes/media/MediaTransformError.php',
|
2015-02-05 02:16:06 +00:00
|
|
|
'MediaTransformInvalidParametersException' => __DIR__ . '/includes/media/MediaTransformInvalidParametersException.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MediaTransformOutput' => __DIR__ . '/includes/media/MediaTransformOutput.php',
|
|
|
|
|
'MediaWiki' => __DIR__ . '/includes/MediaWiki.php',
|
|
|
|
|
'MediaWikiSite' => __DIR__ . '/includes/site/MediaWikiSite.php',
|
|
|
|
|
'MediaWikiTitleCodec' => __DIR__ . '/includes/title/MediaWikiTitleCodec.php',
|
2023-04-20 16:30:41 +00:00
|
|
|
'MediaWikiVersionFetcher' => __DIR__ . '/includes/composer/MediaWikiVersionFetcher.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Actions\\ActionFactory' => __DIR__ . '/includes/actions/ActionFactory.php',
|
2023-09-14 08:28:13 +00:00
|
|
|
'MediaWiki\\Actions\\ActionInfo' => __DIR__ . '/includes/actions/ActionInfo.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Actions\\FileDeleteAction' => __DIR__ . '/includes/actions/FileDeleteAction.php',
|
|
|
|
|
'MediaWiki\\Actions\\Hook\\GetActionNameHook' => __DIR__ . '/includes/actions/Hook/GetActionNameHook.php',
|
|
|
|
|
'MediaWiki\\Api\\ApiHookRunner' => __DIR__ . '/includes/api/ApiHookRunner.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIAfterExecuteHook' => __DIR__ . '/includes/api/Hook/APIAfterExecuteHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIGetAllowedParamsHook' => __DIR__ . '/includes/api/Hook/APIGetAllowedParamsHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIGetDescriptionMessagesHook' => __DIR__ . '/includes/api/Hook/APIGetDescriptionMessagesHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIGetParamDescriptionMessagesHook' => __DIR__ . '/includes/api/Hook/APIGetParamDescriptionMessagesHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIHelpModifyOutputHook' => __DIR__ . '/includes/api/Hook/APIHelpModifyOutputHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIQueryAfterExecuteHook' => __DIR__ . '/includes/api/Hook/APIQueryAfterExecuteHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIQueryGeneratorAfterExecuteHook' => __DIR__ . '/includes/api/Hook/APIQueryGeneratorAfterExecuteHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIQuerySiteInfoGeneralInfoHook' => __DIR__ . '/includes/api/Hook/APIQuerySiteInfoGeneralInfoHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\APIQuerySiteInfoStatisticsInfoHook' => __DIR__ . '/includes/api/Hook/APIQuerySiteInfoStatisticsInfoHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiCheckCanExecuteHook' => __DIR__ . '/includes/api/Hook/ApiCheckCanExecuteHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiDeprecationHelpHook' => __DIR__ . '/includes/api/Hook/ApiDeprecationHelpHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiFeedContributions__feedItemHook' => __DIR__ . '/includes/api/Hook/ApiFeedContributions__feedItemHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiFormatHighlightHook' => __DIR__ . '/includes/api/Hook/ApiFormatHighlightHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiMain__moduleManagerHook' => __DIR__ . '/includes/api/Hook/ApiMain__moduleManagerHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiMain__onExceptionHook' => __DIR__ . '/includes/api/Hook/ApiMain__onExceptionHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiMakeParserOptionsHook' => __DIR__ . '/includes/api/Hook/ApiMakeParserOptionsHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiMaxLagInfoHook' => __DIR__ . '/includes/api/Hook/ApiMaxLagInfoHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiOpenSearchSuggestHook' => __DIR__ . '/includes/api/Hook/ApiOpenSearchSuggestHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiOptionsHook' => __DIR__ . '/includes/api/Hook/ApiOptionsHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiParseMakeOutputPageHook' => __DIR__ . '/includes/api/Hook/ApiParseMakeOutputPageHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQueryBaseAfterQueryHook' => __DIR__ . '/includes/api/Hook/ApiQueryBaseAfterQueryHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQueryBaseBeforeQueryHook' => __DIR__ . '/includes/api/Hook/ApiQueryBaseBeforeQueryHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQueryBaseProcessRowHook' => __DIR__ . '/includes/api/Hook/ApiQueryBaseProcessRowHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQueryTokensRegisterTypesHook' => __DIR__ . '/includes/api/Hook/ApiQueryTokensRegisterTypesHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQueryWatchlistExtractOutputDataHook' => __DIR__ . '/includes/api/Hook/ApiQueryWatchlistExtractOutputDataHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQueryWatchlistPrepareWatchedItemQueryServiceOptionsHook' => __DIR__ . '/includes/api/Hook/ApiQueryWatchlistPrepareWatchedItemQueryServiceOptionsHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiQuery__moduleManagerHook' => __DIR__ . '/includes/api/Hook/ApiQuery__moduleManagerHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiRsdServiceApisHook' => __DIR__ . '/includes/api/Hook/ApiRsdServiceApisHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\ApiValidatePasswordHook' => __DIR__ . '/includes/api/Hook/ApiValidatePasswordHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Hook\\RequestHasSameOriginSecurityHook' => __DIR__ . '/includes/api/Hook/RequestHasSameOriginSecurityHook.php',
|
|
|
|
|
'MediaWiki\\Api\\Validator\\ApiParamValidator' => __DIR__ . '/includes/api/Validator/ApiParamValidator.php',
|
|
|
|
|
'MediaWiki\\Api\\Validator\\ApiParamValidatorCallbacks' => __DIR__ . '/includes/api/Validator/ApiParamValidatorCallbacks.php',
|
|
|
|
|
'MediaWiki\\Api\\Validator\\SubmoduleDef' => __DIR__ . '/includes/api/Validator/SubmoduleDef.php',
|
|
|
|
|
'MediaWiki\\Auth\\AbstractAuthenticationProvider' => __DIR__ . '/includes/auth/AbstractAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\AbstractPasswordPrimaryAuthenticationProvider' => __DIR__ . '/includes/auth/AbstractPasswordPrimaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\AbstractPreAuthenticationProvider' => __DIR__ . '/includes/auth/AbstractPreAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\AbstractPrimaryAuthenticationProvider' => __DIR__ . '/includes/auth/AbstractPrimaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\AbstractSecondaryAuthenticationProvider' => __DIR__ . '/includes/auth/AbstractSecondaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\AuthManager' => __DIR__ . '/includes/auth/AuthManager.php',
|
|
|
|
|
'MediaWiki\\Auth\\AuthenticationProvider' => __DIR__ . '/includes/auth/AuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\AuthenticationRequest' => __DIR__ . '/includes/auth/AuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\AuthenticationResponse' => __DIR__ . '/includes/auth/AuthenticationResponse.php',
|
|
|
|
|
'MediaWiki\\Auth\\ButtonAuthenticationRequest' => __DIR__ . '/includes/auth/ButtonAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\CheckBlocksSecondaryAuthenticationProvider' => __DIR__ . '/includes/auth/CheckBlocksSecondaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\ConfirmLinkAuthenticationRequest' => __DIR__ . '/includes/auth/ConfirmLinkAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\ConfirmLinkSecondaryAuthenticationProvider' => __DIR__ . '/includes/auth/ConfirmLinkSecondaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\CreateFromLoginAuthenticationRequest' => __DIR__ . '/includes/auth/CreateFromLoginAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\CreatedAccountAuthenticationRequest' => __DIR__ . '/includes/auth/CreatedAccountAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\CreationReasonAuthenticationRequest' => __DIR__ . '/includes/auth/CreationReasonAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\EmailNotificationSecondaryAuthenticationProvider' => __DIR__ . '/includes/auth/EmailNotificationSecondaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\Hook\\AuthManagerLoginAuthenticateAuditHook' => __DIR__ . '/includes/auth/Hook/AuthManagerLoginAuthenticateAuditHook.php',
|
|
|
|
|
'MediaWiki\\Auth\\Hook\\ExemptFromAccountCreationThrottleHook' => __DIR__ . '/includes/auth/Hook/ExemptFromAccountCreationThrottleHook.php',
|
|
|
|
|
'MediaWiki\\Auth\\Hook\\LocalUserCreatedHook' => __DIR__ . '/includes/auth/Hook/LocalUserCreatedHook.php',
|
|
|
|
|
'MediaWiki\\Auth\\Hook\\ResetPasswordExpirationHook' => __DIR__ . '/includes/auth/Hook/ResetPasswordExpirationHook.php',
|
|
|
|
|
'MediaWiki\\Auth\\Hook\\SecuritySensitiveOperationStatusHook' => __DIR__ . '/includes/auth/Hook/SecuritySensitiveOperationStatusHook.php',
|
|
|
|
|
'MediaWiki\\Auth\\Hook\\UserLoggedInHook' => __DIR__ . '/includes/auth/Hook/UserLoggedInHook.php',
|
|
|
|
|
'MediaWiki\\Auth\\LocalPasswordPrimaryAuthenticationProvider' => __DIR__ . '/includes/auth/LocalPasswordPrimaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\PasswordAuthenticationRequest' => __DIR__ . '/includes/auth/PasswordAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\PasswordDomainAuthenticationRequest' => __DIR__ . '/includes/auth/PasswordDomainAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\PreAuthenticationProvider' => __DIR__ . '/includes/auth/PreAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\PrimaryAuthenticationProvider' => __DIR__ . '/includes/auth/PrimaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\RememberMeAuthenticationRequest' => __DIR__ . '/includes/auth/RememberMeAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\ResetPasswordSecondaryAuthenticationProvider' => __DIR__ . '/includes/auth/ResetPasswordSecondaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\SecondaryAuthenticationProvider' => __DIR__ . '/includes/auth/SecondaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\TemporaryPasswordAuthenticationRequest' => __DIR__ . '/includes/auth/TemporaryPasswordAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\TemporaryPasswordPrimaryAuthenticationProvider' => __DIR__ . '/includes/auth/TemporaryPasswordPrimaryAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\ThrottlePreAuthenticationProvider' => __DIR__ . '/includes/auth/ThrottlePreAuthenticationProvider.php',
|
|
|
|
|
'MediaWiki\\Auth\\Throttler' => __DIR__ . '/includes/auth/Throttler.php',
|
|
|
|
|
'MediaWiki\\Auth\\UserDataAuthenticationRequest' => __DIR__ . '/includes/auth/UserDataAuthenticationRequest.php',
|
|
|
|
|
'MediaWiki\\Auth\\UsernameAuthenticationRequest' => __DIR__ . '/includes/auth/UsernameAuthenticationRequest.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MediaWiki\\BadFileLookup' => __DIR__ . '/includes/page/File/BadFileLookup.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Block\\AbstractBlock' => __DIR__ . '/includes/block/AbstractBlock.php',
|
Move DatabaseBlock read query methods to DatabaseBlockStore
* Move to DatabaseBlockStore the DatabaseBlock methods newFromID,
getQueryInfo, getRangeCond, newFromRow, isExemptedFromAutoblocks,
doAutoblock, updateTimestamp, getAutoblockExpiry, newFromTarget,
newListFromTarget.
* Split DatabaseBlock::getBlocksForIPList. Now
BlockManager::getBlocksForIPList() is responsible for XFF header
validation and trusted proxy handling. DatabaseBlockStore::
newListFromIPs() just does the queries and constructs the Block
objects.
* In DatabaseBlockStore::newFromRow() and doAutoblock(), use the
DatabaseBlock constructor instead of calling many setter methods. Add
constructor options decodedExpiry, decodedTimestamp, id,
parentBlockId and restrictions to support this.
* Move isExemptedFromAutoblocks() to its own service. Remove the cache
since in my testing with production eval.php, the WAN cache fetch is
10 times slower than just using the message cache, contradicting the
comment written in 2008.
* Fix AuthManagerTest which was previously passing an unrecognised
"restrictions" option to DatabaseBlock. Now that the option actually
works, we have to use the right type.
Bug: T255433
Change-Id: I5049e60be1681f67fcca133e569e315792dc42dd
2023-10-31 05:58:23 +00:00
|
|
|
'MediaWiki\\Block\\AutoblockExemptionList' => __DIR__ . '/includes/block/AutoblockExemptionList.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Block\\Block' => __DIR__ . '/includes/block/Block.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockActionInfo' => __DIR__ . '/includes/block/BlockActionInfo.php',
|
2023-10-04 00:26:46 +00:00
|
|
|
'MediaWiki\\Block\\BlockCache' => __DIR__ . '/includes/block/BlockCache.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockCacheEntry' => __DIR__ . '/includes/block/BlockCacheEntry.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockCacheKey' => __DIR__ . '/includes/block/BlockCacheKey.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Block\\BlockErrorFormatter' => __DIR__ . '/includes/block/BlockErrorFormatter.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockManager' => __DIR__ . '/includes/block/BlockManager.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockPermissionChecker' => __DIR__ . '/includes/block/BlockPermissionChecker.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockPermissionCheckerFactory' => __DIR__ . '/includes/block/BlockPermissionCheckerFactory.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockRestrictionStore' => __DIR__ . '/includes/block/BlockRestrictionStore.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockRestrictionStoreFactory' => __DIR__ . '/includes/block/BlockRestrictionStoreFactory.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockUser' => __DIR__ . '/includes/block/BlockUser.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockUserFactory' => __DIR__ . '/includes/block/BlockUserFactory.php',
|
|
|
|
|
'MediaWiki\\Block\\BlockUtils' => __DIR__ . '/includes/block/BlockUtils.php',
|
|
|
|
|
'MediaWiki\\Block\\CompositeBlock' => __DIR__ . '/includes/block/CompositeBlock.php',
|
|
|
|
|
'MediaWiki\\Block\\DatabaseBlock' => __DIR__ . '/includes/block/DatabaseBlock.php',
|
|
|
|
|
'MediaWiki\\Block\\DatabaseBlockStore' => __DIR__ . '/includes/block/DatabaseBlockStore.php',
|
2022-09-07 15:23:14 +00:00
|
|
|
'MediaWiki\\Block\\DatabaseBlockStoreFactory' => __DIR__ . '/includes/block/DatabaseBlockStoreFactory.php',
|
Support new block schema
Support migration stages when reading and writing blocks.
I tried to set it up for an easy next stage, in which support for the
old schema is removed. I tried to avoid factoring out of shared code
between the two schemas, so that the old schema cases can simply be
deleted without the need to revert unnecessary abstractions.
However, I added HideUserUtils to factor out ipb_deleted queries. Code
review showed that this was already quite complex, with multiple
approaches to the problem, so it benefits from refactoring even without
the schema abstraction.
HideUserUtils is a service rather than a standalone class to support
unit tests, since unit tests do not allow global config access. When
the migration stage config is removed, it will be a service with no
constructor parameters -- an unnecessary abstraction which should
ideally be resolved at that time.
When interpreting result rows, it is possible to share code by using
field aliases. But when constructing WHERE conditions, the actual field
names need to be used, so the migration is more intrusive in
ApiQueryBlocks and SpecialBlockList, where complex conditions are used.
Bug: T346293
Bug: T51504
Bug: T349883
Change-Id: I408acf7a57b0100fe18c455fc13141277a598925
2023-10-27 03:34:10 +00:00
|
|
|
'MediaWiki\\Block\\HideUserUtils' => __DIR__ . '/includes/block/HideUserUtils.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Block\\Hook\\AbortAutoblockHook' => __DIR__ . '/includes/block/Hook/AbortAutoblockHook.php',
|
|
|
|
|
'MediaWiki\\Block\\Hook\\GetAllBlockActionsHook' => __DIR__ . '/includes/block/Hook/GetAllBlockActionsHook.php',
|
|
|
|
|
'MediaWiki\\Block\\Hook\\GetUserBlockHook' => __DIR__ . '/includes/block/Hook/GetUserBlockHook.php',
|
|
|
|
|
'MediaWiki\\Block\\Hook\\PerformRetroactiveAutoblockHook' => __DIR__ . '/includes/block/Hook/PerformRetroactiveAutoblockHook.php',
|
|
|
|
|
'MediaWiki\\Block\\Restriction\\AbstractRestriction' => __DIR__ . '/includes/block/Restriction/AbstractRestriction.php',
|
|
|
|
|
'MediaWiki\\Block\\Restriction\\ActionRestriction' => __DIR__ . '/includes/block/Restriction/ActionRestriction.php',
|
|
|
|
|
'MediaWiki\\Block\\Restriction\\NamespaceRestriction' => __DIR__ . '/includes/block/Restriction/NamespaceRestriction.php',
|
|
|
|
|
'MediaWiki\\Block\\Restriction\\PageRestriction' => __DIR__ . '/includes/block/Restriction/PageRestriction.php',
|
|
|
|
|
'MediaWiki\\Block\\Restriction\\Restriction' => __DIR__ . '/includes/block/Restriction/Restriction.php',
|
|
|
|
|
'MediaWiki\\Block\\SystemBlock' => __DIR__ . '/includes/block/SystemBlock.php',
|
|
|
|
|
'MediaWiki\\Block\\UnblockUser' => __DIR__ . '/includes/block/UnblockUser.php',
|
|
|
|
|
'MediaWiki\\Block\\UnblockUserFactory' => __DIR__ . '/includes/block/UnblockUserFactory.php',
|
|
|
|
|
'MediaWiki\\Block\\UserBlockCommandFactory' => __DIR__ . '/includes/block/UserBlockCommandFactory.php',
|
|
|
|
|
'MediaWiki\\Cache\\BacklinkCacheFactory' => __DIR__ . '/includes/cache/BacklinkCacheFactory.php',
|
|
|
|
|
'MediaWiki\\Cache\\CacheKeyHelper' => __DIR__ . '/includes/cache/CacheKeyHelper.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\BacklinkCacheGetConditionsHook' => __DIR__ . '/includes/cache/Hook/BacklinkCacheGetConditionsHook.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\BacklinkCacheGetPrefixHook' => __DIR__ . '/includes/cache/Hook/BacklinkCacheGetPrefixHook.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\HTMLFileCache__useFileCacheHook' => __DIR__ . '/includes/cache/Hook/HTMLFileCache__useFileCacheHook.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\HtmlCacheUpdaterAppendUrlsHook' => __DIR__ . '/includes/cache/Hook/HtmlCacheUpdaterAppendUrlsHook.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\HtmlCacheUpdaterVaryUrlsHook' => __DIR__ . '/includes/cache/Hook/HtmlCacheUpdaterVaryUrlsHook.php',
|
2023-01-28 11:31:48 +00:00
|
|
|
'MediaWiki\\Cache\\Hook\\MessageCacheFetchOverridesHook' => __DIR__ . '/includes/language/Hook/MessageCacheFetchOverridesHook.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'MediaWiki\\Cache\\Hook\\MessageCacheReplaceHook' => __DIR__ . '/includes/language/Hook/MessageCacheReplaceHook.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\MessageCache__getHook' => __DIR__ . '/includes/language/Hook/MessageCache__getHook.php',
|
|
|
|
|
'MediaWiki\\Cache\\Hook\\MessagesPreLoadHook' => __DIR__ . '/includes/language/Hook/MessagesPreLoadHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Cache\\LinkBatchFactory' => __DIR__ . '/includes/cache/LinkBatchFactory.php',
|
2023-02-09 18:59:23 +00:00
|
|
|
'MediaWiki\\Category\\CategoriesRdf' => __DIR__ . '/includes/Category/CategoriesRdf.php',
|
|
|
|
|
'MediaWiki\\Category\\Category' => __DIR__ . '/includes/Category/Category.php',
|
|
|
|
|
'MediaWiki\\Category\\CategoryViewer' => __DIR__ . '/includes/Category/CategoryViewer.php',
|
|
|
|
|
'MediaWiki\\Category\\TrackingCategories' => __DIR__ . '/includes/Category/TrackingCategories.php',
|
2023-05-07 00:26:40 +00:00
|
|
|
'MediaWiki\\ChangeTags\\ChangeTagsStore' => __DIR__ . '/includes/changetags/ChangeTagsStore.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ChangeTagAfterDeleteHook' => __DIR__ . '/includes/changetags/Hook/ChangeTagAfterDeleteHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ChangeTagCanCreateHook' => __DIR__ . '/includes/changetags/Hook/ChangeTagCanCreateHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ChangeTagCanDeleteHook' => __DIR__ . '/includes/changetags/Hook/ChangeTagCanDeleteHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ChangeTagsAfterUpdateTagsHook' => __DIR__ . '/includes/changetags/Hook/ChangeTagsAfterUpdateTagsHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ChangeTagsAllowedAddHook' => __DIR__ . '/includes/changetags/Hook/ChangeTagsAllowedAddHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ChangeTagsListActiveHook' => __DIR__ . '/includes/changetags/Hook/ChangeTagsListActiveHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Hook\\ListDefinedTagsHook' => __DIR__ . '/includes/changetags/Hook/ListDefinedTagsHook.php',
|
|
|
|
|
'MediaWiki\\ChangeTags\\Taggable' => __DIR__ . '/includes/changetags/Taggable.php',
|
2021-08-24 19:12:39 +00:00
|
|
|
'MediaWiki\\Collation\\CollationFactory' => __DIR__ . '/includes/collation/CollationFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\CommentFormatter\\CommentBatch' => __DIR__ . '/includes/CommentFormatter/CommentBatch.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\CommentFormatter' => __DIR__ . '/includes/CommentFormatter/CommentFormatter.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\CommentItem' => __DIR__ . '/includes/CommentFormatter/CommentItem.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\CommentParser' => __DIR__ . '/includes/CommentFormatter/CommentParser.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\CommentParserFactory' => __DIR__ . '/includes/CommentFormatter/CommentParserFactory.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\RevisionCommentBatch' => __DIR__ . '/includes/CommentFormatter/RevisionCommentBatch.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\RowCommentFormatter' => __DIR__ . '/includes/CommentFormatter/RowCommentFormatter.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\RowCommentIterator' => __DIR__ . '/includes/CommentFormatter/RowCommentIterator.php',
|
|
|
|
|
'MediaWiki\\CommentFormatter\\StringCommentIterator' => __DIR__ . '/includes/CommentFormatter/StringCommentIterator.php',
|
2022-12-28 21:50:03 +00:00
|
|
|
'MediaWiki\\CommentStore\\CommentStore' => __DIR__ . '/includes/CommentStore/CommentStore.php',
|
|
|
|
|
'MediaWiki\\CommentStore\\CommentStoreComment' => __DIR__ . '/includes/CommentStore/CommentStoreComment.php',
|
2023-09-20 07:54:42 +00:00
|
|
|
'MediaWiki\\Config\\Config' => __DIR__ . '/includes/config/Config.php',
|
|
|
|
|
'MediaWiki\\Config\\ConfigException' => __DIR__ . '/includes/config/ConfigException.php',
|
|
|
|
|
'MediaWiki\\Config\\ConfigFactory' => __DIR__ . '/includes/config/ConfigFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Config\\ConfigRepository' => __DIR__ . '/includes/config/ConfigRepository.php',
|
2023-09-20 07:54:42 +00:00
|
|
|
'MediaWiki\\Config\\EtcdConfig' => __DIR__ . '/includes/config/EtcdConfig.php',
|
|
|
|
|
'MediaWiki\\Config\\EtcdConfigParseError' => __DIR__ . '/includes/config/EtcdConfigParseError.php',
|
|
|
|
|
'MediaWiki\\Config\\GlobalVarConfig' => __DIR__ . '/includes/config/GlobalVarConfig.php',
|
|
|
|
|
'MediaWiki\\Config\\HashConfig' => __DIR__ . '/includes/config/HashConfig.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Config\\IterableConfig' => __DIR__ . '/includes/config/IterableConfig.php',
|
2023-09-20 07:54:42 +00:00
|
|
|
'MediaWiki\\Config\\MultiConfig' => __DIR__ . '/includes/config/MultiConfig.php',
|
|
|
|
|
'MediaWiki\\Config\\MutableConfig' => __DIR__ . '/includes/config/MutableConfig.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Config\\ServiceOptions' => __DIR__ . '/includes/config/ServiceOptions.php',
|
2023-09-07 11:37:31 +00:00
|
|
|
'MediaWiki\\Config\\SiteConfiguration' => __DIR__ . '/includes/config/SiteConfiguration.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Content\\ContentHandlerFactory' => __DIR__ . '/includes/content/ContentHandlerFactory.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\ContentAlterParserOutputHook' => __DIR__ . '/includes/content/Hook/ContentAlterParserOutputHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\ContentGetParserOutputHook' => __DIR__ . '/includes/content/Hook/ContentGetParserOutputHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\ContentHandlerForModelIDHook' => __DIR__ . '/includes/content/Hook/ContentHandlerForModelIDHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\ContentModelCanBeUsedOnHook' => __DIR__ . '/includes/content/Hook/ContentModelCanBeUsedOnHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\ConvertContentHook' => __DIR__ . '/includes/content/Hook/ConvertContentHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\GetContentModelsHook' => __DIR__ . '/includes/content/Hook/GetContentModelsHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\GetDifferenceEngineHook' => __DIR__ . '/includes/content/Hook/GetDifferenceEngineHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\GetSlotDiffRendererHook' => __DIR__ . '/includes/content/Hook/GetSlotDiffRendererHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\JsonValidateSaveHook' => __DIR__ . '/includes/content/Hook/JsonValidateSaveHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\PageContentLanguageHook' => __DIR__ . '/includes/content/Hook/PageContentLanguageHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\PlaceNewSectionHook' => __DIR__ . '/includes/content/Hook/PlaceNewSectionHook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\SearchDataForIndex2Hook' => __DIR__ . '/includes/content/Hook/SearchDataForIndex2Hook.php',
|
|
|
|
|
'MediaWiki\\Content\\Hook\\SearchDataForIndexHook' => __DIR__ . '/includes/content/Hook/SearchDataForIndexHook.php',
|
|
|
|
|
'MediaWiki\\Content\\IContentHandlerFactory' => __DIR__ . '/includes/content/IContentHandlerFactory.php',
|
|
|
|
|
'MediaWiki\\Content\\Renderer\\ContentParseParams' => __DIR__ . '/includes/content/Renderer/ContentParseParams.php',
|
|
|
|
|
'MediaWiki\\Content\\Renderer\\ContentRenderer' => __DIR__ . '/includes/content/Renderer/ContentRenderer.php',
|
|
|
|
|
'MediaWiki\\Content\\Transform\\ContentTransformer' => __DIR__ . '/includes/content/Transform/ContentTransformer.php',
|
|
|
|
|
'MediaWiki\\Content\\Transform\\PreSaveTransformParams' => __DIR__ . '/includes/content/Transform/PreSaveTransformParams.php',
|
|
|
|
|
'MediaWiki\\Content\\Transform\\PreSaveTransformParamsValue' => __DIR__ . '/includes/content/Transform/PreSaveTransformParamsValue.php',
|
|
|
|
|
'MediaWiki\\Content\\Transform\\PreloadTransformParams' => __DIR__ . '/includes/content/Transform/PreloadTransformParams.php',
|
|
|
|
|
'MediaWiki\\Content\\Transform\\PreloadTransformParamsValue' => __DIR__ . '/includes/content/Transform/PreloadTransformParamsValue.php',
|
|
|
|
|
'MediaWiki\\Content\\ValidationParams' => __DIR__ . '/includes/content/ValidationParams.php',
|
2021-01-26 17:03:59 +00:00
|
|
|
'MediaWiki\\DAO\\WikiAwareEntity' => __DIR__ . '/includes/dao/WikiAwareEntity.php',
|
2021-02-06 00:54:54 +00:00
|
|
|
'MediaWiki\\DAO\\WikiAwareEntityTrait' => __DIR__ . '/includes/dao/WikiAwareEntityTrait.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\DB\\AbstractSchemaValidationError' => __DIR__ . '/includes/db/AbstractSchemaValidationError.php',
|
|
|
|
|
'MediaWiki\\DB\\AbstractSchemaValidator' => __DIR__ . '/includes/db/AbstractSchemaValidator.php',
|
2020-06-03 16:37:46 +00:00
|
|
|
'MediaWiki\\Debug\\DeprecatablePropertyArray' => __DIR__ . '/includes/debug/DeprecatablePropertyArray.php',
|
2023-11-21 21:08:14 +00:00
|
|
|
'MediaWiki\\Deferred\\AtomicSectionUpdate' => __DIR__ . '/includes/deferred/AtomicSectionUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\AutoCommitUpdate' => __DIR__ . '/includes/deferred/AutoCommitUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\CdnCacheUpdate' => __DIR__ . '/includes/deferred/CdnCacheUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DataUpdate' => __DIR__ . '/includes/deferred/DataUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DeferrableCallback' => __DIR__ . '/includes/deferred/DeferrableCallback.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DeferrableUpdate' => __DIR__ . '/includes/deferred/DeferrableUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DeferredUpdates' => __DIR__ . '/includes/deferred/DeferredUpdates.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DeferredUpdatesScope' => __DIR__ . '/includes/deferred/DeferredUpdatesScope.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DeferredUpdatesScopeMediaWikiStack' => __DIR__ . '/includes/deferred/DeferredUpdatesScopeMediaWikiStack.php',
|
|
|
|
|
'MediaWiki\\Deferred\\DeferredUpdatesScopeStack' => __DIR__ . '/includes/deferred/DeferredUpdatesScopeStack.php',
|
|
|
|
|
'MediaWiki\\Deferred\\EnqueueableDataUpdate' => __DIR__ . '/includes/deferred/EnqueueableDataUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\HtmlFileCacheUpdate' => __DIR__ . '/includes/deferred/HtmlFileCacheUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\JobQueueEnqueueUpdate' => __DIR__ . '/includes/deferred/JobQueueEnqueueUpdate.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\CategoryLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/CategoryLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\ExternalLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/ExternalLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\GenericPageLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/GenericPageLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\ImageLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/ImageLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\InterwikiLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/InterwikiLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\LangLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/LangLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\LinksDeletionUpdate' => __DIR__ . '/includes/deferred/LinksUpdate/LinksDeletionUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\LinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/LinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\LinksTableGroup' => __DIR__ . '/includes/deferred/LinksUpdate/LinksTableGroup.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\LinksUpdate' => __DIR__ . '/includes/deferred/LinksUpdate/LinksUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\PageLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/PageLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\PagePropsTable' => __DIR__ . '/includes/deferred/LinksUpdate/PagePropsTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\TemplateLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/TemplateLinksTable.php',
|
|
|
|
|
'MediaWiki\\Deferred\\LinksUpdate\\TitleLinksTable' => __DIR__ . '/includes/deferred/LinksUpdate/TitleLinksTable.php',
|
2023-11-21 21:08:14 +00:00
|
|
|
'MediaWiki\\Deferred\\MWCallableUpdate' => __DIR__ . '/includes/deferred/MWCallableUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\MergeableUpdate' => __DIR__ . '/includes/deferred/MergeableUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\MessageCacheUpdate' => __DIR__ . '/includes/deferred/MessageCacheUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\SearchUpdate' => __DIR__ . '/includes/deferred/SearchUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\SendPasswordResetEmailUpdate' => __DIR__ . '/includes/deferred/SendPasswordResetEmailUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\SiteStatsUpdate' => __DIR__ . '/includes/deferred/SiteStatsUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\TransactionRoundAwareUpdate' => __DIR__ . '/includes/deferred/TransactionRoundAwareUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\TransactionRoundDefiningUpdate' => __DIR__ . '/includes/deferred/TransactionRoundDefiningUpdate.php',
|
|
|
|
|
'MediaWiki\\Deferred\\UserEditCountInfo' => __DIR__ . '/includes/deferred/UserEditCountInfo.php',
|
|
|
|
|
'MediaWiki\\Deferred\\UserEditCountUpdate' => __DIR__ . '/includes/deferred/UserEditCountUpdate.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'MediaWiki\\Diff\\ComplexityException' => __DIR__ . '/includes/libs/Diff/ComplexityException.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Diff\\Hook\\AbortDiffCacheHook' => __DIR__ . '/includes/diff/Hook/AbortDiffCacheHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\ArticleContentOnDiffHook' => __DIR__ . '/includes/diff/Hook/ArticleContentOnDiffHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DiffToolsHook' => __DIR__ . '/includes/diff/Hook/DiffToolsHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineAfterLoadNewTextHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineAfterLoadNewTextHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineLoadTextAfterNewContentIsLoadedHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineLoadTextAfterNewContentIsLoadedHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineMarkPatrolledLinkHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineMarkPatrolledLinkHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineMarkPatrolledRCIDHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineMarkPatrolledRCIDHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineNewHeaderHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineNewHeaderHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineOldHeaderHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineOldHeaderHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineOldHeaderNoOldRevHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineOldHeaderNoOldRevHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineRenderRevisionAddParserOutputHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineRenderRevisionAddParserOutputHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineRenderRevisionShowFinalPatrolLinkHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineRenderRevisionShowFinalPatrolLinkHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineShowDiffHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineShowDiffHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineShowDiffPageHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineShowDiffPageHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineShowDiffPageMaybeShowMissingRevisionHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineShowDiffPageMaybeShowMissingRevisionHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineShowEmptyOldContentHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineShowEmptyOldContentHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\DifferenceEngineViewHeaderHook' => __DIR__ . '/includes/diff/Hook/DifferenceEngineViewHeaderHook.php',
|
|
|
|
|
'MediaWiki\\Diff\\Hook\\NewDifferenceEngineHook' => __DIR__ . '/includes/diff/Hook/NewDifferenceEngineHook.php',
|
2023-05-22 05:41:21 +00:00
|
|
|
'MediaWiki\\Diff\\Hook\\TextSlotDiffRendererTablePrefixHook' => __DIR__ . '/includes/diff/Hook/TextSlotDiffRendererTablePrefixHook.php',
|
2023-07-03 08:27:47 +00:00
|
|
|
'MediaWiki\\Diff\\TextDiffer\\BaseTextDiffer' => __DIR__ . '/includes/diff/TextDiffer/BaseTextDiffer.php',
|
|
|
|
|
'MediaWiki\\Diff\\TextDiffer\\ExternalTextDiffer' => __DIR__ . '/includes/diff/TextDiffer/ExternalTextDiffer.php',
|
|
|
|
|
'MediaWiki\\Diff\\TextDiffer\\ManifoldTextDiffer' => __DIR__ . '/includes/diff/TextDiffer/ManifoldTextDiffer.php',
|
|
|
|
|
'MediaWiki\\Diff\\TextDiffer\\PhpTextDiffer' => __DIR__ . '/includes/diff/TextDiffer/PhpTextDiffer.php',
|
|
|
|
|
'MediaWiki\\Diff\\TextDiffer\\TextDiffer' => __DIR__ . '/includes/diff/TextDiffer/TextDiffer.php',
|
|
|
|
|
'MediaWiki\\Diff\\TextDiffer\\Wikidiff2TextDiffer' => __DIR__ . '/includes/diff/TextDiffer/Wikidiff2TextDiffer.php',
|
2023-06-26 15:49:43 +00:00
|
|
|
'MediaWiki\\Diff\\WordAccumulator' => __DIR__ . '/includes/libs/Diff/WordAccumulator.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\EditPage\\Constraint\\AccidentalRecreationConstraint' => __DIR__ . '/includes/editpage/Constraint/AccidentalRecreationConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\AutoSummaryMissingSummaryConstraint' => __DIR__ . '/includes/editpage/Constraint/AutoSummaryMissingSummaryConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\ChangeTagsConstraint' => __DIR__ . '/includes/editpage/Constraint/ChangeTagsConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\ContentModelChangeConstraint' => __DIR__ . '/includes/editpage/Constraint/ContentModelChangeConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\DefaultTextConstraint' => __DIR__ . '/includes/editpage/Constraint/DefaultTextConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\EditConstraintFactory' => __DIR__ . '/includes/editpage/Constraint/EditConstraintFactory.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\EditConstraintRunner' => __DIR__ . '/includes/editpage/Constraint/EditConstraintRunner.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\EditFilterMergedContentHookConstraint' => __DIR__ . '/includes/editpage/Constraint/EditFilterMergedContentHookConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\EditRightConstraint' => __DIR__ . '/includes/editpage/Constraint/EditRightConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\IEditConstraint' => __DIR__ . '/includes/editpage/Constraint/IEditConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\ImageRedirectConstraint' => __DIR__ . '/includes/editpage/Constraint/ImageRedirectConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\MissingCommentConstraint' => __DIR__ . '/includes/editpage/Constraint/MissingCommentConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\NewSectionMissingSubjectConstraint' => __DIR__ . '/includes/editpage/Constraint/NewSectionMissingSubjectConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\PageSizeConstraint' => __DIR__ . '/includes/editpage/Constraint/PageSizeConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\ReadOnlyConstraint' => __DIR__ . '/includes/editpage/Constraint/ReadOnlyConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\SelfRedirectConstraint' => __DIR__ . '/includes/editpage/Constraint/SelfRedirectConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\SimpleAntiSpamConstraint' => __DIR__ . '/includes/editpage/Constraint/SimpleAntiSpamConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\SpamRegexConstraint' => __DIR__ . '/includes/editpage/Constraint/SpamRegexConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\UnicodeConstraint' => __DIR__ . '/includes/editpage/Constraint/UnicodeConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\UserBlockConstraint' => __DIR__ . '/includes/editpage/Constraint/UserBlockConstraint.php',
|
|
|
|
|
'MediaWiki\\EditPage\\Constraint\\UserRateLimitConstraint' => __DIR__ . '/includes/editpage/Constraint/UserRateLimitConstraint.php',
|
2023-02-13 19:56:51 +00:00
|
|
|
'MediaWiki\\EditPage\\EditPage' => __DIR__ . '/includes/editpage/EditPage.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\EditPage\\IEditObject' => __DIR__ . '/includes/editpage/IEditObject.php',
|
2023-04-19 22:27:50 +00:00
|
|
|
'MediaWiki\\EditPage\\IntroMessageBuilder' => __DIR__ . '/includes/editpage/IntroMessageBuilder.php',
|
|
|
|
|
'MediaWiki\\EditPage\\IntroMessageList' => __DIR__ . '/includes/editpage/IntroMessageList.php',
|
|
|
|
|
'MediaWiki\\EditPage\\ParametersHelper' => __DIR__ . '/includes/editpage/ParametersHelper.php',
|
|
|
|
|
'MediaWiki\\EditPage\\PreloadedContentBuilder' => __DIR__ . '/includes/editpage/PreloadedContentBuilder.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\EditPage\\SpamChecker' => __DIR__ . '/includes/editpage/SpamChecker.php',
|
2023-02-13 19:56:51 +00:00
|
|
|
'MediaWiki\\EditPage\\TemplatesOnThisPageFormatter' => __DIR__ . '/includes/editpage/TemplatesOnThisPageFormatter.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\EditPage\\TextConflictHelper' => __DIR__ . '/includes/editpage/TextConflictHelper.php',
|
|
|
|
|
'MediaWiki\\EditPage\\TextboxBuilder' => __DIR__ . '/includes/editpage/TextboxBuilder.php',
|
|
|
|
|
'MediaWiki\\Edit\\ParsoidOutputStash' => __DIR__ . '/includes/edit/ParsoidOutputStash.php',
|
|
|
|
|
'MediaWiki\\Edit\\PreparedEdit' => __DIR__ . '/includes/edit/PreparedEdit.php',
|
|
|
|
|
'MediaWiki\\Edit\\SelserContext' => __DIR__ . '/includes/edit/SelserContext.php',
|
|
|
|
|
'MediaWiki\\Edit\\SimpleParsoidOutputStash' => __DIR__ . '/includes/edit/SimpleParsoidOutputStash.php',
|
2023-04-20 16:35:01 +00:00
|
|
|
'MediaWiki\\Emptiable' => __DIR__ . '/includes/libs/Emptiable.php',
|
2021-07-21 23:49:49 +00:00
|
|
|
'MediaWiki\\Export\\WikiExporterFactory' => __DIR__ . '/includes/export/WikiExporterFactory.php',
|
2023-08-19 09:15:34 +00:00
|
|
|
'MediaWiki\\ExtensionInfo' => __DIR__ . '/includes/utils/ExtensionInfo.php',
|
2023-04-24 13:04:39 +00:00
|
|
|
'MediaWiki\\ExternalLinks\\ExternalLinksLookup' => __DIR__ . '/includes/ExternalLinks/ExternalLinksLookup.php',
|
2023-03-01 21:05:04 +00:00
|
|
|
'MediaWiki\\ExternalLinks\\LinkFilter' => __DIR__ . '/includes/ExternalLinks/LinkFilter.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Feed\\AtomFeed' => __DIR__ . '/includes/Feed/AtomFeed.php',
|
|
|
|
|
'MediaWiki\\Feed\\ChannelFeed' => __DIR__ . '/includes/Feed/ChannelFeed.php',
|
|
|
|
|
'MediaWiki\\Feed\\FeedItem' => __DIR__ . '/includes/Feed/FeedItem.php',
|
|
|
|
|
'MediaWiki\\Feed\\FeedUtils' => __DIR__ . '/includes/Feed/FeedUtils.php',
|
|
|
|
|
'MediaWiki\\Feed\\RSSFeed' => __DIR__ . '/includes/Feed/RSSFeed.php',
|
2019-08-16 10:00:15 +00:00
|
|
|
'MediaWiki\\FileBackend\\FSFile\\TempFSFileFactory' => __DIR__ . '/includes/libs/filebackend/fsfile/TempFSFileFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\FileBackend\\LockManager\\LockManagerGroupFactory' => __DIR__ . '/includes/filebackend/lockmanager/LockManagerGroupFactory.php',
|
2023-08-01 21:04:32 +00:00
|
|
|
'MediaWiki\\FileRepo\\File\\FileSelectQueryBuilder' => __DIR__ . '/includes/filerepo/file/FileSelectQueryBuilder.php',
|
2022-11-02 17:22:08 +00:00
|
|
|
'MediaWiki\\HeaderCallback' => __DIR__ . '/includes/Request/HeaderCallback.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\HookContainer\\DeprecatedHooks' => __DIR__ . '/includes/HookContainer/DeprecatedHooks.php',
|
2022-10-25 14:03:05 +00:00
|
|
|
'MediaWiki\\HookContainer\\FauxGlobalHookArray' => __DIR__ . '/includes/HookContainer/FauxGlobalHookArray.php',
|
|
|
|
|
'MediaWiki\\HookContainer\\FauxHookHandlerArray' => __DIR__ . '/includes/HookContainer/FauxHookHandlerArray.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\HookContainer\\HookContainer' => __DIR__ . '/includes/HookContainer/HookContainer.php',
|
|
|
|
|
'MediaWiki\\HookContainer\\HookRegistry' => __DIR__ . '/includes/HookContainer/HookRegistry.php',
|
|
|
|
|
'MediaWiki\\HookContainer\\HookRunner' => __DIR__ . '/includes/HookContainer/HookRunner.php',
|
|
|
|
|
'MediaWiki\\HookContainer\\ProtectedHookAccessorTrait' => __DIR__ . '/includes/HookContainer/ProtectedHookAccessorTrait.php',
|
|
|
|
|
'MediaWiki\\HookContainer\\StaticHookRegistry' => __DIR__ . '/includes/HookContainer/StaticHookRegistry.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\AbortEmailNotificationHook' => __DIR__ . '/includes/changes/Hook/AbortEmailNotificationHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\AbortTalkPageEmailNotificationHook' => __DIR__ . '/includes/mail/Hook/AbortTalkPageEmailNotificationHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ActionBeforeFormDisplayHook' => __DIR__ . '/includes/actions/Hook/ActionBeforeFormDisplayHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ActionModifyFormFieldsHook' => __DIR__ . '/includes/actions/Hook/ActionModifyFormFieldsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\AddNewAccountHook' => __DIR__ . '/includes/specials/Hook/AddNewAccountHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\AfterBuildFeedLinksHook' => __DIR__ . '/includes/Hook/AfterBuildFeedLinksHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\AfterFinalPageOutputHook' => __DIR__ . '/includes/Hook/AfterFinalPageOutputHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\AfterImportPageHook' => __DIR__ . '/includes/import/Hook/AfterImportPageHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\AfterParserFetchFileAndTitleHook' => __DIR__ . '/includes/parser/Hook/AfterParserFetchFileAndTitleHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\AlternateEditHook' => __DIR__ . '/includes/Hook/AlternateEditHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\AlternateEditPreviewHook' => __DIR__ . '/includes/Hook/AlternateEditPreviewHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\AlternateUserMailerHook' => __DIR__ . '/includes/mail/Hook/AlternateUserMailerHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\AncientPagesQueryHook' => __DIR__ . '/includes/specials/Hook/AncientPagesQueryHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ApiBeforeMainHook' => __DIR__ . '/includes/Hook/ApiBeforeMainHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ArticleMergeCompleteHook' => __DIR__ . '/includes/Hook/ArticleMergeCompleteHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ArticleRevisionVisibilitySetHook' => __DIR__ . '/includes/revisiondelete/Hook/ArticleRevisionVisibilitySetHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ArticleUpdateBeforeRedirectHook' => __DIR__ . '/includes/Hook/ArticleUpdateBeforeRedirectHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BadImageHook' => __DIR__ . '/includes/Hook/BadImageHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BeforeInitializeHook' => __DIR__ . '/includes/Hook/BeforeInitializeHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BeforePageDisplayHook' => __DIR__ . '/includes/Hook/BeforePageDisplayHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BeforePageRedirectHook' => __DIR__ . '/includes/Hook/BeforePageRedirectHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\BeforeParserFetchFileAndTitleHook' => __DIR__ . '/includes/parser/Hook/BeforeParserFetchFileAndTitleHook.php',
|
parser: new BeforeParserFetchTemplateRevisionRecord hook
This new hook provides for the use case in T47096 (allowing the
Translate extension to transclude a page from another language) by
adding a new hook which would let us deprecate and replace two awkward
legacy hooks (one with an embarrassing capitalization issue). The new
hook is a little more tightly scoped in terms of what it allows and
gives access to, and it uses the new RevisionRecord API.
In addition, the new hook uses LinkTarget instead of Title per
current best practices. (PageIdentity is not appropriate for
reasons documented at the hook invocation site.)
The original BeforeParserFetchTemplateAndtitle (sic) hook allowed
redirecting the revision id of a template inclusion, but not the
title. The only known current use is Extension:ApprovedRevs; the
FlaggedRevs extension replaces the entire function using
ParserOptions::setCurrentRevisionRecordCallback().
Extension:Translate would like to redirect the title as well, possibly
recursively (for a limited number of hops) to handle fallback
languages. That is, when invoked on Foo/fr, including Template:Bar
would redirect to Template:Bar/fr -- and, if that doesn't exist, then
Template:Bar/fr would redirect to its fallback language, say
Template:Bar/en. It uses the top-level page title as context to set
the desired page language. This would require 2 invocations of the
hook; we've set the recursion limit to 3 to provide a little bit
of future-proofing.
The hook added in this patch uses RevisionRecord instead of int
$rev_id, and thus can handle the case where the redirect is to a page
which doesn't exist (by setting the RevisionRecord to a
MutableRevisionRecord with the correct title and no main slot content)
in the fallback language case above.
The new hook deprecates BeforeParserFetchTemplateAndtitle and replaces
ParserFetchTemplate as well (deprecated in 1.35). Code search:
https://codesearch.wmcloud.org/search/?q=BeforeParserFetchTemplateAndtitle&i=nope&files=&repos=
Bug: T47096
Change-Id: Ia5b5d339706ce4084c16948300e0e3418b11792e
2020-07-29 23:32:45 +00:00
|
|
|
'MediaWiki\\Hook\\BeforeParserFetchTemplateRevisionRecordHook' => __DIR__ . '/includes/parser/Hook/BeforeParserFetchTemplateRevisionRecordHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\BeforeWelcomeCreationHook' => __DIR__ . '/includes/specials/Hook/BeforeWelcomeCreationHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BitmapHandlerCheckImageAreaHook' => __DIR__ . '/includes/media/Hook/BitmapHandlerCheckImageAreaHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BitmapHandlerTransformHook' => __DIR__ . '/includes/media/Hook/BitmapHandlerTransformHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BlockIpCompleteHook' => __DIR__ . '/includes/specials/Hook/BlockIpCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BlockIpHook' => __DIR__ . '/includes/specials/Hook/BlockIpHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\BookInformationHook' => __DIR__ . '/includes/specials/Hook/BookInformationHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\CanonicalNamespacesHook' => __DIR__ . '/includes/title/Hook/CanonicalNamespacesHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\CategoryViewer__doCategoryQueryHook' => __DIR__ . '/includes/Hook/CategoryViewer__doCategoryQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\CategoryViewer__generateLinkHook' => __DIR__ . '/includes/Hook/CategoryViewer__generateLinkHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ChangeUserGroupsHook' => __DIR__ . '/includes/specials/Hook/ChangeUserGroupsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ChangesListInitRowsHook' => __DIR__ . '/includes/changes/Hook/ChangesListInitRowsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ChangesListInsertArticleLinkHook' => __DIR__ . '/includes/changes/Hook/ChangesListInsertArticleLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\Collation__factoryHook' => __DIR__ . '/includes/collation/Hook/Collation__factoryHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ContentSecurityPolicyDefaultSourceHook' => __DIR__ . '/includes/Hook/ContentSecurityPolicyDefaultSourceHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ContentSecurityPolicyDirectivesHook' => __DIR__ . '/includes/Hook/ContentSecurityPolicyDirectivesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ContentSecurityPolicyScriptSourceHook' => __DIR__ . '/includes/Hook/ContentSecurityPolicyScriptSourceHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ContribsPager__getQueryInfoHook' => __DIR__ . '/includes/specials/Hook/ContribsPager__getQueryInfoHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ContribsPager__reallyDoQueryHook' => __DIR__ . '/includes/specials/Hook/ContribsPager__reallyDoQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ContributionsLineEndingHook' => __DIR__ . '/includes/specials/Hook/ContributionsLineEndingHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ContributionsToolLinksHook' => __DIR__ . '/includes/specials/Hook/ContributionsToolLinksHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\CustomEditorHook' => __DIR__ . '/includes/actions/Hook/CustomEditorHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\DeleteUnknownPreferencesHook' => __DIR__ . '/includes/Hook/DeleteUnknownPreferencesHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\DeletedContribsPager__reallyDoQueryHook' => __DIR__ . '/includes/specials/Hook/DeletedContribsPager__reallyDoQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\DeletedContributionsLineEndingHook' => __DIR__ . '/includes/specials/Hook/DeletedContributionsLineEndingHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\EditFilterHook' => __DIR__ . '/includes/Hook/EditFilterHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditFilterMergedContentHook' => __DIR__ . '/includes/Hook/EditFilterMergedContentHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditFormInitialTextHook' => __DIR__ . '/includes/Hook/EditFormInitialTextHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditFormPreloadTextHook' => __DIR__ . '/includes/Hook/EditFormPreloadTextHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageBeforeConflictDiffHook' => __DIR__ . '/includes/Hook/EditPageBeforeConflictDiffHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageBeforeEditButtonsHook' => __DIR__ . '/includes/Hook/EditPageBeforeEditButtonsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageBeforeEditToolbarHook' => __DIR__ . '/includes/Hook/EditPageBeforeEditToolbarHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageCopyrightWarningHook' => __DIR__ . '/includes/Hook/EditPageCopyrightWarningHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageGetCheckboxesDefinitionHook' => __DIR__ . '/includes/Hook/EditPageGetCheckboxesDefinitionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageGetDiffContentHook' => __DIR__ . '/includes/Hook/EditPageGetDiffContentHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageGetPreviewContentHook' => __DIR__ . '/includes/Hook/EditPageGetPreviewContentHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageNoSuchSectionHook' => __DIR__ . '/includes/Hook/EditPageNoSuchSectionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPageTosSummaryHook' => __DIR__ . '/includes/Hook/EditPageTosSummaryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__attemptSaveHook' => __DIR__ . '/includes/Hook/EditPage__attemptSaveHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__attemptSave_afterHook' => __DIR__ . '/includes/Hook/EditPage__attemptSave_afterHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__importFormDataHook' => __DIR__ . '/includes/Hook/EditPage__importFormDataHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__showEditForm_fieldsHook' => __DIR__ . '/includes/Hook/EditPage__showEditForm_fieldsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__showEditForm_initialHook' => __DIR__ . '/includes/Hook/EditPage__showEditForm_initialHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__showReadOnlyForm_initialHook' => __DIR__ . '/includes/Hook/EditPage__showReadOnlyForm_initialHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EditPage__showStandardInputs_optionsHook' => __DIR__ . '/includes/Hook/EditPage__showStandardInputs_optionsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\EmailUserCCHook' => __DIR__ . '/includes/specials/Hook/EmailUserCCHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EmailUserCompleteHook' => __DIR__ . '/includes/specials/Hook/EmailUserCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EmailUserFormHook' => __DIR__ . '/includes/specials/Hook/EmailUserFormHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EmailUserHook' => __DIR__ . '/includes/specials/Hook/EmailUserHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EmailUserPermissionsErrorsHook' => __DIR__ . '/includes/specials/Hook/EmailUserPermissionsErrorsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EnhancedChangesListModifyBlockLineDataHook' => __DIR__ . '/includes/changes/Hook/EnhancedChangesListModifyBlockLineDataHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EnhancedChangesListModifyLineDataHook' => __DIR__ . '/includes/changes/Hook/EnhancedChangesListModifyLineDataHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\EnhancedChangesList__getLogTextHook' => __DIR__ . '/includes/changes/Hook/EnhancedChangesList__getLogTextHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ExtensionTypesHook' => __DIR__ . '/includes/specials/Hook/ExtensionTypesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\FetchChangesListHook' => __DIR__ . '/includes/changes/Hook/FetchChangesListHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\FileDeleteCompleteHook' => __DIR__ . '/includes/Hook/FileDeleteCompleteHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\FileTransformedHook' => __DIR__ . '/includes/filerepo/Hook/FileTransformedHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\FileUndeleteCompleteHook' => __DIR__ . '/includes/specials/Hook/FileUndeleteCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\FileUploadHook' => __DIR__ . '/includes/filerepo/Hook/FileUploadHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\FormatAutocommentsHook' => __DIR__ . '/includes/Hook/FormatAutocommentsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\GalleryGetModesHook' => __DIR__ . '/includes/gallery/Hook/GalleryGetModesHook.php',
|
2023-04-16 17:24:00 +00:00
|
|
|
'MediaWiki\\Hook\\GetBlockErrorMessageKeyHook' => __DIR__ . '/includes/Hook/GetBlockErrorMessageKeyHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\GetCacheVaryCookiesHook' => __DIR__ . '/includes/Hook/GetCacheVaryCookiesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetCanonicalURLHook' => __DIR__ . '/includes/Hook/GetCanonicalURLHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetDefaultSortkeyHook' => __DIR__ . '/includes/Hook/GetDefaultSortkeyHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetDoubleUnderscoreIDsHook' => __DIR__ . '/includes/Hook/GetDoubleUnderscoreIDsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\GetExtendedMetadataHook' => __DIR__ . '/includes/media/Hook/GetExtendedMetadataHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\GetFullURLHook' => __DIR__ . '/includes/Hook/GetFullURLHook.php',
|
2020-07-02 00:52:13 +00:00
|
|
|
'MediaWiki\\Hook\\GetHumanTimestampHook' => __DIR__ . '/includes/language/Hook/GetHumanTimestampHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\GetIPHook' => __DIR__ . '/includes/Hook/GetIPHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetInternalURLHook' => __DIR__ . '/includes/Hook/GetInternalURLHook.php',
|
2020-07-02 00:52:13 +00:00
|
|
|
'MediaWiki\\Hook\\GetLangPreferredVariantHook' => __DIR__ . '/includes/language/Hook/GetLangPreferredVariantHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\GetLinkColoursHook' => __DIR__ . '/includes/parser/Hook/GetLinkColoursHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\GetLocalURLHook' => __DIR__ . '/includes/Hook/GetLocalURLHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetLocalURL__ArticleHook' => __DIR__ . '/includes/Hook/GetLocalURL__ArticleHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetLocalURL__InternalHook' => __DIR__ . '/includes/Hook/GetLocalURL__InternalHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\GetLogTypesOnUserHook' => __DIR__ . '/includes/specials/Hook/GetLogTypesOnUserHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\GetMagicVariableIDsHook' => __DIR__ . '/includes/Hook/GetMagicVariableIDsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\GetMetadataVersionHook' => __DIR__ . '/includes/media/Hook/GetMetadataVersionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GetNewMessagesAlertHook' => __DIR__ . '/includes/skins/Hook/GetNewMessagesAlertHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\GetRelativeTimestampHook' => __DIR__ . '/includes/Hook/GetRelativeTimestampHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\GitViewersHook' => __DIR__ . '/includes/Hook/GitViewersHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\HistoryPageToolLinksHook' => __DIR__ . '/includes/actions/Hook/HistoryPageToolLinksHook.php',
|
2020-06-15 21:19:04 +00:00
|
|
|
'MediaWiki\\Hook\\HistoryToolsHook' => __DIR__ . '/includes/actions/Hook/HistoryToolsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\IRCLineURLHook' => __DIR__ . '/includes/rcfeed/Hook/IRCLineURLHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ImageBeforeProduceHTMLHook' => __DIR__ . '/includes/Hook/ImageBeforeProduceHTMLHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImgAuthBeforeStreamHook' => __DIR__ . '/includes/Hook/ImgAuthBeforeStreamHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImgAuthModifyHeadersHook' => __DIR__ . '/includes/Hook/ImgAuthModifyHeadersHook.php',
|
2020-11-02 15:17:34 +00:00
|
|
|
'MediaWiki\\Hook\\ImportHandleContentXMLTagHook' => __DIR__ . '/includes/import/Hook/ImportHandleContentXMLTagHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ImportHandleLogItemXMLTagHook' => __DIR__ . '/includes/import/Hook/ImportHandleLogItemXMLTagHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImportHandlePageXMLTagHook' => __DIR__ . '/includes/import/Hook/ImportHandlePageXMLTagHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImportHandleRevisionXMLTagHook' => __DIR__ . '/includes/import/Hook/ImportHandleRevisionXMLTagHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImportHandleToplevelXMLTagHook' => __DIR__ . '/includes/import/Hook/ImportHandleToplevelXMLTagHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ImportHandleUnknownUserHook' => __DIR__ . '/includes/Hook/ImportHandleUnknownUserHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ImportHandleUploadXMLTagHook' => __DIR__ . '/includes/import/Hook/ImportHandleUploadXMLTagHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImportLogInterwikiLinkHook' => __DIR__ . '/includes/specials/Hook/ImportLogInterwikiLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ImportSourcesHook' => __DIR__ . '/includes/specials/Hook/ImportSourcesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\InfoActionHook' => __DIR__ . '/includes/actions/Hook/InfoActionHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\InitializeArticleMaybeRedirectHook' => __DIR__ . '/includes/Hook/InitializeArticleMaybeRedirectHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\InternalParseBeforeLinksHook' => __DIR__ . '/includes/parser/Hook/InternalParseBeforeLinksHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\IsTrustedProxyHook' => __DIR__ . '/includes/Hook/IsTrustedProxyHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\IsUploadAllowedFromUrlHook' => __DIR__ . '/includes/upload/Hook/IsUploadAllowedFromUrlHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\IsValidEmailAddrHook' => __DIR__ . '/includes/parser/Hook/IsValidEmailAddrHook.php',
|
2020-07-02 00:52:13 +00:00
|
|
|
'MediaWiki\\Hook\\LanguageGetNamespacesHook' => __DIR__ . '/includes/language/Hook/LanguageGetNamespacesHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\LanguageLinksHook' => __DIR__ . '/includes/Hook/LanguageLinksHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\LanguageSelectorHook' => __DIR__ . '/includes/specials/Hook/LanguageSelectorHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\LinkerMakeExternalImageHook' => __DIR__ . '/includes/Hook/LinkerMakeExternalImageHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LinkerMakeExternalLinkHook' => __DIR__ . '/includes/Hook/LinkerMakeExternalLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LinkerMakeMediaLinkFileHook' => __DIR__ . '/includes/Hook/LinkerMakeMediaLinkFileHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\LinksUpdateCompleteHook' => __DIR__ . '/includes/deferred/Hook/LinksUpdateCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LinksUpdateHook' => __DIR__ . '/includes/deferred/Hook/LinksUpdateHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LocalFilePurgeThumbnailsHook' => __DIR__ . '/includes/filerepo/Hook/LocalFilePurgeThumbnailsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LocalFile__getHistoryHook' => __DIR__ . '/includes/filerepo/Hook/LocalFile__getHistoryHook.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'MediaWiki\\Hook\\LocalisationCacheRecacheFallbackHook' => __DIR__ . '/includes/language/Hook/LocalisationCacheRecacheFallbackHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LocalisationCacheRecacheHook' => __DIR__ . '/includes/language/Hook/LocalisationCacheRecacheHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\LogEventsListGetExtraInputsHook' => __DIR__ . '/includes/logging/Hook/LogEventsListGetExtraInputsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LogEventsListLineEndingHook' => __DIR__ . '/includes/logging/Hook/LogEventsListLineEndingHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LogEventsListShowLogExtractHook' => __DIR__ . '/includes/logging/Hook/LogEventsListShowLogExtractHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LogExceptionHook' => __DIR__ . '/includes/exception/Hook/LogExceptionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LogLineHook' => __DIR__ . '/includes/logging/Hook/LogLineHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LoginFormValidErrorMessagesHook' => __DIR__ . '/includes/specials/Hook/LoginFormValidErrorMessagesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\LonelyPagesQueryHook' => __DIR__ . '/includes/specials/Hook/LonelyPagesQueryHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\MagicWordwgVariableIDsHook' => __DIR__ . '/includes/Hook/MagicWordwgVariableIDsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MaintenanceRefreshLinksInitHook' => __DIR__ . '/includes/Hook/MaintenanceRefreshLinksInitHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MaintenanceShellStartHook' => __DIR__ . '/includes/Hook/MaintenanceShellStartHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MaintenanceUpdateAddParamsHook' => __DIR__ . '/includes/Hook/MaintenanceUpdateAddParamsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MakeGlobalVariablesScriptHook' => __DIR__ . '/includes/Hook/MakeGlobalVariablesScriptHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ManualLogEntryBeforePublishHook' => __DIR__ . '/includes/logging/Hook/ManualLogEntryBeforePublishHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MarkPatrolledCompleteHook' => __DIR__ . '/includes/changes/Hook/MarkPatrolledCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MarkPatrolledHook' => __DIR__ . '/includes/changes/Hook/MarkPatrolledHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\MediaWikiPerformActionHook' => __DIR__ . '/includes/Hook/MediaWikiPerformActionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MediaWikiServicesHook' => __DIR__ . '/includes/Hook/MediaWikiServicesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MimeMagicGuessFromContentHook' => __DIR__ . '/includes/Hook/MimeMagicGuessFromContentHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MimeMagicImproveFromExtensionHook' => __DIR__ . '/includes/Hook/MimeMagicImproveFromExtensionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MimeMagicInitHook' => __DIR__ . '/includes/Hook/MimeMagicInitHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ModifyExportQueryHook' => __DIR__ . '/includes/export/Hook/ModifyExportQueryHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\MovePageCheckPermissionsHook' => __DIR__ . '/includes/Hook/MovePageCheckPermissionsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\MovePageIsValidMoveHook' => __DIR__ . '/includes/Hook/MovePageIsValidMoveHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\NamespaceIsMovableHook' => __DIR__ . '/includes/title/Hook/NamespaceIsMovableHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\NewPagesLineEndingHook' => __DIR__ . '/includes/specials/Hook/NewPagesLineEndingHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OldChangesListRecentChangesLineHook' => __DIR__ . '/includes/changes/Hook/OldChangesListRecentChangesLineHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\OpenSearchUrlsHook' => __DIR__ . '/includes/Hook/OpenSearchUrlsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\OtherAutoblockLogLinkHook' => __DIR__ . '/includes/specials/Hook/OtherAutoblockLogLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OtherBlockLogLinkHook' => __DIR__ . '/includes/specials/Hook/OtherBlockLogLinkHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\OutputPageAfterGetHeadLinksArrayHook' => __DIR__ . '/includes/Hook/OutputPageAfterGetHeadLinksArrayHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OutputPageBeforeHTMLHook' => __DIR__ . '/includes/Hook/OutputPageBeforeHTMLHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OutputPageBodyAttributesHook' => __DIR__ . '/includes/Hook/OutputPageBodyAttributesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OutputPageCheckLastModifiedHook' => __DIR__ . '/includes/Hook/OutputPageCheckLastModifiedHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OutputPageMakeCategoryLinksHook' => __DIR__ . '/includes/Hook/OutputPageMakeCategoryLinksHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\OutputPageParserOutputHook' => __DIR__ . '/includes/Hook/OutputPageParserOutputHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\PageHistoryBeforeListHook' => __DIR__ . '/includes/actions/Hook/PageHistoryBeforeListHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PageHistoryLineEndingHook' => __DIR__ . '/includes/actions/Hook/PageHistoryLineEndingHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PageHistoryPager__doBatchLookupsHook' => __DIR__ . '/includes/actions/Hook/PageHistoryPager__doBatchLookupsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PageHistoryPager__getQueryInfoHook' => __DIR__ . '/includes/actions/Hook/PageHistoryPager__getQueryInfoHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\PageMoveCompleteHook' => __DIR__ . '/includes/Hook/PageMoveCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PageMoveCompletingHook' => __DIR__ . '/includes/Hook/PageMoveCompletingHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\PageRenderingHashHook' => __DIR__ . '/includes/parser/Hook/PageRenderingHashHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserAfterParseHook' => __DIR__ . '/includes/parser/Hook/ParserAfterParseHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserAfterTidyHook' => __DIR__ . '/includes/parser/Hook/ParserAfterTidyHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserBeforeInternalParseHook' => __DIR__ . '/includes/parser/Hook/ParserBeforeInternalParseHook.php',
|
2020-04-15 06:38:58 +00:00
|
|
|
'MediaWiki\\Hook\\ParserBeforePreprocessHook' => __DIR__ . '/includes/parser/Hook/ParserBeforePreprocessHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ParserCacheSaveCompleteHook' => __DIR__ . '/includes/parser/Hook/ParserCacheSaveCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserClearStateHook' => __DIR__ . '/includes/parser/Hook/ParserClearStateHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserClonedHook' => __DIR__ . '/includes/parser/Hook/ParserClonedHook.php',
|
2022-03-28 18:26:17 +00:00
|
|
|
'MediaWiki\\Hook\\ParserFetchTemplateDataHook' => __DIR__ . '/includes/parser/Hook/ParserFetchTemplateDataHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ParserFirstCallInitHook' => __DIR__ . '/includes/parser/Hook/ParserFirstCallInitHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserGetVariableValueSwitchHook' => __DIR__ . '/includes/parser/Hook/ParserGetVariableValueSwitchHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserGetVariableValueTsHook' => __DIR__ . '/includes/parser/Hook/ParserGetVariableValueTsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserLimitReportFormatHook' => __DIR__ . '/includes/parser/Hook/ParserLimitReportFormatHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserLimitReportPrepareHook' => __DIR__ . '/includes/parser/Hook/ParserLimitReportPrepareHook.php',
|
2022-03-28 21:04:49 +00:00
|
|
|
'MediaWiki\\Hook\\ParserLogLinterDataHook' => __DIR__ . '/includes/parser/Hook/ParserLogLinterDataHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ParserMakeImageParamsHook' => __DIR__ . '/includes/parser/Hook/ParserMakeImageParamsHook.php',
|
2023-04-16 17:32:48 +00:00
|
|
|
'MediaWiki\\Hook\\ParserModifyImageHTML' => __DIR__ . '/includes/parser/Hook/ParserModifyImageHTMLHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserModifyImageHTMLHook' => __DIR__ . '/includes/parser/Hook/ParserModifyImageHTMLHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ParserOptionsRegisterHook' => __DIR__ . '/includes/parser/Hook/ParserOptionsRegisterHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserOutputPostCacheTransformHook' => __DIR__ . '/includes/parser/Hook/ParserOutputPostCacheTransformHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ParserPreSaveTransformCompleteHook' => __DIR__ . '/includes/parser/Hook/ParserPreSaveTransformCompleteHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ParserTestGlobalsHook' => __DIR__ . '/includes/Hook/ParserTestGlobalsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\PasswordPoliciesForUserHook' => __DIR__ . '/includes/password/Hook/PasswordPoliciesForUserHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PostLoginRedirectHook' => __DIR__ . '/includes/specials/Hook/PostLoginRedirectHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\PreferencesGetIconHook' => __DIR__ . '/includes/Hook/PreferencesGetIconHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PreferencesGetLayoutHook' => __DIR__ . '/includes/Hook/PreferencesGetLayoutHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\PreferencesGetLegendHook' => __DIR__ . '/includes/specials/Hook/PreferencesGetLegendHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\PrefsEmailAuditHook' => __DIR__ . '/includes/specials/Hook/PrefsEmailAuditHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\ProtectionFormAddFormFieldsHook' => __DIR__ . '/includes/Hook/ProtectionFormAddFormFieldsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ProtectionForm__buildFormHook' => __DIR__ . '/includes/Hook/ProtectionForm__buildFormHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ProtectionForm__saveHook' => __DIR__ . '/includes/Hook/ProtectionForm__saveHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ProtectionForm__showLogExtractHook' => __DIR__ . '/includes/Hook/ProtectionForm__showLogExtractHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\RandomPageQueryHook' => __DIR__ . '/includes/specials/Hook/RandomPageQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\RawPageViewBeforeOutputHook' => __DIR__ . '/includes/actions/Hook/RawPageViewBeforeOutputHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\RecentChange_saveHook' => __DIR__ . '/includes/changes/Hook/RecentChange_saveHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\RecentChangesPurgeRowsHook' => __DIR__ . '/includes/jobqueue/jobs/Hook/RecentChangesPurgeRowsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\RejectParserCacheValueHook' => __DIR__ . '/includes/parser/Hook/RejectParserCacheValueHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\RequestContextCreateSkinHook' => __DIR__ . '/includes/context/Hook/RequestContextCreateSkinHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\SelfLinkBeginHook' => __DIR__ . '/includes/Hook/SelfLinkBeginHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\SendWatchlistEmailNotificationHook' => __DIR__ . '/includes/mail/Hook/SendWatchlistEmailNotificationHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\SetupAfterCacheHook' => __DIR__ . '/includes/Hook/SetupAfterCacheHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ShortPagesQueryHook' => __DIR__ . '/includes/specials/Hook/ShortPagesQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SidebarBeforeOutputHook' => __DIR__ . '/includes/skins/Hook/SidebarBeforeOutputHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SiteNoticeAfterHook' => __DIR__ . '/includes/skins/Hook/SiteNoticeAfterHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SiteNoticeBeforeHook' => __DIR__ . '/includes/skins/Hook/SiteNoticeBeforeHook.php',
|
2020-05-18 01:09:16 +00:00
|
|
|
'MediaWiki\\Hook\\SkinAddFooterLinksHook' => __DIR__ . '/includes/skins/Hook/SkinAddFooterLinksHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\SkinAfterBottomScriptsHook' => __DIR__ . '/includes/skins/Hook/SkinAfterBottomScriptsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinAfterContentHook' => __DIR__ . '/includes/skins/Hook/SkinAfterContentHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinBuildSidebarHook' => __DIR__ . '/includes/skins/Hook/SkinBuildSidebarHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinCopyrightFooterHook' => __DIR__ . '/includes/skins/Hook/SkinCopyrightFooterHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinEditSectionLinksHook' => __DIR__ . '/includes/skins/Hook/SkinEditSectionLinksHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinPreloadExistenceHook' => __DIR__ . '/includes/skins/Hook/SkinPreloadExistenceHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinSubPageSubtitleHook' => __DIR__ . '/includes/skins/Hook/SkinSubPageSubtitleHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinTemplateGetLanguageLinkHook' => __DIR__ . '/includes/skins/Hook/SkinTemplateGetLanguageLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SkinTemplateNavigation__UniversalHook' => __DIR__ . '/includes/skins/Hook/SkinTemplateNavigation__UniversalHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SoftwareInfoHook' => __DIR__ . '/includes/specials/Hook/SoftwareInfoHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialBlockModifyFormFieldsHook' => __DIR__ . '/includes/specials/Hook/SpecialBlockModifyFormFieldsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialContributionsBeforeMainOutputHook' => __DIR__ . '/includes/specials/Hook/SpecialContributionsBeforeMainOutputHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialContributions__formatRow__flagsHook' => __DIR__ . '/includes/specials/Hook/SpecialContributions__formatRow__flagsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialContributions__getForm__filtersHook' => __DIR__ . '/includes/specials/Hook/SpecialContributions__getForm__filtersHook.php',
|
2023-01-30 00:16:54 +00:00
|
|
|
'MediaWiki\\Hook\\SpecialCreateAccountBenefitsHook' => __DIR__ . '/includes/specials/Hook/SpecialCreateAccountBenefitsHook.php',
|
2021-09-28 02:28:12 +00:00
|
|
|
'MediaWiki\\Hook\\SpecialExportGetExtraPagesHook' => __DIR__ . '/includes/specials/Hook/SpecialExportGetExtraPagesHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\SpecialListusersDefaultQueryHook' => __DIR__ . '/includes/specials/Hook/SpecialListusersDefaultQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialListusersFormatRowHook' => __DIR__ . '/includes/specials/Hook/SpecialListusersFormatRowHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialListusersHeaderFormHook' => __DIR__ . '/includes/specials/Hook/SpecialListusersHeaderFormHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialListusersHeaderHook' => __DIR__ . '/includes/specials/Hook/SpecialListusersHeaderHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialListusersQueryInfoHook' => __DIR__ . '/includes/specials/Hook/SpecialListusersQueryInfoHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialLogAddLogSearchRelationsHook' => __DIR__ . '/includes/specials/Hook/SpecialLogAddLogSearchRelationsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialMovepageAfterMoveHook' => __DIR__ . '/includes/specials/Hook/SpecialMovepageAfterMoveHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialMuteModifyFormFieldsHook' => __DIR__ . '/includes/specials/Hook/SpecialMuteModifyFormFieldsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialNewPagesFiltersHook' => __DIR__ . '/includes/specials/Hook/SpecialNewPagesFiltersHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialNewpagesConditionsHook' => __DIR__ . '/includes/specials/Hook/SpecialNewpagesConditionsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialRandomGetRandomTitleHook' => __DIR__ . '/includes/specials/Hook/SpecialRandomGetRandomTitleHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialRecentChangesPanelHook' => __DIR__ . '/includes/specials/Hook/SpecialRecentChangesPanelHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialResetTokensTokensHook' => __DIR__ . '/includes/specials/Hook/SpecialResetTokensTokensHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchCreateLinkHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchCreateLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchGoResultHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchGoResultHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchNogomatchHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchNogomatchHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchProfilesHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchProfilesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchResultsAppendHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchResultsAppendHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchResultsHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchResultsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchResultsPrependHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchResultsPrependHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialSearchSetupEngineHook' => __DIR__ . '/includes/specials/Hook/SpecialSearchSetupEngineHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialStatsAddExtraHook' => __DIR__ . '/includes/specials/Hook/SpecialStatsAddExtraHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialTrackingCategories__generateCatLinkHook' => __DIR__ . '/includes/specials/Hook/SpecialTrackingCategories__generateCatLinkHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialTrackingCategories__preprocessHook' => __DIR__ . '/includes/specials/Hook/SpecialTrackingCategories__preprocessHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialUploadCompleteHook' => __DIR__ . '/includes/specials/Hook/SpecialUploadCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialVersionVersionUrlHook' => __DIR__ . '/includes/specials/Hook/SpecialVersionVersionUrlHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\SpecialWatchlistGetNonRevisionTypesHook' => __DIR__ . '/includes/specials/Hook/SpecialWatchlistGetNonRevisionTypesHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\TempUserCreatedRedirectHook' => __DIR__ . '/includes/Hook/TempUserCreatedRedirectHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TestCanonicalRedirectHook' => __DIR__ . '/includes/Hook/TestCanonicalRedirectHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\ThumbnailBeforeProduceHTMLHook' => __DIR__ . '/includes/media/Hook/ThumbnailBeforeProduceHTMLHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\TitleExistsHook' => __DIR__ . '/includes/Hook/TitleExistsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleGetEditNoticesHook' => __DIR__ . '/includes/Hook/TitleGetEditNoticesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleGetRestrictionTypesHook' => __DIR__ . '/includes/Hook/TitleGetRestrictionTypesHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleIsAlwaysKnownHook' => __DIR__ . '/includes/Hook/TitleIsAlwaysKnownHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleIsMovableHook' => __DIR__ . '/includes/Hook/TitleIsMovableHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleMoveHook' => __DIR__ . '/includes/Hook/TitleMoveHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleMoveStartingHook' => __DIR__ . '/includes/Hook/TitleMoveStartingHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\TitleSquidURLsHook' => __DIR__ . '/includes/Hook/TitleSquidURLsHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\UnblockUserCompleteHook' => __DIR__ . '/includes/specials/Hook/UnblockUserCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UnblockUserHook' => __DIR__ . '/includes/specials/Hook/UnblockUserHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UndeleteForm__showHistoryHook' => __DIR__ . '/includes/specials/Hook/UndeleteForm__showHistoryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UndeleteForm__showRevisionHook' => __DIR__ . '/includes/specials/Hook/UndeleteForm__showRevisionHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UndeletePageToolLinksHook' => __DIR__ . '/includes/skins/Hook/UndeletePageToolLinksHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\UnitTestsAfterDatabaseSetupHook' => __DIR__ . '/includes/Hook/UnitTestsAfterDatabaseSetupHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UnitTestsBeforeDatabaseTeardownHook' => __DIR__ . '/includes/Hook/UnitTestsBeforeDatabaseTeardownHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UnitTestsListHook' => __DIR__ . '/includes/Hook/UnitTestsListHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\UnwatchArticleCompleteHook' => __DIR__ . '/includes/actions/Hook/UnwatchArticleCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UnwatchArticleHook' => __DIR__ . '/includes/actions/Hook/UnwatchArticleHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UpdateUserMailerFormattedPageStatusHook' => __DIR__ . '/includes/mail/Hook/UpdateUserMailerFormattedPageStatusHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadCompleteHook' => __DIR__ . '/includes/upload/Hook/UploadCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadCreateFromRequestHook' => __DIR__ . '/includes/upload/Hook/UploadCreateFromRequestHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadFormInitDescriptorHook' => __DIR__ . '/includes/specials/Hook/UploadFormInitDescriptorHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadFormSourceDescriptorsHook' => __DIR__ . '/includes/specials/Hook/UploadFormSourceDescriptorsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadForm_BeforeProcessingHook' => __DIR__ . '/includes/specials/Hook/UploadForm_BeforeProcessingHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadForm_getInitialPageTextHook' => __DIR__ . '/includes/specials/Hook/UploadForm_getInitialPageTextHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadForm_initialHook' => __DIR__ . '/includes/specials/Hook/UploadForm_initialHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadStashFileHook' => __DIR__ . '/includes/upload/Hook/UploadStashFileHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadVerifyFileHook' => __DIR__ . '/includes/upload/Hook/UploadVerifyFileHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UploadVerifyUploadHook' => __DIR__ . '/includes/upload/Hook/UploadVerifyUploadHook.php',
|
2022-01-31 03:34:39 +00:00
|
|
|
'MediaWiki\\Hook\\UserEditCountUpdateHook' => __DIR__ . '/includes/deferred/Hook/UserEditCountUpdateHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\UserGetLanguageObjectHook' => __DIR__ . '/includes/context/Hook/UserGetLanguageObjectHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UserLoginCompleteHook' => __DIR__ . '/includes/specials/Hook/UserLoginCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UserLogoutCompleteHook' => __DIR__ . '/includes/specials/Hook/UserLogoutCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UserMailerChangeReturnPathHook' => __DIR__ . '/includes/mail/Hook/UserMailerChangeReturnPathHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UserMailerSplitToHook' => __DIR__ . '/includes/mail/Hook/UserMailerSplitToHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UserMailerTransformContentHook' => __DIR__ . '/includes/mail/Hook/UserMailerTransformContentHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\UserMailerTransformMessageHook' => __DIR__ . '/includes/mail/Hook/UserMailerTransformMessageHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\UserToolLinksEditHook' => __DIR__ . '/includes/Hook/UserToolLinksEditHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\UsersPagerDoBatchLookupsHook' => __DIR__ . '/includes/specials/Hook/UsersPagerDoBatchLookupsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\ValidateExtendedMetadataCacheHook' => __DIR__ . '/includes/media/Hook/ValidateExtendedMetadataCacheHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WantedPages__getQueryInfoHook' => __DIR__ . '/includes/specials/Hook/WantedPages__getQueryInfoHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WatchArticleCompleteHook' => __DIR__ . '/includes/actions/Hook/WatchArticleCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WatchArticleHook' => __DIR__ . '/includes/actions/Hook/WatchArticleHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WatchedItemQueryServiceExtensionsHook' => __DIR__ . '/includes/watcheditem/Hook/WatchedItemQueryServiceExtensionsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WatchlistEditorBeforeFormRenderHook' => __DIR__ . '/includes/specials/Hook/WatchlistEditorBeforeFormRenderHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WatchlistEditorBuildRemoveLineHook' => __DIR__ . '/includes/specials/Hook/WatchlistEditorBuildRemoveLineHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Hook\\WebRequestPathInfoRouterHook' => __DIR__ . '/includes/Hook/WebRequestPathInfoRouterHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WebResponseSetCookieHook' => __DIR__ . '/includes/Hook/WebResponseSetCookieHook.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Hook\\WhatLinksHerePropsHook' => __DIR__ . '/includes/specials/Hook/WhatLinksHerePropsHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\WikiExporter__dumpStableQueryHook' => __DIR__ . '/includes/export/Hook/WikiExporter__dumpStableQueryHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\XmlDumpWriterOpenPageHook' => __DIR__ . '/includes/export/Hook/XmlDumpWriterOpenPageHook.php',
|
|
|
|
|
'MediaWiki\\Hook\\XmlDumpWriterWriteRevisionHook' => __DIR__ . '/includes/export/Hook/XmlDumpWriterWriteRevisionHook.php',
|
2023-02-16 19:27:21 +00:00
|
|
|
'MediaWiki\\HtmlHelper' => __DIR__ . '/includes/Html/HtmlHelper.php',
|
|
|
|
|
'MediaWiki\\Html\\FormOptions' => __DIR__ . '/includes/Html/FormOptions.php',
|
|
|
|
|
'MediaWiki\\Html\\Html' => __DIR__ . '/includes/Html/Html.php',
|
|
|
|
|
'MediaWiki\\Html\\HtmlHelper' => __DIR__ . '/includes/Html/HtmlHelper.php',
|
2023-07-13 15:44:35 +00:00
|
|
|
'MediaWiki\\Html\\HtmlJsCode' => __DIR__ . '/includes/Html/HtmlJsCode.php',
|
2023-02-16 19:27:21 +00:00
|
|
|
'MediaWiki\\Html\\ListToggle' => __DIR__ . '/includes/Html/ListToggle.php',
|
|
|
|
|
'MediaWiki\\Html\\TemplateParser' => __DIR__ . '/includes/Html/TemplateParser.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Http\\HttpRequestFactory' => __DIR__ . '/includes/http/HttpRequestFactory.php',
|
|
|
|
|
'MediaWiki\\Http\\MwHttpRequestToResponseInterfaceAdapter' => __DIR__ . '/includes/http/MwHttpRequestToResponseInterfaceAdapter.php',
|
2023-07-20 13:31:25 +00:00
|
|
|
'MediaWiki\\Http\\Telemetry' => __DIR__ . '/includes/http/Telemetry.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Installer\\Hook\\LoadExtensionSchemaUpdatesHook' => __DIR__ . '/includes/installer/Hook/LoadExtensionSchemaUpdatesHook.php',
|
|
|
|
|
'MediaWiki\\Installer\\InstallException' => __DIR__ . '/includes/installer/InstallException.php',
|
2023-06-02 18:23:50 +00:00
|
|
|
'MediaWiki\\Installer\\Pingback' => __DIR__ . '/includes/installer/Pingback.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Interwiki\\ClassicInterwikiLookup' => __DIR__ . '/includes/interwiki/ClassicInterwikiLookup.php',
|
|
|
|
|
'MediaWiki\\Interwiki\\Hook\\InterwikiLoadPrefixHook' => __DIR__ . '/includes/interwiki/Hook/InterwikiLoadPrefixHook.php',
|
|
|
|
|
'MediaWiki\\Interwiki\\InterwikiLookup' => __DIR__ . '/includes/interwiki/InterwikiLookup.php',
|
|
|
|
|
'MediaWiki\\Interwiki\\InterwikiLookupAdapter' => __DIR__ . '/includes/interwiki/InterwikiLookupAdapter.php',
|
|
|
|
|
'MediaWiki\\Interwiki\\NullInterwikiLookup' => __DIR__ . '/includes/interwiki/NullInterwikiLookup.php',
|
2023-01-12 13:17:43 +00:00
|
|
|
'MediaWiki\\JobQueue\\JobFactory' => __DIR__ . '/includes/jobqueue/JobFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\JobQueue\\JobQueueGroupFactory' => __DIR__ . '/includes/jobqueue/JobQueueGroupFactory.php',
|
|
|
|
|
'MediaWiki\\Json\\JsonCodec' => __DIR__ . '/includes/json/JsonCodec.php',
|
|
|
|
|
'MediaWiki\\Json\\JsonConstants' => __DIR__ . '/includes/json/JsonConstants.php',
|
|
|
|
|
'MediaWiki\\Json\\JsonSerializer' => __DIR__ . '/includes/json/JsonSerializer.php',
|
|
|
|
|
'MediaWiki\\Json\\JsonUnserializable' => __DIR__ . '/includes/json/JsonUnserializable.php',
|
|
|
|
|
'MediaWiki\\Json\\JsonUnserializableTrait' => __DIR__ . '/includes/json/JsonUnserializableTrait.php',
|
|
|
|
|
'MediaWiki\\Json\\JsonUnserializer' => __DIR__ . '/includes/json/JsonUnserializer.php',
|
2023-09-25 13:32:24 +00:00
|
|
|
'MediaWiki\\Language\\FormatterFactory' => __DIR__ . '/includes/language/FormatterFactory.php',
|
2022-12-12 02:10:13 +00:00
|
|
|
'MediaWiki\\Language\\RawMessage' => __DIR__ . '/includes/language/RawMessage.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Languages\\Data\\CrhExceptions' => __DIR__ . '/includes/languages/data/CrhExceptions.php',
|
|
|
|
|
'MediaWiki\\Languages\\Data\\Names' => __DIR__ . '/includes/languages/data/Names.php',
|
|
|
|
|
'MediaWiki\\Languages\\Data\\NormalizeAr' => __DIR__ . '/includes/languages/data/NormalizeAr.php',
|
|
|
|
|
'MediaWiki\\Languages\\Data\\NormalizeMl' => __DIR__ . '/includes/languages/data/NormalizeMl.php',
|
|
|
|
|
'MediaWiki\\Languages\\Data\\ZhConversion' => __DIR__ . '/includes/languages/data/ZhConversion.php',
|
2020-03-03 22:50:34 +00:00
|
|
|
'MediaWiki\\Languages\\Hook\\LanguageGetTranslatedLanguageNamesHook' => __DIR__ . '/includes/language/Hook/LanguageGetTranslatedLanguageNamesHook.php',
|
|
|
|
|
'MediaWiki\\Languages\\Hook\\Language__getMessagesFileNameHook' => __DIR__ . '/includes/language/Hook/Language__getMessagesFileNameHook.php',
|
2020-07-02 00:47:46 +00:00
|
|
|
'MediaWiki\\Languages\\LanguageConverterFactory' => __DIR__ . '/includes/language/LanguageConverterFactory.php',
|
2018-08-07 13:17:16 +00:00
|
|
|
'MediaWiki\\Languages\\LanguageFactory' => __DIR__ . '/includes/language/LanguageFactory.php',
|
2019-08-22 15:39:26 +00:00
|
|
|
'MediaWiki\\Languages\\LanguageFallback' => __DIR__ . '/includes/language/LanguageFallback.php',
|
2019-05-02 14:23:42 +00:00
|
|
|
'MediaWiki\\Languages\\LanguageNameUtils' => __DIR__ . '/includes/language/LanguageNameUtils.php',
|
2023-04-20 16:35:01 +00:00
|
|
|
'MediaWiki\\Libs\\Emptiable' => __DIR__ . '/includes/libs/Emptiable.php',
|
2022-12-05 11:29:37 +00:00
|
|
|
'MediaWiki\\Linker\\DummyLinker' => __DIR__ . '/includes/linker/DummyLinker.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Linker\\Hook\\HtmlPageLinkRendererBeginHook' => __DIR__ . '/includes/linker/Hook/HtmlPageLinkRendererBeginHook.php',
|
|
|
|
|
'MediaWiki\\Linker\\Hook\\HtmlPageLinkRendererEndHook' => __DIR__ . '/includes/linker/Hook/HtmlPageLinkRendererEndHook.php',
|
|
|
|
|
'MediaWiki\\Linker\\Hook\\LinkerGenerateRollbackLinkHook' => __DIR__ . '/includes/linker/Hook/LinkerGenerateRollbackLinkHook.php',
|
|
|
|
|
'MediaWiki\\Linker\\LinkRenderer' => __DIR__ . '/includes/linker/LinkRenderer.php',
|
|
|
|
|
'MediaWiki\\Linker\\LinkRendererFactory' => __DIR__ . '/includes/linker/LinkRendererFactory.php',
|
|
|
|
|
'MediaWiki\\Linker\\LinkTarget' => __DIR__ . '/includes/linker/LinkTarget.php',
|
|
|
|
|
'MediaWiki\\Linker\\LinkTargetLookup' => __DIR__ . '/includes/linker/LinkTargetLookup.php',
|
|
|
|
|
'MediaWiki\\Linker\\LinkTargetStore' => __DIR__ . '/includes/linker/LinkTargetStore.php',
|
2022-12-05 11:29:37 +00:00
|
|
|
'MediaWiki\\Linker\\Linker' => __DIR__ . '/includes/linker/Linker.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Linker\\LinksMigration' => __DIR__ . '/includes/linker/LinksMigration.php',
|
|
|
|
|
'MediaWiki\\Logger\\ConsoleLogger' => __DIR__ . '/includes/debug/logger/ConsoleLogger.php',
|
|
|
|
|
'MediaWiki\\Logger\\ConsoleSpi' => __DIR__ . '/includes/debug/logger/ConsoleSpi.php',
|
|
|
|
|
'MediaWiki\\Logger\\LegacyLogger' => __DIR__ . '/includes/debug/logger/LegacyLogger.php',
|
|
|
|
|
'MediaWiki\\Logger\\LegacySpi' => __DIR__ . '/includes/debug/logger/LegacySpi.php',
|
|
|
|
|
'MediaWiki\\Logger\\LogCapturingSpi' => __DIR__ . '/includes/debug/logger/LogCapturingSpi.php',
|
|
|
|
|
'MediaWiki\\Logger\\LoggerFactory' => __DIR__ . '/includes/debug/logger/LoggerFactory.php',
|
|
|
|
|
'MediaWiki\\Logger\\MonologSpi' => __DIR__ . '/includes/debug/logger/MonologSpi.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\BufferHandler' => __DIR__ . '/includes/debug/logger/monolog/BufferHandler.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\CeeFormatter' => __DIR__ . '/includes/debug/logger/monolog/CeeFormatter.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\LegacyFormatter' => __DIR__ . '/includes/debug/logger/monolog/LegacyFormatter.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\LegacyHandler' => __DIR__ . '/includes/debug/logger/monolog/LegacyHandler.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\LineFormatter' => __DIR__ . '/includes/debug/logger/monolog/LineFormatter.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\LogstashFormatter' => __DIR__ . '/includes/debug/logger/monolog/LogstashFormatter.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\MwlogHandler' => __DIR__ . '/includes/debug/logger/monolog/MwlogHandler.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\SyslogHandler' => __DIR__ . '/includes/debug/logger/monolog/SyslogHandler.php',
|
|
|
|
|
'MediaWiki\\Logger\\Monolog\\WikiProcessor' => __DIR__ . '/includes/debug/logger/monolog/WikiProcessor.php',
|
|
|
|
|
'MediaWiki\\Logger\\NullSpi' => __DIR__ . '/includes/debug/logger/NullSpi.php',
|
|
|
|
|
'MediaWiki\\Logger\\Spi' => __DIR__ . '/includes/debug/logger/Spi.php',
|
2023-09-25 11:44:10 +00:00
|
|
|
'MediaWiki\\Logging\\LoggingSelectQueryBuilder' => __DIR__ . '/includes/logging/LoggingSelectQueryBuilder.php',
|
2023-03-10 15:39:41 +00:00
|
|
|
'MediaWiki\\Mail\\EmailUser' => __DIR__ . '/includes/mail/EmailUser.php',
|
2023-05-22 14:08:03 +00:00
|
|
|
'MediaWiki\\Mail\\EmailUserFactory' => __DIR__ . '/includes/mail/EmailUserFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Mail\\Emailer' => __DIR__ . '/includes/mail/Emailer.php',
|
2023-05-22 14:58:04 +00:00
|
|
|
'MediaWiki\\Mail\\Hook\\EmailUserAuthorizeSendHook' => __DIR__ . '/includes/mail/Hook/EmailUserAuthorizeSendHook.php',
|
|
|
|
|
'MediaWiki\\Mail\\Hook\\EmailUserSendEmailHook' => __DIR__ . '/includes/mail/Hook/EmailUserSendEmailHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Mail\\IEmailer' => __DIR__ . '/includes/mail/IEmailer.php',
|
|
|
|
|
'MediaWiki\\Mail\\UserEmailContact' => __DIR__ . '/includes/mail/UserEmailContact.php',
|
|
|
|
|
'MediaWiki\\MainConfigNames' => __DIR__ . '/includes/MainConfigNames.php',
|
|
|
|
|
'MediaWiki\\MainConfigSchema' => __DIR__ . '/includes/MainConfigSchema.php',
|
|
|
|
|
'MediaWiki\\Maintenance\\ForkController' => __DIR__ . '/includes/Maintenance/ForkController.php',
|
2022-04-09 20:31:25 +00:00
|
|
|
'MediaWiki\\Maintenance\\MaintenanceParameters' => __DIR__ . '/maintenance/includes/MaintenanceParameters.php',
|
2022-04-15 21:10:43 +00:00
|
|
|
'MediaWiki\\Maintenance\\MaintenanceRunner' => __DIR__ . '/maintenance/includes/MaintenanceRunner.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Maintenance\\OrderedStreamingForkController' => __DIR__ . '/includes/Maintenance/OrderedStreamingForkController.php',
|
2022-11-20 22:23:34 +00:00
|
|
|
'MediaWiki\\Maintenance\\UndoLog' => __DIR__ . '/includes/Maintenance/UndoLog.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\MediaWikiServices' => __DIR__ . '/includes/MediaWikiServices.php',
|
|
|
|
|
'MediaWiki\\Message\\Converter' => __DIR__ . '/includes/Message/Converter.php',
|
|
|
|
|
'MediaWiki\\Message\\MessageFormatterFactory' => __DIR__ . '/includes/Message/MessageFormatterFactory.php',
|
|
|
|
|
'MediaWiki\\Message\\TextFormatter' => __DIR__ . '/includes/Message/TextFormatter.php',
|
|
|
|
|
'MediaWiki\\Message\\UserGroupMembershipParam' => __DIR__ . '/includes/Message/UserGroupMembershipParam.php',
|
|
|
|
|
'MediaWiki\\Navigation\\PagerNavigationBuilder' => __DIR__ . '/includes/Navigation/PagerNavigationBuilder.php',
|
2023-09-05 17:31:53 +00:00
|
|
|
'MediaWiki\\OutputHandler' => __DIR__ . '/includes/Output/OutputHandler.php',
|
2023-08-11 18:50:40 +00:00
|
|
|
'MediaWiki\\Output\\IframeSandbox' => __DIR__ . '/includes/Output/IframeSandbox.php',
|
|
|
|
|
'MediaWiki\\Output\\IframeSandboxFactory' => __DIR__ . '/includes/Output/IframeSandboxFactory.php',
|
2023-09-05 17:31:53 +00:00
|
|
|
'MediaWiki\\Output\\OutputHandler' => __DIR__ . '/includes/Output/OutputHandler.php',
|
|
|
|
|
'MediaWiki\\Output\\OutputPage' => __DIR__ . '/includes/Output/OutputPage.php',
|
|
|
|
|
'MediaWiki\\Output\\StreamFile' => __DIR__ . '/includes/Output/StreamFile.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\ContentModelChangeFactory' => __DIR__ . '/includes/page/ContentModelChangeFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\DeletePage' => __DIR__ . '/includes/page/DeletePage.php',
|
|
|
|
|
'MediaWiki\\Page\\DeletePageFactory' => __DIR__ . '/includes/page/DeletePageFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\ExistingPageRecord' => __DIR__ . '/includes/page/ExistingPageRecord.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MediaWiki\\Page\\File\\BadFileLookup' => __DIR__ . '/includes/page/File/BadFileLookup.php',
|
2023-03-09 20:01:39 +00:00
|
|
|
'MediaWiki\\Page\\File\\FileDeleteForm' => __DIR__ . '/includes/page/File/FileDeleteForm.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\Hook\\ArticleConfirmDeleteHook' => __DIR__ . '/includes/page/Hook/ArticleConfirmDeleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleDeleteAfterSuccessHook' => __DIR__ . '/includes/page/Hook/ArticleDeleteAfterSuccessHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleDeleteCompleteHook' => __DIR__ . '/includes/page/Hook/ArticleDeleteCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleDeleteHook' => __DIR__ . '/includes/page/Hook/ArticleDeleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleFromTitleHook' => __DIR__ . '/includes/page/Hook/ArticleFromTitleHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticlePageDataAfterHook' => __DIR__ . '/includes/page/Hook/ArticlePageDataAfterHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticlePageDataBeforeHook' => __DIR__ . '/includes/page/Hook/ArticlePageDataBeforeHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleParserOptionsHook' => __DIR__ . '/includes/page/Hook/ArticleParserOptionsHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleProtectCompleteHook' => __DIR__ . '/includes/page/Hook/ArticleProtectCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleProtectHook' => __DIR__ . '/includes/page/Hook/ArticleProtectHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticlePurgeHook' => __DIR__ . '/includes/page/Hook/ArticlePurgeHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleRevisionViewCustomHook' => __DIR__ . '/includes/page/Hook/ArticleRevisionViewCustomHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleShowPatrolFooterHook' => __DIR__ . '/includes/page/Hook/ArticleShowPatrolFooterHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleUndeleteHook' => __DIR__ . '/includes/page/Hook/ArticleUndeleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleViewFooterHook' => __DIR__ . '/includes/page/Hook/ArticleViewFooterHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleViewHeaderHook' => __DIR__ . '/includes/page/Hook/ArticleViewHeaderHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ArticleViewRedirectHook' => __DIR__ . '/includes/page/Hook/ArticleViewRedirectHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\Article__MissingArticleConditionsHook' => __DIR__ . '/includes/page/Hook/Article__MissingArticleConditionsHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\BeforeDisplayNoArticleTextHook' => __DIR__ . '/includes/page/Hook/BeforeDisplayNoArticleTextHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\CategoryAfterPageAddedHook' => __DIR__ . '/includes/page/Hook/CategoryAfterPageAddedHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\CategoryAfterPageRemovedHook' => __DIR__ . '/includes/page/Hook/CategoryAfterPageRemovedHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\CategoryPageViewHook' => __DIR__ . '/includes/page/Hook/CategoryPageViewHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\DisplayOldSubtitleHook' => __DIR__ . '/includes/page/Hook/DisplayOldSubtitleHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ImageOpenShowImageInlineBeforeHook' => __DIR__ . '/includes/page/Hook/ImageOpenShowImageInlineBeforeHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ImagePageAfterImageLinksHook' => __DIR__ . '/includes/page/Hook/ImagePageAfterImageLinksHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ImagePageFileHistoryLineHook' => __DIR__ . '/includes/page/Hook/ImagePageFileHistoryLineHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ImagePageFindFileHook' => __DIR__ . '/includes/page/Hook/ImagePageFindFileHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ImagePageShowTOCHook' => __DIR__ . '/includes/page/Hook/ImagePageShowTOCHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\IsFileCacheableHook' => __DIR__ . '/includes/page/Hook/IsFileCacheableHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\OpportunisticLinksUpdateHook' => __DIR__ . '/includes/page/Hook/OpportunisticLinksUpdateHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\PageDeleteCompleteHook' => __DIR__ . '/includes/page/Hook/PageDeleteCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\PageDeleteHook' => __DIR__ . '/includes/page/Hook/PageDeleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\PageDeletionDataUpdatesHook' => __DIR__ . '/includes/page/Hook/PageDeletionDataUpdatesHook.php',
|
2023-01-09 23:32:35 +00:00
|
|
|
'MediaWiki\\Page\\Hook\\PageUndeleteCompleteHook' => __DIR__ . '/includes/page/Hook/PageUndeleteCompleteHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\Hook\\PageUndeleteHook' => __DIR__ . '/includes/page/Hook/PageUndeleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\PageViewUpdatesHook' => __DIR__ . '/includes/page/Hook/PageViewUpdatesHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\RevisionFromEditCompleteHook' => __DIR__ . '/includes/page/Hook/RevisionFromEditCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\RevisionUndeletedHook' => __DIR__ . '/includes/page/Hook/RevisionUndeletedHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\RollbackCompleteHook' => __DIR__ . '/includes/page/Hook/RollbackCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\ShowMissingArticleHook' => __DIR__ . '/includes/page/Hook/ShowMissingArticleHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\WikiPageDeletionUpdatesHook' => __DIR__ . '/includes/page/Hook/WikiPageDeletionUpdatesHook.php',
|
|
|
|
|
'MediaWiki\\Page\\Hook\\WikiPageFactoryHook' => __DIR__ . '/includes/page/Hook/WikiPageFactoryHook.php',
|
|
|
|
|
'MediaWiki\\Page\\LegacyArticleIdAccess' => __DIR__ . '/includes/page/LegacyArticleIdAccess.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MediaWiki\\Page\\MergeHistory' => __DIR__ . '/includes/page/MergeHistory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\MergeHistoryFactory' => __DIR__ . '/includes/page/MergeHistoryFactory.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MediaWiki\\Page\\MovePage' => __DIR__ . '/includes/page/MovePage.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\MovePageFactory' => __DIR__ . '/includes/page/MovePageFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\PageAssertionException' => __DIR__ . '/includes/page/PageAssertionException.php',
|
|
|
|
|
'MediaWiki\\Page\\PageCommandFactory' => __DIR__ . '/includes/page/PageCommandFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\PageIdentity' => __DIR__ . '/includes/page/PageIdentity.php',
|
|
|
|
|
'MediaWiki\\Page\\PageIdentityValue' => __DIR__ . '/includes/page/PageIdentityValue.php',
|
|
|
|
|
'MediaWiki\\Page\\PageLookup' => __DIR__ . '/includes/page/PageLookup.php',
|
2022-12-09 12:17:40 +00:00
|
|
|
'MediaWiki\\Page\\PageProps' => __DIR__ . '/includes/page/PageProps.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\PageRecord' => __DIR__ . '/includes/page/PageRecord.php',
|
|
|
|
|
'MediaWiki\\Page\\PageReference' => __DIR__ . '/includes/page/PageReference.php',
|
|
|
|
|
'MediaWiki\\Page\\PageReferenceValue' => __DIR__ . '/includes/page/PageReferenceValue.php',
|
|
|
|
|
'MediaWiki\\Page\\PageSelectQueryBuilder' => __DIR__ . '/includes/page/PageSelectQueryBuilder.php',
|
|
|
|
|
'MediaWiki\\Page\\PageStore' => __DIR__ . '/includes/page/PageStore.php',
|
|
|
|
|
'MediaWiki\\Page\\PageStoreFactory' => __DIR__ . '/includes/page/PageStoreFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\PageStoreRecord' => __DIR__ . '/includes/page/PageStoreRecord.php',
|
|
|
|
|
'MediaWiki\\Page\\ParserOutputAccess' => __DIR__ . '/includes/page/ParserOutputAccess.php',
|
|
|
|
|
'MediaWiki\\Page\\ProperPageIdentity' => __DIR__ . '/includes/page/ProperPageIdentity.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MediaWiki\\Page\\ProtectionForm' => __DIR__ . '/includes/page/ProtectionForm.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Page\\RedirectLookup' => __DIR__ . '/includes/page/RedirectLookup.php',
|
|
|
|
|
'MediaWiki\\Page\\RedirectStore' => __DIR__ . '/includes/page/RedirectStore.php',
|
|
|
|
|
'MediaWiki\\Page\\RollbackPage' => __DIR__ . '/includes/page/RollbackPage.php',
|
|
|
|
|
'MediaWiki\\Page\\RollbackPageFactory' => __DIR__ . '/includes/page/RollbackPageFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\UndeletePage' => __DIR__ . '/includes/page/UndeletePage.php',
|
|
|
|
|
'MediaWiki\\Page\\UndeletePageFactory' => __DIR__ . '/includes/page/UndeletePageFactory.php',
|
|
|
|
|
'MediaWiki\\Page\\WikiPageFactory' => __DIR__ . '/includes/page/WikiPageFactory.php',
|
2023-09-15 08:38:07 +00:00
|
|
|
'MediaWiki\\Pager\\ActiveUsersPager' => __DIR__ . '/includes/specials/pagers/ActiveUsersPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\AllMessagesTablePager' => __DIR__ . '/includes/specials/pagers/AllMessagesTablePager.php',
|
2023-09-14 11:54:23 +00:00
|
|
|
'MediaWiki\\Pager\\AlphabeticPager' => __DIR__ . '/includes/pager/AlphabeticPager.php',
|
2023-09-15 08:38:07 +00:00
|
|
|
'MediaWiki\\Pager\\BlockListPager' => __DIR__ . '/includes/specials/pagers/BlockListPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\CategoryPager' => __DIR__ . '/includes/specials/pagers/CategoryPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\ContribsPager' => __DIR__ . '/includes/specials/pagers/ContribsPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\DeletedContribsPager' => __DIR__ . '/includes/specials/pagers/DeletedContribsPager.php',
|
2023-09-15 08:07:10 +00:00
|
|
|
'MediaWiki\\Pager\\HistoryPager' => __DIR__ . '/includes/actions/pagers/HistoryPager.php',
|
2023-09-15 08:38:07 +00:00
|
|
|
'MediaWiki\\Pager\\ImageListPager' => __DIR__ . '/includes/specials/pagers/ImageListPager.php',
|
2023-09-14 11:54:23 +00:00
|
|
|
'MediaWiki\\Pager\\IndexPager' => __DIR__ . '/includes/pager/IndexPager.php',
|
2023-09-15 08:38:07 +00:00
|
|
|
'MediaWiki\\Pager\\LogPager' => __DIR__ . '/includes/logging/LogPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\MergeHistoryPager' => __DIR__ . '/includes/specials/pagers/MergeHistoryPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\NewFilesPager' => __DIR__ . '/includes/specials/pagers/NewFilesPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\NewPagesPager' => __DIR__ . '/includes/specials/pagers/NewPagesPager.php',
|
2023-09-14 11:54:23 +00:00
|
|
|
'MediaWiki\\Pager\\Pager' => __DIR__ . '/includes/pager/Pager.php',
|
2023-09-15 08:38:07 +00:00
|
|
|
'MediaWiki\\Pager\\PagerTools' => __DIR__ . '/includes/specials/pagers/PagerTools.php',
|
|
|
|
|
'MediaWiki\\Pager\\ProtectedPagesPager' => __DIR__ . '/includes/specials/pagers/ProtectedPagesPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\ProtectedTitlesPager' => __DIR__ . '/includes/specials/pagers/ProtectedTitlesPager.php',
|
2023-09-14 11:54:23 +00:00
|
|
|
'MediaWiki\\Pager\\RangeChronologicalPager' => __DIR__ . '/includes/pager/RangeChronologicalPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\ReverseChronologicalPager' => __DIR__ . '/includes/pager/ReverseChronologicalPager.php',
|
|
|
|
|
'MediaWiki\\Pager\\TablePager' => __DIR__ . '/includes/pager/TablePager.php',
|
2023-09-15 08:38:07 +00:00
|
|
|
'MediaWiki\\Pager\\UsersPager' => __DIR__ . '/includes/specials/pagers/UsersPager.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\ParamValidator\\TypeDef\\NamespaceDef' => __DIR__ . '/includes/ParamValidator/TypeDef/NamespaceDef.php',
|
|
|
|
|
'MediaWiki\\ParamValidator\\TypeDef\\TagsDef' => __DIR__ . '/includes/ParamValidator/TypeDef/TagsDef.php',
|
|
|
|
|
'MediaWiki\\ParamValidator\\TypeDef\\TitleDef' => __DIR__ . '/includes/ParamValidator/TypeDef/TitleDef.php',
|
|
|
|
|
'MediaWiki\\ParamValidator\\TypeDef\\UserDef' => __DIR__ . '/includes/ParamValidator/TypeDef/UserDef.php',
|
2022-12-09 12:28:41 +00:00
|
|
|
'MediaWiki\\Parser\\MagicWord' => __DIR__ . '/includes/parser/MagicWord.php',
|
|
|
|
|
'MediaWiki\\Parser\\MagicWordArray' => __DIR__ . '/includes/parser/MagicWordArray.php',
|
|
|
|
|
'MediaWiki\\Parser\\MagicWordFactory' => __DIR__ . '/includes/parser/MagicWordFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Parser\\ParserCacheFactory' => __DIR__ . '/includes/parser/ParserCacheFactory.php',
|
2023-09-28 15:03:33 +00:00
|
|
|
'MediaWiki\\Parser\\ParserCacheFilter' => __DIR__ . '/includes/parser/ParserCacheFilter.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Parser\\ParserCacheMetadata' => __DIR__ . '/includes/parser/ParserCacheMetadata.php',
|
|
|
|
|
'MediaWiki\\Parser\\ParserObserver' => __DIR__ . '/includes/parser/ParserObserver.php',
|
|
|
|
|
'MediaWiki\\Parser\\ParserOutputFlags' => __DIR__ . '/includes/parser/ParserOutputFlags.php',
|
2023-07-27 19:47:00 +00:00
|
|
|
'MediaWiki\\Parser\\ParserOutputStringSets' => __DIR__ . '/includes/parser/ParserOutputStringSets.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Parser\\Parsoid\\Config\\DataAccess' => __DIR__ . '/includes/parser/Parsoid/Config/DataAccess.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\Config\\PageConfig' => __DIR__ . '/includes/parser/Parsoid/Config/PageConfig.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\Config\\PageConfigFactory' => __DIR__ . '/includes/parser/Parsoid/Config/PageConfigFactory.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\Config\\PageContent' => __DIR__ . '/includes/parser/Parsoid/Config/PageContent.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\Config\\SiteConfig' => __DIR__ . '/includes/parser/Parsoid/Config/SiteConfig.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\HtmlToContentTransform' => __DIR__ . '/includes/parser/Parsoid/HtmlToContentTransform.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\HtmlTransformFactory' => __DIR__ . '/includes/parser/Parsoid/HtmlTransformFactory.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\LanguageVariantConverter' => __DIR__ . '/includes/parser/Parsoid/LanguageVariantConverter.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\PageBundleJsonTrait' => __DIR__ . '/includes/parser/Parsoid/PageBundleJsonTrait.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\PageBundleParserOutputConverter' => __DIR__ . '/includes/parser/Parsoid/PageBundleParserOutputConverter.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\ParsoidOutputAccess' => __DIR__ . '/includes/parser/Parsoid/ParsoidOutputAccess.php',
|
2022-05-27 16:38:32 +00:00
|
|
|
'MediaWiki\\Parser\\Parsoid\\ParsoidParser' => __DIR__ . '/includes/parser/Parsoid/ParsoidParser.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\ParsoidParserFactory' => __DIR__ . '/includes/parser/Parsoid/ParsoidParserFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Parser\\Parsoid\\ParsoidRenderID' => __DIR__ . '/includes/parser/Parsoid/ParsoidRenderID.php',
|
|
|
|
|
'MediaWiki\\Parser\\Parsoid\\ParsoidServices' => __DIR__ . '/includes/parser/Parsoid/ParsoidServices.php',
|
|
|
|
|
'MediaWiki\\Parser\\RemexRemoveTagHandler' => __DIR__ . '/includes/parser/RemexRemoveTagHandler.php',
|
|
|
|
|
'MediaWiki\\Parser\\RemexStripTagHandler' => __DIR__ . '/includes/parser/RemexStripTagHandler.php',
|
|
|
|
|
'MediaWiki\\Parser\\RevisionOutputCache' => __DIR__ . '/includes/parser/RevisionOutputCache.php',
|
2023-09-19 16:59:47 +00:00
|
|
|
'MediaWiki\\Parser\\Sanitizer' => __DIR__ . '/includes/parser/Sanitizer.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Permissions\\Authority' => __DIR__ . '/includes/Permissions/Authority.php',
|
|
|
|
|
'MediaWiki\\Permissions\\GrantsInfo' => __DIR__ . '/includes/Permissions/GrantsInfo.php',
|
|
|
|
|
'MediaWiki\\Permissions\\GrantsLocalization' => __DIR__ . '/includes/Permissions/GrantsLocalization.php',
|
|
|
|
|
'MediaWiki\\Permissions\\GroupPermissionsLookup' => __DIR__ . '/includes/Permissions/GroupPermissionsLookup.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\GetUserPermissionsErrorsExpensiveHook' => __DIR__ . '/includes/Permissions/Hook/GetUserPermissionsErrorsExpensiveHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\GetUserPermissionsErrorsHook' => __DIR__ . '/includes/Permissions/Hook/GetUserPermissionsErrorsHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\PermissionErrorAuditHook' => __DIR__ . '/includes/Permissions/Hook/PermissionErrorAuditHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\TitleQuickPermissionsHook' => __DIR__ . '/includes/Permissions/Hook/TitleQuickPermissionsHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\TitleReadWhitelistHook' => __DIR__ . '/includes/Permissions/Hook/TitleReadWhitelistHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\UserCanHook' => __DIR__ . '/includes/Permissions/Hook/UserCanHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\UserGetAllRightsHook' => __DIR__ . '/includes/Permissions/Hook/UserGetAllRightsHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\UserGetRightsHook' => __DIR__ . '/includes/Permissions/Hook/UserGetRightsHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\UserGetRightsRemoveHook' => __DIR__ . '/includes/Permissions/Hook/UserGetRightsRemoveHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\UserIsBlockedFromHook' => __DIR__ . '/includes/Permissions/Hook/UserIsBlockedFromHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\Hook\\UserIsEveryoneAllowedHook' => __DIR__ . '/includes/Permissions/Hook/UserIsEveryoneAllowedHook.php',
|
|
|
|
|
'MediaWiki\\Permissions\\PermissionManager' => __DIR__ . '/includes/Permissions/PermissionManager.php',
|
|
|
|
|
'MediaWiki\\Permissions\\PermissionStatus' => __DIR__ . '/includes/Permissions/PermissionStatus.php',
|
|
|
|
|
'MediaWiki\\Permissions\\RateLimitSubject' => __DIR__ . '/includes/Permissions/RateLimitSubject.php',
|
|
|
|
|
'MediaWiki\\Permissions\\RateLimiter' => __DIR__ . '/includes/Permissions/RateLimiter.php',
|
|
|
|
|
'MediaWiki\\Permissions\\RestrictionStore' => __DIR__ . '/includes/Permissions/RestrictionStore.php',
|
|
|
|
|
'MediaWiki\\Permissions\\SimpleAuthority' => __DIR__ . '/includes/Permissions/SimpleAuthority.php',
|
|
|
|
|
'MediaWiki\\Permissions\\UltimateAuthority' => __DIR__ . '/includes/Permissions/UltimateAuthority.php',
|
|
|
|
|
'MediaWiki\\Permissions\\UserAuthority' => __DIR__ . '/includes/Permissions/UserAuthority.php',
|
2022-09-22 23:47:42 +00:00
|
|
|
'MediaWiki\\PoolCounter\\PoolCounterClient' => __DIR__ . '/includes/poolcounter/PoolCounterClient.php',
|
|
|
|
|
'MediaWiki\\PoolCounter\\PoolCounterConnectionManager' => __DIR__ . '/includes/poolcounter/PoolCounterConnectionManager.php',
|
2022-12-14 21:56:52 +00:00
|
|
|
'MediaWiki\\PoolCounter\\PoolCounterFactory' => __DIR__ . '/includes/poolcounter/PoolCounterFactory.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Preferences\\DefaultPreferencesFactory' => __DIR__ . '/includes/preferences/DefaultPreferencesFactory.php',
|
|
|
|
|
'MediaWiki\\Preferences\\Filter' => __DIR__ . '/includes/preferences/Filter.php',
|
|
|
|
|
'MediaWiki\\Preferences\\Hook\\GetPreferencesHook' => __DIR__ . '/includes/preferences/Hook/GetPreferencesHook.php',
|
|
|
|
|
'MediaWiki\\Preferences\\Hook\\PreferencesFormPreSaveHook' => __DIR__ . '/includes/preferences/Hook/PreferencesFormPreSaveHook.php',
|
|
|
|
|
'MediaWiki\\Preferences\\IntvalFilter' => __DIR__ . '/includes/preferences/IntvalFilter.php',
|
|
|
|
|
'MediaWiki\\Preferences\\MultiTitleFilter' => __DIR__ . '/includes/preferences/MultiTitleFilter.php',
|
|
|
|
|
'MediaWiki\\Preferences\\MultiUsernameFilter' => __DIR__ . '/includes/preferences/MultiUsernameFilter.php',
|
|
|
|
|
'MediaWiki\\Preferences\\PreferencesFactory' => __DIR__ . '/includes/preferences/PreferencesFactory.php',
|
|
|
|
|
'MediaWiki\\Preferences\\SignatureValidator' => __DIR__ . '/includes/preferences/SignatureValidator.php',
|
|
|
|
|
'MediaWiki\\Preferences\\SignatureValidatorFactory' => __DIR__ . '/includes/preferences/SignatureValidatorFactory.php',
|
|
|
|
|
'MediaWiki\\Preferences\\TimezoneFilter' => __DIR__ . '/includes/preferences/TimezoneFilter.php',
|
2016-11-03 00:27:15 +00:00
|
|
|
'MediaWiki\\ProcOpenError' => __DIR__ . '/includes/exception/ProcOpenError.php',
|
2023-03-01 20:16:39 +00:00
|
|
|
'MediaWiki\\Profiler\\ProfilingContext' => __DIR__ . '/includes/profiler/ProfilingContext.php',
|
2023-02-28 05:51:43 +00:00
|
|
|
'MediaWiki\\RenameUser\\Hook\\RenameUserAbortHook' => __DIR__ . '/includes/RenameUser/Hook/RenameUserAbortHook.php',
|
|
|
|
|
'MediaWiki\\RenameUser\\Hook\\RenameUserCompleteHook' => __DIR__ . '/includes/RenameUser/Hook/RenameUserCompleteHook.php',
|
|
|
|
|
'MediaWiki\\RenameUser\\Hook\\RenameUserPreRenameHook' => __DIR__ . '/includes/RenameUser/Hook/RenameUserPreRenameHook.php',
|
|
|
|
|
'MediaWiki\\RenameUser\\Hook\\RenameUserSQLHook' => __DIR__ . '/includes/RenameUser/Hook/RenameUserSQLHook.php',
|
|
|
|
|
'MediaWiki\\RenameUser\\Hook\\RenameUserWarningHook' => __DIR__ . '/includes/RenameUser/Hook/RenameUserWarningHook.php',
|
|
|
|
|
'MediaWiki\\RenameUser\\RenameuserSQL' => __DIR__ . '/includes/RenameUser/RenameuserSQL.php',
|
2023-02-16 12:36:41 +00:00
|
|
|
'MediaWiki\\Request\\ContentSecurityPolicy' => __DIR__ . '/includes/Request/ContentSecurityPolicy.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Request\\DerivativeRequest' => __DIR__ . '/includes/Request/DerivativeRequest.php',
|
|
|
|
|
'MediaWiki\\Request\\FauxRequest' => __DIR__ . '/includes/Request/FauxRequest.php',
|
|
|
|
|
'MediaWiki\\Request\\FauxRequestUpload' => __DIR__ . '/includes/Request/FauxRequestUpload.php',
|
2023-03-01 17:02:32 +00:00
|
|
|
'MediaWiki\\Request\\FauxResponse' => __DIR__ . '/includes/Request/FauxResponse.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Request\\HeaderCallback' => __DIR__ . '/includes/Request/HeaderCallback.php',
|
|
|
|
|
'MediaWiki\\Request\\PathRouter' => __DIR__ . '/includes/Request/PathRouter.php',
|
2023-08-06 10:22:58 +00:00
|
|
|
'MediaWiki\\Request\\ProxyLookup' => __DIR__ . '/includes/Request/ProxyLookup.php',
|
2023-09-07 11:46:15 +00:00
|
|
|
'MediaWiki\\Request\\WebRequest' => __DIR__ . '/includes/Request/WebRequest.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Request\\WebRequestUpload' => __DIR__ . '/includes/Request/WebRequestUpload.php',
|
2023-03-01 17:02:32 +00:00
|
|
|
'MediaWiki\\Request\\WebResponse' => __DIR__ . '/includes/Request/WebResponse.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\ResourceLoader\\CircularDependencyError' => __DIR__ . '/includes/ResourceLoader/CircularDependencyError.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\ClientHtml' => __DIR__ . '/includes/ResourceLoader/ClientHtml.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\CodexModule' => __DIR__ . '/includes/ResourceLoader/CodexModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Context' => __DIR__ . '/includes/ResourceLoader/Context.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\DerivativeContext' => __DIR__ . '/includes/ResourceLoader/DerivativeContext.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\FileModule' => __DIR__ . '/includes/ResourceLoader/FileModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\FilePath' => __DIR__ . '/includes/ResourceLoader/FilePath.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\ForeignApiModule' => __DIR__ . '/includes/ResourceLoader/ForeignApiModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\ForeignResourceManager' => __DIR__ . '/includes/ResourceLoader/ForeignResourceManager.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\HookRunner' => __DIR__ . '/includes/ResourceLoader/HookRunner.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderExcludeUserOptionsHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderExcludeUserOptionsHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderForeignApiModulesHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderForeignApiModulesHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderGetConfigVarsHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderGetConfigVarsHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderJqueryMsgModuleMagicWordsHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderJqueryMsgModuleMagicWordsHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderRegisterModulesHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderRegisterModulesHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderSiteModulePagesHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderSiteModulePagesHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Hook\\ResourceLoaderSiteStylesModulePagesHook' => __DIR__ . '/includes/ResourceLoader/Hook/ResourceLoaderSiteStylesModulePagesHook.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Image' => __DIR__ . '/includes/ResourceLoader/Image.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\ImageModule' => __DIR__ . '/includes/ResourceLoader/ImageModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\LessVarFileModule' => __DIR__ . '/includes/ResourceLoader/LessVarFileModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\MessageBlobStore' => __DIR__ . '/includes/ResourceLoader/MessageBlobStore.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\Module' => __DIR__ . '/includes/ResourceLoader/Module.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\MwUrlModule' => __DIR__ . '/includes/ResourceLoader/MwUrlModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\OOUIFileModule' => __DIR__ . '/includes/ResourceLoader/OOUIFileModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\OOUIIconPackModule' => __DIR__ . '/includes/ResourceLoader/OOUIIconPackModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\OOUIImageModule' => __DIR__ . '/includes/ResourceLoader/OOUIImageModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\OOUIModule' => __DIR__ . '/includes/ResourceLoader/OOUIModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\ResourceLoader' => __DIR__ . '/includes/ResourceLoader/ResourceLoader.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\SiteModule' => __DIR__ . '/includes/ResourceLoader/SiteModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\SiteStylesModule' => __DIR__ . '/includes/ResourceLoader/SiteStylesModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\SkinModule' => __DIR__ . '/includes/ResourceLoader/SkinModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\StartUpModule' => __DIR__ . '/includes/ResourceLoader/StartUpModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\UserModule' => __DIR__ . '/includes/ResourceLoader/UserModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\UserOptionsModule' => __DIR__ . '/includes/ResourceLoader/UserOptionsModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\UserStylesModule' => __DIR__ . '/includes/ResourceLoader/UserStylesModule.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\VueComponentParser' => __DIR__ . '/includes/ResourceLoader/VueComponentParser.php',
|
|
|
|
|
'MediaWiki\\ResourceLoader\\WikiModule' => __DIR__ . '/includes/ResourceLoader/WikiModule.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\BasicAuthorizerBase' => __DIR__ . '/includes/Rest/BasicAccess/BasicAuthorizerBase.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\BasicAuthorizerInterface' => __DIR__ . '/includes/Rest/BasicAccess/BasicAuthorizerInterface.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\BasicRequestAuthorizer' => __DIR__ . '/includes/Rest/BasicAccess/BasicRequestAuthorizer.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\CompoundAuthorizer' => __DIR__ . '/includes/Rest/BasicAccess/CompoundAuthorizer.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\MWBasicAuthorizer' => __DIR__ . '/includes/Rest/BasicAccess/MWBasicAuthorizer.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\MWBasicRequestAuthorizer' => __DIR__ . '/includes/Rest/BasicAccess/MWBasicRequestAuthorizer.php',
|
|
|
|
|
'MediaWiki\\Rest\\BasicAccess\\StaticBasicAuthorizer' => __DIR__ . '/includes/Rest/BasicAccess/StaticBasicAuthorizer.php',
|
|
|
|
|
'MediaWiki\\Rest\\ConditionalHeaderUtil' => __DIR__ . '/includes/Rest/ConditionalHeaderUtil.php',
|
|
|
|
|
'MediaWiki\\Rest\\CopyableStreamInterface' => __DIR__ . '/includes/Rest/CopyableStreamInterface.php',
|
|
|
|
|
'MediaWiki\\Rest\\CorsUtils' => __DIR__ . '/includes/Rest/CorsUtils.php',
|
|
|
|
|
'MediaWiki\\Rest\\EntryPoint' => __DIR__ . '/includes/Rest/EntryPoint.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler' => __DIR__ . '/includes/Rest/Handler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\AbstractContributionHandler' => __DIR__ . '/includes/Rest/Handler/AbstractContributionHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\ActionModuleBasedHandler' => __DIR__ . '/includes/Rest/Handler/ActionModuleBasedHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\CompareHandler' => __DIR__ . '/includes/Rest/Handler/CompareHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\ContributionsCountHandler' => __DIR__ . '/includes/Rest/Handler/ContributionsCountHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\CreationHandler' => __DIR__ . '/includes/Rest/Handler/CreationHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\EditHandler' => __DIR__ . '/includes/Rest/Handler/EditHandler.php',
|
2023-01-13 21:30:21 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\HtmlInputTransformHelper' => __DIR__ . '/includes/Rest/Handler/Helper/HtmlInputTransformHelper.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\HtmlMessageOutputHelper' => __DIR__ . '/includes/Rest/Handler/Helper/HtmlMessageOutputHelper.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\HtmlOutputHelper' => __DIR__ . '/includes/Rest/Handler/Helper/HtmlOutputHelper.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\HtmlOutputRendererHelper' => __DIR__ . '/includes/Rest/Handler/Helper/HtmlOutputRendererHelper.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\PageContentHelper' => __DIR__ . '/includes/Rest/Handler/Helper/PageContentHelper.php',
|
2023-06-11 16:56:29 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\PageRedirectHelper' => __DIR__ . '/includes/Rest/Handler/Helper/PageRedirectHelper.php',
|
2023-01-13 21:30:21 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\PageRestHelperFactory' => __DIR__ . '/includes/Rest/Handler/Helper/PageRestHelperFactory.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\ParsoidFormatHelper' => __DIR__ . '/includes/Rest/Handler/Helper/ParsoidFormatHelper.php',
|
2023-11-01 19:10:00 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\RestAuthorizeTrait' => __DIR__ . '/includes/Rest/Handler/Helper/RestAuthorizeTrait.php',
|
2023-01-13 21:30:21 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\Helper\\RevisionContentHelper' => __DIR__ . '/includes/Rest/Handler/Helper/RevisionContentHelper.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\LanguageLinksHandler' => __DIR__ . '/includes/Rest/Handler/LanguageLinksHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\MediaFileHandler' => __DIR__ . '/includes/Rest/Handler/MediaFileHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\MediaLinksHandler' => __DIR__ . '/includes/Rest/Handler/MediaLinksHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\PageHTMLHandler' => __DIR__ . '/includes/Rest/Handler/PageHTMLHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\PageHistoryCountHandler' => __DIR__ . '/includes/Rest/Handler/PageHistoryCountHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\PageHistoryHandler' => __DIR__ . '/includes/Rest/Handler/PageHistoryHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\PageSourceHandler' => __DIR__ . '/includes/Rest/Handler/PageSourceHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\ParsoidHandler' => __DIR__ . '/includes/Rest/Handler/ParsoidHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\RevisionHTMLHandler' => __DIR__ . '/includes/Rest/Handler/RevisionHTMLHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\RevisionSourceHandler' => __DIR__ . '/includes/Rest/Handler/RevisionSourceHandler.php',
|
2023-12-05 18:00:26 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\RootSpecHandler' => __DIR__ . '/includes/Rest/Handler/RootSpecHandler.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Rest\\Handler\\SearchHandler' => __DIR__ . '/includes/Rest/Handler/SearchHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\TransformHandler' => __DIR__ . '/includes/Rest/Handler/TransformHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\UpdateHandler' => __DIR__ . '/includes/Rest/Handler/UpdateHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Handler\\UserContributionsHandler' => __DIR__ . '/includes/Rest/Handler/UserContributionsHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\HeaderContainer' => __DIR__ . '/includes/Rest/HeaderContainer.php',
|
|
|
|
|
'MediaWiki\\Rest\\HeaderParser\\HeaderParserBase' => __DIR__ . '/includes/Rest/HeaderParser/HeaderParserBase.php',
|
|
|
|
|
'MediaWiki\\Rest\\HeaderParser\\HeaderParserError' => __DIR__ . '/includes/Rest/HeaderParser/HeaderParserError.php',
|
|
|
|
|
'MediaWiki\\Rest\\HeaderParser\\HttpDate' => __DIR__ . '/includes/Rest/HeaderParser/HttpDate.php',
|
|
|
|
|
'MediaWiki\\Rest\\HeaderParser\\IfNoneMatch' => __DIR__ . '/includes/Rest/HeaderParser/IfNoneMatch.php',
|
|
|
|
|
'MediaWiki\\Rest\\HeaderParser\\Origin' => __DIR__ . '/includes/Rest/HeaderParser/Origin.php',
|
|
|
|
|
'MediaWiki\\Rest\\Hook\\SearchResultProvideDescriptionHook' => __DIR__ . '/includes/Rest/Hook/SearchResultProvideDescriptionHook.php',
|
|
|
|
|
'MediaWiki\\Rest\\HttpException' => __DIR__ . '/includes/Rest/HttpException.php',
|
|
|
|
|
'MediaWiki\\Rest\\JsonEncodingException' => __DIR__ . '/includes/Rest/JsonEncodingException.php',
|
|
|
|
|
'MediaWiki\\Rest\\LocalizedHttpException' => __DIR__ . '/includes/Rest/LocalizedHttpException.php',
|
|
|
|
|
'MediaWiki\\Rest\\PathTemplateMatcher\\PathConflict' => __DIR__ . '/includes/Rest/PathTemplateMatcher/PathConflict.php',
|
|
|
|
|
'MediaWiki\\Rest\\PathTemplateMatcher\\PathMatcher' => __DIR__ . '/includes/Rest/PathTemplateMatcher/PathMatcher.php',
|
|
|
|
|
'MediaWiki\\Rest\\RedirectException' => __DIR__ . '/includes/Rest/RedirectException.php',
|
|
|
|
|
'MediaWiki\\Rest\\Reporter\\ErrorReporter' => __DIR__ . '/includes/Rest/Reporter/ErrorReporter.php',
|
|
|
|
|
'MediaWiki\\Rest\\Reporter\\MWErrorReporter' => __DIR__ . '/includes/Rest/Reporter/MWErrorReporter.php',
|
|
|
|
|
'MediaWiki\\Rest\\Reporter\\PHPErrorReporter' => __DIR__ . '/includes/Rest/Reporter/PHPErrorReporter.php',
|
|
|
|
|
'MediaWiki\\Rest\\RequestBase' => __DIR__ . '/includes/Rest/RequestBase.php',
|
|
|
|
|
'MediaWiki\\Rest\\RequestData' => __DIR__ . '/includes/Rest/RequestData.php',
|
|
|
|
|
'MediaWiki\\Rest\\RequestFromGlobals' => __DIR__ . '/includes/Rest/RequestFromGlobals.php',
|
|
|
|
|
'MediaWiki\\Rest\\RequestInterface' => __DIR__ . '/includes/Rest/RequestInterface.php',
|
|
|
|
|
'MediaWiki\\Rest\\Response' => __DIR__ . '/includes/Rest/Response.php',
|
|
|
|
|
'MediaWiki\\Rest\\ResponseException' => __DIR__ . '/includes/Rest/ResponseException.php',
|
|
|
|
|
'MediaWiki\\Rest\\ResponseFactory' => __DIR__ . '/includes/Rest/ResponseFactory.php',
|
|
|
|
|
'MediaWiki\\Rest\\ResponseInterface' => __DIR__ . '/includes/Rest/ResponseInterface.php',
|
|
|
|
|
'MediaWiki\\Rest\\Router' => __DIR__ . '/includes/Rest/Router.php',
|
|
|
|
|
'MediaWiki\\Rest\\SimpleHandler' => __DIR__ . '/includes/Rest/SimpleHandler.php',
|
|
|
|
|
'MediaWiki\\Rest\\Stream' => __DIR__ . '/includes/Rest/Stream.php',
|
|
|
|
|
'MediaWiki\\Rest\\StringStream' => __DIR__ . '/includes/Rest/StringStream.php',
|
|
|
|
|
'MediaWiki\\Rest\\TokenAwareHandlerTrait' => __DIR__ . '/includes/Rest/TokenAwareHandlerTrait.php',
|
|
|
|
|
'MediaWiki\\Rest\\Validator\\BodyValidator' => __DIR__ . '/includes/Rest/Validator/BodyValidator.php',
|
|
|
|
|
'MediaWiki\\Rest\\Validator\\JsonBodyValidator' => __DIR__ . '/includes/Rest/Validator/JsonBodyValidator.php',
|
|
|
|
|
'MediaWiki\\Rest\\Validator\\NullBodyValidator' => __DIR__ . '/includes/Rest/Validator/NullBodyValidator.php',
|
|
|
|
|
'MediaWiki\\Rest\\Validator\\ParamValidatorCallbacks' => __DIR__ . '/includes/Rest/Validator/ParamValidatorCallbacks.php',
|
2023-01-20 06:50:35 +00:00
|
|
|
'MediaWiki\\Rest\\Validator\\UnsupportedContentTypeBodyValidator' => __DIR__ . '/includes/Rest/Validator/UnsupportedContentTypeBodyValidator.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Rest\\Validator\\Validator' => __DIR__ . '/includes/Rest/Validator/Validator.php',
|
2023-09-07 10:19:48 +00:00
|
|
|
'MediaWiki\\Revision\\ArchiveSelectQueryBuilder' => __DIR__ . '/includes/Revision/ArchiveSelectQueryBuilder.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Revision\\ArchivedRevisionLookup' => __DIR__ . '/includes/Revision/ArchivedRevisionLookup.php',
|
When content is marked bad, show an error, don't pretend it is empty
It misrepresents the users contribution to show empty text for a
revision when in fact the revision contained some text which we later
lost.
Also, errors from SqlBlobStore::fetchBlobs() did not stop a cache entry
from being written, so a subsequent cache hit would show the bad
revision as empty.
So, in Storage:
* Add BadBlobException, which is thrown by the Storage layer to
indicate that a revision is marked as bad.
* Have SqlBlobStore::getBlobStore() return an error for bad blobs
instead of an empty string.
* Duplicate the check for flags=error into SqlBlobStore::expandBlob().
This avoids an unnecessary cache fetch, and avoids making
decompressData() throw on error, which would be a b/c break.
* In SqlBlobStore::getBlob(), suppress the cache when there was an
error.
In Revision:
* Add BadRevisionException, to wrap BadBlobException in the Revision
layer.
* Return null from RevisionRecord::getContent() on a broader set of
errors. Make it mostly non-throwing.
* Add RevisionRecord::getContentOrThrow() which returns a non-nullable
Content.
* Note that SlotRecord::getContent() returns a non-nullable Content so
now throws in more cases.
In the UI:
* In Article::view(), catch the exception and show an error message.
* In DifferenceEngine, catch the exception and make a suitable error
message available via getRevisionLoadErrors(). In the diff page, show
the error message in a box.
* In ApiComparePages and the legacy rvdiffto, show a warning.
* In RawAction, show a 404 by analogy with other error cases.
* In EditPage, there was already handling for $content=null with an
appropriate error message (missing-revision-content). But having
$this->textbox1 = null caused PHP 8.1 deprecation warnings, so I fixed
that.
* In EditPage undo, there was already handling for null content, but I
improved the error message: "does not exist or was deleted" seems more
appropriate than "conflicting intermediate edits".
Change-Id: Idd1278d6d756ef37d64addb7b5f3be30747ea603
2022-11-29 03:38:29 +00:00
|
|
|
'MediaWiki\\Revision\\BadRevisionException' => __DIR__ . '/includes/Revision/BadRevisionException.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Revision\\ContributionsLookup' => __DIR__ . '/includes/Revision/ContributionsLookup.php',
|
|
|
|
|
'MediaWiki\\Revision\\ContributionsSegment' => __DIR__ . '/includes/Revision/ContributionsSegment.php',
|
|
|
|
|
'MediaWiki\\Revision\\FallbackSlotRoleHandler' => __DIR__ . '/includes/Revision/FallbackSlotRoleHandler.php',
|
|
|
|
|
'MediaWiki\\Revision\\Hook\\ContentHandlerDefaultModelForHook' => __DIR__ . '/includes/Revision/Hook/ContentHandlerDefaultModelForHook.php',
|
|
|
|
|
'MediaWiki\\Revision\\Hook\\RevisionRecordInsertedHook' => __DIR__ . '/includes/Revision/Hook/RevisionRecordInsertedHook.php',
|
|
|
|
|
'MediaWiki\\Revision\\IncompleteRevisionException' => __DIR__ . '/includes/Revision/IncompleteRevisionException.php',
|
|
|
|
|
'MediaWiki\\Revision\\MainSlotRoleHandler' => __DIR__ . '/includes/Revision/MainSlotRoleHandler.php',
|
|
|
|
|
'MediaWiki\\Revision\\MutableRevisionRecord' => __DIR__ . '/includes/Revision/MutableRevisionRecord.php',
|
|
|
|
|
'MediaWiki\\Revision\\MutableRevisionSlots' => __DIR__ . '/includes/Revision/MutableRevisionSlots.php',
|
|
|
|
|
'MediaWiki\\Revision\\RenderedRevision' => __DIR__ . '/includes/Revision/RenderedRevision.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionAccessException' => __DIR__ . '/includes/Revision/RevisionAccessException.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionArchiveRecord' => __DIR__ . '/includes/Revision/RevisionArchiveRecord.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionFactory' => __DIR__ . '/includes/Revision/RevisionFactory.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionLookup' => __DIR__ . '/includes/Revision/RevisionLookup.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionRecord' => __DIR__ . '/includes/Revision/RevisionRecord.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionRenderer' => __DIR__ . '/includes/Revision/RevisionRenderer.php',
|
2023-08-28 08:52:19 +00:00
|
|
|
'MediaWiki\\Revision\\RevisionSelectQueryBuilder' => __DIR__ . '/includes/Revision/RevisionSelectQueryBuilder.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Revision\\RevisionSlots' => __DIR__ . '/includes/Revision/RevisionSlots.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionStore' => __DIR__ . '/includes/Revision/RevisionStore.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionStoreCacheRecord' => __DIR__ . '/includes/Revision/RevisionStoreCacheRecord.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionStoreFactory' => __DIR__ . '/includes/Revision/RevisionStoreFactory.php',
|
|
|
|
|
'MediaWiki\\Revision\\RevisionStoreRecord' => __DIR__ . '/includes/Revision/RevisionStoreRecord.php',
|
|
|
|
|
'MediaWiki\\Revision\\SlotRecord' => __DIR__ . '/includes/Revision/SlotRecord.php',
|
|
|
|
|
'MediaWiki\\Revision\\SlotRenderingProvider' => __DIR__ . '/includes/Revision/SlotRenderingProvider.php',
|
|
|
|
|
'MediaWiki\\Revision\\SlotRoleHandler' => __DIR__ . '/includes/Revision/SlotRoleHandler.php',
|
|
|
|
|
'MediaWiki\\Revision\\SlotRoleRegistry' => __DIR__ . '/includes/Revision/SlotRoleRegistry.php',
|
|
|
|
|
'MediaWiki\\Revision\\SuppressedDataException' => __DIR__ . '/includes/Revision/SuppressedDataException.php',
|
|
|
|
|
'MediaWiki\\Search\\Entity\\SearchResultThumbnail' => __DIR__ . '/includes/search/Entity/SearchResultThumbnail.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\PrefixSearchBackendHook' => __DIR__ . '/includes/search/Hook/PrefixSearchBackendHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\PrefixSearchExtractNamespaceHook' => __DIR__ . '/includes/search/Hook/PrefixSearchExtractNamespaceHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchAfterNoDirectMatchHook' => __DIR__ . '/includes/search/Hook/SearchAfterNoDirectMatchHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchGetNearMatchBeforeHook' => __DIR__ . '/includes/search/Hook/SearchGetNearMatchBeforeHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchGetNearMatchCompleteHook' => __DIR__ . '/includes/search/Hook/SearchGetNearMatchCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchGetNearMatchHook' => __DIR__ . '/includes/search/Hook/SearchGetNearMatchHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchIndexFieldsHook' => __DIR__ . '/includes/search/Hook/SearchIndexFieldsHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchResultInitFromTitleHook' => __DIR__ . '/includes/search/Hook/SearchResultInitFromTitleHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchResultProvideThumbnailHook' => __DIR__ . '/includes/search/Hook/SearchResultProvideThumbnailHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchResultsAugmentHook' => __DIR__ . '/includes/search/Hook/SearchResultsAugmentHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SearchableNamespacesHook' => __DIR__ . '/includes/search/Hook/SearchableNamespacesHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\ShowSearchHitHook' => __DIR__ . '/includes/search/Hook/ShowSearchHitHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\ShowSearchHitTitleHook' => __DIR__ . '/includes/search/Hook/ShowSearchHitTitleHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SpecialSearchPowerBoxHook' => __DIR__ . '/includes/search/Hook/SpecialSearchPowerBoxHook.php',
|
|
|
|
|
'MediaWiki\\Search\\Hook\\SpecialSearchProfileFormHook' => __DIR__ . '/includes/search/Hook/SpecialSearchProfileFormHook.php',
|
|
|
|
|
'MediaWiki\\Search\\ParserOutputSearchDataExtractor' => __DIR__ . '/includes/search/ParserOutputSearchDataExtractor.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchResultThumbnailProvider' => __DIR__ . '/includes/search/SearchResultThumbnailProvider.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\BasicSearchResultSetWidget' => __DIR__ . '/includes/search/searchwidgets/BasicSearchResultSetWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\DidYouMeanWidget' => __DIR__ . '/includes/search/searchwidgets/DidYouMeanWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\FullSearchResultWidget' => __DIR__ . '/includes/search/searchwidgets/FullSearchResultWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\InterwikiSearchResultSetWidget' => __DIR__ . '/includes/search/searchwidgets/InterwikiSearchResultSetWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\InterwikiSearchResultWidget' => __DIR__ . '/includes/search/searchwidgets/InterwikiSearchResultWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\SearchFormWidget' => __DIR__ . '/includes/search/searchwidgets/SearchFormWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\SearchResultSetWidget' => __DIR__ . '/includes/search/searchwidgets/SearchResultSetWidget.php',
|
|
|
|
|
'MediaWiki\\Search\\SearchWidgets\\SearchResultWidget' => __DIR__ . '/includes/search/searchwidgets/SearchResultWidget.php',
|
2023-02-19 08:06:34 +00:00
|
|
|
'MediaWiki\\Search\\TitleMatcher' => __DIR__ . '/includes/search/TitleMatcher.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Session\\BotPasswordSessionProvider' => __DIR__ . '/includes/session/BotPasswordSessionProvider.php',
|
|
|
|
|
'MediaWiki\\Session\\CookieSessionProvider' => __DIR__ . '/includes/session/CookieSessionProvider.php',
|
|
|
|
|
'MediaWiki\\Session\\CsrfTokenSet' => __DIR__ . '/includes/session/CsrfTokenSet.php',
|
|
|
|
|
'MediaWiki\\Session\\CsrfTokenSetProvider' => __DIR__ . '/includes/session/CsrfTokenSetProvider.php',
|
|
|
|
|
'MediaWiki\\Session\\Hook\\SessionCheckInfoHook' => __DIR__ . '/includes/session/Hook/SessionCheckInfoHook.php',
|
|
|
|
|
'MediaWiki\\Session\\Hook\\SessionMetadataHook' => __DIR__ . '/includes/session/Hook/SessionMetadataHook.php',
|
|
|
|
|
'MediaWiki\\Session\\ImmutableSessionProviderWithCookie' => __DIR__ . '/includes/session/ImmutableSessionProviderWithCookie.php',
|
|
|
|
|
'MediaWiki\\Session\\MetadataMergeException' => __DIR__ . '/includes/session/MetadataMergeException.php',
|
|
|
|
|
'MediaWiki\\Session\\PHPSessionHandler' => __DIR__ . '/includes/session/PHPSessionHandler.php',
|
|
|
|
|
'MediaWiki\\Session\\Session' => __DIR__ . '/includes/session/Session.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionBackend' => __DIR__ . '/includes/session/SessionBackend.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionId' => __DIR__ . '/includes/session/SessionId.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionInfo' => __DIR__ . '/includes/session/SessionInfo.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionManager' => __DIR__ . '/includes/session/SessionManager.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionManagerInterface' => __DIR__ . '/includes/session/SessionManagerInterface.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionOverflowException' => __DIR__ . '/includes/session/SessionOverflowException.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionProvider' => __DIR__ . '/includes/session/SessionProvider.php',
|
|
|
|
|
'MediaWiki\\Session\\SessionProviderInterface' => __DIR__ . '/includes/session/SessionProviderInterface.php',
|
|
|
|
|
'MediaWiki\\Session\\Token' => __DIR__ . '/includes/session/Token.php',
|
|
|
|
|
'MediaWiki\\Session\\UserInfo' => __DIR__ . '/includes/session/UserInfo.php',
|
|
|
|
|
'MediaWiki\\Settings\\Cache\\CacheableSource' => __DIR__ . '/includes/Settings/Cache/CacheableSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Cache\\CachedSource' => __DIR__ . '/includes/Settings/Cache/CachedSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\ArrayConfigBuilder' => __DIR__ . '/includes/Settings/Config/ArrayConfigBuilder.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\ConfigBuilder' => __DIR__ . '/includes/Settings/Config/ConfigBuilder.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\ConfigBuilderBase' => __DIR__ . '/includes/Settings/Config/ConfigBuilderBase.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\ConfigSchema' => __DIR__ . '/includes/Settings/Config/ConfigSchema.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\ConfigSchemaAggregator' => __DIR__ . '/includes/Settings/Config/ConfigSchemaAggregator.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\GlobalConfigBuilder' => __DIR__ . '/includes/Settings/Config/GlobalConfigBuilder.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\MergeStrategy' => __DIR__ . '/includes/Settings/Config/MergeStrategy.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\NullIniSink' => __DIR__ . '/includes/Settings/Config/NullIniSink.php',
|
|
|
|
|
'MediaWiki\\Settings\\Config\\PhpIniSink' => __DIR__ . '/includes/Settings/Config/PhpIniSink.php',
|
|
|
|
|
'MediaWiki\\Settings\\DynamicDefaultValues' => __DIR__ . '/includes/Settings/DynamicDefaultValues.php',
|
|
|
|
|
'MediaWiki\\Settings\\LocalSettingsLoader' => __DIR__ . '/includes/Settings/LocalSettingsLoader.php',
|
|
|
|
|
'MediaWiki\\Settings\\SettingsBuilder' => __DIR__ . '/includes/Settings/SettingsBuilder.php',
|
|
|
|
|
'MediaWiki\\Settings\\SettingsBuilderException' => __DIR__ . '/includes/Settings/SettingsBuilderException.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\ArraySource' => __DIR__ . '/includes/Settings/Source/ArraySource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\EtcdSource' => __DIR__ . '/includes/Settings/Source/EtcdSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\FileSource' => __DIR__ . '/includes/Settings/Source/FileSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\Format\\JsonFormat' => __DIR__ . '/includes/Settings/Source/Format/JsonFormat.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\Format\\SettingsFormat' => __DIR__ . '/includes/Settings/Source/Format/SettingsFormat.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\Format\\YamlFormat' => __DIR__ . '/includes/Settings/Source/Format/YamlFormat.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\JsonSchemaTrait' => __DIR__ . '/includes/Settings/Source/JsonSchemaTrait.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\PhpSettingsSource' => __DIR__ . '/includes/Settings/Source/PhpSettingsSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\ReflectionSchemaSource' => __DIR__ . '/includes/Settings/Source/ReflectionSchemaSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\SettingsFileUtils' => __DIR__ . '/includes/Settings/Source/SettingsFileUtils.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\SettingsIncludeLocator' => __DIR__ . '/includes/Settings/Source/SettingsIncludeLocator.php',
|
|
|
|
|
'MediaWiki\\Settings\\Source\\SettingsSource' => __DIR__ . '/includes/Settings/Source/SettingsSource.php',
|
|
|
|
|
'MediaWiki\\Settings\\WikiFarmSettingsLoader' => __DIR__ . '/includes/Settings/WikiFarmSettingsLoader.php',
|
2016-11-03 00:27:15 +00:00
|
|
|
'MediaWiki\\ShellDisabledError' => __DIR__ . '/includes/exception/ShellDisabledError.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Shell\\Command' => __DIR__ . '/includes/shell/Command.php',
|
|
|
|
|
'MediaWiki\\Shell\\CommandFactory' => __DIR__ . '/includes/shell/CommandFactory.php',
|
|
|
|
|
'MediaWiki\\Shell\\Hook\\WfShellWikiCmdHook' => __DIR__ . '/includes/shell/Hook/WfShellWikiCmdHook.php',
|
|
|
|
|
'MediaWiki\\Shell\\Shell' => __DIR__ . '/includes/shell/Shell.php',
|
|
|
|
|
'MediaWiki\\Shell\\ShellboxClientFactory' => __DIR__ . '/includes/shell/ShellboxClientFactory.php',
|
2023-04-26 23:16:29 +00:00
|
|
|
'MediaWiki\\SiteStats\\SiteStats' => __DIR__ . '/includes/SiteStats/SiteStats.php',
|
|
|
|
|
'MediaWiki\\SiteStats\\SiteStatsInit' => __DIR__ . '/includes/SiteStats/SiteStatsInit.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Site\\MediaWikiPageNameNormalizer' => __DIR__ . '/includes/site/MediaWikiPageNameNormalizer.php',
|
2023-12-14 15:27:55 +00:00
|
|
|
'MediaWiki\\Site\\Site' => __DIR__ . '/includes/site/Site.php',
|
|
|
|
|
'MediaWiki\\Site\\SiteList' => __DIR__ . '/includes/site/SiteList.php',
|
2022-03-02 20:51:45 +00:00
|
|
|
'MediaWiki\\Skin\\ComponentRegistryContext' => __DIR__ . '/includes/skins/components/ComponentRegistryContext.php',
|
2021-10-13 18:14:23 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponent' => __DIR__ . '/includes/skins/components/SkinComponent.php',
|
2023-01-04 19:14:02 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentCopyright' => __DIR__ . '/includes/skins/components/SkinComponentCopyright.php',
|
2022-06-27 14:35:31 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentFooter' => __DIR__ . '/includes/skins/components/SkinComponentFooter.php',
|
2023-01-04 19:14:02 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentLastModified' => __DIR__ . '/includes/skins/components/SkinComponentLastModified.php',
|
2022-06-27 14:35:31 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentLink' => __DIR__ . '/includes/skins/components/SkinComponentLink.php',
|
|
|
|
|
'MediaWiki\\Skin\\SkinComponentListItem' => __DIR__ . '/includes/skins/components/SkinComponentListItem.php',
|
2021-10-13 18:14:23 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentLogo' => __DIR__ . '/includes/skins/components/SkinComponentLogo.php',
|
2022-06-27 14:35:31 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentMenu' => __DIR__ . '/includes/skins/components/SkinComponentMenu.php',
|
2021-10-13 18:14:23 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentRegistry' => __DIR__ . '/includes/skins/components/SkinComponentRegistry.php',
|
2022-03-02 20:51:45 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentRegistryContext' => __DIR__ . '/includes/skins/components/SkinComponentRegistryContext.php',
|
2021-12-07 00:21:47 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentSearch' => __DIR__ . '/includes/skins/components/SkinComponentSearch.php',
|
2022-02-11 23:43:45 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentTableOfContents' => __DIR__ . '/includes/skins/components/SkinComponentTableOfContents.php',
|
2023-06-13 14:11:49 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentTempUserBanner' => __DIR__ . '/includes/skins/components/SkinComponentTempUserBanner.php',
|
2022-06-27 14:35:31 +00:00
|
|
|
'MediaWiki\\Skin\\SkinComponentUtils' => __DIR__ . '/includes/skins/components/SkinComponentUtils.php',
|
2020-06-08 07:33:11 +00:00
|
|
|
'MediaWiki\\Skins\\Hook\\SkinAfterPortletHook' => __DIR__ . '/includes/skins/Hook/SkinAfterPortletHook.php',
|
2020-07-09 09:34:03 +00:00
|
|
|
'MediaWiki\\Skins\\Hook\\SkinPageReadyConfigHook' => __DIR__ . '/includes/skins/Hook/SkinPageReadyConfigHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Sparql\\SparqlClient' => __DIR__ . '/includes/sparql/SparqlClient.php',
|
|
|
|
|
'MediaWiki\\Sparql\\SparqlException' => __DIR__ . '/includes/sparql/SparqlException.php',
|
2023-09-15 09:32:18 +00:00
|
|
|
'MediaWiki\\SpecialPage\\AuthManagerSpecialPage' => __DIR__ . '/includes/specialpage/AuthManagerSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\ChangesListSpecialPage' => __DIR__ . '/includes/specialpage/ChangesListSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\DisabledSpecialPage' => __DIR__ . '/includes/specialpage/DisabledSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\FormSpecialPage' => __DIR__ . '/includes/specialpage/FormSpecialPage.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\SpecialPage\\Hook\\AuthChangeFormFieldsHook' => __DIR__ . '/includes/specialpage/Hook/AuthChangeFormFieldsHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\ChangeAuthenticationDataAuditHook' => __DIR__ . '/includes/specialpage/Hook/ChangeAuthenticationDataAuditHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\ChangesListSpecialPageQueryHook' => __DIR__ . '/includes/specialpage/Hook/ChangesListSpecialPageQueryHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\ChangesListSpecialPageStructuredFiltersHook' => __DIR__ . '/includes/specialpage/Hook/ChangesListSpecialPageStructuredFiltersHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\RedirectSpecialArticleRedirectParamsHook' => __DIR__ . '/includes/specialpage/Hook/RedirectSpecialArticleRedirectParamsHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\SpecialPageAfterExecuteHook' => __DIR__ . '/includes/specialpage/Hook/SpecialPageAfterExecuteHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\SpecialPageBeforeExecuteHook' => __DIR__ . '/includes/specialpage/Hook/SpecialPageBeforeExecuteHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\SpecialPageBeforeFormDisplayHook' => __DIR__ . '/includes/specialpage/Hook/SpecialPageBeforeFormDisplayHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\SpecialPage_initListHook' => __DIR__ . '/includes/specialpage/Hook/SpecialPage_initListHook.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\Hook\\WgQueryPagesHook' => __DIR__ . '/includes/specialpage/Hook/WgQueryPagesHook.php',
|
2023-09-15 09:32:18 +00:00
|
|
|
'MediaWiki\\SpecialPage\\ImageQueryPage' => __DIR__ . '/includes/specialpage/ImageQueryPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\IncludableSpecialPage' => __DIR__ . '/includes/specialpage/IncludableSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\LoginSignupSpecialPage' => __DIR__ . '/includes/specialpage/LoginSignupSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\PageQueryPage' => __DIR__ . '/includes/specialpage/PageQueryPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\QueryPage' => __DIR__ . '/includes/specialpage/QueryPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\RedirectSpecialArticle' => __DIR__ . '/includes/specialpage/RedirectSpecialArticle.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\RedirectSpecialPage' => __DIR__ . '/includes/specialpage/RedirectSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\SpecialPage' => __DIR__ . '/includes/specialpage/SpecialPage.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\SpecialPage\\SpecialPageFactory' => __DIR__ . '/includes/specialpage/SpecialPageFactory.php',
|
2023-09-15 09:32:18 +00:00
|
|
|
'MediaWiki\\SpecialPage\\SpecialRedirectToSpecial' => __DIR__ . '/includes/specialpage/SpecialRedirectToSpecial.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\SpecialRedirectWithAction' => __DIR__ . '/includes/specialpage/SpecialRedirectWithAction.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\UnlistedSpecialPage' => __DIR__ . '/includes/specialpage/UnlistedSpecialPage.php',
|
|
|
|
|
'MediaWiki\\SpecialPage\\WantedQueryPage' => __DIR__ . '/includes/specialpage/WantedQueryPage.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Specials\\Contribute\\Card\\ContributeCard' => __DIR__ . '/includes/specials/Contribute/Card/ContributeCard.php',
|
|
|
|
|
'MediaWiki\\Specials\\Contribute\\Card\\ContributeCardAction' => __DIR__ . '/includes/specials/Contribute/Card/ContributeCardAction.php',
|
|
|
|
|
'MediaWiki\\Specials\\Contribute\\Card\\ContributeCardActionLink' => __DIR__ . '/includes/specials/Contribute/Card/ContributeCardActionLink.php',
|
|
|
|
|
'MediaWiki\\Specials\\Contribute\\ContributeFactory' => __DIR__ . '/includes/specials/Contribute/ContributeFactory.php',
|
|
|
|
|
'MediaWiki\\Specials\\Contribute\\Hook\\ContributeCardsHook' => __DIR__ . '/includes/specials/Contribute/Hook/ContributeCardsHook.php',
|
2023-05-21 07:54:36 +00:00
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialAllMyUploads' => __DIR__ . '/includes/specials/redirects/SpecialAllMyUploads.php',
|
2023-05-03 19:50:13 +00:00
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialListAdmins' => __DIR__ . '/includes/specials/redirects/SpecialListAdmins.php',
|
|
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialListBots' => __DIR__ . '/includes/specials/redirects/SpecialListBots.php',
|
2023-05-21 07:54:36 +00:00
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialMycontributions' => __DIR__ . '/includes/specials/redirects/SpecialMycontributions.php',
|
|
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialMylog' => __DIR__ . '/includes/specials/redirects/SpecialMylog.php',
|
|
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialMypage' => __DIR__ . '/includes/specials/redirects/SpecialMypage.php',
|
|
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialMytalk' => __DIR__ . '/includes/specials/redirects/SpecialMytalk.php',
|
|
|
|
|
'MediaWiki\\Specials\\Redirects\\SpecialMyuploads' => __DIR__ . '/includes/specials/redirects/SpecialMyuploads.php',
|
2023-03-17 00:35:23 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialActiveUsers' => __DIR__ . '/includes/specials/SpecialActiveUsers.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialAllMessages' => __DIR__ . '/includes/specials/SpecialAllMessages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialAllPages' => __DIR__ . '/includes/specials/SpecialAllPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialAncientPages' => __DIR__ . '/includes/specials/SpecialAncientPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialApiHelp' => __DIR__ . '/includes/specials/SpecialApiHelp.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialApiSandbox' => __DIR__ . '/includes/specials/SpecialApiSandbox.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialAutoblockList' => __DIR__ . '/includes/specials/SpecialAutoblockList.php',
|
2023-03-17 14:37:51 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialBlankpage' => __DIR__ . '/includes/specials/SpecialBlankpage.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialBlock' => __DIR__ . '/includes/specials/SpecialBlock.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialBlockList' => __DIR__ . '/includes/specials/SpecialBlockList.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialBookSources' => __DIR__ . '/includes/specials/SpecialBookSources.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialBotPasswords' => __DIR__ . '/includes/specials/SpecialBotPasswords.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialBrokenRedirects' => __DIR__ . '/includes/specials/SpecialBrokenRedirects.php',
|
2023-03-17 15:04:04 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialCategories' => __DIR__ . '/includes/specials/SpecialCategories.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialChangeContentModel' => __DIR__ . '/includes/specials/SpecialChangeContentModel.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialChangeCredentials' => __DIR__ . '/includes/specials/SpecialChangeCredentials.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialChangeEmail' => __DIR__ . '/includes/specials/SpecialChangeEmail.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialChangePassword' => __DIR__ . '/includes/specials/SpecialChangePassword.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialComparePages' => __DIR__ . '/includes/specials/SpecialComparePages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialConfirmEmail' => __DIR__ . '/includes/specials/SpecialConfirmEmail.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialContribute' => __DIR__ . '/includes/specials/SpecialContribute.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialContributions' => __DIR__ . '/includes/specials/SpecialContributions.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialCreateAccount' => __DIR__ . '/includes/specials/SpecialCreateAccount.php',
|
2023-04-03 18:41:41 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialDeadendPages' => __DIR__ . '/includes/specials/SpecialDeadendPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialDeletePage' => __DIR__ . '/includes/specials/SpecialDeletePage.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialDeletedContributions' => __DIR__ . '/includes/specials/SpecialDeletedContributions.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialDiff' => __DIR__ . '/includes/specials/SpecialDiff.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialDoubleRedirects' => __DIR__ . '/includes/specials/SpecialDoubleRedirects.php',
|
2023-05-02 20:33:19 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialEditPage' => __DIR__ . '/includes/specials/SpecialEditPage.php',
|
2023-11-09 06:45:31 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialEditRecovery' => __DIR__ . '/includes/specials/SpecialEditRecovery.php',
|
2023-05-02 20:33:19 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialEditTags' => __DIR__ . '/includes/specials/SpecialEditTags.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialEditWatchlist' => __DIR__ . '/includes/specials/SpecialEditWatchlist.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialEmailInvalidate' => __DIR__ . '/includes/specials/SpecialEmailInvalidate.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialEmailUser' => __DIR__ . '/includes/specials/SpecialEmailUser.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialExpandTemplates' => __DIR__ . '/includes/specials/SpecialExpandTemplates.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialExport' => __DIR__ . '/includes/specials/SpecialExport.php',
|
2023-05-02 20:44:21 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialFewestRevisions' => __DIR__ . '/includes/specials/SpecialFewestRevisions.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialFileDuplicateSearch' => __DIR__ . '/includes/specials/SpecialFileDuplicateSearch.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialFilepath' => __DIR__ . '/includes/specials/SpecialFilepath.php',
|
2023-05-02 20:46:13 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialGoToInterwiki' => __DIR__ . '/includes/specials/SpecialGoToInterwiki.php',
|
2023-08-11 18:50:40 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialIframeError' => __DIR__ . '/includes/specials/SpecialIframeError.php',
|
2023-05-03 19:29:46 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialImport' => __DIR__ . '/includes/specials/SpecialImport.php',
|
2023-05-03 19:32:08 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialJavaScriptTest' => __DIR__ . '/includes/specials/SpecialJavaScriptTest.php',
|
2023-05-03 19:50:13 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialLinkAccounts' => __DIR__ . '/includes/specials/SpecialLinkAccounts.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialLinkSearch' => __DIR__ . '/includes/specials/SpecialLinkSearch.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialListDuplicatedFiles' => __DIR__ . '/includes/specials/SpecialListDuplicatedFiles.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialListFiles' => __DIR__ . '/includes/specials/SpecialListFiles.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialListGrants' => __DIR__ . '/includes/specials/SpecialListGrants.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialListGroupRights' => __DIR__ . '/includes/specials/SpecialListGroupRights.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialListRedirects' => __DIR__ . '/includes/specials/SpecialListRedirects.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialListUsers' => __DIR__ . '/includes/specials/SpecialListUsers.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialLockdb' => __DIR__ . '/includes/specials/SpecialLockdb.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialLog' => __DIR__ . '/includes/specials/SpecialLog.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialLonelyPages' => __DIR__ . '/includes/specials/SpecialLonelyPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialLongPages' => __DIR__ . '/includes/specials/SpecialLongPages.php',
|
2023-05-21 07:41:26 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialMIMESearch' => __DIR__ . '/includes/specials/SpecialMIMESearch.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMediaStatistics' => __DIR__ . '/includes/specials/SpecialMediaStatistics.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMergeHistory' => __DIR__ . '/includes/specials/SpecialMergeHistory.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMostCategories' => __DIR__ . '/includes/specials/SpecialMostCategories.php',
|
2023-03-16 17:08:32 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialMostImages' => __DIR__ . '/includes/specials/SpecialMostImages.php',
|
2023-05-21 07:41:26 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialMostInterwikis' => __DIR__ . '/includes/specials/SpecialMostInterwikis.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMostLinked' => __DIR__ . '/includes/specials/SpecialMostLinked.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMostLinkedCategories' => __DIR__ . '/includes/specials/SpecialMostLinkedCategories.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMostLinkedTemplates' => __DIR__ . '/includes/specials/SpecialMostLinkedTemplates.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMostRevisions' => __DIR__ . '/includes/specials/SpecialMostRevisions.php',
|
2023-03-16 17:10:56 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialMovePage' => __DIR__ . '/includes/specials/SpecialMovePage.php',
|
2023-05-21 07:41:26 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialMute' => __DIR__ . '/includes/specials/SpecialMute.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialMyLanguage' => __DIR__ . '/includes/specials/SpecialMyLanguage.php',
|
2023-09-13 10:31:13 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialNewFiles' => __DIR__ . '/includes/specials/SpecialNewFiles.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialNewPages' => __DIR__ . '/includes/specials/SpecialNewPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialNewSection' => __DIR__ . '/includes/specials/SpecialNewSection.php',
|
2023-09-13 11:10:05 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialPageData' => __DIR__ . '/includes/specials/SpecialPageData.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPageHistory' => __DIR__ . '/includes/specials/SpecialPageHistory.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPageInfo' => __DIR__ . '/includes/specials/SpecialPageInfo.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPageLanguage' => __DIR__ . '/includes/specials/SpecialPageLanguage.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPagesWithProp' => __DIR__ . '/includes/specials/SpecialPagesWithProp.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPasswordPolicies' => __DIR__ . '/includes/specials/SpecialPasswordPolicies.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPasswordReset' => __DIR__ . '/includes/specials/SpecialPasswordReset.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPermanentLink' => __DIR__ . '/includes/specials/SpecialPermanentLink.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPreferences' => __DIR__ . '/includes/specials/SpecialPreferences.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPrefixIndex' => __DIR__ . '/includes/specials/SpecialPrefixIndex.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialProtectPage' => __DIR__ . '/includes/specials/SpecialProtectPage.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialProtectedPages' => __DIR__ . '/includes/specials/SpecialProtectedPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialProtectedTitles' => __DIR__ . '/includes/specials/SpecialProtectedTitles.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialPurge' => __DIR__ . '/includes/specials/SpecialPurge.php',
|
2023-09-13 13:25:15 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialRandomInCategory' => __DIR__ . '/includes/specials/SpecialRandomInCategory.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRandomPage' => __DIR__ . '/includes/specials/SpecialRandomPage.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRandomRedirect' => __DIR__ . '/includes/specials/SpecialRandomRedirect.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRandomRootPage' => __DIR__ . '/includes/specials/SpecialRandomRootPage.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRecentChanges' => __DIR__ . '/includes/specials/SpecialRecentChanges.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRecentChangesLinked' => __DIR__ . '/includes/specials/SpecialRecentChangesLinked.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRedirect' => __DIR__ . '/includes/specials/SpecialRedirect.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRemoveCredentials' => __DIR__ . '/includes/specials/SpecialRemoveCredentials.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRenameUser' => __DIR__ . '/includes/specials/SpecialRenameUser.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialResetTokens' => __DIR__ . '/includes/specials/SpecialResetTokens.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRevisionDelete' => __DIR__ . '/includes/specials/SpecialRevisionDelete.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialRunJobs' => __DIR__ . '/includes/specials/SpecialRunJobs.php',
|
2023-09-13 13:42:58 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialSearch' => __DIR__ . '/includes/specials/SpecialSearch.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialShortPages' => __DIR__ . '/includes/specials/SpecialShortPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialSpecialPages' => __DIR__ . '/includes/specials/SpecialSpecialPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialStatistics' => __DIR__ . '/includes/specials/SpecialStatistics.php',
|
2023-09-13 13:47:20 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialTags' => __DIR__ . '/includes/specials/SpecialTags.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialTrackingCategories' => __DIR__ . '/includes/specials/SpecialTrackingCategories.php',
|
2023-09-13 16:09:30 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialUnblock' => __DIR__ . '/includes/specials/SpecialUnblock.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUncategorizedCategories' => __DIR__ . '/includes/specials/SpecialUncategorizedCategories.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUncategorizedImages' => __DIR__ . '/includes/specials/SpecialUncategorizedImages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUncategorizedPages' => __DIR__ . '/includes/specials/SpecialUncategorizedPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUncategorizedTemplates' => __DIR__ . '/includes/specials/SpecialUncategorizedTemplates.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUndelete' => __DIR__ . '/includes/specials/SpecialUndelete.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUnlinkAccounts' => __DIR__ . '/includes/specials/SpecialUnlinkAccounts.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUnlockdb' => __DIR__ . '/includes/specials/SpecialUnlockdb.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUnusedCategories' => __DIR__ . '/includes/specials/SpecialUnusedCategories.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUnusedImages' => __DIR__ . '/includes/specials/SpecialUnusedImages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUnusedTemplates' => __DIR__ . '/includes/specials/SpecialUnusedTemplates.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUnwatchedPages' => __DIR__ . '/includes/specials/SpecialUnwatchedPages.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUpload' => __DIR__ . '/includes/specials/SpecialUpload.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUploadStash' => __DIR__ . '/includes/specials/SpecialUploadStash.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUserLogin' => __DIR__ . '/includes/specials/SpecialUserLogin.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialUserLogout' => __DIR__ . '/includes/specials/SpecialUserLogout.php',
|
2023-03-16 17:16:18 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialUserRights' => __DIR__ . '/includes/specials/SpecialUserRights.php',
|
2023-09-14 11:14:36 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialVersion' => __DIR__ . '/includes/specials/SpecialVersion.php',
|
2023-09-14 11:29:42 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialWantedCategories' => __DIR__ . '/includes/specials/SpecialWantedCategories.php',
|
2023-03-17 00:18:18 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialWantedFiles' => __DIR__ . '/includes/specials/SpecialWantedFiles.php',
|
2023-03-17 00:20:16 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialWantedPages' => __DIR__ . '/includes/specials/SpecialWantedPages.php',
|
2023-09-14 11:29:42 +00:00
|
|
|
'MediaWiki\\Specials\\SpecialWantedTemplates' => __DIR__ . '/includes/specials/SpecialWantedTemplates.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialWatchlist' => __DIR__ . '/includes/specials/SpecialWatchlist.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialWhatLinksHere' => __DIR__ . '/includes/specials/SpecialWhatLinksHere.php',
|
|
|
|
|
'MediaWiki\\Specials\\SpecialWithoutInterwiki' => __DIR__ . '/includes/specials/SpecialWithoutInterwiki.php',
|
2023-08-25 12:29:41 +00:00
|
|
|
'MediaWiki\\Status\\Status' => __DIR__ . '/includes/Status/Status.php',
|
2023-09-25 13:32:24 +00:00
|
|
|
'MediaWiki\\Status\\StatusFormatter' => __DIR__ . '/includes/Status/StatusFormatter.php',
|
When content is marked bad, show an error, don't pretend it is empty
It misrepresents the users contribution to show empty text for a
revision when in fact the revision contained some text which we later
lost.
Also, errors from SqlBlobStore::fetchBlobs() did not stop a cache entry
from being written, so a subsequent cache hit would show the bad
revision as empty.
So, in Storage:
* Add BadBlobException, which is thrown by the Storage layer to
indicate that a revision is marked as bad.
* Have SqlBlobStore::getBlobStore() return an error for bad blobs
instead of an empty string.
* Duplicate the check for flags=error into SqlBlobStore::expandBlob().
This avoids an unnecessary cache fetch, and avoids making
decompressData() throw on error, which would be a b/c break.
* In SqlBlobStore::getBlob(), suppress the cache when there was an
error.
In Revision:
* Add BadRevisionException, to wrap BadBlobException in the Revision
layer.
* Return null from RevisionRecord::getContent() on a broader set of
errors. Make it mostly non-throwing.
* Add RevisionRecord::getContentOrThrow() which returns a non-nullable
Content.
* Note that SlotRecord::getContent() returns a non-nullable Content so
now throws in more cases.
In the UI:
* In Article::view(), catch the exception and show an error message.
* In DifferenceEngine, catch the exception and make a suitable error
message available via getRevisionLoadErrors(). In the diff page, show
the error message in a box.
* In ApiComparePages and the legacy rvdiffto, show a warning.
* In RawAction, show a 404 by analogy with other error cases.
* In EditPage, there was already handling for $content=null with an
appropriate error message (missing-revision-content). But having
$this->textbox1 = null caused PHP 8.1 deprecation warnings, so I fixed
that.
* In EditPage undo, there was already handling for null content, but I
improved the error message: "does not exist or was deleted" seems more
appropriate than "conflicting intermediate edits".
Change-Id: Idd1278d6d756ef37d64addb7b5f3be30747ea603
2022-11-29 03:38:29 +00:00
|
|
|
'MediaWiki\\Storage\\BadBlobException' => __DIR__ . '/includes/Storage/BadBlobException.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Storage\\BlobAccessException' => __DIR__ . '/includes/Storage/BlobAccessException.php',
|
|
|
|
|
'MediaWiki\\Storage\\BlobStore' => __DIR__ . '/includes/Storage/BlobStore.php',
|
|
|
|
|
'MediaWiki\\Storage\\BlobStoreFactory' => __DIR__ . '/includes/Storage/BlobStoreFactory.php',
|
|
|
|
|
'MediaWiki\\Storage\\DerivedPageDataUpdater' => __DIR__ . '/includes/Storage/DerivedPageDataUpdater.php',
|
|
|
|
|
'MediaWiki\\Storage\\EditResult' => __DIR__ . '/includes/Storage/EditResult.php',
|
|
|
|
|
'MediaWiki\\Storage\\EditResultBuilder' => __DIR__ . '/includes/Storage/EditResultBuilder.php',
|
|
|
|
|
'MediaWiki\\Storage\\EditResultCache' => __DIR__ . '/includes/Storage/EditResultCache.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\ArticleEditUpdateNewTalkHook' => __DIR__ . '/includes/Storage/Hook/ArticleEditUpdateNewTalkHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\ArticlePrepareTextForEditHook' => __DIR__ . '/includes/Storage/Hook/ArticlePrepareTextForEditHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\BeforeRevertedTagUpdateHook' => __DIR__ . '/includes/Storage/Hook/BeforeRevertedTagUpdateHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\MultiContentSaveHook' => __DIR__ . '/includes/Storage/Hook/MultiContentSaveHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\PageContentSaveHook' => __DIR__ . '/includes/Storage/Hook/PageContentSaveHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\PageSaveCompleteHook' => __DIR__ . '/includes/Storage/Hook/PageSaveCompleteHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\ParserOutputStashForEditHook' => __DIR__ . '/includes/Storage/Hook/ParserOutputStashForEditHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\Hook\\RevisionDataUpdatesHook' => __DIR__ . '/includes/Storage/Hook/RevisionDataUpdatesHook.php',
|
|
|
|
|
'MediaWiki\\Storage\\NameTableAccessException' => __DIR__ . '/includes/Storage/NameTableAccessException.php',
|
|
|
|
|
'MediaWiki\\Storage\\NameTableStore' => __DIR__ . '/includes/Storage/NameTableStore.php',
|
|
|
|
|
'MediaWiki\\Storage\\NameTableStoreFactory' => __DIR__ . '/includes/Storage/NameTableStoreFactory.php',
|
|
|
|
|
'MediaWiki\\Storage\\PageEditStash' => __DIR__ . '/includes/Storage/PageEditStash.php',
|
|
|
|
|
'MediaWiki\\Storage\\PageUpdateException' => __DIR__ . '/includes/Storage/PageUpdateException.php',
|
2022-11-14 20:08:12 +00:00
|
|
|
'MediaWiki\\Storage\\PageUpdateStatus' => __DIR__ . '/includes/Storage/PageUpdateStatus.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Storage\\PageUpdater' => __DIR__ . '/includes/Storage/PageUpdater.php',
|
|
|
|
|
'MediaWiki\\Storage\\PageUpdaterFactory' => __DIR__ . '/includes/Storage/PageUpdaterFactory.php',
|
|
|
|
|
'MediaWiki\\Storage\\PreparedUpdate' => __DIR__ . '/includes/Storage/PreparedUpdate.php',
|
|
|
|
|
'MediaWiki\\Storage\\RevertedTagUpdate' => __DIR__ . '/includes/Storage/RevertedTagUpdate.php',
|
|
|
|
|
'MediaWiki\\Storage\\RevertedTagUpdateManager' => __DIR__ . '/includes/Storage/RevertedTagUpdateManager.php',
|
|
|
|
|
'MediaWiki\\Storage\\RevisionSlotsUpdate' => __DIR__ . '/includes/Storage/RevisionSlotsUpdate.php',
|
|
|
|
|
'MediaWiki\\Storage\\SqlBlobStore' => __DIR__ . '/includes/Storage/SqlBlobStore.php',
|
|
|
|
|
'MediaWiki\\StubObject\\DeprecatedGlobal' => __DIR__ . '/includes/StubObject/DeprecatedGlobal.php',
|
|
|
|
|
'MediaWiki\\StubObject\\StubGlobalUser' => __DIR__ . '/includes/StubObject/StubGlobalUser.php',
|
|
|
|
|
'MediaWiki\\StubObject\\StubObject' => __DIR__ . '/includes/StubObject/StubObject.php',
|
|
|
|
|
'MediaWiki\\StubObject\\StubUserLang' => __DIR__ . '/includes/StubObject/StubUserLang.php',
|
|
|
|
|
'MediaWiki\\Tidy\\RemexCompatBuilder' => __DIR__ . '/includes/tidy/RemexCompatBuilder.php',
|
|
|
|
|
'MediaWiki\\Tidy\\RemexCompatFormatter' => __DIR__ . '/includes/tidy/RemexCompatFormatter.php',
|
|
|
|
|
'MediaWiki\\Tidy\\RemexCompatMunger' => __DIR__ . '/includes/tidy/RemexCompatMunger.php',
|
|
|
|
|
'MediaWiki\\Tidy\\RemexDriver' => __DIR__ . '/includes/tidy/RemexDriver.php',
|
|
|
|
|
'MediaWiki\\Tidy\\RemexMungerData' => __DIR__ . '/includes/tidy/RemexMungerData.php',
|
|
|
|
|
'MediaWiki\\Tidy\\TidyDriverBase' => __DIR__ . '/includes/tidy/TidyDriverBase.php',
|
2023-09-18 15:00:50 +00:00
|
|
|
'MediaWiki\\Title\\ForeignTitle' => __DIR__ . '/includes/title/ForeignTitle.php',
|
|
|
|
|
'MediaWiki\\Title\\ForeignTitleFactory' => __DIR__ . '/includes/title/ForeignTitleFactory.php',
|
|
|
|
|
'MediaWiki\\Title\\ImportTitleFactory' => __DIR__ . '/includes/title/ImportTitleFactory.php',
|
|
|
|
|
'MediaWiki\\Title\\MalformedTitleException' => __DIR__ . '/includes/title/MalformedTitleException.php',
|
|
|
|
|
'MediaWiki\\Title\\MediaWikiTitleCodec' => __DIR__ . '/includes/title/MediaWikiTitleCodec.php',
|
|
|
|
|
'MediaWiki\\Title\\NaiveForeignTitleFactory' => __DIR__ . '/includes/title/NaiveForeignTitleFactory.php',
|
|
|
|
|
'MediaWiki\\Title\\NaiveImportTitleFactory' => __DIR__ . '/includes/title/NaiveImportTitleFactory.php',
|
|
|
|
|
'MediaWiki\\Title\\NamespaceAwareForeignTitleFactory' => __DIR__ . '/includes/title/NamespaceAwareForeignTitleFactory.php',
|
|
|
|
|
'MediaWiki\\Title\\NamespaceImportTitleFactory' => __DIR__ . '/includes/title/NamespaceImportTitleFactory.php',
|
2023-09-18 14:17:28 +00:00
|
|
|
'MediaWiki\\Title\\NamespaceInfo' => __DIR__ . '/includes/title/NamespaceInfo.php',
|
2023-09-18 15:00:50 +00:00
|
|
|
'MediaWiki\\Title\\SubpageImportTitleFactory' => __DIR__ . '/includes/title/SubpageImportTitleFactory.php',
|
2023-03-01 20:33:26 +00:00
|
|
|
'MediaWiki\\Title\\Title' => __DIR__ . '/includes/title/Title.php',
|
2022-11-26 01:15:16 +00:00
|
|
|
'MediaWiki\\Title\\TitleArrayFromResult' => __DIR__ . '/includes/title/TitleArrayFromResult.php',
|
|
|
|
|
'MediaWiki\\Title\\TitleFactory' => __DIR__ . '/includes/title/TitleFactory.php',
|
2023-09-18 14:26:53 +00:00
|
|
|
'MediaWiki\\Title\\TitleFormatter' => __DIR__ . '/includes/title/TitleFormatter.php',
|
2023-09-18 14:35:57 +00:00
|
|
|
'MediaWiki\\Title\\TitleParser' => __DIR__ . '/includes/title/TitleParser.php',
|
2023-09-18 13:56:39 +00:00
|
|
|
'MediaWiki\\Title\\TitleValue' => __DIR__ . '/includes/title/TitleValue.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\ActorCache' => __DIR__ . '/includes/user/ActorCache.php',
|
2022-12-16 11:41:52 +00:00
|
|
|
'MediaWiki\\User\\ActorMigration' => __DIR__ . '/includes/user/ActorMigration.php',
|
|
|
|
|
'MediaWiki\\User\\ActorMigrationBase' => __DIR__ . '/includes/user/ActorMigrationBase.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\ActorNormalization' => __DIR__ . '/includes/user/ActorNormalization.php',
|
|
|
|
|
'MediaWiki\\User\\ActorStore' => __DIR__ . '/includes/user/ActorStore.php',
|
|
|
|
|
'MediaWiki\\User\\ActorStoreFactory' => __DIR__ . '/includes/user/ActorStoreFactory.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\BotPassword' => __DIR__ . '/includes/user/BotPassword.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\BotPasswordStore' => __DIR__ . '/includes/user/BotPasswordStore.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\CentralId\\CentralIdLookup' => __DIR__ . '/includes/user/CentralId/CentralIdLookup.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\CentralId\\CentralIdLookupFactory' => __DIR__ . '/includes/user/CentralId/CentralIdLookupFactory.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\CentralId\\LocalIdLookup' => __DIR__ . '/includes/user/CentralId/LocalIdLookup.php',
|
2023-11-29 10:21:43 +00:00
|
|
|
'MediaWiki\\User\\DefaultOptionsLookup' => __DIR__ . '/includes/user/Options/DefaultOptionsLookup.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\ExternalUserNames' => __DIR__ . '/includes/user/ExternalUserNames.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\Hook\\AutopromoteConditionHook' => __DIR__ . '/includes/user/Hook/AutopromoteConditionHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\ConfirmEmailCompleteHook' => __DIR__ . '/includes/user/Hook/ConfirmEmailCompleteHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\EmailConfirmedHook' => __DIR__ . '/includes/user/Hook/EmailConfirmedHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\GetAutoPromoteGroupsHook' => __DIR__ . '/includes/user/Hook/GetAutoPromoteGroupsHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\InvalidateEmailCompleteHook' => __DIR__ . '/includes/user/Hook/InvalidateEmailCompleteHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\IsValidPasswordHook' => __DIR__ . '/includes/user/Hook/IsValidPasswordHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\PingLimiterHook' => __DIR__ . '/includes/user/Hook/PingLimiterHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\SpecialPasswordResetOnSubmitHook' => __DIR__ . '/includes/user/Hook/SpecialPasswordResetOnSubmitHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserAddGroupHook' => __DIR__ . '/includes/user/Hook/UserAddGroupHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserArrayFromResultHook' => __DIR__ . '/includes/user/Hook/UserArrayFromResultHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserCanSendEmailHook' => __DIR__ . '/includes/user/Hook/UserCanSendEmailHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserClearNewTalkNotificationHook' => __DIR__ . '/includes/user/Hook/UserClearNewTalkNotificationHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserEffectiveGroupsHook' => __DIR__ . '/includes/user/Hook/UserEffectiveGroupsHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserGetDefaultOptionsHook' => __DIR__ . '/includes/user/Hook/UserGetDefaultOptionsHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserGetEmailAuthenticationTimestampHook' => __DIR__ . '/includes/user/Hook/UserGetEmailAuthenticationTimestampHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserGetEmailHook' => __DIR__ . '/includes/user/Hook/UserGetEmailHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserGetReservedNamesHook' => __DIR__ . '/includes/user/Hook/UserGetReservedNamesHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserGroupsChangedHook' => __DIR__ . '/includes/user/Hook/UserGroupsChangedHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserIsBlockedGloballyHook' => __DIR__ . '/includes/user/Hook/UserIsBlockedGloballyHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserIsBotHook' => __DIR__ . '/includes/user/Hook/UserIsBotHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserIsLockedHook' => __DIR__ . '/includes/user/Hook/UserIsLockedHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserLoadAfterLoadFromSessionHook' => __DIR__ . '/includes/user/Hook/UserLoadAfterLoadFromSessionHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserLoadDefaultsHook' => __DIR__ . '/includes/user/Hook/UserLoadDefaultsHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserLogoutHook' => __DIR__ . '/includes/user/Hook/UserLogoutHook.php',
|
2019-01-07 08:01:00 +00:00
|
|
|
'MediaWiki\\User\\Hook\\UserPrivilegedGroupsHook' => __DIR__ . '/includes/user/Hook/UserPrivilegedGroupsHook.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\Hook\\UserRemoveGroupHook' => __DIR__ . '/includes/user/Hook/UserRemoveGroupHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserSaveSettingsHook' => __DIR__ . '/includes/user/Hook/UserSaveSettingsHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserSendConfirmationMailHook' => __DIR__ . '/includes/user/Hook/UserSendConfirmationMailHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserSetEmailAuthenticationTimestampHook' => __DIR__ . '/includes/user/Hook/UserSetEmailAuthenticationTimestampHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\UserSetEmailHook' => __DIR__ . '/includes/user/Hook/UserSetEmailHook.php',
|
|
|
|
|
'MediaWiki\\User\\Hook\\User__mailPasswordInternalHook' => __DIR__ . '/includes/user/Hook/User__mailPasswordInternalHook.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\LoggedOutEditToken' => __DIR__ . '/includes/user/LoggedOutEditToken.php',
|
2023-11-29 10:21:43 +00:00
|
|
|
'MediaWiki\\User\\Options\\DefaultOptionsLookup' => __DIR__ . '/includes/user/Options/DefaultOptionsLookup.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\Options\\Hook\\LoadUserOptionsHook' => __DIR__ . '/includes/user/Options/Hook/LoadUserOptionsHook.php',
|
|
|
|
|
'MediaWiki\\User\\Options\\Hook\\SaveUserOptionsHook' => __DIR__ . '/includes/user/Options/Hook/SaveUserOptionsHook.php',
|
2023-11-29 17:51:46 +00:00
|
|
|
'MediaWiki\\User\\Options\\StaticUserOptionsLookup' => __DIR__ . '/includes/user/Options/StaticUserOptionsLookup.php',
|
2023-11-29 10:21:43 +00:00
|
|
|
'MediaWiki\\User\\Options\\UserOptionsLookup' => __DIR__ . '/includes/user/Options/UserOptionsLookup.php',
|
|
|
|
|
'MediaWiki\\User\\Options\\UserOptionsManager' => __DIR__ . '/includes/user/Options/UserOptionsManager.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\PasswordReset' => __DIR__ . '/includes/user/PasswordReset.php',
|
2023-09-14 10:18:56 +00:00
|
|
|
'MediaWiki\\User\\Registration\\IUserRegistrationProvider' => __DIR__ . '/includes/user/Registration/IUserRegistrationProvider.php',
|
|
|
|
|
'MediaWiki\\User\\Registration\\LocalUserRegistrationProvider' => __DIR__ . '/includes/user/Registration/LocalUserRegistrationProvider.php',
|
|
|
|
|
'MediaWiki\\User\\Registration\\UserRegistrationLookup' => __DIR__ . '/includes/user/Registration/UserRegistrationLookup.php',
|
2023-11-29 17:51:46 +00:00
|
|
|
'MediaWiki\\User\\StaticUserOptionsLookup' => __DIR__ . '/includes/user/Options/StaticUserOptionsLookup.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\TalkPageNotificationManager' => __DIR__ . '/includes/user/TalkPageNotificationManager.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\CreateStatus' => __DIR__ . '/includes/user/TempUser/CreateStatus.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\DBSerialProvider' => __DIR__ . '/includes/user/TempUser/DBSerialProvider.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\FilteredRadixSerialMapping' => __DIR__ . '/includes/user/TempUser/FilteredRadixSerialMapping.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\LocalSerialProvider' => __DIR__ . '/includes/user/TempUser/LocalSerialProvider.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\LocalizedNumericSerialMapping' => __DIR__ . '/includes/user/TempUser/LocalizedNumericSerialMapping.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\Pattern' => __DIR__ . '/includes/user/TempUser/Pattern.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\PlainNumericSerialMapping' => __DIR__ . '/includes/user/TempUser/PlainNumericSerialMapping.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\RealTempUserConfig' => __DIR__ . '/includes/user/TempUser/RealTempUserConfig.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\ScrambleMapping' => __DIR__ . '/includes/user/TempUser/ScrambleMapping.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\SerialMapping' => __DIR__ . '/includes/user/TempUser/SerialMapping.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\SerialProvider' => __DIR__ . '/includes/user/TempUser/SerialProvider.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\TempUserConfig' => __DIR__ . '/includes/user/TempUser/TempUserConfig.php',
|
|
|
|
|
'MediaWiki\\User\\TempUser\\TempUserCreator' => __DIR__ . '/includes/user/TempUser/TempUserCreator.php',
|
2023-09-19 12:13:45 +00:00
|
|
|
'MediaWiki\\User\\User' => __DIR__ . '/includes/user/User.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\UserArray' => __DIR__ . '/includes/user/UserArray.php',
|
|
|
|
|
'MediaWiki\\User\\UserArrayFromResult' => __DIR__ . '/includes/user/UserArrayFromResult.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\UserEditTracker' => __DIR__ . '/includes/user/UserEditTracker.php',
|
|
|
|
|
'MediaWiki\\User\\UserFactory' => __DIR__ . '/includes/user/UserFactory.php',
|
|
|
|
|
'MediaWiki\\User\\UserGroupManager' => __DIR__ . '/includes/user/UserGroupManager.php',
|
|
|
|
|
'MediaWiki\\User\\UserGroupManagerFactory' => __DIR__ . '/includes/user/UserGroupManagerFactory.php',
|
2023-09-19 16:42:44 +00:00
|
|
|
'MediaWiki\\User\\UserGroupMembership' => __DIR__ . '/includes/user/UserGroupMembership.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\UserIdentity' => __DIR__ . '/includes/user/UserIdentity.php',
|
|
|
|
|
'MediaWiki\\User\\UserIdentityLookup' => __DIR__ . '/includes/user/UserIdentityLookup.php',
|
2023-07-18 04:00:49 +00:00
|
|
|
'MediaWiki\\User\\UserIdentityUtils' => __DIR__ . '/includes/user/UserIdentityUtils.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\UserIdentityValue' => __DIR__ . '/includes/user/UserIdentityValue.php',
|
|
|
|
|
'MediaWiki\\User\\UserNamePrefixSearch' => __DIR__ . '/includes/user/UserNamePrefixSearch.php',
|
|
|
|
|
'MediaWiki\\User\\UserNameUtils' => __DIR__ . '/includes/user/UserNameUtils.php',
|
2023-11-29 10:21:43 +00:00
|
|
|
'MediaWiki\\User\\UserOptionsLookup' => __DIR__ . '/includes/user/Options/UserOptionsLookup.php',
|
|
|
|
|
'MediaWiki\\User\\UserOptionsManager' => __DIR__ . '/includes/user/Options/UserOptionsManager.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\User\\UserRigorOptions' => __DIR__ . '/includes/user/UserRigorOptions.php',
|
|
|
|
|
'MediaWiki\\User\\UserSelectQueryBuilder' => __DIR__ . '/includes/user/UserSelectQueryBuilder.php',
|
|
|
|
|
'MediaWiki\\User\\UserTimeCorrection' => __DIR__ . '/includes/user/UserTimeCorrection.php',
|
2023-08-19 09:15:34 +00:00
|
|
|
'MediaWiki\\Utils\\ExtensionInfo' => __DIR__ . '/includes/utils/ExtensionInfo.php',
|
2023-08-21 16:23:23 +00:00
|
|
|
'MediaWiki\\Utils\\GitInfo' => __DIR__ . '/includes/utils/GitInfo.php',
|
2023-08-19 03:35:06 +00:00
|
|
|
'MediaWiki\\Utils\\MWTimestamp' => __DIR__ . '/includes/utils/MWTimestamp.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Utils\\UrlUtils' => __DIR__ . '/includes/utils/UrlUtils.php',
|
2021-03-26 22:24:43 +00:00
|
|
|
'MediaWiki\\Watchlist\\WatchlistManager' => __DIR__ . '/includes/watchlist/WatchlistManager.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Widget\\CheckMatrixWidget' => __DIR__ . '/includes/widget/CheckMatrixWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\ComplexNamespaceInputWidget' => __DIR__ . '/includes/widget/ComplexNamespaceInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\ComplexTitleInputWidget' => __DIR__ . '/includes/widget/ComplexTitleInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\DateInputWidget' => __DIR__ . '/includes/widget/DateInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\DateTimeInputWidget' => __DIR__ . '/includes/widget/DateTimeInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\ExpiryInputWidget' => __DIR__ . '/includes/widget/ExpiryInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\NamespaceInputWidget' => __DIR__ . '/includes/widget/NamespaceInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\NamespacesMultiselectWidget' => __DIR__ . '/includes/widget/NamespacesMultiselectWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\PendingTextInputWidget' => __DIR__ . '/includes/widget/PendingTextInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\SearchInputWidget' => __DIR__ . '/includes/widget/SearchInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\SelectWithInputWidget' => __DIR__ . '/includes/widget/SelectWithInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\SizeFilterWidget' => __DIR__ . '/includes/widget/SizeFilterWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\SpinnerWidget' => __DIR__ . '/includes/widget/SpinnerWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\TagMultiselectWidget' => __DIR__ . '/includes/widget/TagMultiselectWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\TitleInputWidget' => __DIR__ . '/includes/widget/TitleInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\TitlesMultiselectWidget' => __DIR__ . '/includes/widget/TitlesMultiselectWidget.php',
|
2023-05-10 16:24:22 +00:00
|
|
|
'MediaWiki\\Widget\\ToggleSwitchWidget' => __DIR__ . '/includes/widget/ToggleSwitchWidget.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'MediaWiki\\Widget\\UserInputWidget' => __DIR__ . '/includes/widget/UserInputWidget.php',
|
|
|
|
|
'MediaWiki\\Widget\\UsersMultiselectWidget' => __DIR__ . '/includes/widget/UsersMultiselectWidget.php',
|
2023-02-23 20:44:38 +00:00
|
|
|
'MediaWiki\\WikiMap\\WikiMap' => __DIR__ . '/includes/WikiMap/WikiMap.php',
|
|
|
|
|
'MediaWiki\\WikiMap\\WikiReference' => __DIR__ . '/includes/WikiMap/WikiReference.php',
|
2023-11-24 10:51:22 +00:00
|
|
|
'Mediawiki\\OutputTransform\\ContentDOMTransformStage' => __DIR__ . '/includes/OutputTransform/ContentDOMTransformStage.php',
|
2023-10-20 13:21:53 +00:00
|
|
|
'Mediawiki\\OutputTransform\\ContentTextTransformStage' => __DIR__ . '/includes/OutputTransform/ContentTextTransformStage.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\DefaultOutputPipelineFactory' => __DIR__ . '/includes/OutputTransform/DefaultOutputPipelineFactory.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\OutputTransformPipeline' => __DIR__ . '/includes/OutputTransform/OutputTransformPipeline.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\OutputTransformStage' => __DIR__ . '/includes/OutputTransform/OutputTransformStage.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\AddRedirectHeader' => __DIR__ . '/includes/OutputTransform/Stages/AddRedirectHeader.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\AddWrapperDivClass' => __DIR__ . '/includes/OutputTransform/Stages/AddWrapperDivClass.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\DeduplicateStyles' => __DIR__ . '/includes/OutputTransform/Stages/DeduplicateStyles.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\ExpandToAbsoluteUrls' => __DIR__ . '/includes/OutputTransform/Stages/ExpandToAbsoluteUrls.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\ExtractBody' => __DIR__ . '/includes/OutputTransform/Stages/ExtractBody.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\HandleSectionLinks' => __DIR__ . '/includes/OutputTransform/Stages/HandleSectionLinks.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\HandleTOCMarkers' => __DIR__ . '/includes/OutputTransform/Stages/HandleTOCMarkers.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\HydrateHeaderPlaceholders' => __DIR__ . '/includes/OutputTransform/Stages/HydrateHeaderPlaceholders.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\PostCacheTransformHookRunner' => __DIR__ . '/includes/OutputTransform/Stages/PostCacheTransformHookRunner.php',
|
|
|
|
|
'Mediawiki\\OutputTransform\\Stages\\RenderDebugInfo' => __DIR__ . '/includes/OutputTransform/Stages/RenderDebugInfo.php',
|
2019-07-11 12:35:07 +00:00
|
|
|
'MediumSpecificBagOStuff' => __DIR__ . '/includes/libs/objectcache/MediumSpecificBagOStuff.php',
|
2016-09-30 12:47:26 +00:00
|
|
|
'MemcLockManager' => __DIR__ . '/includes/libs/lockmanager/MemcLockManager.php',
|
2015-10-24 21:54:10 +00:00
|
|
|
'MemcachedBagOStuff' => __DIR__ . '/includes/libs/objectcache/MemcachedBagOStuff.php',
|
2019-08-10 01:14:32 +00:00
|
|
|
'MemcachedClient' => __DIR__ . '/includes/libs/objectcache/utils/MemcachedClient.php',
|
2016-09-08 05:47:37 +00:00
|
|
|
'MemcachedPeclBagOStuff' => __DIR__ . '/includes/libs/objectcache/MemcachedPeclBagOStuff.php',
|
2015-10-24 21:54:10 +00:00
|
|
|
'MemcachedPhpBagOStuff' => __DIR__ . '/includes/libs/objectcache/MemcachedPhpBagOStuff.php',
|
2015-10-05 23:10:56 +00:00
|
|
|
'MemoizedCallable' => __DIR__ . '/includes/libs/MemoizedCallable.php',
|
2016-09-21 22:36:16 +00:00
|
|
|
'MemoryFileBackend' => __DIR__ . '/includes/libs/filebackend/MemoryFileBackend.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MergeHistory' => __DIR__ . '/includes/page/MergeHistory.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'MergeHistoryPager' => __DIR__ . '/includes/specials/pagers/MergeHistoryPager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MergeLogFormatter' => __DIR__ . '/includes/logging/MergeLogFormatter.php',
|
2023-04-05 18:17:38 +00:00
|
|
|
'MergeMessageFileList' => __DIR__ . '/maintenance/mergeMessageFileList.php',
|
2015-11-30 23:26:45 +00:00
|
|
|
'MergeableUpdate' => __DIR__ . '/includes/deferred/MergeableUpdate.php',
|
2019-06-13 21:02:36 +00:00
|
|
|
'Message' => __DIR__ . '/includes/language/Message.php',
|
2022-05-06 09:09:56 +00:00
|
|
|
'MessageBlobStore' => __DIR__ . '/includes/ResourceLoader/MessageBlobStore.php',
|
2022-06-22 22:18:27 +00:00
|
|
|
'MessageCache' => __DIR__ . '/includes/language/MessageCache.php',
|
2018-10-04 20:14:32 +00:00
|
|
|
'MessageCacheUpdate' => __DIR__ . '/includes/deferred/MessageCacheUpdate.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MessageContent' => __DIR__ . '/includes/content/MessageContent.php',
|
2019-06-13 21:02:36 +00:00
|
|
|
'MessageLocalizer' => __DIR__ . '/includes/language/MessageLocalizer.php',
|
2015-01-21 01:23:21 +00:00
|
|
|
'MessageSpecifier' => __DIR__ . '/includes/libs/MessageSpecifier.php',
|
2022-04-01 15:16:26 +00:00
|
|
|
'MetadataStorageHelper' => __DIR__ . '/includes/filerepo/file/MetadataStorageHelper.php',
|
2022-11-25 20:51:10 +00:00
|
|
|
'MigrateExternallinks' => __DIR__ . '/maintenance/migrateExternallinks.php',
|
2015-03-10 13:26:14 +00:00
|
|
|
'MigrateFileRepoLayout' => __DIR__ . '/maintenance/migrateFileRepoLayout.php',
|
2022-03-10 14:30:15 +00:00
|
|
|
'MigrateLinksTable' => __DIR__ . '/maintenance/migrateLinksTable.php',
|
2021-05-03 05:13:41 +00:00
|
|
|
'MigrateRevisionActorTemp' => __DIR__ . '/maintenance/migrateRevisionActorTemp.php',
|
2022-12-31 15:07:27 +00:00
|
|
|
'MigrateRevisionCommentTemp' => __DIR__ . '/maintenance/migrateRevisionCommentTemp.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MigrateUserGroup' => __DIR__ . '/maintenance/migrateUserGroup.php',
|
2016-09-22 04:57:13 +00:00
|
|
|
'MimeAnalyzer' => __DIR__ . '/includes/libs/mime/MimeAnalyzer.php',
|
2022-10-21 00:40:24 +00:00
|
|
|
'MissingExtensionException' => __DIR__ . '/includes/registration/MissingExtensionException.php',
|
2022-10-17 08:58:53 +00:00
|
|
|
'MostimagesPage' => __DIR__ . '/includes/specials/SpecialMostImages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MoveBatch' => __DIR__ . '/maintenance/moveBatch.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'MoveFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/MoveFileOp.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MoveLogFormatter' => __DIR__ . '/includes/logging/MoveLogFormatter.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'MovePage' => __DIR__ . '/includes/page/MovePage.php',
|
2022-10-17 08:58:53 +00:00
|
|
|
'MovePageForm' => __DIR__ . '/includes/specials/SpecialMovePage.php',
|
2022-11-20 22:23:34 +00:00
|
|
|
'MoveToExternal' => __DIR__ . '/maintenance/storage/moveToExternal.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MultiConfig' => __DIR__ . '/includes/config/MultiConfig.php',
|
2019-07-01 20:47:57 +00:00
|
|
|
'MultiHttpClient' => __DIR__ . '/includes/libs/http/MultiHttpClient.php',
|
2015-10-24 07:48:40 +00:00
|
|
|
'MultiWriteBagOStuff' => __DIR__ . '/includes/libs/objectcache/MultiWriteBagOStuff.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MutableConfig' => __DIR__ . '/includes/config/MutableConfig.php',
|
2014-07-21 09:13:23 +00:00
|
|
|
'MutableContext' => __DIR__ . '/includes/context/MutableContext.php',
|
2020-04-08 01:41:11 +00:00
|
|
|
'MwSql' => __DIR__ . '/maintenance/sql.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MysqlInstaller' => __DIR__ . '/includes/installer/MysqlInstaller.php',
|
2018-05-20 14:50:41 +00:00
|
|
|
'MysqlMaintenance' => __DIR__ . '/maintenance/mysql.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'MysqlUpdater' => __DIR__ . '/includes/installer/MysqlUpdater.php',
|
2014-12-10 11:24:47 +00:00
|
|
|
'NaiveForeignTitleFactory' => __DIR__ . '/includes/title/NaiveForeignTitleFactory.php',
|
|
|
|
|
'NaiveImportTitleFactory' => __DIR__ . '/includes/title/NaiveImportTitleFactory.php',
|
|
|
|
|
'NamespaceAwareForeignTitleFactory' => __DIR__ . '/includes/title/NamespaceAwareForeignTitleFactory.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'NamespaceDupes' => __DIR__ . '/maintenance/namespaceDupes.php',
|
2014-12-10 11:24:47 +00:00
|
|
|
'NamespaceImportTitleFactory' => __DIR__ . '/includes/title/NamespaceImportTitleFactory.php',
|
2018-08-05 08:36:32 +00:00
|
|
|
'NamespaceInfo' => __DIR__ . '/includes/title/NamespaceInfo.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'NewFilesPager' => __DIR__ . '/includes/specials/pagers/NewFilesPager.php',
|
|
|
|
|
'NewPagesPager' => __DIR__ . '/includes/specials/pagers/NewPagesPager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'NewUsersLogFormatter' => __DIR__ . '/includes/logging/NewUsersLogFormatter.php',
|
2017-03-20 13:18:22 +00:00
|
|
|
'NoWriteWatchedItemStore' => __DIR__ . '/includes/watcheditem/NoWriteWatchedItemStore.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'NolinesImageGallery' => __DIR__ . '/includes/gallery/NolinesImageGallery.php',
|
2016-10-04 17:56:35 +00:00
|
|
|
'NotRecursiveIterator' => __DIR__ . '/includes/libs/iterators/NotRecursiveIterator.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'NukeNS' => __DIR__ . '/maintenance/nukeNS.php',
|
|
|
|
|
'NukePage' => __DIR__ . '/maintenance/nukePage.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'NullFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/NullFileOp.php',
|
2016-05-13 00:10:52 +00:00
|
|
|
'NullIndexField' => __DIR__ . '/includes/search/NullIndexField.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'NullJob' => __DIR__ . '/includes/jobqueue/jobs/NullJob.php',
|
2016-09-18 04:42:56 +00:00
|
|
|
'NullLockManager' => __DIR__ . '/includes/libs/lockmanager/NullLockManager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'NullRepo' => __DIR__ . '/includes/filerepo/NullRepo.php',
|
2023-02-27 16:40:57 +00:00
|
|
|
'NullStatsdDataFactory' => __DIR__ . '/includes/libs/Stats/NullStatsdDataFactory.php',
|
2016-07-27 14:43:01 +00:00
|
|
|
'NumericUppercaseCollation' => __DIR__ . '/includes/collation/NumericUppercaseCollation.php',
|
2015-06-08 05:27:24 +00:00
|
|
|
'OOUIHTMLForm' => __DIR__ . '/includes/htmlform/OOUIHTMLForm.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ObjectCache' => __DIR__ . '/includes/objectcache/ObjectCache.php',
|
|
|
|
|
'OldChangesList' => __DIR__ . '/includes/changes/OldChangesList.php',
|
|
|
|
|
'OldLocalFile' => __DIR__ . '/includes/filerepo/file/OldLocalFile.php',
|
2017-07-04 21:46:46 +00:00
|
|
|
'OldRevisionImporter' => __DIR__ . '/includes/import/OldRevisionImporter.php',
|
2022-10-15 22:12:43 +00:00
|
|
|
'OrderedStreamingForkController' => __DIR__ . '/includes/Maintenance/OrderedStreamingForkController.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'OrphanStats' => __DIR__ . '/maintenance/storage/orphanStats.php',
|
2023-09-05 17:31:53 +00:00
|
|
|
'OutputPage' => __DIR__ . '/includes/Output/OutputPage.php',
|
2016-09-13 15:45:36 +00:00
|
|
|
'PHPVersionCheck' => __DIR__ . '/includes/PHPVersionCheck.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'PNGHandler' => __DIR__ . '/includes/media/PNGHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PNGMetadataExtractor' => __DIR__ . '/includes/media/PNGMetadataExtractor.php',
|
2019-04-20 23:34:48 +00:00
|
|
|
'PPCustomFrame_Hash' => __DIR__ . '/includes/parser/PPCustomFrame_Hash.php',
|
|
|
|
|
'PPDPart_Hash' => __DIR__ . '/includes/parser/PPDPart_Hash.php',
|
|
|
|
|
'PPDStackElement_Hash' => __DIR__ . '/includes/parser/PPDStackElement_Hash.php',
|
|
|
|
|
'PPDStack_Hash' => __DIR__ . '/includes/parser/PPDStack_Hash.php',
|
|
|
|
|
'PPFrame' => __DIR__ . '/includes/parser/PPFrame.php',
|
|
|
|
|
'PPFrame_Hash' => __DIR__ . '/includes/parser/PPFrame_Hash.php',
|
|
|
|
|
'PPNode' => __DIR__ . '/includes/parser/PPNode.php',
|
|
|
|
|
'PPNode_Hash_Array' => __DIR__ . '/includes/parser/PPNode_Hash_Array.php',
|
|
|
|
|
'PPNode_Hash_Attr' => __DIR__ . '/includes/parser/PPNode_Hash_Attr.php',
|
|
|
|
|
'PPNode_Hash_Text' => __DIR__ . '/includes/parser/PPNode_Hash_Text.php',
|
|
|
|
|
'PPNode_Hash_Tree' => __DIR__ . '/includes/parser/PPNode_Hash_Tree.php',
|
|
|
|
|
'PPTemplateFrame_Hash' => __DIR__ . '/includes/parser/PPTemplateFrame_Hash.php',
|
2019-04-06 12:12:02 +00:00
|
|
|
'PackedHoverImageGallery' => __DIR__ . '/includes/gallery/PackedHoverImageGallery.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PackedImageGallery' => __DIR__ . '/includes/gallery/PackedImageGallery.php',
|
|
|
|
|
'PackedOverlayImageGallery' => __DIR__ . '/includes/gallery/PackedOverlayImageGallery.php',
|
2016-04-02 13:35:20 +00:00
|
|
|
'Page' => __DIR__ . '/includes/page/Page.php',
|
2017-03-06 20:25:23 +00:00
|
|
|
'PageArchive' => __DIR__ . '/includes/page/PageArchive.php',
|
2017-06-01 15:39:21 +00:00
|
|
|
'PageDataRequestHandler' => __DIR__ . '/includes/linkeddata/PageDataRequestHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PageExists' => __DIR__ . '/maintenance/pageExists.php',
|
|
|
|
|
'PageLangLogFormatter' => __DIR__ . '/includes/logging/PageLangLogFormatter.php',
|
2022-12-09 12:17:40 +00:00
|
|
|
'PageProps' => __DIR__ . '/includes/page/PageProps.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PageQueryPage' => __DIR__ . '/includes/specialpage/PageQueryPage.php',
|
|
|
|
|
'Pager' => __DIR__ . '/includes/pager/Pager.php',
|
2022-12-14 00:51:12 +00:00
|
|
|
'PagerTools' => __DIR__ . '/includes/specials/pagers/PagerTools.php',
|
2017-12-19 22:19:49 +00:00
|
|
|
'PaginatingSearchEngine' => __DIR__ . '/includes/search/PaginatingSearchEngine.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ParameterizedPassword' => __DIR__ . '/includes/password/ParameterizedPassword.php',
|
|
|
|
|
'Parser' => __DIR__ . '/includes/parser/Parser.php',
|
|
|
|
|
'ParserCache' => __DIR__ . '/includes/parser/ParserCache.php',
|
2018-08-03 08:25:15 +00:00
|
|
|
'ParserFactory' => __DIR__ . '/includes/parser/ParserFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ParserOptions' => __DIR__ . '/includes/parser/ParserOptions.php',
|
|
|
|
|
'ParserOutput' => __DIR__ . '/includes/parser/ParserOutput.php',
|
2022-11-24 12:59:29 +00:00
|
|
|
'ParsoidCachePrewarmJob' => __DIR__ . '/includes/jobqueue/jobs/ParsoidCachePrewarmJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Password' => __DIR__ . '/includes/password/Password.php',
|
|
|
|
|
'PasswordError' => __DIR__ . '/includes/password/PasswordError.php',
|
|
|
|
|
'PasswordFactory' => __DIR__ . '/includes/password/PasswordFactory.php',
|
2015-04-23 01:48:48 +00:00
|
|
|
'PasswordPolicyChecks' => __DIR__ . '/includes/password/PasswordPolicyChecks.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'PasswordReset' => __DIR__ . '/includes/user/PasswordReset.php',
|
2020-04-08 01:41:11 +00:00
|
|
|
'PatchSql' => __DIR__ . '/maintenance/patchSql.php',
|
2022-10-28 10:04:25 +00:00
|
|
|
'PathRouter' => __DIR__ . '/includes/Request/PathRouter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PatrolLog' => __DIR__ . '/includes/logging/PatrolLog.php',
|
|
|
|
|
'PatrolLogFormatter' => __DIR__ . '/includes/logging/PatrolLogFormatter.php',
|
2022-06-20 07:05:31 +00:00
|
|
|
'Pbkdf2Password' => __DIR__ . '/includes/password/Pbkdf2PasswordUsingHashExtension.php',
|
|
|
|
|
'Pbkdf2PasswordUsingHashExtension' => __DIR__ . '/includes/password/Pbkdf2PasswordUsingHashExtension.php',
|
|
|
|
|
'Pbkdf2PasswordUsingOpenSSL' => __DIR__ . '/includes/password/Pbkdf2PasswordUsingOpenSSL.php',
|
2016-04-26 22:19:58 +00:00
|
|
|
'PerRowAugmentor' => __DIR__ . '/includes/search/PerRowAugmentor.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PermissionsError' => __DIR__ . '/includes/exception/PermissionsError.php',
|
2023-06-02 18:23:50 +00:00
|
|
|
'Pingback' => __DIR__ . '/includes/installer/Pingback.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PoolCounter' => __DIR__ . '/includes/poolcounter/PoolCounter.php',
|
2019-03-24 21:44:46 +00:00
|
|
|
'PoolCounterNull' => __DIR__ . '/includes/poolcounter/PoolCounterNull.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PoolCounterRedis' => __DIR__ . '/includes/poolcounter/PoolCounterRedis.php',
|
|
|
|
|
'PoolCounterWork' => __DIR__ . '/includes/poolcounter/PoolCounterWork.php',
|
|
|
|
|
'PoolCounterWorkViaCallback' => __DIR__ . '/includes/poolcounter/PoolCounterWorkViaCallback.php',
|
|
|
|
|
'PoolWorkArticleView' => __DIR__ . '/includes/poolcounter/PoolWorkArticleView.php',
|
2020-11-16 20:05:03 +00:00
|
|
|
'PoolWorkArticleViewCurrent' => __DIR__ . '/includes/poolcounter/PoolWorkArticleViewCurrent.php',
|
2020-11-13 12:04:35 +00:00
|
|
|
'PoolWorkArticleViewOld' => __DIR__ . '/includes/poolcounter/PoolWorkArticleViewOld.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PopulateBacklinkNamespace' => __DIR__ . '/maintenance/populateBacklinkNamespace.php',
|
2018-06-05 22:59:11 +00:00
|
|
|
'PopulateChangeTagDef' => __DIR__ . '/maintenance/populateChangeTagDef.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PopulateFilearchiveSha1' => __DIR__ . '/maintenance/populateFilearchiveSha1.php',
|
|
|
|
|
'PopulateImageSha1' => __DIR__ . '/maintenance/populateImageSha1.php',
|
2016-04-28 21:22:12 +00:00
|
|
|
'PopulateInterwiki' => __DIR__ . '/maintenance/populateInterwiki.php',
|
2017-04-21 16:17:59 +00:00
|
|
|
'PopulateIpChanges' => __DIR__ . '/maintenance/populateIpChanges.php',
|
2017-05-24 21:00:08 +00:00
|
|
|
'PopulatePPSortKey' => __DIR__ . '/maintenance/populatePPSortKey.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PopulateRecentChangesSource' => __DIR__ . '/maintenance/populateRecentChangesSource.php',
|
|
|
|
|
'PopulateRevisionLength' => __DIR__ . '/maintenance/populateRevisionLength.php',
|
|
|
|
|
'PopulateRevisionSha1' => __DIR__ . '/maintenance/populateRevisionSha1.php',
|
|
|
|
|
'PostgresInstaller' => __DIR__ . '/includes/installer/PostgresInstaller.php',
|
|
|
|
|
'PostgresUpdater' => __DIR__ . '/includes/installer/PostgresUpdater.php',
|
2018-05-01 13:59:29 +00:00
|
|
|
'PreferencesFormOOUI' => __DIR__ . '/includes/specials/forms/PreferencesFormOOUI.php',
|
2019-03-27 20:40:33 +00:00
|
|
|
'PrefixSearch' => __DIR__ . '/includes/search/PrefixSearch.php',
|
2023-02-27 16:40:57 +00:00
|
|
|
'PrefixingStatsdDataFactoryProxy' => __DIR__ . '/includes/libs/Stats/PrefixingStatsdDataFactoryProxy.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Preprocessor' => __DIR__ . '/includes/parser/Preprocessor.php',
|
|
|
|
|
'Preprocessor_Hash' => __DIR__ . '/includes/parser/Preprocessor_Hash.php',
|
2023-06-13 11:13:33 +00:00
|
|
|
'PrewarmParsoidParserCache' => __DIR__ . '/maintenance/prewarmParsoidParserCache.php',
|
Implement extension registration from an extension.json file
Introduces wfLoadExtension()/wfLoadSkin() which should be used in
LocalSettings.php rather than require-ing a PHP entry point.
Extensions and skins would add "extension.json" or "skin.json" files
in their root, which contains all the information typically
present in PHP entry point files (classes to autoload, special pages,
API modules, etc.) A full schema can be found at
docs/extension.schema.json, and a script to validate these to the
schema is provided. An additional script is provided to convert
typical PHP entry point files into their JSON equivalents.
The basic flow of loading an extension goes like:
* Get the ExtensionRegistry singleton instance
* ExtensionRegistry takes a filename, reads the file or tries
to get the parsed JSON from APC if possible.
* The JSON is run through a Processor instance,
which registers things with the appropriate
global settings.
* The output of the processor is cached in APC if possible.
* The extension/skin is marked as loaded in the
ExtensionRegistry and a callback function is executed
if one was specified.
For ideal performance, a batch loading method is also provided:
* The absolute path name to the JSON file is queued
in the ExtensionRegistry instance.
* When loadFromQueue() is called, it constructs a hash
unique to the members of the current queue, and sees
if the queue has been cached in APC. If not, it processes
each file individually, and combines the result of each
Processor into one giant array, which is cached in APC.
* The giant array then sets various global settings,
defines constants, and calls callbacks.
To invalidate the cached processed info, by default the mtime
of each JSON file is checked. However that can be slow if you
have a large number of extensions, so you can set $wgExtensionInfoMTime
to the mtime of one file, and `touch` it whenever you update
your extensions.
Change-Id: I7074b65d07c5c7d4e3f1fb0755d74a0b07ed4596
2014-10-15 00:31:15 +00:00
|
|
|
'Processor' => __DIR__ . '/includes/registration/Processor.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'Profiler' => __DIR__ . '/includes/profiler/Profiler.php',
|
2018-11-28 03:36:22 +00:00
|
|
|
'ProfilerExcimer' => __DIR__ . '/includes/profiler/ProfilerExcimer.php',
|
2014-11-14 18:58:07 +00:00
|
|
|
'ProfilerOutput' => __DIR__ . '/includes/profiler/output/ProfilerOutput.php',
|
2015-03-03 23:17:02 +00:00
|
|
|
'ProfilerOutputDump' => __DIR__ . '/includes/profiler/output/ProfilerOutputDump.php',
|
2015-04-01 23:30:16 +00:00
|
|
|
'ProfilerOutputStats' => __DIR__ . '/includes/profiler/output/ProfilerOutputStats.php',
|
2014-11-14 18:58:07 +00:00
|
|
|
'ProfilerOutputText' => __DIR__ . '/includes/profiler/output/ProfilerOutputText.php',
|
2015-01-08 10:10:02 +00:00
|
|
|
'ProfilerSectionOnly' => __DIR__ . '/includes/profiler/ProfilerSectionOnly.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ProfilerStub' => __DIR__ . '/includes/profiler/ProfilerStub.php',
|
|
|
|
|
'ProfilerXhprof' => __DIR__ . '/includes/profiler/ProfilerXhprof.php',
|
|
|
|
|
'Protect' => __DIR__ . '/maintenance/protect.php',
|
|
|
|
|
'ProtectAction' => __DIR__ . '/includes/actions/ProtectAction.php',
|
2015-07-07 20:36:41 +00:00
|
|
|
'ProtectLogFormatter' => __DIR__ . '/includes/logging/ProtectLogFormatter.php',
|
2017-03-02 18:00:48 +00:00
|
|
|
'ProtectedPagesPager' => __DIR__ . '/includes/specials/pagers/ProtectedPagesPager.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'ProtectedTitlesPager' => __DIR__ . '/includes/specials/pagers/ProtectedTitlesPager.php',
|
2023-02-22 17:51:26 +00:00
|
|
|
'ProtectionForm' => __DIR__ . '/includes/page/ProtectionForm.php',
|
2023-08-06 10:22:58 +00:00
|
|
|
'ProxyLookup' => __DIR__ . '/includes/Request/ProxyLookup.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PruneFileCache' => __DIR__ . '/maintenance/pruneFileCache.php',
|
2022-09-07 14:18:51 +00:00
|
|
|
'PruneUnusedLinkTargetRows' => __DIR__ . '/maintenance/pruneUnusedLinkTargetRows.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PublishStashedFileJob' => __DIR__ . '/includes/jobqueue/jobs/PublishStashedFileJob.php',
|
|
|
|
|
'PurgeAction' => __DIR__ . '/includes/actions/PurgeAction.php',
|
|
|
|
|
'PurgeChangedFiles' => __DIR__ . '/maintenance/purgeChangedFiles.php',
|
|
|
|
|
'PurgeChangedPages' => __DIR__ . '/maintenance/purgeChangedPages.php',
|
2020-07-08 02:57:32 +00:00
|
|
|
'PurgeExpiredBlocks' => __DIR__ . '/maintenance/purgeExpiredBlocks.php',
|
2017-10-04 19:55:59 +00:00
|
|
|
'PurgeExpiredUserrights' => __DIR__ . '/maintenance/purgeExpiredUserrights.php',
|
2020-02-14 05:55:07 +00:00
|
|
|
'PurgeExpiredWatchlistItems' => __DIR__ . '/maintenance/purgeExpiredWatchlistItems.php',
|
2016-08-23 00:13:33 +00:00
|
|
|
'PurgeJobUtils' => __DIR__ . '/includes/jobqueue/utils/PurgeJobUtils.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PurgeList' => __DIR__ . '/maintenance/purgeList.php',
|
rebuildLocalisationCache: Add --skip-message-purge and accompanying script
== Adding --skip-message-purge
Follows-up d91c6627a929. Per CR and Phab comments, I don't think we
can (yet) promise a generic "--offline" mode. This seems too easy to
misuse. Both for users of the script, as well as for future development
to the script. It can fall out out of sync with requirements of the
overall system and leaves no natural place to discover what
responsibilities are being deferred and how the operator should fulfill
those duties.
We know LCStoreDB doesn't work offline, but there are likely other
aspects of this that don't yet work offline for some users. It would
require a much more rigorous refactor (and dropping signifant extension
hooks) to make this reliably offline. I'd welcome a standalone script
using only vendor libs, that does nothing other than scan directories
and build JSON/PHP/CDB files, but that's not what it is today.
What we can do is skip the one operation we know requires a live
DB connection, and (my main motivation for this commit) then document
that skipping it, require the user to perform the purge by other means
instead, since the purge itself is not actually optional.
Also, make this not a WMF-specific option in MW core, by committing
the accompanying script needed for this to work. This was previously
in the WikimediaMaintenance extension as "refreshMessageBlobs.php".
== Keeping --offline (as --no-database)
As far as I know, the purge is the only action we ran into that needed
a database connection, and important to note was that it's not optional.
I think for WMF we did not run into any other logic in our configuration
that uses a database, so --skip-message-purge should suffice. However,
I've kept the option for two reasons:
1. To recognise in some way the business need for WMF to use this
script in an offline manner, and thus document that the script
should at least have a way to work offline, even if there may be
site configurations and extensions that make this impossible, from
a core perspective we want to (experimentally) try to support this.
2. There is unimportant setup logic that happens in doMaintenance.php
where the service wiring for LBFactory is activated by default.
This seems avoidable and technical debt, but at least for now
we do need a way to skip that, so this option will continue to
have that effect.
However, I've renamed the option and inverted its promise. This is not
a promise from core *to* the user to offer an offline mode. Rather,
it is a promise *from* the user that they think nothing DB-needy is in
use.
Bug: T268698
Bug: T263872
Change-Id: I7878fdf4a901fb5e75da540293bb9df9fb508c20
2021-04-06 22:17:25 +00:00
|
|
|
'PurgeMessageBlobStore' => __DIR__ . '/maintenance/purgeMessageBlobStore.php',
|
2017-02-24 22:56:31 +00:00
|
|
|
'PurgeModuleDeps' => __DIR__ . '/maintenance/purgeModuleDeps.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PurgeOldText' => __DIR__ . '/maintenance/purgeOldText.php',
|
2017-06-30 10:23:02 +00:00
|
|
|
'PurgePage' => __DIR__ . '/maintenance/purgePage.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'PurgeParserCache' => __DIR__ . '/maintenance/purgeParserCache.php',
|
|
|
|
|
'QueryPage' => __DIR__ . '/includes/specialpage/QueryPage.php',
|
|
|
|
|
'QuickTemplate' => __DIR__ . '/includes/skins/QuickTemplate.php',
|
2016-09-18 04:42:56 +00:00
|
|
|
'QuorumLockManager' => __DIR__ . '/includes/libs/lockmanager/QuorumLockManager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RCCacheEntry' => __DIR__ . '/includes/changes/RCCacheEntry.php',
|
|
|
|
|
'RCCacheEntryFactory' => __DIR__ . '/includes/changes/RCCacheEntryFactory.php',
|
2019-04-14 01:05:34 +00:00
|
|
|
'RCDatabaseLogEntry' => __DIR__ . '/includes/logging/RCDatabaseLogEntry.php',
|
Refactor RCFeed configuration (backwards compatible)
Previously:
* Engines had to be registered in $wgRCEngines.
* The RCFeedEngine classes took no constructor arguments and
were expected to send whatever text is previously formatted
without any information about it. This generic design was
flexible in allowing one to use any formatter with any engine
with minimal configuration and no need for additional classes.
* Each feed configured their destination by setting a 'uri'
option that encodes the name of the engine in PHP as the uri
scheme. Other uri components had to be used for any other
parameters to the engine (host, port, path). While fairly
limited, it was sufficient for the default engines in core.
Changes:
* Allow feed classes to be directly associated with a feed in $wgRCFeeds
via a new 'class' option - without the indirection of 'uri' and
$wgRCEngines. All options are passed to the given class constructor.
This matches the design used elsewhere in MediaWiki. (ObjectCache,
FileRepo, FileBackend, JobQueue, LBFactory, etc.)
This means we no longer enforce a 1:1 mapping of internet protocols
to a specific feed engine, and it allows settings to be passed
without being encoded as a URI neccecarily.
Main use case for this refactor is EventBus (see I7edc4d57fa),
Interestingly, this matches the (then incorrect) documentation
written for $wgRCFeeds in 2961884b43 (which mentions an 'engine'
property that would do the same thing).
* Move the default 'omit' filters and unrestricted 'formatter' handling
to a new FormattedRCFeed class, which remains the default.
* Deprecate RecentChange::getEngine() in favour of RCFeed::factory().
* Document wgRCEngines as "@since 1.22". Follows 2961884b43, ffc71cb6af.
Change-Id: I8be497c623c5d928762e3d3406a388f4d91add9a
2017-01-06 01:27:43 +00:00
|
|
|
'RCFeed' => __DIR__ . '/includes/rcfeed/RCFeed.php',
|
2020-04-19 21:32:39 +00:00
|
|
|
'RCFeedEngine' => __DIR__ . '/includes/rcfeed/FormattedRCFeed.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RCFeedFormatter' => __DIR__ . '/includes/rcfeed/RCFeedFormatter.php',
|
2016-06-09 19:38:05 +00:00
|
|
|
'RESTBagOStuff' => __DIR__ . '/includes/libs/objectcache/RESTBagOStuff.php',
|
2022-10-17 11:10:57 +00:00
|
|
|
'RSSFeed' => __DIR__ . '/includes/Feed/RSSFeed.php',
|
2020-01-13 16:24:36 +00:00
|
|
|
'RandomPage' => __DIR__ . '/includes/specials/SpecialRandomPage.php',
|
2016-12-12 14:23:54 +00:00
|
|
|
'RangeChronologicalPager' => __DIR__ . '/includes/pager/RangeChronologicalPager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RawAction' => __DIR__ . '/includes/actions/RawAction.php',
|
2022-12-12 02:10:13 +00:00
|
|
|
'RawMessage' => __DIR__ . '/includes/language/RawMessage.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ReadOnlyError' => __DIR__ . '/includes/exception/ReadOnlyError.php',
|
2023-05-04 21:41:21 +00:00
|
|
|
'ReadOnlyMode' => __DIR__ . '/includes/libs/rdbms/ReadOnlyMode.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ReassignEdits' => __DIR__ . '/maintenance/reassignEdits.php',
|
|
|
|
|
'RebuildAll' => __DIR__ . '/maintenance/rebuildall.php',
|
|
|
|
|
'RebuildFileCache' => __DIR__ . '/maintenance/rebuildFileCache.php',
|
|
|
|
|
'RebuildLocalisationCache' => __DIR__ . '/maintenance/rebuildLocalisationCache.php',
|
|
|
|
|
'RebuildMessages' => __DIR__ . '/maintenance/rebuildmessages.php',
|
|
|
|
|
'RebuildRecentchanges' => __DIR__ . '/maintenance/rebuildrecentchanges.php',
|
|
|
|
|
'RebuildTextIndex' => __DIR__ . '/maintenance/rebuildtextindex.php',
|
|
|
|
|
'RecentChange' => __DIR__ . '/includes/changes/RecentChange.php',
|
2015-01-17 01:02:10 +00:00
|
|
|
'RecentChangesUpdateJob' => __DIR__ . '/includes/jobqueue/jobs/RecentChangesUpdateJob.php',
|
2017-01-26 11:39:30 +00:00
|
|
|
'RecountCategories' => __DIR__ . '/maintenance/recountCategories.php',
|
2019-02-08 18:05:27 +00:00
|
|
|
'RedirectSpecialArticle' => __DIR__ . '/includes/specialpage/RedirectSpecialArticle.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RedirectSpecialPage' => __DIR__ . '/includes/specialpage/RedirectSpecialPage.php',
|
2016-09-24 03:13:36 +00:00
|
|
|
'RedisBagOStuff' => __DIR__ . '/includes/libs/objectcache/RedisBagOStuff.php',
|
2016-09-23 07:20:19 +00:00
|
|
|
'RedisConnRef' => __DIR__ . '/includes/libs/redis/RedisConnRef.php',
|
|
|
|
|
'RedisConnectionPool' => __DIR__ . '/includes/libs/redis/RedisConnectionPool.php',
|
2016-09-23 07:30:31 +00:00
|
|
|
'RedisLockManager' => __DIR__ . '/includes/libs/lockmanager/RedisLockManager.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RedisPubSubFeedEngine' => __DIR__ . '/includes/rcfeed/RedisPubSubFeedEngine.php',
|
|
|
|
|
'RefreshFileHeaders' => __DIR__ . '/maintenance/refreshFileHeaders.php',
|
|
|
|
|
'RefreshImageMetadata' => __DIR__ . '/maintenance/refreshImageMetadata.php',
|
|
|
|
|
'RefreshLinks' => __DIR__ . '/maintenance/refreshLinks.php',
|
|
|
|
|
'RefreshLinksJob' => __DIR__ . '/includes/jobqueue/jobs/RefreshLinksJob.php',
|
2019-03-19 16:03:36 +00:00
|
|
|
'RefreshSecondaryDataUpdate' => __DIR__ . '/includes/deferred/RefreshSecondaryDataUpdate.php',
|
2021-12-09 23:35:07 +00:00
|
|
|
'RemoteIcuCollation' => __DIR__ . '/includes/collation/RemoteIcuCollation.php',
|
2014-12-04 19:08:45 +00:00
|
|
|
'RemoveInvalidEmails' => __DIR__ . '/maintenance/removeInvalidEmails.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RemoveUnusedAccounts' => __DIR__ . '/maintenance/removeUnusedAccounts.php',
|
|
|
|
|
'RenameDbPrefix' => __DIR__ . '/maintenance/renameDbPrefix.php',
|
2019-11-03 13:50:06 +00:00
|
|
|
'RenameRestrictions' => __DIR__ . '/maintenance/renameRestrictions.php',
|
2023-02-28 05:51:43 +00:00
|
|
|
'RenameUser' => __DIR__ . '/maintenance/renameUser.php',
|
|
|
|
|
'RenameUserJob' => __DIR__ . '/includes/jobqueue/jobs/RenameUserJob.php',
|
2023-03-06 01:16:39 +00:00
|
|
|
'RenameUsersMatchingPattern' => __DIR__ . '/maintenance/renameUsersMatchingPattern.php',
|
2023-02-28 05:51:43 +00:00
|
|
|
'RenameuserLogFormatter' => __DIR__ . '/includes/logging/RenameuserLogFormatter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RenderAction' => __DIR__ . '/includes/actions/RenderAction.php',
|
2015-01-29 05:21:46 +00:00
|
|
|
'ReplacementArray' => __DIR__ . '/includes/libs/ReplacementArray.php',
|
2015-04-30 03:02:14 +00:00
|
|
|
'ReplicatedBagOStuff' => __DIR__ . '/includes/libs/objectcache/ReplicatedBagOStuff.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RepoGroup' => __DIR__ . '/includes/filerepo/RepoGroup.php',
|
|
|
|
|
'RequestContext' => __DIR__ . '/includes/context/RequestContext.php',
|
2018-05-28 16:25:36 +00:00
|
|
|
'ResetAuthenticationThrottle' => __DIR__ . '/maintenance/resetAuthenticationThrottle.php',
|
2018-11-08 23:45:47 +00:00
|
|
|
'ResetPageRandom' => __DIR__ . '/maintenance/resetPageRandom.php',
|
2016-01-30 21:45:35 +00:00
|
|
|
'ResetUserEmail' => __DIR__ . '/maintenance/resetUserEmail.php',
|
2022-11-20 22:23:34 +00:00
|
|
|
'ResolveStubs' => __DIR__ . '/maintenance/storage/resolveStubs.php',
|
2022-05-06 09:09:56 +00:00
|
|
|
'ResourceLoader' => __DIR__ . '/includes/ResourceLoader/ResourceLoader.php',
|
|
|
|
|
'ResourceLoaderCircularDependencyError' => __DIR__ . '/includes/ResourceLoader/CircularDependencyError.php',
|
|
|
|
|
'ResourceLoaderClientHtml' => __DIR__ . '/includes/ResourceLoader/ClientHtml.php',
|
|
|
|
|
'ResourceLoaderCodexModule' => __DIR__ . '/includes/ResourceLoader/CodexModule.php',
|
|
|
|
|
'ResourceLoaderContext' => __DIR__ . '/includes/ResourceLoader/Context.php',
|
|
|
|
|
'ResourceLoaderFileModule' => __DIR__ . '/includes/ResourceLoader/FileModule.php',
|
|
|
|
|
'ResourceLoaderFilePath' => __DIR__ . '/includes/ResourceLoader/FilePath.php',
|
|
|
|
|
'ResourceLoaderForeignApiModule' => __DIR__ . '/includes/ResourceLoader/ForeignApiModule.php',
|
|
|
|
|
'ResourceLoaderImage' => __DIR__ . '/includes/ResourceLoader/Image.php',
|
|
|
|
|
'ResourceLoaderImageModule' => __DIR__ . '/includes/ResourceLoader/ImageModule.php',
|
|
|
|
|
'ResourceLoaderLessVarFileModule' => __DIR__ . '/includes/ResourceLoader/LessVarFileModule.php',
|
|
|
|
|
'ResourceLoaderModule' => __DIR__ . '/includes/ResourceLoader/Module.php',
|
|
|
|
|
'ResourceLoaderMwUrlModule' => __DIR__ . '/includes/ResourceLoader/MwUrlModule.php',
|
|
|
|
|
'ResourceLoaderOOUIFileModule' => __DIR__ . '/includes/ResourceLoader/OOUIFileModule.php',
|
|
|
|
|
'ResourceLoaderOOUIIconPackModule' => __DIR__ . '/includes/ResourceLoader/OOUIIconPackModule.php',
|
|
|
|
|
'ResourceLoaderOOUIImageModule' => __DIR__ . '/includes/ResourceLoader/OOUIImageModule.php',
|
|
|
|
|
'ResourceLoaderOOUIModule' => __DIR__ . '/includes/ResourceLoader/OOUIModule.php',
|
|
|
|
|
'ResourceLoaderSiteModule' => __DIR__ . '/includes/ResourceLoader/SiteModule.php',
|
|
|
|
|
'ResourceLoaderSiteStylesModule' => __DIR__ . '/includes/ResourceLoader/SiteStylesModule.php',
|
|
|
|
|
'ResourceLoaderSkinModule' => __DIR__ . '/includes/ResourceLoader/SkinModule.php',
|
|
|
|
|
'ResourceLoaderStartUpModule' => __DIR__ . '/includes/ResourceLoader/StartUpModule.php',
|
|
|
|
|
'ResourceLoaderUserModule' => __DIR__ . '/includes/ResourceLoader/UserModule.php',
|
|
|
|
|
'ResourceLoaderUserOptionsModule' => __DIR__ . '/includes/ResourceLoader/UserOptionsModule.php',
|
|
|
|
|
'ResourceLoaderUserStylesModule' => __DIR__ . '/includes/ResourceLoader/UserStylesModule.php',
|
|
|
|
|
'ResourceLoaderWikiModule' => __DIR__ . '/includes/ResourceLoader/WikiModule.php',
|
2016-04-26 22:19:58 +00:00
|
|
|
'ResultAugmentor' => __DIR__ . '/includes/search/ResultAugmentor.php',
|
|
|
|
|
'ResultSetAugmentor' => __DIR__ . '/includes/search/ResultSetAugmentor.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RevDelArchiveItem' => __DIR__ . '/includes/revisiondelete/RevDelArchiveItem.php',
|
|
|
|
|
'RevDelArchiveList' => __DIR__ . '/includes/revisiondelete/RevDelArchiveList.php',
|
|
|
|
|
'RevDelArchivedFileItem' => __DIR__ . '/includes/revisiondelete/RevDelArchivedFileItem.php',
|
|
|
|
|
'RevDelArchivedFileList' => __DIR__ . '/includes/revisiondelete/RevDelArchivedFileList.php',
|
|
|
|
|
'RevDelArchivedRevisionItem' => __DIR__ . '/includes/revisiondelete/RevDelArchivedRevisionItem.php',
|
|
|
|
|
'RevDelFileItem' => __DIR__ . '/includes/revisiondelete/RevDelFileItem.php',
|
|
|
|
|
'RevDelFileList' => __DIR__ . '/includes/revisiondelete/RevDelFileList.php',
|
|
|
|
|
'RevDelItem' => __DIR__ . '/includes/revisiondelete/RevDelItem.php',
|
|
|
|
|
'RevDelList' => __DIR__ . '/includes/revisiondelete/RevDelList.php',
|
|
|
|
|
'RevDelLogItem' => __DIR__ . '/includes/revisiondelete/RevDelLogItem.php',
|
|
|
|
|
'RevDelLogList' => __DIR__ . '/includes/revisiondelete/RevDelLogList.php',
|
|
|
|
|
'RevDelRevisionItem' => __DIR__ . '/includes/revisiondelete/RevDelRevisionItem.php',
|
|
|
|
|
'RevDelRevisionList' => __DIR__ . '/includes/revisiondelete/RevDelRevisionList.php',
|
2016-03-15 19:13:43 +00:00
|
|
|
'ReverseArrayIterator' => __DIR__ . '/includes/libs/ReverseArrayIterator.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ReverseChronologicalPager' => __DIR__ . '/includes/pager/ReverseChronologicalPager.php',
|
|
|
|
|
'RevertAction' => __DIR__ . '/includes/actions/RevertAction.php',
|
2020-07-06 11:47:22 +00:00
|
|
|
'RevertedTagUpdateJob' => __DIR__ . '/includes/jobqueue/jobs/RevertedTagUpdateJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RevisionDeleteUser' => __DIR__ . '/includes/revisiondelete/RevisionDeleteUser.php',
|
|
|
|
|
'RevisionDeleter' => __DIR__ . '/includes/revisiondelete/RevisionDeleter.php',
|
2019-03-14 18:50:40 +00:00
|
|
|
'RevisionItem' => __DIR__ . '/includes/revisionlist/RevisionItem.php',
|
|
|
|
|
'RevisionItemBase' => __DIR__ . '/includes/revisionlist/RevisionItemBase.php',
|
|
|
|
|
'RevisionList' => __DIR__ . '/includes/revisionlist/RevisionList.php',
|
|
|
|
|
'RevisionListBase' => __DIR__ . '/includes/revisionlist/RevisionListBase.php',
|
2019-08-01 20:38:46 +00:00
|
|
|
'RevisionSearchResult' => __DIR__ . '/includes/search/RevisionSearchResult.php',
|
|
|
|
|
'RevisionSearchResultTrait' => __DIR__ . '/includes/search/RevisionSearchResultTrait.php',
|
2013-11-17 16:43:27 +00:00
|
|
|
'RiffExtractor' => __DIR__ . '/includes/libs/RiffExtractor.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RightsLogFormatter' => __DIR__ . '/includes/logging/RightsLogFormatter.php',
|
|
|
|
|
'RollbackAction' => __DIR__ . '/includes/actions/RollbackAction.php',
|
|
|
|
|
'RollbackEdits' => __DIR__ . '/maintenance/rollbackEdits.php',
|
2015-07-30 22:09:11 +00:00
|
|
|
'RowUpdateGenerator' => __DIR__ . '/includes/utils/RowUpdateGenerator.php',
|
2018-05-24 01:34:01 +00:00
|
|
|
'RunBatchedQuery' => __DIR__ . '/maintenance/runBatchedQuery.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'RunJobs' => __DIR__ . '/maintenance/runJobs.php',
|
2019-03-30 06:07:48 +00:00
|
|
|
'RunnableJob' => __DIR__ . '/includes/jobqueue/RunnableJob.php',
|
2019-04-14 00:07:50 +00:00
|
|
|
'SVGReader' => __DIR__ . '/includes/media/SVGReader.php',
|
2023-02-27 16:40:57 +00:00
|
|
|
'SamplingStatsdClient' => __DIR__ . '/includes/libs/Stats/SamplingStatsdClient.php',
|
2017-11-15 20:44:48 +00:00
|
|
|
'Sanitizer' => __DIR__ . '/includes/parser/Sanitizer.php',
|
2022-02-11 10:24:54 +00:00
|
|
|
'SchemaMaintenance' => __DIR__ . '/maintenance/includes/SchemaMaintenance.php',
|
2016-09-18 07:54:54 +00:00
|
|
|
'ScopedLock' => __DIR__ . '/includes/libs/lockmanager/ScopedLock.php',
|
2016-03-31 09:13:21 +00:00
|
|
|
'SearchApi' => __DIR__ . '/includes/api/SearchApi.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SearchDatabase' => __DIR__ . '/includes/search/SearchDatabase.php',
|
|
|
|
|
'SearchDump' => __DIR__ . '/maintenance/dumpIterator.php',
|
|
|
|
|
'SearchEngine' => __DIR__ . '/includes/search/SearchEngine.php',
|
2016-04-03 08:37:11 +00:00
|
|
|
'SearchEngineConfig' => __DIR__ . '/includes/search/SearchEngineConfig.php',
|
2019-03-29 19:35:35 +00:00
|
|
|
'SearchEngineDummy' => __DIR__ . '/includes/search/SearchEngineDummy.php',
|
2016-04-03 08:37:11 +00:00
|
|
|
'SearchEngineFactory' => __DIR__ . '/includes/search/SearchEngineFactory.php',
|
2015-09-11 15:32:15 +00:00
|
|
|
'SearchExactMatchRescorer' => __DIR__ . '/includes/search/SearchExactMatchRescorer.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SearchHighlighter' => __DIR__ . '/includes/search/SearchHighlighter.php',
|
2016-05-13 00:10:52 +00:00
|
|
|
'SearchIndexField' => __DIR__ . '/includes/search/SearchIndexField.php',
|
|
|
|
|
'SearchIndexFieldDefinition' => __DIR__ . '/includes/search/SearchIndexFieldDefinition.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SearchMySQL' => __DIR__ . '/includes/search/SearchMySQL.php',
|
2016-01-03 23:10:32 +00:00
|
|
|
'SearchNearMatchResultSet' => __DIR__ . '/includes/search/SearchNearMatchResultSet.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SearchPostgres' => __DIR__ . '/includes/search/SearchPostgres.php',
|
|
|
|
|
'SearchResult' => __DIR__ . '/includes/search/SearchResult.php',
|
|
|
|
|
'SearchResultSet' => __DIR__ . '/includes/search/SearchResultSet.php',
|
2019-07-25 13:48:34 +00:00
|
|
|
'SearchResultSetTrait' => __DIR__ . '/includes/search/SearchResultSetTrait.php',
|
2019-08-01 17:27:29 +00:00
|
|
|
'SearchResultTrait' => __DIR__ . '/includes/search/SearchResultTrait.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SearchSqlite' => __DIR__ . '/includes/search/SearchSqlite.php',
|
2016-01-26 21:18:27 +00:00
|
|
|
'SearchSuggestion' => __DIR__ . '/includes/search/SearchSuggestion.php',
|
|
|
|
|
'SearchSuggestionSet' => __DIR__ . '/includes/search/SearchSuggestionSet.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SearchUpdate' => __DIR__ . '/includes/deferred/SearchUpdate.php',
|
2019-04-14 15:02:53 +00:00
|
|
|
'SectionProfileCallback' => __DIR__ . '/includes/profiler/SectionProfileCallback.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SectionProfiler' => __DIR__ . '/includes/profiler/SectionProfiler.php',
|
2020-04-08 00:13:54 +00:00
|
|
|
'SendPasswordResetEmailUpdate' => __DIR__ . '/includes/deferred/SendPasswordResetEmailUpdate.php',
|
2019-03-08 01:53:39 +00:00
|
|
|
'SerializedValueContainer' => __DIR__ . '/includes/libs/objectcache/serialized/SerializedValueContainer.php',
|
2019-05-13 10:38:37 +00:00
|
|
|
'SevenZipStream' => __DIR__ . '/maintenance/includes/SevenZipStream.php',
|
2021-10-05 21:55:15 +00:00
|
|
|
'ShConverter' => __DIR__ . '/includes/language/converters/ShConverter.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'ShiConverter' => __DIR__ . '/includes/language/converters/ShiConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ShowJobs' => __DIR__ . '/maintenance/showJobs.php',
|
|
|
|
|
'ShowSiteStats' => __DIR__ . '/maintenance/showSiteStats.php',
|
|
|
|
|
'Site' => __DIR__ . '/includes/site/Site.php',
|
2023-09-07 11:37:31 +00:00
|
|
|
'SiteConfiguration' => __DIR__ . '/includes/config/SiteConfiguration.php',
|
2015-02-02 10:58:14 +00:00
|
|
|
'SiteExporter' => __DIR__ . '/includes/site/SiteExporter.php',
|
2014-12-22 10:30:03 +00:00
|
|
|
'SiteImporter' => __DIR__ . '/includes/site/SiteImporter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SiteList' => __DIR__ . '/includes/site/SiteList.php',
|
2015-02-06 02:00:26 +00:00
|
|
|
'SiteLookup' => __DIR__ . '/includes/site/SiteLookup.php',
|
2023-04-26 23:16:29 +00:00
|
|
|
'SiteStats' => __DIR__ . '/includes/SiteStats/SiteStats.php',
|
|
|
|
|
'SiteStatsInit' => __DIR__ . '/includes/SiteStats/SiteStatsInit.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SiteStatsUpdate' => __DIR__ . '/includes/deferred/SiteStatsUpdate.php',
|
|
|
|
|
'SiteStore' => __DIR__ . '/includes/site/SiteStore.php',
|
|
|
|
|
'Skin' => __DIR__ . '/includes/skins/Skin.php',
|
|
|
|
|
'SkinApi' => __DIR__ . '/includes/skins/SkinApi.php',
|
|
|
|
|
'SkinException' => __DIR__ . '/includes/skins/SkinException.php',
|
|
|
|
|
'SkinFactory' => __DIR__ . '/includes/skins/SkinFactory.php',
|
|
|
|
|
'SkinFallback' => __DIR__ . '/includes/skins/SkinFallback.php',
|
2020-05-29 23:00:19 +00:00
|
|
|
'SkinMustache' => __DIR__ . '/includes/skins/SkinMustache.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SkinTemplate' => __DIR__ . '/includes/skins/SkinTemplate.php',
|
2016-07-12 13:48:58 +00:00
|
|
|
'SlideshowImageGallery' => __DIR__ . '/includes/gallery/SlideshowImageGallery.php',
|
[MCR] Render multi-slot diffs
Move logic for rendering a diff between two content objects out of
DifferenceEngine, into a new SlotDiffRenderer class. Make
DifferenceEngine use multiple SlotDiffRenderers, one per slot.
This separates the class tree for changing high-level diff properties
such as the header or the revision selection method (same as before:
subclass DifferenceEngine and override ContentHandler::getDiffEngineClass
or implement GetDifferenceEngine) and the one for changing the actual
diff rendering for a given content type (subclass SlotDiffRenderer and
override ContentHandler::getSlotDiffRenderer or implement
GetSlotDiffRenderer). To keep B/C, when SlotDiffRenderer is not overridden
for a given content type but DifferenceEngine is, that DifferenceEngine
will be used instead.
The weak point of the scheme is overriding the DifferenceEngine methods
passing control to the SlotDiffRenderers (the ones calling
getDifferenceEngines), without calling the parent. These are:
showDiffStyle, getDiffBody, getDiffBodyCacheKeyParams. Extensions doing
that will probably break in unpredictable ways (most likely, only
showing the main slot diff). Nothing in gerrit does it, at least.
A new GetSlotDiffRenderer hook is added to modify rendering for content
models not owned by the extension, much like how GetDifferenceEngine
works.
Also deprecates public access to mNewRev/mOldRev and creates public
getters instead. DifferenceEngine never supported external changes to
those properties, this just acknowledges it.
Bug: T194731
Change-Id: I2f8a9dbebd2290b7feafb20e2bb2a2693e18ba11
Depends-On: I04e885a33bfce5bccc807b9bcfe1eaa577a9fd47
Depends-On: I203d8895bf436b7fee53fe4718dede8a3b1768bc
2018-07-11 09:24:07 +00:00
|
|
|
'SlotDiffRenderer' => __DIR__ . '/includes/diff/SlotDiffRenderer.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialActiveUsers' => __DIR__ . '/includes/specials/SpecialActiveUsers.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialAllMessages' => __DIR__ . '/includes/specials/SpecialAllMessages.php',
|
2019-02-08 18:05:27 +00:00
|
|
|
'SpecialAllMyUploads' => __DIR__ . '/includes/specials/redirects/SpecialAllMyUploads.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialAllPages' => __DIR__ . '/includes/specials/SpecialAllPages.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialAncientPages' => __DIR__ . '/includes/specials/SpecialAncientPages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialApiHelp' => __DIR__ . '/includes/specials/SpecialApiHelp.php',
|
2015-05-07 17:11:09 +00:00
|
|
|
'SpecialApiSandbox' => __DIR__ . '/includes/specials/SpecialApiSandbox.php',
|
2017-03-06 20:09:36 +00:00
|
|
|
'SpecialAutoblockList' => __DIR__ . '/includes/specials/SpecialAutoblockList.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialBlankpage' => __DIR__ . '/includes/specials/SpecialBlankpage.php',
|
|
|
|
|
'SpecialBlock' => __DIR__ . '/includes/specials/SpecialBlock.php',
|
|
|
|
|
'SpecialBlockList' => __DIR__ . '/includes/specials/SpecialBlockList.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialBookSources' => __DIR__ . '/includes/specials/SpecialBookSources.php',
|
2016-02-01 20:44:03 +00:00
|
|
|
'SpecialBotPasswords' => __DIR__ . '/includes/specials/SpecialBotPasswords.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialBrokenRedirects' => __DIR__ . '/includes/specials/SpecialBrokenRedirects.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialCategories' => __DIR__ . '/includes/specials/SpecialCategories.php',
|
2015-03-29 03:36:01 +00:00
|
|
|
'SpecialChangeContentModel' => __DIR__ . '/includes/specials/SpecialChangeContentModel.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'SpecialChangeCredentials' => __DIR__ . '/includes/specials/SpecialChangeCredentials.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialChangeEmail' => __DIR__ . '/includes/specials/SpecialChangeEmail.php',
|
|
|
|
|
'SpecialChangePassword' => __DIR__ . '/includes/specials/SpecialChangePassword.php',
|
|
|
|
|
'SpecialComparePages' => __DIR__ . '/includes/specials/SpecialComparePages.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialConfirmEmail' => __DIR__ . '/includes/specials/SpecialConfirmEmail.php',
|
2022-09-28 14:35:34 +00:00
|
|
|
'SpecialContribute' => __DIR__ . '/includes/specials/SpecialContribute.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialContributions' => __DIR__ . '/includes/specials/SpecialContributions.php',
|
|
|
|
|
'SpecialCreateAccount' => __DIR__ . '/includes/specials/SpecialCreateAccount.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialDeadendPages' => __DIR__ . '/includes/specials/SpecialDeadendPages.php',
|
2021-11-13 22:36:29 +00:00
|
|
|
'SpecialDeletePage' => __DIR__ . '/includes/specials/SpecialDeletePage.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialDeletedContributions' => __DIR__ . '/includes/specials/SpecialDeletedContributions.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialDiff' => __DIR__ . '/includes/specials/SpecialDiff.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialDoubleRedirects' => __DIR__ . '/includes/specials/SpecialDoubleRedirects.php',
|
2019-08-24 00:19:20 +00:00
|
|
|
'SpecialEditPage' => __DIR__ . '/includes/specials/SpecialEditPage.php',
|
2015-04-15 01:31:53 +00:00
|
|
|
'SpecialEditTags' => __DIR__ . '/includes/specials/SpecialEditTags.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialEditWatchlist' => __DIR__ . '/includes/specials/SpecialEditWatchlist.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialEmailInvalidate' => __DIR__ . '/includes/specials/SpecialEmailInvalidate.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialEmailUser' => __DIR__ . '/includes/specials/SpecialEmailUser.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialExpandTemplates' => __DIR__ . '/includes/specials/SpecialExpandTemplates.php',
|
|
|
|
|
'SpecialExport' => __DIR__ . '/includes/specials/SpecialExport.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialFewestRevisions' => __DIR__ . '/includes/specials/SpecialFewestRevisions.php',
|
|
|
|
|
'SpecialFileDuplicateSearch' => __DIR__ . '/includes/specials/SpecialFileDuplicateSearch.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialFilepath' => __DIR__ . '/includes/specials/SpecialFilepath.php',
|
2016-02-07 13:07:20 +00:00
|
|
|
'SpecialGoToInterwiki' => __DIR__ . '/includes/specials/SpecialGoToInterwiki.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialImport' => __DIR__ . '/includes/specials/SpecialImport.php',
|
|
|
|
|
'SpecialJavaScriptTest' => __DIR__ . '/includes/specials/SpecialJavaScriptTest.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'SpecialLinkAccounts' => __DIR__ . '/includes/specials/SpecialLinkAccounts.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialLinkSearch' => __DIR__ . '/includes/specials/SpecialLinkSearch.php',
|
2019-02-08 18:05:27 +00:00
|
|
|
'SpecialListAdmins' => __DIR__ . '/includes/specials/redirects/SpecialListAdmins.php',
|
|
|
|
|
'SpecialListBots' => __DIR__ . '/includes/specials/redirects/SpecialListBots.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialListDuplicatedFiles' => __DIR__ . '/includes/specials/SpecialListDuplicatedFiles.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialListFiles' => __DIR__ . '/includes/specials/SpecialListFiles.php',
|
|
|
|
|
'SpecialListGrants' => __DIR__ . '/includes/specials/SpecialListGrants.php',
|
|
|
|
|
'SpecialListGroupRights' => __DIR__ . '/includes/specials/SpecialListGroupRights.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialListRedirects' => __DIR__ . '/includes/specials/SpecialListRedirects.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialListUsers' => __DIR__ . '/includes/specials/SpecialListUsers.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialLockdb' => __DIR__ . '/includes/specials/SpecialLockdb.php',
|
|
|
|
|
'SpecialLog' => __DIR__ . '/includes/specials/SpecialLog.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialLonelyPages' => __DIR__ . '/includes/specials/SpecialLonelyPages.php',
|
|
|
|
|
'SpecialLongPages' => __DIR__ . '/includes/specials/SpecialLongPages.php',
|
|
|
|
|
'SpecialMIMESearch' => __DIR__ . '/includes/specials/SpecialMIMESearch.php',
|
|
|
|
|
'SpecialMediaStatistics' => __DIR__ . '/includes/specials/SpecialMediaStatistics.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialMergeHistory' => __DIR__ . '/includes/specials/SpecialMergeHistory.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialMostCategories' => __DIR__ . '/includes/specials/SpecialMostCategories.php',
|
|
|
|
|
'SpecialMostInterwikis' => __DIR__ . '/includes/specials/SpecialMostInterwikis.php',
|
|
|
|
|
'SpecialMostLinked' => __DIR__ . '/includes/specials/SpecialMostLinked.php',
|
|
|
|
|
'SpecialMostLinkedCategories' => __DIR__ . '/includes/specials/SpecialMostLinkedCategories.php',
|
|
|
|
|
'SpecialMostLinkedTemplates' => __DIR__ . '/includes/specials/SpecialMostLinkedTemplates.php',
|
|
|
|
|
'SpecialMostRevisions' => __DIR__ . '/includes/specials/SpecialMostRevisions.php',
|
2019-05-07 14:55:48 +00:00
|
|
|
'SpecialMute' => __DIR__ . '/includes/specials/SpecialMute.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialMyLanguage' => __DIR__ . '/includes/specials/SpecialMyLanguage.php',
|
2019-02-08 18:05:27 +00:00
|
|
|
'SpecialMycontributions' => __DIR__ . '/includes/specials/redirects/SpecialMycontributions.php',
|
2023-01-21 00:16:34 +00:00
|
|
|
'SpecialMylog' => __DIR__ . '/includes/specials/redirects/SpecialMylog.php',
|
2019-02-08 18:05:27 +00:00
|
|
|
'SpecialMypage' => __DIR__ . '/includes/specials/redirects/SpecialMypage.php',
|
|
|
|
|
'SpecialMytalk' => __DIR__ . '/includes/specials/redirects/SpecialMytalk.php',
|
|
|
|
|
'SpecialMyuploads' => __DIR__ . '/includes/specials/redirects/SpecialMyuploads.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialNewFiles' => __DIR__ . '/includes/specials/SpecialNewFiles.php',
|
2019-06-23 02:17:38 +00:00
|
|
|
'SpecialNewSection' => __DIR__ . '/includes/specials/SpecialNewSection.php',
|
2023-09-13 10:31:13 +00:00
|
|
|
'SpecialNewpages' => __DIR__ . '/includes/specials/SpecialNewPages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialPage' => __DIR__ . '/includes/specialpage/SpecialPage.php',
|
2017-06-01 15:39:21 +00:00
|
|
|
'SpecialPageData' => __DIR__ . '/includes/specials/SpecialPageData.php',
|
2019-08-24 00:19:20 +00:00
|
|
|
'SpecialPageHistory' => __DIR__ . '/includes/specials/SpecialPageHistory.php',
|
|
|
|
|
'SpecialPageInfo' => __DIR__ . '/includes/specials/SpecialPageInfo.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialPageLanguage' => __DIR__ . '/includes/specials/SpecialPageLanguage.php',
|
|
|
|
|
'SpecialPagesWithProp' => __DIR__ . '/includes/specials/SpecialPagesWithProp.php',
|
2017-11-18 21:59:47 +00:00
|
|
|
'SpecialPasswordPolicies' => __DIR__ . '/includes/specials/SpecialPasswordPolicies.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialPasswordReset' => __DIR__ . '/includes/specials/SpecialPasswordReset.php',
|
|
|
|
|
'SpecialPermanentLink' => __DIR__ . '/includes/specials/SpecialPermanentLink.php',
|
|
|
|
|
'SpecialPreferences' => __DIR__ . '/includes/specials/SpecialPreferences.php',
|
2023-09-13 11:10:05 +00:00
|
|
|
'SpecialPrefixindex' => __DIR__ . '/includes/specials/SpecialPrefixIndex.php',
|
2021-11-13 22:36:29 +00:00
|
|
|
'SpecialProtectPage' => __DIR__ . '/includes/specials/SpecialProtectPage.php',
|
2023-09-13 11:10:05 +00:00
|
|
|
'SpecialProtectedpages' => __DIR__ . '/includes/specials/SpecialProtectedPages.php',
|
|
|
|
|
'SpecialProtectedtitles' => __DIR__ . '/includes/specials/SpecialProtectedTitles.php',
|
2019-08-24 00:19:20 +00:00
|
|
|
'SpecialPurge' => __DIR__ . '/includes/specials/SpecialPurge.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialRandomInCategory' => __DIR__ . '/includes/specials/SpecialRandomInCategory.php',
|
2020-01-13 16:24:36 +00:00
|
|
|
'SpecialRandomPage' => __DIR__ . '/includes/specials/SpecialRandomPage.php',
|
|
|
|
|
'SpecialRandomRedirect' => __DIR__ . '/includes/specials/SpecialRandomRedirect.php',
|
|
|
|
|
'SpecialRandomRootPage' => __DIR__ . '/includes/specials/SpecialRandomRootPage.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialRecentChanges' => __DIR__ . '/includes/specials/SpecialRecentChanges.php',
|
|
|
|
|
'SpecialRecentChangesLinked' => __DIR__ . '/includes/specials/SpecialRecentChangesLinked.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialRedirect' => __DIR__ . '/includes/specials/SpecialRedirect.php',
|
2019-02-08 18:05:27 +00:00
|
|
|
'SpecialRedirectToSpecial' => __DIR__ . '/includes/specialpage/SpecialRedirectToSpecial.php',
|
2019-08-24 00:19:20 +00:00
|
|
|
'SpecialRedirectWithAction' => __DIR__ . '/includes/specialpage/SpecialRedirectWithAction.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'SpecialRemoveCredentials' => __DIR__ . '/includes/specials/SpecialRemoveCredentials.php',
|
2023-09-13 13:25:15 +00:00
|
|
|
'SpecialRenameuser' => __DIR__ . '/includes/specials/SpecialRenameUser.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialResetTokens' => __DIR__ . '/includes/specials/SpecialResetTokens.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialRevisionDelete' => __DIR__ . '/includes/specials/SpecialRevisionDelete.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialRunJobs' => __DIR__ . '/includes/specials/SpecialRunJobs.php',
|
|
|
|
|
'SpecialSearch' => __DIR__ . '/includes/specials/SpecialSearch.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialShortPages' => __DIR__ . '/includes/specials/SpecialShortPages.php',
|
2023-09-13 13:42:58 +00:00
|
|
|
'SpecialSpecialpages' => __DIR__ . '/includes/specials/SpecialSpecialPages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialStatistics' => __DIR__ . '/includes/specials/SpecialStatistics.php',
|
|
|
|
|
'SpecialTags' => __DIR__ . '/includes/specials/SpecialTags.php',
|
|
|
|
|
'SpecialTrackingCategories' => __DIR__ . '/includes/specials/SpecialTrackingCategories.php',
|
|
|
|
|
'SpecialUnblock' => __DIR__ . '/includes/specials/SpecialUnblock.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialUncategorizedCategories' => __DIR__ . '/includes/specials/SpecialUncategorizedCategories.php',
|
|
|
|
|
'SpecialUncategorizedImages' => __DIR__ . '/includes/specials/SpecialUncategorizedImages.php',
|
|
|
|
|
'SpecialUncategorizedPages' => __DIR__ . '/includes/specials/SpecialUncategorizedPages.php',
|
|
|
|
|
'SpecialUncategorizedTemplates' => __DIR__ . '/includes/specials/SpecialUncategorizedTemplates.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialUndelete' => __DIR__ . '/includes/specials/SpecialUndelete.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'SpecialUnlinkAccounts' => __DIR__ . '/includes/specials/SpecialUnlinkAccounts.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialUnlockdb' => __DIR__ . '/includes/specials/SpecialUnlockdb.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialUnusedCategories' => __DIR__ . '/includes/specials/SpecialUnusedCategories.php',
|
|
|
|
|
'SpecialUnusedImages' => __DIR__ . '/includes/specials/SpecialUnusedImages.php',
|
|
|
|
|
'SpecialUnusedTemplates' => __DIR__ . '/includes/specials/SpecialUnusedTemplates.php',
|
|
|
|
|
'SpecialUnwatchedPages' => __DIR__ . '/includes/specials/SpecialUnwatchedPages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialUpload' => __DIR__ . '/includes/specials/SpecialUpload.php',
|
|
|
|
|
'SpecialUploadStash' => __DIR__ . '/includes/specials/SpecialUploadStash.php',
|
2019-02-06 21:22:01 +00:00
|
|
|
'SpecialUploadStashTooLargeException' => __DIR__ . '/includes/specials/exception/SpecialUploadStashTooLargeException.php',
|
Use AuthManager on special pages
Rewrite authentication-related special pages to use AuthManager.
All the changes mentioned below only take effect when
$wgDisableAuthManager is false.
LoginForm is rewritten to use HTMLForm and split into UserLogin
and CreateAccount; ChangePassword and PasswordReset are rewritten;
ChangeEmail and Preferences are updated. Four new special pages
are added to handle the new capabilities of AuthManager (linked
accounts, secondary authentication providers): LinkAccounts,
UnlinkAccounts, ChangeCredentials, RemoveCredentials.
The old form-based hooks (ChangePasswordForm, UserCreateForm,
UserLoginForm) are deprecated. A new, more generic hook is
available to alter the forms (AuthChangeFormFields);
form changes that involve new fields should be done via
$wgAuthManagerConfig.
UserLoginComplete is limited to web-based login; for more
generic functionality UserLoggedIn can be used instead.
Hooks that assume password-based login (PrefsPasswordAudit,
AbortChangePassword) are removed; the first functionality
is replaced by ChangeAuthenticationDataAudit, the second is
handled by AuthManager. LoginPasswordResetMessage is removed,
the functionality can be recreated via authentication providers.
There are several smaller backwards incompatible changes:
* Adding fields to the login/signup forms by manipulating the
template via the extraInput/extrafields parameters is not
supported anymore. Depending on the authn configuration the
login/signup process might be multistep and it would be
complicated to ensure that extensions can access the data
at the right moment. Instead, you can create an
AuthenticationProvider which can define its own fields and
process them when the authentication is over.
(There is B/C support for a transitional period that works with
the default login form, but might break with configurations that
require multiple steps or redirects.)
* Removed cookie redirect check. This was added in 2003 in 9ead07fe9
for the benefit of bots, but with MediaWiki having an API these days
there is little reason to keep it. Same for the wpSkipCookieCheck
flag (added in 2008 in 29c73e8265).
* Instead of embedding a password field on sensitive special pages
such as ChangeEmail, such pages rely on AuthManager for elevated
security (which typically involves requiring the user to log in again
unless their last login was more than a few minutes ago).
Accordingly, wgRequirePasswordforEmailChange is removed.
* Special:ChangePassword requires login now.
* Special:ResetPassword now sends a separate email to each user when called
with a shared email address.
* the Reason field had a message with 'prefsectiontip' class
which was sorta broken but used in extensions for formatting.
HTMLForm does not support that, so this commit turns it into a help message
which will break formatting. See https://gerrit.wikimedia.org/r/#/c/231884
Bug: T110277
Change-Id: I8b52ec8ddf494f23941807638f149f15b5e46b0c
Depends-On: If4e0dfb6ee6674f0dace80a01850e2d0cbbdb47a
2015-09-22 22:50:04 +00:00
|
|
|
'SpecialUserLogin' => __DIR__ . '/includes/specials/SpecialUserLogin.php',
|
|
|
|
|
'SpecialUserLogout' => __DIR__ . '/includes/specials/SpecialUserLogout.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialVersion' => __DIR__ . '/includes/specials/SpecialVersion.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialWantedCategories' => __DIR__ . '/includes/specials/SpecialWantedCategories.php',
|
|
|
|
|
'SpecialWantedTemplates' => __DIR__ . '/includes/specials/SpecialWantedTemplates.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SpecialWatchlist' => __DIR__ . '/includes/specials/SpecialWatchlist.php',
|
2019-04-14 12:32:59 +00:00
|
|
|
'SpecialWhatLinksHere' => __DIR__ . '/includes/specials/SpecialWhatLinksHere.php',
|
2019-04-14 15:14:22 +00:00
|
|
|
'SpecialWithoutInterwiki' => __DIR__ . '/includes/specials/SpecialWithoutInterwiki.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SqlBagOStuff' => __DIR__ . '/includes/objectcache/SqlBagOStuff.php',
|
2019-06-12 09:02:10 +00:00
|
|
|
'SqlSearchResult' => __DIR__ . '/includes/search/SqlSearchResult.php',
|
2016-01-03 23:10:32 +00:00
|
|
|
'SqlSearchResultSet' => __DIR__ . '/includes/search/SqlSearchResultSet.php',
|
2020-09-23 10:46:57 +00:00
|
|
|
'Sqlite' => __DIR__ . '/maintenance/Sqlite.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SqliteInstaller' => __DIR__ . '/includes/installer/SqliteInstaller.php',
|
2020-09-23 10:45:15 +00:00
|
|
|
'SqliteMaintenance' => __DIR__ . '/maintenance/SqliteMaintenance.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SqliteUpdater' => __DIR__ . '/includes/installer/SqliteUpdater.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'SrConverter' => __DIR__ . '/includes/language/converters/SrConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'StatsOutput' => __DIR__ . '/maintenance/language/StatOutputs.php',
|
2023-02-27 16:40:57 +00:00
|
|
|
'StatsdAwareInterface' => __DIR__ . '/includes/libs/Stats/StatsdAwareInterface.php',
|
2023-08-25 12:29:41 +00:00
|
|
|
'Status' => __DIR__ . '/includes/Status/Status.php',
|
2015-01-21 01:23:21 +00:00
|
|
|
'StatusValue' => __DIR__ . '/includes/libs/StatusValue.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'StorageTypeStats' => __DIR__ . '/maintenance/storage/storageTypeStats.php',
|
2016-09-18 23:25:41 +00:00
|
|
|
'StoreFileOp' => __DIR__ . '/includes/libs/filebackend/fileop/StoreFileOp.php',
|
2023-09-05 17:31:53 +00:00
|
|
|
'StreamFile' => __DIR__ . '/includes/Output/StreamFile.php',
|
2019-03-27 20:40:33 +00:00
|
|
|
'StringPrefixSearch' => __DIR__ . '/includes/search/StringPrefixSearch.php',
|
2015-01-29 18:30:57 +00:00
|
|
|
'StringUtils' => __DIR__ . '/includes/libs/StringUtils.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'StripState' => __DIR__ . '/includes/parser/StripState.php',
|
2022-10-25 16:58:49 +00:00
|
|
|
'StubGlobalUser' => __DIR__ . '/includes/StubObject/StubGlobalUser.php',
|
|
|
|
|
'StubObject' => __DIR__ . '/includes/StubObject/StubObject.php',
|
|
|
|
|
'StubUserLang' => __DIR__ . '/includes/StubObject/StubUserLang.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'SubmitAction' => __DIR__ . '/includes/actions/SubmitAction.php',
|
2014-12-10 11:24:47 +00:00
|
|
|
'SubpageImportTitleFactory' => __DIR__ . '/includes/title/SubpageImportTitleFactory.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'SvgHandler' => __DIR__ . '/includes/media/SvgHandler.php',
|
2016-09-21 23:13:14 +00:00
|
|
|
'SwiftFileBackend' => __DIR__ . '/includes/libs/filebackend/SwiftFileBackend.php',
|
2019-04-15 09:30:24 +00:00
|
|
|
'SwiftFileBackendDirList' => __DIR__ . '/includes/libs/filebackend/fileiteration/SwiftFileBackendDirList.php',
|
|
|
|
|
'SwiftFileBackendFileList' => __DIR__ . '/includes/libs/filebackend/fileiteration/SwiftFileBackendFileList.php',
|
|
|
|
|
'SwiftFileBackendList' => __DIR__ . '/includes/libs/filebackend/fileiteration/SwiftFileBackendList.php',
|
|
|
|
|
'SwiftFileOpHandle' => __DIR__ . '/includes/libs/filebackend/fileophandle/SwiftFileOpHandle.php',
|
2020-09-23 10:49:16 +00:00
|
|
|
'TableCleanup' => __DIR__ . '/maintenance/TableCleanup.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'TableDiffFormatter' => __DIR__ . '/includes/libs/Diff/TableDiffFormatter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TablePager' => __DIR__ . '/includes/pager/TablePager.php',
|
2015-04-15 01:33:08 +00:00
|
|
|
'TagLogFormatter' => __DIR__ . '/includes/logging/TagLogFormatter.php',
|
2016-10-18 22:36:24 +00:00
|
|
|
'TempFSFile' => __DIR__ . '/includes/libs/filebackend/fsfile/TempFSFile.php',
|
2016-12-17 09:12:32 +00:00
|
|
|
'TempFileRepo' => __DIR__ . '/includes/filerepo/TempFileRepo.php',
|
2023-02-16 19:27:21 +00:00
|
|
|
'TemplateParser' => __DIR__ . '/includes/Html/TemplateParser.php',
|
2023-02-13 19:56:51 +00:00
|
|
|
'TemplatesOnThisPageFormatter' => __DIR__ . '/includes/editpage/TemplatesOnThisPageFormatter.php',
|
2023-01-08 21:31:07 +00:00
|
|
|
'TestCompression' => __DIR__ . '/maintenance/storage/testCompression.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TextContent' => __DIR__ . '/includes/content/TextContent.php',
|
|
|
|
|
'TextContentHandler' => __DIR__ . '/includes/content/TextContentHandler.php',
|
2018-02-11 10:37:41 +00:00
|
|
|
'TextPassDumper' => __DIR__ . '/maintenance/includes/TextPassDumper.php',
|
[MCR] Render multi-slot diffs
Move logic for rendering a diff between two content objects out of
DifferenceEngine, into a new SlotDiffRenderer class. Make
DifferenceEngine use multiple SlotDiffRenderers, one per slot.
This separates the class tree for changing high-level diff properties
such as the header or the revision selection method (same as before:
subclass DifferenceEngine and override ContentHandler::getDiffEngineClass
or implement GetDifferenceEngine) and the one for changing the actual
diff rendering for a given content type (subclass SlotDiffRenderer and
override ContentHandler::getSlotDiffRenderer or implement
GetSlotDiffRenderer). To keep B/C, when SlotDiffRenderer is not overridden
for a given content type but DifferenceEngine is, that DifferenceEngine
will be used instead.
The weak point of the scheme is overriding the DifferenceEngine methods
passing control to the SlotDiffRenderers (the ones calling
getDifferenceEngines), without calling the parent. These are:
showDiffStyle, getDiffBody, getDiffBodyCacheKeyParams. Extensions doing
that will probably break in unpredictable ways (most likely, only
showing the main slot diff). Nothing in gerrit does it, at least.
A new GetSlotDiffRenderer hook is added to modify rendering for content
models not owned by the extension, much like how GetDifferenceEngine
works.
Also deprecates public access to mNewRev/mOldRev and creates public
getters instead. DifferenceEngine never supported external changes to
those properties, this just acknowledges it.
Bug: T194731
Change-Id: I2f8a9dbebd2290b7feafb20e2bb2a2693e18ba11
Depends-On: I04e885a33bfce5bccc807b9bcfe1eaa577a9fd47
Depends-On: I203d8895bf436b7fee53fe4718dede8a3b1768bc
2018-07-11 09:24:07 +00:00
|
|
|
'TextSlotDiffRenderer' => __DIR__ . '/includes/diff/TextSlotDiffRenderer.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TextStatsOutput' => __DIR__ . '/maintenance/language/StatOutputs.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'TgConverter' => __DIR__ . '/includes/language/converters/TgConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ThrottledError' => __DIR__ . '/includes/exception/ThrottledError.php',
|
2019-03-30 11:16:51 +00:00
|
|
|
'ThumbnailImage' => __DIR__ . '/includes/media/ThumbnailImage.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ThumbnailRenderJob' => __DIR__ . '/includes/jobqueue/jobs/ThumbnailRenderJob.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'TiffHandler' => __DIR__ . '/includes/media/TiffHandler.php',
|
2015-11-03 02:26:07 +00:00
|
|
|
'Timing' => __DIR__ . '/includes/libs/Timing.php',
|
2022-10-13 21:20:35 +00:00
|
|
|
'Title' => __DIR__ . '/includes/title/Title.php',
|
2022-11-26 01:15:16 +00:00
|
|
|
'TitleArrayFromResult' => __DIR__ . '/includes/title/TitleArrayFromResult.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TitleCleanup' => __DIR__ . '/maintenance/cleanupTitles.php',
|
2022-11-26 01:15:16 +00:00
|
|
|
'TitleFactory' => __DIR__ . '/includes/title/TitleFactory.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TitleFormatter' => __DIR__ . '/includes/title/TitleFormatter.php',
|
|
|
|
|
'TitleParser' => __DIR__ . '/includes/title/TitleParser.php',
|
2019-03-27 20:40:33 +00:00
|
|
|
'TitlePrefixSearch' => __DIR__ . '/includes/search/TitlePrefixSearch.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TitleValue' => __DIR__ . '/includes/title/TitleValue.php',
|
2020-07-27 12:21:43 +00:00
|
|
|
'TlyConverter' => __DIR__ . '/includes/language/converters/TlyConverter.php',
|
2023-01-08 21:31:07 +00:00
|
|
|
'TrackBlobs' => __DIR__ . '/maintenance/storage/trackBlobs.php',
|
2023-02-09 18:59:23 +00:00
|
|
|
'TrackingCategories' => __DIR__ . '/includes/Category/TrackingCategories.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TraditionalImageGallery' => __DIR__ . '/includes/gallery/TraditionalImageGallery.php',
|
2019-05-21 21:52:57 +00:00
|
|
|
'TransactionRoundAwareUpdate' => __DIR__ . '/includes/deferred/TransactionRoundAwareUpdate.php',
|
2017-10-12 20:19:56 +00:00
|
|
|
'TransactionRoundDefiningUpdate' => __DIR__ . '/includes/deferred/TransactionRoundDefiningUpdate.php',
|
2019-03-30 11:16:51 +00:00
|
|
|
'TransformParameterError' => __DIR__ . '/includes/media/TransformParameterError.php',
|
|
|
|
|
'TransformTooBigImageAreaError' => __DIR__ . '/includes/media/TransformTooBigImageAreaError.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'TransformationalImageHandler' => __DIR__ . '/includes/media/TransformationalImageHandler.php',
|
2020-07-02 00:47:46 +00:00
|
|
|
'TrivialLanguageConverter' => __DIR__ . '/includes/language/TrivialLanguageConverter.php',
|
2021-05-26 00:48:41 +00:00
|
|
|
'TrivialMediaHandlerState' => __DIR__ . '/includes/media/TrivialMediaHandlerState.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UDPRCFeedEngine' => __DIR__ . '/includes/rcfeed/UDPRCFeedEngine.php',
|
2014-12-15 22:05:13 +00:00
|
|
|
'UDPTransport' => __DIR__ . '/includes/libs/UDPTransport.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UIDGenerator' => __DIR__ . '/includes/utils/UIDGenerator.php',
|
|
|
|
|
'UcdXmlReader' => __DIR__ . '/maintenance/language/generateCollationData.php',
|
|
|
|
|
'Undelete' => __DIR__ . '/maintenance/undelete.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'UnifiedDiffFormatter' => __DIR__ . '/includes/libs/Diff/UnifiedDiffFormatter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UnlistedSpecialPage' => __DIR__ . '/includes/specialpage/UnlistedSpecialPage.php',
|
|
|
|
|
'UnprotectAction' => __DIR__ . '/includes/actions/UnprotectAction.php',
|
|
|
|
|
'UnregisteredLocalFile' => __DIR__ . '/includes/filerepo/file/UnregisteredLocalFile.php',
|
2019-08-21 15:51:10 +00:00
|
|
|
'UnsupportedSlotDiffRenderer' => __DIR__ . '/includes/diff/UnsupportedSlotDiffRenderer.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UnwatchAction' => __DIR__ . '/includes/actions/UnwatchAction.php',
|
|
|
|
|
'UpdateArticleCount' => __DIR__ . '/maintenance/updateArticleCount.php',
|
|
|
|
|
'UpdateCollation' => __DIR__ . '/maintenance/updateCollation.php',
|
2016-07-18 22:20:40 +00:00
|
|
|
'UpdateExtensionJsonSchema' => __DIR__ . '/maintenance/updateExtensionJsonSchema.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UpdateRestrictions' => __DIR__ . '/maintenance/updateRestrictions.php',
|
|
|
|
|
'UpdateSearchIndex' => __DIR__ . '/maintenance/updateSearchIndex.php',
|
|
|
|
|
'UpdateSpecialPages' => __DIR__ . '/maintenance/updateSpecialPages.php',
|
|
|
|
|
'UploadBase' => __DIR__ . '/includes/upload/UploadBase.php',
|
2019-02-06 21:22:01 +00:00
|
|
|
'UploadChunkFileException' => __DIR__ . '/includes/upload/exception/UploadChunkFileException.php',
|
|
|
|
|
'UploadChunkVerificationException' => __DIR__ . '/includes/upload/exception/UploadChunkVerificationException.php',
|
|
|
|
|
'UploadChunkZeroLengthFileException' => __DIR__ . '/includes/upload/exception/UploadChunkZeroLengthFileException.php',
|
2017-09-12 21:03:26 +00:00
|
|
|
'UploadForm' => __DIR__ . '/includes/specials/forms/UploadForm.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UploadFromChunks' => __DIR__ . '/includes/upload/UploadFromChunks.php',
|
|
|
|
|
'UploadFromFile' => __DIR__ . '/includes/upload/UploadFromFile.php',
|
|
|
|
|
'UploadFromStash' => __DIR__ . '/includes/upload/UploadFromStash.php',
|
|
|
|
|
'UploadFromUrl' => __DIR__ . '/includes/upload/UploadFromUrl.php',
|
2014-08-10 10:25:29 +00:00
|
|
|
'UploadLogFormatter' => __DIR__ . '/includes/logging/UploadLogFormatter.php',
|
2017-07-04 21:07:04 +00:00
|
|
|
'UploadRevisionImporter' => __DIR__ . '/includes/import/UploadRevisionImporter.php',
|
2015-12-28 22:27:48 +00:00
|
|
|
'UploadSourceAdapter' => __DIR__ . '/includes/import/UploadSourceAdapter.php',
|
2017-09-12 21:03:26 +00:00
|
|
|
'UploadSourceField' => __DIR__ . '/includes/specials/formfields/UploadSourceField.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UploadStash' => __DIR__ . '/includes/upload/UploadStash.php',
|
2019-02-06 21:22:01 +00:00
|
|
|
'UploadStashBadPathException' => __DIR__ . '/includes/upload/exception/UploadStashBadPathException.php',
|
|
|
|
|
'UploadStashException' => __DIR__ . '/includes/upload/exception/UploadStashException.php',
|
2019-04-14 02:50:59 +00:00
|
|
|
'UploadStashFile' => __DIR__ . '/includes/upload/UploadStashFile.php',
|
2019-02-06 21:22:01 +00:00
|
|
|
'UploadStashFileException' => __DIR__ . '/includes/upload/exception/UploadStashFileException.php',
|
|
|
|
|
'UploadStashFileNotFoundException' => __DIR__ . '/includes/upload/exception/UploadStashFileNotFoundException.php',
|
|
|
|
|
'UploadStashNoSuchKeyException' => __DIR__ . '/includes/upload/exception/UploadStashNoSuchKeyException.php',
|
|
|
|
|
'UploadStashNotLoggedInException' => __DIR__ . '/includes/upload/exception/UploadStashNotLoggedInException.php',
|
|
|
|
|
'UploadStashWrongOwnerException' => __DIR__ . '/includes/upload/exception/UploadStashWrongOwnerException.php',
|
|
|
|
|
'UploadStashZeroLengthFileException' => __DIR__ . '/includes/upload/exception/UploadStashZeroLengthFileException.php',
|
2016-04-03 08:23:20 +00:00
|
|
|
'UppercaseCollation' => __DIR__ . '/includes/collation/UppercaseCollation.php',
|
2019-04-30 15:33:06 +00:00
|
|
|
'UppercaseTitlesForUnicodeTransition' => __DIR__ . '/maintenance/uppercaseTitlesForUnicodeTransition.php',
|
2015-11-12 23:21:19 +00:00
|
|
|
'User' => __DIR__ . '/includes/user/User.php',
|
|
|
|
|
'UserArray' => __DIR__ . '/includes/user/UserArray.php',
|
|
|
|
|
'UserArrayFromResult' => __DIR__ . '/includes/user/UserArrayFromResult.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UserBlockedError' => __DIR__ . '/includes/exception/UserBlockedError.php',
|
|
|
|
|
'UserCache' => __DIR__ . '/includes/cache/UserCache.php',
|
2022-01-31 03:34:39 +00:00
|
|
|
'UserEditCountInfo' => __DIR__ . '/includes/deferred/UserEditCountInfo.php',
|
2020-08-05 16:02:05 +00:00
|
|
|
'UserEditCountInitJob' => __DIR__ . '/includes/jobqueue/jobs/UserEditCountInitJob.php',
|
2018-10-22 22:58:02 +00:00
|
|
|
'UserEditCountUpdate' => __DIR__ . '/includes/deferred/UserEditCountUpdate.php',
|
2017-10-15 22:36:40 +00:00
|
|
|
'UserGroupExpiryJob' => __DIR__ . '/includes/jobqueue/jobs/UserGroupExpiryJob.php',
|
User group memberships that expire
This patch adds an ug_expiry column to the user_groups table, a timestamp
giving a date when the user group expires. A new UserGroupMembership class,
based on the Block class, manages entries in this table.
When the expiry date passes, the row in user_groups is ignored, and will
eventually be purged from the DB when UserGroupMembership::insert is next
called. Old, expired user group memberships are not kept; instead, the log
entries are available to find the history of these memberships, similar
to the way it has always worked for blocks and protections.
Anyone getting user group info through the User object will get correct
information. However, code that reads the user_groups table directly will
now need to skip over rows with ug_expiry < wfTimestampNow(). See
UsersPager for an example of how to do this.
NULL is used to represent infinite (no) expiry, rather than a string
'infinity' or similar (except in the API). This allows existing user group
assignments and log entries, which are all infinite in duration, to be
treated the same as new, infinite-length memberships, without special
casing everything.
The whole thing is behind the temporary feature flag
$wgDisableUserGroupExpiry, in accordance with the WMF schema change policy.
The opportunity has been taken to refactor some static user-group-related
functions out of User into UserGroupMembership, and also to add a primary
key (ug_user, ug_group) to the user_groups table.
There are a few breaking changes:
- UserRightsProxy-like objects are now required to have a
getGroupMemberships() function.
- $user->mGroups (on a User object) is no longer present.
- Some protected functions in UsersPager are altered or removed.
- The UsersPagerDoBatchLookups hook (unused in any Wikimedia Git-hosted
extension) has a change of parameter.
Bug: T12493
Depends-On: Ia9616e1e35184fed9058d2d39afbe1038f56d7fa
Depends-On: I86eb1d5619347ce54a5f33a591417742ebe5d6f8
Change-Id: I93c955dc7a970f78e32aa503c01c67da30971d1a
2017-01-12 06:07:56 +00:00
|
|
|
'UserGroupMembership' => __DIR__ . '/includes/user/UserGroupMembership.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UserMailer' => __DIR__ . '/includes/mail/UserMailer.php',
|
2020-10-02 02:21:23 +00:00
|
|
|
'UserNamePrefixSearch' => __DIR__ . '/includes/user/UserNamePrefixSearch_deprecated.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'UserNotLoggedIn' => __DIR__ . '/includes/exception/UserNotLoggedIn.php',
|
2017-10-06 01:53:57 +00:00
|
|
|
'UserOptionsMaintenance' => __DIR__ . '/maintenance/userOptions.php',
|
2019-03-29 07:17:09 +00:00
|
|
|
'UserOptionsUpdateJob' => __DIR__ . '/includes/jobqueue/jobs/UserOptionsUpdateJob.php',
|
2015-04-23 01:48:48 +00:00
|
|
|
'UserPasswordPolicy' => __DIR__ . '/includes/password/UserPasswordPolicy.php',
|
2022-10-17 08:58:53 +00:00
|
|
|
'UserrightsPage' => __DIR__ . '/includes/specials/SpecialUserRights.php',
|
2016-03-24 11:25:40 +00:00
|
|
|
'UsersPager' => __DIR__ . '/includes/specials/pagers/UsersPager.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'UzConverter' => __DIR__ . '/includes/language/converters/UzConverter.php',
|
2014-12-24 17:21:32 +00:00
|
|
|
'VFormHTMLForm' => __DIR__ . '/includes/htmlform/VFormHTMLForm.php',
|
Implement extension registration from an extension.json file
Introduces wfLoadExtension()/wfLoadSkin() which should be used in
LocalSettings.php rather than require-ing a PHP entry point.
Extensions and skins would add "extension.json" or "skin.json" files
in their root, which contains all the information typically
present in PHP entry point files (classes to autoload, special pages,
API modules, etc.) A full schema can be found at
docs/extension.schema.json, and a script to validate these to the
schema is provided. An additional script is provided to convert
typical PHP entry point files into their JSON equivalents.
The basic flow of loading an extension goes like:
* Get the ExtensionRegistry singleton instance
* ExtensionRegistry takes a filename, reads the file or tries
to get the parsed JSON from APC if possible.
* The JSON is run through a Processor instance,
which registers things with the appropriate
global settings.
* The output of the processor is cached in APC if possible.
* The extension/skin is marked as loaded in the
ExtensionRegistry and a callback function is executed
if one was specified.
For ideal performance, a batch loading method is also provided:
* The absolute path name to the JSON file is queued
in the ExtensionRegistry instance.
* When loadFromQueue() is called, it constructs a hash
unique to the members of the current queue, and sees
if the queue has been cached in APC. If not, it processes
each file individually, and combines the result of each
Processor into one giant array, which is cached in APC.
* The giant array then sets various global settings,
defines constants, and calls callbacks.
To invalidate the cached processed info, by default the mtime
of each JSON file is checked. However that can be slow if you
have a large number of extensions, so you can set $wgExtensionInfoMTime
to the mtime of one file, and `touch` it whenever you update
your extensions.
Change-Id: I7074b65d07c5c7d4e3f1fb0755d74a0b07ed4596
2014-10-15 00:31:15 +00:00
|
|
|
'ValidateRegistrationFile' => __DIR__ . '/maintenance/validateRegistrationFile.php',
|
2020-07-16 13:00:41 +00:00
|
|
|
'Version' => __DIR__ . '/maintenance/version.php',
|
2016-12-03 18:06:46 +00:00
|
|
|
'VersionChecker' => __DIR__ . '/includes/registration/VersionChecker.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ViewAction' => __DIR__ . '/includes/actions/ViewAction.php',
|
2016-11-23 12:19:50 +00:00
|
|
|
'ViewCLI' => __DIR__ . '/maintenance/view.php',
|
2022-05-06 09:09:56 +00:00
|
|
|
'VueComponentParser' => __DIR__ . '/includes/ResourceLoader/VueComponentParser.php',
|
2019-08-02 22:01:53 +00:00
|
|
|
'WANObjectCache' => __DIR__ . '/includes/libs/objectcache/wancache/WANObjectCache.php',
|
2022-10-17 08:58:53 +00:00
|
|
|
'WantedFilesPage' => __DIR__ . '/includes/specials/SpecialWantedFiles.php',
|
|
|
|
|
'WantedPagesPage' => __DIR__ . '/includes/specials/SpecialWantedPages.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WantedQueryPage' => __DIR__ . '/includes/specialpage/WantedQueryPage.php',
|
|
|
|
|
'WatchAction' => __DIR__ . '/includes/actions/WatchAction.php',
|
2017-03-20 12:41:16 +00:00
|
|
|
'WatchedItem' => __DIR__ . '/includes/watcheditem/WatchedItem.php',
|
|
|
|
|
'WatchedItemQueryService' => __DIR__ . '/includes/watcheditem/WatchedItemQueryService.php',
|
|
|
|
|
'WatchedItemQueryServiceExtension' => __DIR__ . '/includes/watcheditem/WatchedItemQueryServiceExtension.php',
|
|
|
|
|
'WatchedItemStore' => __DIR__ . '/includes/watcheditem/WatchedItemStore.php',
|
2017-03-20 12:57:37 +00:00
|
|
|
'WatchedItemStoreInterface' => __DIR__ . '/includes/watcheditem/WatchedItemStoreInterface.php',
|
2020-02-14 05:55:07 +00:00
|
|
|
'WatchlistExpiryJob' => __DIR__ . '/includes/jobqueue/jobs/WatchlistExpiryJob.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WebInstaller' => __DIR__ . '/includes/installer/WebInstaller.php',
|
2016-01-05 20:48:25 +00:00
|
|
|
'WebInstallerComplete' => __DIR__ . '/includes/installer/WebInstallerComplete.php',
|
|
|
|
|
'WebInstallerCopying' => __DIR__ . '/includes/installer/WebInstallerCopying.php',
|
|
|
|
|
'WebInstallerDBConnect' => __DIR__ . '/includes/installer/WebInstallerDBConnect.php',
|
|
|
|
|
'WebInstallerDBSettings' => __DIR__ . '/includes/installer/WebInstallerDBSettings.php',
|
|
|
|
|
'WebInstallerDocument' => __DIR__ . '/includes/installer/WebInstallerDocument.php',
|
|
|
|
|
'WebInstallerExistingWiki' => __DIR__ . '/includes/installer/WebInstallerExistingWiki.php',
|
|
|
|
|
'WebInstallerInstall' => __DIR__ . '/includes/installer/WebInstallerInstall.php',
|
|
|
|
|
'WebInstallerLanguage' => __DIR__ . '/includes/installer/WebInstallerLanguage.php',
|
|
|
|
|
'WebInstallerName' => __DIR__ . '/includes/installer/WebInstallerName.php',
|
|
|
|
|
'WebInstallerOptions' => __DIR__ . '/includes/installer/WebInstallerOptions.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WebInstallerOutput' => __DIR__ . '/includes/installer/WebInstallerOutput.php',
|
|
|
|
|
'WebInstallerPage' => __DIR__ . '/includes/installer/WebInstallerPage.php',
|
2016-01-05 20:48:25 +00:00
|
|
|
'WebInstallerReleaseNotes' => __DIR__ . '/includes/installer/WebInstallerReleaseNotes.php',
|
|
|
|
|
'WebInstallerRestart' => __DIR__ . '/includes/installer/WebInstallerRestart.php',
|
|
|
|
|
'WebInstallerUpgrade' => __DIR__ . '/includes/installer/WebInstallerUpgrade.php',
|
|
|
|
|
'WebInstallerUpgradeDoc' => __DIR__ . '/includes/installer/WebInstallerUpgradeDoc.php',
|
|
|
|
|
'WebInstallerWelcome' => __DIR__ . '/includes/installer/WebInstallerWelcome.php',
|
2018-04-28 01:05:23 +00:00
|
|
|
'WebPHandler' => __DIR__ . '/includes/media/WebPHandler.php',
|
2023-09-07 11:46:15 +00:00
|
|
|
'WebRequest' => __DIR__ . '/includes/Request/WebRequest.php',
|
2022-10-28 10:04:25 +00:00
|
|
|
'WebRequestUpload' => __DIR__ . '/includes/Request/WebRequestUpload.php',
|
2023-03-01 17:02:32 +00:00
|
|
|
'WebResponse' => __DIR__ . '/includes/Request/WebResponse.php',
|
2022-06-03 20:48:25 +00:00
|
|
|
'WikiBirthday' => __DIR__ . '/maintenance/wikiBirthday.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WikiCategoryPage' => __DIR__ . '/includes/page/WikiCategoryPage.php',
|
2015-12-28 22:23:22 +00:00
|
|
|
'WikiExporter' => __DIR__ . '/includes/export/WikiExporter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WikiFilePage' => __DIR__ . '/includes/page/WikiFilePage.php',
|
2015-12-28 22:27:48 +00:00
|
|
|
'WikiImporter' => __DIR__ . '/includes/import/WikiImporter.php',
|
2021-05-14 23:16:34 +00:00
|
|
|
'WikiImporterFactory' => __DIR__ . '/includes/import/WikiImporterFactory.php',
|
2023-02-23 20:44:38 +00:00
|
|
|
'WikiMap' => __DIR__ . '/includes/WikiMap/WikiMap.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WikiPage' => __DIR__ . '/includes/page/WikiPage.php',
|
2023-02-23 20:44:38 +00:00
|
|
|
'WikiReference' => __DIR__ . '/includes/WikiMap/WikiReference.php',
|
2015-12-28 22:27:48 +00:00
|
|
|
'WikiRevision' => __DIR__ . '/includes/import/WikiRevision.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WikiStatsOutput' => __DIR__ . '/maintenance/language/StatOutputs.php',
|
2016-05-16 20:24:10 +00:00
|
|
|
'WikiTextStructure' => __DIR__ . '/includes/content/WikiTextStructure.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\DebugInfo\\AnnotationReader' => __DIR__ . '/includes/libs/DebugInfo/AnnotationReader.php',
|
|
|
|
|
'Wikimedia\\DebugInfo\\DebugInfoTrait' => __DIR__ . '/includes/libs/DebugInfo/DebugInfoTrait.php',
|
|
|
|
|
'Wikimedia\\DebugInfo\\DumpUtils' => __DIR__ . '/includes/libs/DebugInfo/DumpUtils.php',
|
|
|
|
|
'Wikimedia\\DebugInfo\\Placeholder' => __DIR__ . '/includes/libs/DebugInfo/Placeholder.php',
|
2022-05-06 09:09:56 +00:00
|
|
|
'Wikimedia\\DependencyStore\\DependencyStore' => __DIR__ . '/includes/ResourceLoader/dependencystore/DependencyStore.php',
|
|
|
|
|
'Wikimedia\\DependencyStore\\KeyValueDependencyStore' => __DIR__ . '/includes/ResourceLoader/dependencystore/KeyValueDependencyStore.php',
|
|
|
|
|
'Wikimedia\\DependencyStore\\SqlModuleDependencyStore' => __DIR__ . '/includes/ResourceLoader/dependencystore/SqlModuleDependencyStore.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'Wikimedia\\Diff\\ArrayDiffFormatter' => __DIR__ . '/includes/libs/Diff/ArrayDiffFormatter.php',
|
|
|
|
|
'Wikimedia\\Diff\\ComplexityException' => __DIR__ . '/includes/libs/Diff/ComplexityException.php',
|
|
|
|
|
'Wikimedia\\Diff\\Diff' => __DIR__ . '/includes/libs/Diff/Diff.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffEngine' => __DIR__ . '/includes/libs/Diff/DiffEngine.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffFormatter' => __DIR__ . '/includes/libs/Diff/DiffFormatter.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffOp' => __DIR__ . '/includes/libs/Diff/DiffOp.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffOpAdd' => __DIR__ . '/includes/libs/Diff/DiffOpAdd.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffOpChange' => __DIR__ . '/includes/libs/Diff/DiffOpChange.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffOpCopy' => __DIR__ . '/includes/libs/Diff/DiffOpCopy.php',
|
|
|
|
|
'Wikimedia\\Diff\\DiffOpDelete' => __DIR__ . '/includes/libs/Diff/DiffOpDelete.php',
|
|
|
|
|
'Wikimedia\\Diff\\TableDiffFormatter' => __DIR__ . '/includes/libs/Diff/TableDiffFormatter.php',
|
|
|
|
|
'Wikimedia\\Diff\\UnifiedDiffFormatter' => __DIR__ . '/includes/libs/Diff/UnifiedDiffFormatter.php',
|
|
|
|
|
'Wikimedia\\Diff\\WordAccumulator' => __DIR__ . '/includes/libs/Diff/WordAccumulator.php',
|
|
|
|
|
'Wikimedia\\Diff\\WordLevelDiff' => __DIR__ . '/includes/libs/Diff/WordLevelDiff.php',
|
2023-06-10 22:15:46 +00:00
|
|
|
'Wikimedia\\EventRelayer\\EventRelayer' => __DIR__ . '/includes/libs/eventrelayer/EventRelayer.php',
|
2023-06-09 20:58:57 +00:00
|
|
|
'Wikimedia\\EventRelayer\\EventRelayerGroup' => __DIR__ . '/includes/libs/eventrelayer/EventRelayerGroup.php',
|
2023-06-10 22:15:46 +00:00
|
|
|
'Wikimedia\\EventRelayer\\EventRelayerNull' => __DIR__ . '/includes/libs/eventrelayer/EventRelayerNull.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\Http\\HttpAcceptNegotiator' => __DIR__ . '/includes/libs/http/HttpAcceptNegotiator.php',
|
|
|
|
|
'Wikimedia\\Http\\HttpAcceptParser' => __DIR__ . '/includes/libs/http/HttpAcceptParser.php',
|
2023-09-07 17:46:30 +00:00
|
|
|
'Wikimedia\\Http\\TelemetryHeadersInterface' => __DIR__ . '/includes/libs/http/TelemetryHeadersInterface.php',
|
2020-01-09 22:10:08 +00:00
|
|
|
'Wikimedia\\LightweightObjectStore\\ExpirationAwareness' => __DIR__ . '/includes/libs/objectcache/utils/ExpirationAwareness.php',
|
|
|
|
|
'Wikimedia\\LightweightObjectStore\\StorageAwareness' => __DIR__ . '/includes/libs/objectcache/utils/StorageAwareness.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\Message\\DataMessageValue' => __DIR__ . '/includes/libs/Message/DataMessageValue.php',
|
|
|
|
|
'Wikimedia\\Message\\IMessageFormatterFactory' => __DIR__ . '/includes/libs/Message/IMessageFormatterFactory.php',
|
|
|
|
|
'Wikimedia\\Message\\ITextFormatter' => __DIR__ . '/includes/libs/Message/ITextFormatter.php',
|
|
|
|
|
'Wikimedia\\Message\\ListParam' => __DIR__ . '/includes/libs/Message/ListParam.php',
|
|
|
|
|
'Wikimedia\\Message\\ListType' => __DIR__ . '/includes/libs/Message/ListType.php',
|
|
|
|
|
'Wikimedia\\Message\\MessageParam' => __DIR__ . '/includes/libs/Message/MessageParam.php',
|
|
|
|
|
'Wikimedia\\Message\\MessageValue' => __DIR__ . '/includes/libs/Message/MessageValue.php',
|
|
|
|
|
'Wikimedia\\Message\\ParamType' => __DIR__ . '/includes/libs/Message/ParamType.php',
|
|
|
|
|
'Wikimedia\\Message\\ScalarParam' => __DIR__ . '/includes/libs/Message/ScalarParam.php',
|
mime: Convert built-in MIME mappings to PHP arrays
Currently, MimeAnalyzer builds the internal mappings of MIME types <=> file
extensions by concatenating several string buffers in mime.type format into a
giant string, and then parsing it. The mapping of MIME types to internal
media types is built up in a similar way, except we use a dubious homegrown
format with undocumented conventions. It's a mess, and an expensive one --
~1.5% of api.php CPU time on the WMF cluster is spent building these buffers
and parsing them. Converting the mappings to PHP associative arrays makes
them much cheaper to load and easier to maintain.
Doing this without breaking compatibility with existing behaviors requires
some delicate footwork. The current mime.types buffer is made up of the
following fragments, in order:
1) MimeAnalyzer::$wellKnownTypes
2) If $wgMimeTypeFile == 'includes/mime.types' (sic!):
the contents of includes/libs/mime/mime.types.
If $wgMimeTypeFile is another file path (e.g., '/etc/mime.types'):
the contents of that file.
If !wg$MimeTypeFile, this fragment is blank.
3) MimeAnalyzer::$extraTypes (populated by extensions via hook).
The mime.info buffer is built up in the exact same way, except it's
MimeAnalyzer::$wellKnownInfo, $wgMimeInfoFile, and MimeAnalyzer::$extraInfo.
What this means in effect is that some built-in MediaWiki MIME mappings are
"baked in" (anything in MimeAnalyzer::$wellKnown*), and others can be
overridden (anything in includes/libs/mime/mime.*).
To avoid breaking backward compatibility, we have to preserve the
distinction. Thus this change has two MIME mappings, encapsulated in two
classes: 'MimeMapMinimal', which contains just the baked-in mappings, and
'MimeMap' which contains both the baked-in and overridable mappings. We also
have to keep the code for parsing mime.types and the ad-hoc mime.info format,
at least for now.
In a FUTURE change (i.e., not here), I think we can:
* Deprecate $wgMimeTypeFile in favor of a new config var,
$wgExtraMimeTypeFile. $wgMimeTypeFile is evil because if you are using to
add support for additional MIME types, you can end up unwittingly dropping
support for other types that exist in MediaWiki's mime.types but not your
file. The new $wgExtraMimeTypeFile would only be used to add new MIME
mappings on top of the standard MimeMappings, which was probably the
original intent for $wgMimeTypeFile.
* Deprecate $wgMimeInfoFile. I don't think we need to provide a replacement,
because extensions can use the hook, and I doubt anyone is using the config
var. But if we wanted to provide an alternative, we could have a
$wgExtraMimeInfoMap that has an array of extra mappings.
* Deprecate MimeAnalyzer::addExtraTypes and MimeAnalyzer::addExtraInfo, and
provide alternative interfaces that take structured input instead of string
blobs.
I tested this by dumping the internal state of MimeAnalyzer before and after
this CL using the script in Ib856a69fe, using both default and custom values
for $wgMimeInfo(File|Type).
Bug: T252228
Change-Id: I9b2979d3c9c0dee96bb19e0290f680724e718891
2020-05-12 19:42:35 +00:00
|
|
|
'Wikimedia\\Mime\\MimeMap' => __DIR__ . '/includes/libs/mime/MimeMap.php',
|
|
|
|
|
'Wikimedia\\Mime\\MimeMapMinimal' => __DIR__ . '/includes/libs/mime/MimeMapMinimal.php',
|
2020-09-07 09:30:43 +00:00
|
|
|
'Wikimedia\\NonSerializable\\NonSerializableTrait' => __DIR__ . '/includes/libs/NonSerializableTrait.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\ParamValidator\\Callbacks' => __DIR__ . '/includes/libs/ParamValidator/Callbacks.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\ParamValidator' => __DIR__ . '/includes/libs/ParamValidator/ParamValidator.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\SimpleCallbacks' => __DIR__ . '/includes/libs/ParamValidator/SimpleCallbacks.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\BooleanDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/BooleanDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\EnumDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/EnumDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\ExpiryDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/ExpiryDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\FloatDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/FloatDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\IntegerDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/IntegerDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\LimitDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/LimitDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\NumericDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/NumericDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\PasswordDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/PasswordDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\PresenceBooleanDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/PresenceBooleanDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\StringDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/StringDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\TimestampDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/TimestampDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\TypeDef\\UploadDef' => __DIR__ . '/includes/libs/ParamValidator/TypeDef/UploadDef.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\Util\\UploadedFile' => __DIR__ . '/includes/libs/ParamValidator/Util/UploadedFile.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\Util\\UploadedFileStream' => __DIR__ . '/includes/libs/ParamValidator/Util/UploadedFileStream.php',
|
|
|
|
|
'Wikimedia\\ParamValidator\\ValidationException' => __DIR__ . '/includes/libs/ParamValidator/ValidationException.php',
|
2023-10-09 20:08:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\AndExpressionGroup' => __DIR__ . '/includes/libs/rdbms/expression/AndExpressionGroup.php',
|
2019-03-26 05:39:24 +00:00
|
|
|
'Wikimedia\\Rdbms\\AtomicSectionIdentifier' => __DIR__ . '/includes/libs/rdbms/database/utils/AtomicSectionIdentifier.php',
|
2017-02-07 17:36:12 +00:00
|
|
|
'Wikimedia\\Rdbms\\Blob' => __DIR__ . '/includes/libs/rdbms/encasing/Blob.php',
|
2023-08-07 12:08:50 +00:00
|
|
|
'Wikimedia\\Rdbms\\ChangedTablesTracker' => __DIR__ . '/includes/libs/rdbms/ChangedTablesTracker.php',
|
2017-01-26 17:42:38 +00:00
|
|
|
'Wikimedia\\Rdbms\\ChronologyProtector' => __DIR__ . '/includes/libs/rdbms/ChronologyProtector.php',
|
2023-05-04 21:41:21 +00:00
|
|
|
'Wikimedia\\Rdbms\\ConfiguredReadOnlyMode' => __DIR__ . '/includes/libs/rdbms/ConfiguredReadOnlyMode.php',
|
2016-11-21 13:26:07 +00:00
|
|
|
'Wikimedia\\Rdbms\\ConnectionManager' => __DIR__ . '/includes/libs/rdbms/connectionmanager/ConnectionManager.php',
|
2022-03-18 00:08:39 +00:00
|
|
|
'Wikimedia\\Rdbms\\CriticalSessionInfo' => __DIR__ . '/includes/libs/rdbms/database/utils/CriticalSessionInfo.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBAccessError' => __DIR__ . '/includes/libs/rdbms/exception/DBAccessError.php',
|
2017-03-29 16:15:50 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBConnRef' => __DIR__ . '/includes/libs/rdbms/database/DBConnRef.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBConnectionError' => __DIR__ . '/includes/libs/rdbms/exception/DBConnectionError.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DBError' => __DIR__ . '/includes/libs/rdbms/exception/DBError.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DBExpectedError' => __DIR__ . '/includes/libs/rdbms/exception/DBExpectedError.php',
|
2021-12-08 12:08:11 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBLanguageError' => __DIR__ . '/includes/libs/rdbms/exception/DBLanguageError.php',
|
2021-05-14 19:48:07 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBPrimaryPos' => __DIR__ . '/includes/libs/rdbms/database/position/DBPrimaryPos.php',
|
2019-05-07 00:01:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBQueryDisconnectedError' => __DIR__ . '/includes/libs/rdbms/exception/DBQueryDisconnectedError.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBQueryError' => __DIR__ . '/includes/libs/rdbms/exception/DBQueryError.php',
|
2017-09-18 11:38:59 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBQueryTimeoutError' => __DIR__ . '/includes/libs/rdbms/exception/DBQueryTimeoutError.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBReadOnlyError' => __DIR__ . '/includes/libs/rdbms/exception/DBReadOnlyError.php',
|
2019-03-21 16:10:23 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBReadOnlyRoleError' => __DIR__ . '/includes/libs/rdbms/exception/DBReadOnlyRoleError.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBReplicationWaitError' => __DIR__ . '/includes/libs/rdbms/exception/DBReplicationWaitError.php',
|
2022-03-18 00:08:39 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBSessionStateError' => __DIR__ . '/includes/libs/rdbms/exception/DBSessionStateError.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBTransactionError' => __DIR__ . '/includes/libs/rdbms/exception/DBTransactionError.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DBTransactionSizeError' => __DIR__ . '/includes/libs/rdbms/exception/DBTransactionSizeError.php',
|
2018-03-23 09:57:21 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBTransactionStateError' => __DIR__ . '/includes/libs/rdbms/exception/DBTransactionStateError.php',
|
2017-02-24 16:17:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\DBUnexpectedError' => __DIR__ . '/includes/libs/rdbms/exception/DBUnexpectedError.php',
|
2017-02-07 04:49:57 +00:00
|
|
|
'Wikimedia\\Rdbms\\Database' => __DIR__ . '/includes/libs/rdbms/database/Database.php',
|
2019-03-26 05:39:24 +00:00
|
|
|
'Wikimedia\\Rdbms\\DatabaseDomain' => __DIR__ . '/includes/libs/rdbms/database/domain/DatabaseDomain.php',
|
2020-07-23 09:31:57 +00:00
|
|
|
'Wikimedia\\Rdbms\\DatabaseFactory' => __DIR__ . '/includes/libs/rdbms/database/DatabaseFactory.php',
|
2023-08-10 22:12:01 +00:00
|
|
|
'Wikimedia\\Rdbms\\DatabaseMySQL' => __DIR__ . '/includes/libs/rdbms/database/DatabaseMySQL.php',
|
2017-02-07 04:49:57 +00:00
|
|
|
'Wikimedia\\Rdbms\\DatabasePostgres' => __DIR__ . '/includes/libs/rdbms/database/DatabasePostgres.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DatabaseSqlite' => __DIR__ . '/includes/libs/rdbms/database/DatabaseSqlite.php',
|
2022-08-19 12:18:07 +00:00
|
|
|
'Wikimedia\\Rdbms\\Database\\DatabaseFlags' => __DIR__ . '/includes/libs/rdbms/database/DatabaseFlags.php',
|
2022-04-25 08:47:27 +00:00
|
|
|
'Wikimedia\\Rdbms\\Database\\DbQuoter' => __DIR__ . '/includes/libs/rdbms/database/DbQuoter.php',
|
2022-08-19 12:18:07 +00:00
|
|
|
'Wikimedia\\Rdbms\\Database\\IDatabaseFlags' => __DIR__ . '/includes/libs/rdbms/database/IDatabaseFlags.php',
|
2023-04-25 09:21:02 +00:00
|
|
|
'Wikimedia\\Rdbms\\DeleteQueryBuilder' => __DIR__ . '/includes/libs/rdbms/querybuilder/DeleteQueryBuilder.php',
|
2021-04-27 01:08:09 +00:00
|
|
|
'Wikimedia\\Rdbms\\DoctrineAbstractSchemaTrait' => __DIR__ . '/includes/libs/rdbms/dbal/DoctrineAbstractSchemaTrait.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DoctrineSchemaBuilder' => __DIR__ . '/includes/libs/rdbms/dbal/DoctrineSchemaBuilder.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DoctrineSchemaBuilderFactory' => __DIR__ . '/includes/libs/rdbms/dbal/DoctrineSchemaBuilderFactory.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\DoctrineSchemaChangeBuilder' => __DIR__ . '/includes/libs/rdbms/dbal/DoctrineSchemaChangeBuilder.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\EnumType' => __DIR__ . '/includes/libs/rdbms/dbal/EnumType.php',
|
2023-10-09 20:08:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\Expression' => __DIR__ . '/includes/libs/rdbms/expression/Expression.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\ExpressionGroup' => __DIR__ . '/includes/libs/rdbms/expression/ExpressionGroup.php',
|
2017-02-19 05:03:13 +00:00
|
|
|
'Wikimedia\\Rdbms\\FakeResultWrapper' => __DIR__ . '/includes/libs/rdbms/database/resultwrapper/FakeResultWrapper.php',
|
2017-02-08 07:10:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\Field' => __DIR__ . '/includes/libs/rdbms/field/Field.php',
|
2019-05-07 00:01:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\GeneralizedSql' => __DIR__ . '/includes/libs/rdbms/database/utils/GeneralizedSql.php',
|
2017-02-07 17:36:12 +00:00
|
|
|
'Wikimedia\\Rdbms\\IBlob' => __DIR__ . '/includes/libs/rdbms/encasing/IBlob.php',
|
2023-02-08 16:23:10 +00:00
|
|
|
'Wikimedia\\Rdbms\\IConnectionProvider' => __DIR__ . '/includes/libs/rdbms/lbfactory/IConnectionProvider.php',
|
2017-02-10 18:09:05 +00:00
|
|
|
'Wikimedia\\Rdbms\\IDatabase' => __DIR__ . '/includes/libs/rdbms/database/IDatabase.php',
|
2023-10-09 20:08:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\IExpression' => __DIR__ . '/includes/libs/rdbms/expression/IExpression.php',
|
2017-01-26 18:27:37 +00:00
|
|
|
'Wikimedia\\Rdbms\\ILBFactory' => __DIR__ . '/includes/libs/rdbms/lbfactory/ILBFactory.php',
|
2017-02-06 21:53:13 +00:00
|
|
|
'Wikimedia\\Rdbms\\ILoadBalancer' => __DIR__ . '/includes/libs/rdbms/loadbalancer/ILoadBalancer.php',
|
2022-04-14 03:29:45 +00:00
|
|
|
'Wikimedia\\Rdbms\\ILoadBalancerForOwner' => __DIR__ . '/includes/libs/rdbms/loadbalancer/ILoadBalancerForOwner.php',
|
2017-01-26 17:59:18 +00:00
|
|
|
'Wikimedia\\Rdbms\\ILoadMonitor' => __DIR__ . '/includes/libs/rdbms/loadmonitor/ILoadMonitor.php',
|
2017-02-10 18:09:05 +00:00
|
|
|
'Wikimedia\\Rdbms\\IMaintainableDatabase' => __DIR__ . '/includes/libs/rdbms/database/IMaintainableDatabase.php',
|
2023-02-08 16:23:10 +00:00
|
|
|
'Wikimedia\\Rdbms\\IReadableDatabase' => __DIR__ . '/includes/libs/rdbms/database/IReadableDatabase.php',
|
2017-02-08 07:53:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\IResultWrapper' => __DIR__ . '/includes/libs/rdbms/database/resultwrapper/IResultWrapper.php',
|
2023-07-05 13:51:10 +00:00
|
|
|
'Wikimedia\\Rdbms\\InsertQueryBuilder' => __DIR__ . '/includes/libs/rdbms/querybuilder/InsertQueryBuilder.php',
|
2020-01-16 04:31:35 +00:00
|
|
|
'Wikimedia\\Rdbms\\JoinGroup' => __DIR__ . '/includes/libs/rdbms/querybuilder/JoinGroup.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\JoinGroupBase' => __DIR__ . '/includes/libs/rdbms/querybuilder/JoinGroupBase.php',
|
2017-01-26 18:27:37 +00:00
|
|
|
'Wikimedia\\Rdbms\\LBFactory' => __DIR__ . '/includes/libs/rdbms/lbfactory/LBFactory.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\LBFactoryMulti' => __DIR__ . '/includes/libs/rdbms/lbfactory/LBFactoryMulti.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\LBFactorySimple' => __DIR__ . '/includes/libs/rdbms/lbfactory/LBFactorySimple.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\LBFactorySingle' => __DIR__ . '/includes/libs/rdbms/lbfactory/LBFactorySingle.php',
|
2017-02-07 05:20:39 +00:00
|
|
|
'Wikimedia\\Rdbms\\LikeMatch' => __DIR__ . '/includes/libs/rdbms/encasing/LikeMatch.php',
|
2023-11-01 21:11:17 +00:00
|
|
|
'Wikimedia\\Rdbms\\LikeValue' => __DIR__ . '/includes/libs/rdbms/expression/LikeValue.php',
|
2017-02-18 00:26:47 +00:00
|
|
|
'Wikimedia\\Rdbms\\LoadBalancer' => __DIR__ . '/includes/libs/rdbms/loadbalancer/LoadBalancer.php',
|
2023-01-25 15:11:10 +00:00
|
|
|
'Wikimedia\\Rdbms\\LoadBalancerDisabled' => __DIR__ . '/includes/libs/rdbms/loadbalancer/LoadBalancerDisabled.php',
|
2017-02-18 00:26:47 +00:00
|
|
|
'Wikimedia\\Rdbms\\LoadBalancerSingle' => __DIR__ . '/includes/libs/rdbms/loadbalancer/LoadBalancerSingle.php',
|
2017-01-26 17:59:18 +00:00
|
|
|
'Wikimedia\\Rdbms\\LoadMonitor' => __DIR__ . '/includes/libs/rdbms/loadmonitor/LoadMonitor.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\LoadMonitorNull' => __DIR__ . '/includes/libs/rdbms/loadmonitor/LoadMonitorNull.php',
|
2021-04-27 01:08:09 +00:00
|
|
|
'Wikimedia\\Rdbms\\MWMySQLPlatform' => __DIR__ . '/includes/libs/rdbms/dbal/MWMySQLPlatform.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\MWPostgreSqlPlatform' => __DIR__ . '/includes/libs/rdbms/dbal/MWPostgreSqlPlatform.php',
|
2017-03-29 16:15:50 +00:00
|
|
|
'Wikimedia\\Rdbms\\MaintainableDBConnRef' => __DIR__ . '/includes/libs/rdbms/database/MaintainableDBConnRef.php',
|
2017-02-08 07:10:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\MySQLField' => __DIR__ . '/includes/libs/rdbms/field/MySQLField.php',
|
2021-05-14 19:48:07 +00:00
|
|
|
'Wikimedia\\Rdbms\\MySQLPrimaryPos' => __DIR__ . '/includes/libs/rdbms/database/position/MySQLPrimaryPos.php',
|
2021-07-15 00:46:59 +00:00
|
|
|
'Wikimedia\\Rdbms\\MysqliResultWrapper' => __DIR__ . '/includes/libs/rdbms/database/resultwrapper/MysqliResultWrapper.php',
|
2017-08-31 00:27:51 +00:00
|
|
|
'Wikimedia\\Rdbms\\NextSequenceValue' => __DIR__ . '/includes/libs/rdbms/database/utils/NextSequenceValue.php',
|
2023-10-09 20:08:03 +00:00
|
|
|
'Wikimedia\\Rdbms\\OrExpressionGroup' => __DIR__ . '/includes/libs/rdbms/expression/OrExpressionGroup.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\Rdbms\\Platform\\ISQLPlatform' => __DIR__ . '/includes/libs/rdbms/platform/ISQLPlatform.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\Platform\\MySQLPlatform' => __DIR__ . '/includes/libs/rdbms/platform/MySQLPlatform.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\Platform\\PostgresPlatform' => __DIR__ . '/includes/libs/rdbms/platform/PostgresPlatform.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\Platform\\SQLPlatform' => __DIR__ . '/includes/libs/rdbms/platform/SQLPlatform.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\Platform\\SqlitePlatform' => __DIR__ . '/includes/libs/rdbms/platform/SqlitePlatform.php',
|
2017-02-07 17:36:12 +00:00
|
|
|
'Wikimedia\\Rdbms\\PostgresBlob' => __DIR__ . '/includes/libs/rdbms/encasing/PostgresBlob.php',
|
2017-02-08 07:10:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\PostgresField' => __DIR__ . '/includes/libs/rdbms/field/PostgresField.php',
|
2021-07-15 00:46:59 +00:00
|
|
|
'Wikimedia\\Rdbms\\PostgresResultWrapper' => __DIR__ . '/includes/libs/rdbms/database/resultwrapper/PostgresResultWrapper.php',
|
2023-04-21 09:41:25 +00:00
|
|
|
'Wikimedia\\Rdbms\\Query' => __DIR__ . '/includes/libs/rdbms/database/Query.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\QueryBuilderFromRawSql' => __DIR__ . '/includes/libs/rdbms/database/QueryBuilderFromRawSql.php',
|
2020-02-19 08:34:41 +00:00
|
|
|
'Wikimedia\\Rdbms\\QueryStatus' => __DIR__ . '/includes/libs/rdbms/database/utils/QueryStatus.php',
|
2023-05-04 21:41:21 +00:00
|
|
|
'Wikimedia\\Rdbms\\ReadOnlyMode' => __DIR__ . '/includes/libs/rdbms/ReadOnlyMode.php',
|
2023-09-07 16:21:48 +00:00
|
|
|
'Wikimedia\\Rdbms\\ReplaceQueryBuilder' => __DIR__ . '/includes/libs/rdbms/querybuilder/ReplaceQueryBuilder.php',
|
2022-10-13 14:03:27 +00:00
|
|
|
'Wikimedia\\Rdbms\\Replication\\MysqlReplicationReporter' => __DIR__ . '/includes/libs/rdbms/database/replication/MysqlReplicationReporter.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\Replication\\ReplicationReporter' => __DIR__ . '/includes/libs/rdbms/database/replication/ReplicationReporter.php',
|
2017-02-19 05:03:13 +00:00
|
|
|
'Wikimedia\\Rdbms\\ResultWrapper' => __DIR__ . '/includes/libs/rdbms/database/resultwrapper/ResultWrapper.php',
|
2017-02-08 07:10:16 +00:00
|
|
|
'Wikimedia\\Rdbms\\SQLiteField' => __DIR__ . '/includes/libs/rdbms/field/SQLiteField.php',
|
2021-04-27 01:08:09 +00:00
|
|
|
'Wikimedia\\Rdbms\\SchemaBuilder' => __DIR__ . '/includes/libs/rdbms/dbal/SchemaBuilder.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\SchemaChangeBuilder' => __DIR__ . '/includes/libs/rdbms/dbal/SchemaChangeBuilder.php',
|
2020-01-16 04:31:35 +00:00
|
|
|
'Wikimedia\\Rdbms\\SelectQueryBuilder' => __DIR__ . '/includes/libs/rdbms/querybuilder/SelectQueryBuilder.php',
|
2023-03-02 02:35:44 +00:00
|
|
|
'Wikimedia\\Rdbms\\ServerInfo' => __DIR__ . '/includes/libs/rdbms/ServerInfo.php',
|
2016-11-21 13:26:07 +00:00
|
|
|
'Wikimedia\\Rdbms\\SessionConsistentConnectionManager' => __DIR__ . '/includes/libs/rdbms/connectionmanager/SessionConsistentConnectionManager.php',
|
2021-07-15 00:46:59 +00:00
|
|
|
'Wikimedia\\Rdbms\\SqliteResultWrapper' => __DIR__ . '/includes/libs/rdbms/database/resultwrapper/SqliteResultWrapper.php',
|
2018-02-15 03:46:04 +00:00
|
|
|
'Wikimedia\\Rdbms\\Subquery' => __DIR__ . '/includes/libs/rdbms/encasing/Subquery.php',
|
2023-11-21 01:00:21 +00:00
|
|
|
'Wikimedia\\Rdbms\\TempTableInfo' => __DIR__ . '/includes/libs/rdbms/database/utils/TempTableInfo.php',
|
2021-04-27 01:08:09 +00:00
|
|
|
'Wikimedia\\Rdbms\\TimestampType' => __DIR__ . '/includes/libs/rdbms/dbal/TimestampType.php',
|
|
|
|
|
'Wikimedia\\Rdbms\\TinyIntType' => __DIR__ . '/includes/libs/rdbms/dbal/TinyIntType.php',
|
2022-03-23 21:22:45 +00:00
|
|
|
'Wikimedia\\Rdbms\\TransactionIdentifier' => __DIR__ . '/includes/libs/rdbms/database/utils/TransactionIdentifier.php',
|
2022-01-20 20:29:32 +00:00
|
|
|
'Wikimedia\\Rdbms\\TransactionManager' => __DIR__ . '/includes/libs/rdbms/database/TransactionManager.php',
|
2017-01-26 17:42:38 +00:00
|
|
|
'Wikimedia\\Rdbms\\TransactionProfiler' => __DIR__ . '/includes/libs/rdbms/TransactionProfiler.php',
|
2023-04-05 20:21:24 +00:00
|
|
|
'Wikimedia\\Rdbms\\UnionQueryBuilder' => __DIR__ . '/includes/libs/rdbms/querybuilder/UnionQueryBuilder.php',
|
2023-02-15 20:10:05 +00:00
|
|
|
'Wikimedia\\Rdbms\\UpdateQueryBuilder' => __DIR__ . '/includes/libs/rdbms/querybuilder/UpdateQueryBuilder.php',
|
2020-11-05 17:04:37 +00:00
|
|
|
'Wikimedia\\Reflection\\GhostFieldAccessTrait' => __DIR__ . '/includes/libs/GhostFieldAccessTrait.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\StaticArrayWriter' => __DIR__ . '/includes/libs/StaticArrayWriter.php',
|
2023-02-24 21:18:13 +00:00
|
|
|
'Wikimedia\\Stats\\Emitters\\EmitterInterface' => __DIR__ . '/includes/libs/Stats/Emitters/EmitterInterface.php',
|
|
|
|
|
'Wikimedia\\Stats\\Emitters\\NullEmitter' => __DIR__ . '/includes/libs/Stats/Emitters/NullEmitter.php',
|
|
|
|
|
'Wikimedia\\Stats\\Emitters\\UDPEmitter' => __DIR__ . '/includes/libs/Stats/Emitters/UDPEmitter.php',
|
|
|
|
|
'Wikimedia\\Stats\\Exceptions\\IllegalOperationException' => __DIR__ . '/includes/libs/Stats/Exceptions/IllegalOperationException.php',
|
|
|
|
|
'Wikimedia\\Stats\\Exceptions\\InvalidConfigurationException' => __DIR__ . '/includes/libs/Stats/Exceptions/InvalidConfigurationException.php',
|
|
|
|
|
'Wikimedia\\Stats\\Exceptions\\UnsupportedFormatException' => __DIR__ . '/includes/libs/Stats/Exceptions/UnsupportedFormatException.php',
|
|
|
|
|
'Wikimedia\\Stats\\Formatters\\DogStatsdFormatter' => __DIR__ . '/includes/libs/Stats/Formatters/DogStatsdFormatter.php',
|
|
|
|
|
'Wikimedia\\Stats\\Formatters\\FormatterInterface' => __DIR__ . '/includes/libs/Stats/Formatters/FormatterInterface.php',
|
|
|
|
|
'Wikimedia\\Stats\\Formatters\\NullFormatter' => __DIR__ . '/includes/libs/Stats/Formatters/NullFormatter.php',
|
|
|
|
|
'Wikimedia\\Stats\\Formatters\\StatsdFormatter' => __DIR__ . '/includes/libs/Stats/Formatters/StatsdFormatter.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\BaseMetric' => __DIR__ . '/includes/libs/Stats/Metrics/BaseMetric.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\BaseMetricInterface' => __DIR__ . '/includes/libs/Stats/Metrics/BaseMetricInterface.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\CounterMetric' => __DIR__ . '/includes/libs/Stats/Metrics/CounterMetric.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\GaugeMetric' => __DIR__ . '/includes/libs/Stats/Metrics/GaugeMetric.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\MetricInterface' => __DIR__ . '/includes/libs/Stats/Metrics/MetricInterface.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\NullMetric' => __DIR__ . '/includes/libs/Stats/Metrics/NullMetric.php',
|
|
|
|
|
'Wikimedia\\Stats\\Metrics\\TimingMetric' => __DIR__ . '/includes/libs/Stats/Metrics/TimingMetric.php',
|
|
|
|
|
'Wikimedia\\Stats\\OutputFormats' => __DIR__ . '/includes/libs/Stats/OutputFormats.php',
|
|
|
|
|
'Wikimedia\\Stats\\Sample' => __DIR__ . '/includes/libs/Stats/Sample.php',
|
|
|
|
|
'Wikimedia\\Stats\\StatsCache' => __DIR__ . '/includes/libs/Stats/StatsCache.php',
|
|
|
|
|
'Wikimedia\\Stats\\StatsFactory' => __DIR__ . '/includes/libs/Stats/StatsFactory.php',
|
|
|
|
|
'Wikimedia\\Stats\\StatsUtils' => __DIR__ . '/includes/libs/Stats/StatsUtils.php',
|
2022-11-07 12:23:37 +00:00
|
|
|
'Wikimedia\\UUID\\GlobalIdGenerator' => __DIR__ . '/includes/libs/uuid/GlobalIdGenerator.php',
|
|
|
|
|
'Wikimedia\\WRStats\\ArrayStatsStore' => __DIR__ . '/includes/libs/WRStats/ArrayStatsStore.php',
|
|
|
|
|
'Wikimedia\\WRStats\\BagOStuffStatsStore' => __DIR__ . '/includes/libs/WRStats/BagOStuffStatsStore.php',
|
|
|
|
|
'Wikimedia\\WRStats\\EntityKey' => __DIR__ . '/includes/libs/WRStats/EntityKey.php',
|
|
|
|
|
'Wikimedia\\WRStats\\GlobalEntityKey' => __DIR__ . '/includes/libs/WRStats/GlobalEntityKey.php',
|
|
|
|
|
'Wikimedia\\WRStats\\LimitBatch' => __DIR__ . '/includes/libs/WRStats/LimitBatch.php',
|
|
|
|
|
'Wikimedia\\WRStats\\LimitBatchResult' => __DIR__ . '/includes/libs/WRStats/LimitBatchResult.php',
|
|
|
|
|
'Wikimedia\\WRStats\\LimitCondition' => __DIR__ . '/includes/libs/WRStats/LimitCondition.php',
|
|
|
|
|
'Wikimedia\\WRStats\\LimitOperation' => __DIR__ . '/includes/libs/WRStats/LimitOperation.php',
|
|
|
|
|
'Wikimedia\\WRStats\\LimitOperationResult' => __DIR__ . '/includes/libs/WRStats/LimitOperationResult.php',
|
|
|
|
|
'Wikimedia\\WRStats\\LocalEntityKey' => __DIR__ . '/includes/libs/WRStats/LocalEntityKey.php',
|
|
|
|
|
'Wikimedia\\WRStats\\MetricSpec' => __DIR__ . '/includes/libs/WRStats/MetricSpec.php',
|
|
|
|
|
'Wikimedia\\WRStats\\RatePromise' => __DIR__ . '/includes/libs/WRStats/RatePromise.php',
|
|
|
|
|
'Wikimedia\\WRStats\\SequenceSpec' => __DIR__ . '/includes/libs/WRStats/SequenceSpec.php',
|
|
|
|
|
'Wikimedia\\WRStats\\StatsStore' => __DIR__ . '/includes/libs/WRStats/StatsStore.php',
|
|
|
|
|
'Wikimedia\\WRStats\\TimeRange' => __DIR__ . '/includes/libs/WRStats/TimeRange.php',
|
|
|
|
|
'Wikimedia\\WRStats\\WRStatsError' => __DIR__ . '/includes/libs/WRStats/WRStatsError.php',
|
|
|
|
|
'Wikimedia\\WRStats\\WRStatsFactory' => __DIR__ . '/includes/libs/WRStats/WRStatsFactory.php',
|
|
|
|
|
'Wikimedia\\WRStats\\WRStatsRateLimiter' => __DIR__ . '/includes/libs/WRStats/WRStatsRateLimiter.php',
|
|
|
|
|
'Wikimedia\\WRStats\\WRStatsReader' => __DIR__ . '/includes/libs/WRStats/WRStatsReader.php',
|
|
|
|
|
'Wikimedia\\WRStats\\WRStatsWriter' => __DIR__ . '/includes/libs/WRStats/WRStatsWriter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WikitextContent' => __DIR__ . '/includes/content/WikitextContent.php',
|
|
|
|
|
'WikitextContentHandler' => __DIR__ . '/includes/content/WikitextContentHandler.php',
|
2018-02-25 00:19:31 +00:00
|
|
|
'WikitextLogFormatter' => __DIR__ . '/includes/logging/WikitextLogFormatter.php',
|
2019-08-02 22:01:53 +00:00
|
|
|
'WinCacheBagOStuff' => __DIR__ . '/includes/libs/objectcache/WinCacheBagOStuff.php',
|
2023-06-20 04:02:04 +00:00
|
|
|
'WordLevelDiff' => __DIR__ . '/includes/libs/Diff/WordLevelDiff.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'WrapOldPasswords' => __DIR__ . '/maintenance/wrapOldPasswords.php',
|
2014-07-26 14:55:14 +00:00
|
|
|
'WuuConverter' => __DIR__ . '/includes/language/converters/WuuConverter.php',
|
2019-01-30 05:35:11 +00:00
|
|
|
'XCFHandler' => __DIR__ . '/includes/media/XCFHandler.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'XMLRCFeedFormatter' => __DIR__ . '/includes/rcfeed/XMLRCFeedFormatter.php',
|
Decouple Xhprof profiling from profiling data processing
The motivation for this patch came from trying to use xhprof to profile the
unit tests. I was able to profile specific test suites, but if I tried to
profile a complete PHPUnit run, I ended up with empty profiling data. My
initial suspicion was that this was due to some Xhprof buffer getting
exhausted. The actual reason ended up being much simpler: the XhprofTest suite
indirectly called xhprof_enable() / xhprof_disable(), which stopped xhprof and
cleared out the data, so that when I was calling xhprof_disable() at the end of
the run, there was no profiling data to return, because xhprof was not running.
For the most part the XhprofTest was already doing the right thing by trying to
avoid having side-effects or relying on xhprof. Wherever possible, test fixture
profiling data was used in lieu of actually running xhprof. But this was not
totally successful because the Xhprof class coupled the collection of data to
the processing of data. Xhprof::__construct() called xhprof_enable(), so there
was no real way around that.
I think that the right way to fix that is to decouple profiling from profiling
data analysis. Thus I renamed 'Xhprof' to 'XhprofData', and modified the class
so that it expects to be fed profiling data rather than going out and
collecting it on its own. As a result, it is now possible to profile a full
phpunit run with xhprof, and the work that went into writing fixtures for the
Xhprof unit tests pays off: the class and the tests no longer have a hard
dependency on the xhprof extension, and the tests do not have to be skipped
when it is not installed. And the tests are really testing the system under
test, rather than the xhprof extension.
Finally, I added a new Xhprof class, which really is just an extremely thin
wrapper around xhprof_enable() / xhprof_disable(). The only extra functionality
it provides is the ability to check whether xhprof is running, via
Xhprof::isEnabled(). Calling Xhprof::enable() when it is already enabled will
cause an exception to be thrown. This should help us avoid running into
situations where two components contend for control of the profiler without
realizing it. A unit test tests this behavior.
The only part of this change that is not covered by tests is the change to
ProfilerXhprof. I tested it manually and it works.
Change-Id: Ica96beded68f04083abaf48ef1ae8c726eb60fa6
2016-05-12 18:10:39 +00:00
|
|
|
'XhprofData' => __DIR__ . '/includes/libs/XhprofData.php',
|
2020-03-19 07:14:37 +00:00
|
|
|
'Xml' => __DIR__ . '/includes/xml/Xml.php',
|
2015-12-28 22:23:22 +00:00
|
|
|
'XmlDumpWriter' => __DIR__ . '/includes/export/XmlDumpWriter.php',
|
2023-07-13 15:44:35 +00:00
|
|
|
'XmlJsCode' => __DIR__ . '/includes/Html/HtmlJsCode.php',
|
2020-03-19 07:14:37 +00:00
|
|
|
'XmlSelect' => __DIR__ . '/includes/xml/XmlSelect.php',
|
2016-09-22 04:57:13 +00:00
|
|
|
'XmlTypeCheck' => __DIR__ . '/includes/libs/mime/XmlTypeCheck.php',
|
2020-07-02 00:57:56 +00:00
|
|
|
'ZhConverter' => __DIR__ . '/includes/language/converters/ZhConverter.php',
|
2014-11-14 18:18:09 +00:00
|
|
|
'ZipDirectoryReader' => __DIR__ . '/includes/utils/ZipDirectoryReader.php',
|
2017-05-21 12:23:31 +00:00
|
|
|
'ZipDirectoryReaderError' => __DIR__ . '/includes/utils/ZipDirectoryReaderError.php',
|
2019-03-25 19:29:47 +00:00
|
|
|
'concatenatedgziphistoryblob' => __DIR__ . '/includes/historyblob/ConcatenatedGzipHistoryBlob.php',
|
|
|
|
|
'historyblobcurstub' => __DIR__ . '/includes/historyblob/HistoryBlobCurStub.php',
|
|
|
|
|
'historyblobstub' => __DIR__ . '/includes/historyblob/HistoryBlobStub.php',
|
2016-02-17 21:08:07 +00:00
|
|
|
];
|