2016-12-01 00:17:30 +00:00
{
"name" : "Echo" ,
"author" : [
"Andrew Garrett" ,
"Ryan Kaldari" ,
"Benny Situ" ,
"Luke Welling" ,
"Kunal Mehta" ,
"Moriel Schottlender" ,
2018-05-09 14:52:05 +00:00
"Jon Robson" ,
"Roan Kattouw"
2016-12-01 00:17:30 +00:00
] ,
"url" : "https://www.mediawiki.org/wiki/Extension:Echo" ,
"descriptionmsg" : "echo-desc" ,
"license-name" : "MIT" ,
"type" : "specialpage" ,
2017-03-22 21:23:56 +00:00
"requires" : {
2023-08-19 05:15:32 +00:00
"MediaWiki" : ">= 1.41"
2017-03-22 21:23:56 +00:00
} ,
2016-12-01 00:17:30 +00:00
"APIMetaModules" : {
2021-08-13 15:53:55 +00:00
"notifications" : {
2022-10-02 22:44:38 +00:00
"class" : "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoNotifications" ,
2023-04-19 16:55:32 +00:00
"services" : [
"MainConfig"
]
2021-08-13 15:53:55 +00:00
} ,
2021-10-01 19:54:27 +00:00
"unreadnotificationpages" : {
2022-10-02 22:44:38 +00:00
"class" : "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoUnreadNotificationPages" ,
2023-04-19 16:55:32 +00:00
"services" : [
"PageStore" ,
"TitleFactory"
]
2021-10-01 19:54:27 +00:00
}
2016-12-01 00:17:30 +00:00
} ,
"APIModules" : {
2022-10-02 22:44:38 +00:00
"echomarkread" : "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoMarkRead" ,
"echomarkseen" : "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoMarkSeen" ,
"echoarticlereminder" : "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoArticleReminder" ,
2021-03-30 22:14:16 +00:00
"echomute" : {
2022-10-02 22:44:38 +00:00
"class" : "MediaWiki\\Extension\\Notifications\\Api\\ApiEchoMute" ,
2021-03-30 22:14:16 +00:00
"services" : [
2021-06-24 19:21:49 +00:00
"CentralIdLookup" ,
2021-03-30 22:14:16 +00:00
"UserOptionsManager"
]
}
2016-12-01 00:17:30 +00:00
} ,
"DefaultUserOptions" : {
2019-12-10 00:13:29 +00:00
"echo-email-frequency" : 0 ,
"echo-dont-email-read-notifications" : false
2016-12-01 00:17:30 +00:00
} ,
"ExtensionFunctions" : [
2022-04-08 00:28:15 +00:00
"MediaWiki\\Extension\\Notifications\\Hooks::initEchoExtension"
2016-12-01 00:17:30 +00:00
] ,
"JobClasses" : {
2022-11-02 04:15:17 +00:00
"EchoNotificationJob" : "MediaWiki\\Extension\\Notifications\\Jobs\\NotificationJob" ,
2022-11-05 09:38:54 +00:00
"EchoNotificationDeleteJob" : "MediaWiki\\Extension\\Notifications\\Jobs\\NotificationDeleteJob" ,
2022-04-08 00:38:27 +00:00
"EchoPushNotificationRequest" : "MediaWiki\\Extension\\Notifications\\Push\\NotificationRequestJob"
2016-12-01 00:17:30 +00:00
} ,
"SpecialPages" : {
2022-11-02 21:15:29 +00:00
"Notifications" : "MediaWiki\\Extension\\Notifications\\Special\\SpecialNotifications" ,
2021-03-30 22:14:16 +00:00
"DisplayNotificationsConfiguration" : {
2022-11-02 21:15:29 +00:00
"class" : "MediaWiki\\Extension\\Notifications\\Special\\SpecialDisplayNotificationsConfiguration" ,
2021-03-30 22:14:16 +00:00
"services" : [
2021-06-29 13:43:25 +00:00
"EchoAttributeManager" ,
2021-03-30 22:14:16 +00:00
"UserOptionsManager"
]
} ,
2022-11-02 21:15:29 +00:00
"NotificationsMarkRead" : "MediaWiki\\Extension\\Notifications\\Special\\SpecialNotificationsMarkRead"
2016-12-01 00:17:30 +00:00
} ,
2020-08-11 20:34:21 +00:00
"AvailableRights" : [
"manage-all-push-subscriptions"
] ,
"GroupPermissions" : {
"push-subscription-manager" : {
"manage-all-push-subscriptions" : true
}
} ,
2016-12-01 00:17:30 +00:00
"MessagesDirs" : {
"Echo" : [
2016-12-07 10:02:11 +00:00
"i18n" ,
"i18n/api"
2016-12-01 00:17:30 +00:00
]
} ,
"ExtensionMessagesFiles" : {
"EchoAliases" : "Echo.alias.php"
} ,
2019-10-01 20:15:25 +00:00
"QUnitTestModule" : {
"localBasePath" : "" ,
"remoteExtPath" : "Echo" ,
tests: Fix QUnit warnings and resolve complex test_NotificationBadge
== Problem 1 ==
As of I09c27a084100b223, tests/qunit/index.js or equiv was used to
load test files asynchronously from a using() callback. This was
untracked by RL or QUnit, and thus sometimes ended up finishing after
the test runner was already done executing all tests. In CI this
means the tests are sometimes never loaded and the browser (or Node)
process already killed before they even have a chance to arrive.
Prior to QUnit 2.17, this was no way of detecting this. As of
QUnit 2.17 (core upgraded last week) when running tests manually
the following helpful warnings appear in the console:
> [warning] Unexpected test after runEnd.
> [warning] This is unstable and will fail in QUnit 3.0.
> test @ qunit.js
> tests/qunit/model/test_mw.echo.dm.SeenTimeModel.js
> require
There were about 1072 instances of this warning, all from Echo.
Fix this problem by removing the async callbacks and specifying the
two modules as normal dependencies instead.
== Problem 2 ==
Class NotificationBadge was being loaded in a strange way out of
bound. This was a violation of module boundaries and should not be
needed other than for a temporary hack or other tech debt. More
generally when a test uses `packageFiles` this is a likely sign of
tech debt or misunderstandings.
Instead, depend on `ext.echo.mobile` and export/import the class
as normal.
After this, the test module can use `scripts` instead.
== Problem 3 ==
The `ext.echo.mobile` uses a Mustache template which the test
was also duplicating a reference to. This is no longer needed now.
Due to the `qunit/index.js` file carefully splitting the operations
between template assignment and file loading, I wondered whether
it was meaning to replace or mock it with something else, but it
simply refers to the same file and only does this because it wasn't
using the module directly. This is now resolved.
If you do need to mock in the future, this can simply be done
by assigning `NotificationBadge.prototype.template` from a
beforeEach() callback in the test suite, or by supporting it
property as a constructor option in NotificationBadge.js and
assigning `this.template` there, which is supported by the
mobile `View` class already it seems and would follow DI patterns
more effectively.
== Problem 4 ==
Most of the Echo tests were ignored sometimes and executed other
times.
The test for `ext.echo.mobile` in particular though was never
executed in CI specifically because:
> Undefined module: 'mobile.startup'
This became a hard error with this patch, which is fixed by
the CI config change with Ie9dabe3269c56fa76db8e51.
Bug: T299780
Change-Id: Ie4a87f3b8085fd6ae53ec586c1782cc266d5288a
2022-03-01 23:16:33 +00:00
"dependencies" : [
"ext.echo.dm" ,
"ext.echo.mobile"
] ,
"scripts" : [
2020-08-03 10:52:29 +00:00
"tests/qunit/model/test_mw.echo.dm.BundleNotificationItem.js" ,
"tests/qunit/model/test_mw.echo.dm.CrossWikiNotificationItem.js" ,
"tests/qunit/model/test_mw.echo.dm.FiltersModel.js" ,
"tests/qunit/model/test_mw.echo.dm.NotificationGroupsList.js" ,
"tests/qunit/model/test_mw.echo.dm.NotificationItem.js" ,
"tests/qunit/model/test_mw.echo.dm.NotificationsList.js" ,
"tests/qunit/model/test_mw.echo.dm.PaginationModel.js" ,
"tests/qunit/model/test_mw.echo.dm.SeenTimeModel.js" ,
"tests/qunit/model/test_mw.echo.dm.SourcePagesModel.js" ,
"tests/qunit/model/test_mw.echo.dm.UnreadNotificationCounter.js"
2019-10-01 20:15:25 +00:00
]
} ,
2016-12-01 00:17:30 +00:00
"ResourceModules" : {
"ext.echo.ui.desktop" : {
"scripts" : [
"ui/mw.echo.ui.BadgeLinkWidget.js" ,
"ui/mw.echo.ui.NotificationBadgeWidget.js"
] ,
"styles" : [
"styles/mw.echo.ui.NotificationBadgeWidget.less"
] ,
"dependencies" : [
"ext.echo.ui" ,
"ext.echo.styles.badge" ,
"mediawiki.util" ,
2018-06-09 07:19:33 +00:00
"mediawiki.api"
2016-12-01 00:17:30 +00:00
]
} ,
"ext.echo.ui" : {
"scripts" : [
2019-03-19 19:48:39 +00:00
"controller/mw.echo.Controller.js" ,
2016-12-01 00:17:30 +00:00
"ui/mw.echo.ui.js" ,
"ui/mw.echo.ui.SortedListWidget.js" ,
"ui/mw.echo.ui.SubGroupListWidget.js" ,
"ui/mw.echo.ui.NotificationsListWidget.js" ,
"ui/mw.echo.ui.PlaceholderItemWidget.js" ,
"ui/mw.echo.ui.ToggleReadCircleButtonWidget.js" ,
"ui/mw.echo.ui.NotificationItemWidget.js" ,
"ui/mw.echo.ui.SingleNotificationItemWidget.js" ,
"ui/mw.echo.ui.CrossWikiNotificationItemWidget.js" ,
"ui/mw.echo.ui.BundleNotificationItemWidget.js" ,
"ui/mw.echo.ui.ClonedNotificationItemWidget.js" ,
"ui/mw.echo.ui.ActionMenuPopupWidget.js" ,
"ui/mw.echo.ui.MenuItemWidget.js" ,
"ui/mw.echo.ui.NotificationsWrapper.js" ,
"ui/mw.echo.ui.ConfirmationPopupWidget.js" ,
"ext.echo.moment-hack.js"
] ,
"styles" : [
2019-10-09 23:53:27 +00:00
"styles/mw.echo.ui.mobile.less" ,
2016-12-01 00:17:30 +00:00
"styles/mw.echo.ui.overlay.less" ,
"styles/mw.echo.ui.NotificationItemWidget.less" ,
"styles/mw.echo.ui.ToggleReadCircleButtonWidget.less" ,
"styles/mw.echo.ui.CrossWikiNotificationItemWidget.less" ,
"styles/mw.echo.ui.NotificationsListWidget.less" ,
"styles/mw.echo.ui.PlaceholderItemWidget.less" ,
"styles/mw.echo.ui.SubGroupListWidget.less" ,
"styles/mw.echo.ui.ActionMenuPopupWidget.less" ,
"styles/mw.echo.ui.MenuItemWidget.less" ,
"styles/mw.echo.ui.NotificationsWrapper.less" ,
"styles/mw.echo.ui.ConfirmationPopupWidget.less"
] ,
"skinStyles" : {
2019-06-28 02:43:24 +00:00
"modern" : [
"styles/mw.echo.ui.overlay.monobook.less"
] ,
2016-12-01 00:17:30 +00:00
"monobook" : [
"styles/mw.echo.ui.overlay.monobook.less"
] ,
"vector" : [
"styles/mw.echo.ui.overlay.vector.less"
] ,
2022-01-10 20:50:04 +00:00
"vector-2022" : [
"styles/mw.echo.ui.overlay.vector.less"
] ,
2016-12-01 00:17:30 +00:00
"minerva" : [
"styles/mw.echo.ui.overlay.minerva.less"
2020-08-31 11:56:04 +00:00
] ,
"wikimediaapiportal" : [
"styles/mw.echo.ui.overlay.wikimediaapiportal.less"
2016-12-01 00:17:30 +00:00
]
} ,
"dependencies" : [
2019-03-19 19:48:39 +00:00
"ext.echo.api" ,
"ext.echo.dm" ,
2017-03-02 05:01:56 +00:00
"ext.echo.secondaryicons" ,
2019-03-19 19:48:39 +00:00
"oojs" ,
2016-12-01 00:17:30 +00:00
"oojs-ui-core" ,
"oojs-ui-widgets" ,
"moment" ,
"mediawiki.jqueryMsg" ,
"mediawiki.language" ,
"mediawiki.Title" ,
"oojs-ui.styles.icons-user" ,
"oojs-ui.styles.icons-alerts" ,
"oojs-ui.styles.icons-content" ,
"oojs-ui.styles.icons-interactions" ,
2017-06-01 00:43:00 +00:00
"oojs-ui.styles.icons-moderation" ,
2023-03-06 14:11:04 +00:00
"oojs-ui.styles.icons-movement" ,
"oojs-ui.styles.icons-editing-core"
2016-12-01 00:17:30 +00:00
] ,
"messages" : [
"echo-badge-count" ,
"echo-overlay-link" ,
"echo-mark-all-as-read" ,
"echo-mark-wiki-as-read" ,
"echo-notification-alert" ,
"echo-notification-notice" ,
"echo-notification-loginrequired" ,
"echo-notification-popup-loginrequired" ,
"notification-link-text-expand-all" ,
"notification-link-text-collapse-all" ,
"notification-link-text-expand-alert-count" ,
"notification-link-text-expand-notice-count" ,
"notification-link-text-expand-all-count" ,
"notification-timestamp-ago-seconds" ,
"notification-timestamp-ago-minutes" ,
"notification-timestamp-ago-hours" ,
"notification-timestamp-ago-days" ,
"notification-timestamp-ago-months" ,
"notification-timestamp-ago-years" ,
"notification-timestamp-today" ,
"notification-timestamp-yesterday" ,
"echo-notification-markasread" ,
"echo-notification-markasunread" ,
"echo-notification-markasread-tooltip" ,
"echo-notification-more-options-tooltip" ,
"echo-notification-alert-text-only" ,
"echo-notification-notice-text-only" ,
"echo-email-batch-bullet" ,
"echo-notification-placeholder" ,
"tooltip-pt-notifications-alert" ,
"tooltip-pt-notifications-notice" ,
"mytalk" ,
"mypreferences" ,
"sunday" ,
"monday" ,
"tuesday" ,
"wednesday" ,
"thursday" ,
"friday" ,
"saturday"
]
} ,
"ext.echo.dm" : {
"scripts" : [
"model/mw.echo.dm.js" ,
"model/mw.echo.dm.SourcePagesModel.js" ,
"model/mw.echo.dm.PaginationModel.js" ,
"model/mw.echo.dm.FiltersModel.js" ,
"model/mw.echo.dm.SeenTimeModel.js" ,
"model/mw.echo.dm.ModelManager.js" ,
"model/mw.echo.dm.SortedList.js" ,
"model/mw.echo.dm.NotificationItem.js" ,
"model/mw.echo.dm.CrossWikiNotificationItem.js" ,
"model/mw.echo.dm.BundleNotificationItem.js" ,
"model/mw.echo.dm.NotificationsList.js" ,
"model/mw.echo.dm.NotificationGroupsList.js" ,
"model/mw.echo.dm.UnreadNotificationCounter.js"
] ,
"dependencies" : [
"oojs" ,
2019-03-19 20:00:00 +00:00
"ext.echo.init" ,
2016-12-01 00:17:30 +00:00
"ext.echo.api" ,
"moment"
] ,
"messages" : [
"echo-api-failure" ,
"echo-notification-loginrequired" ,
"echo-api-failure-cross-wiki"
]
} ,
"ext.echo.api" : {
"scripts" : [
"api/mw.echo.api.js" ,
"api/mw.echo.api.PromisePrioritizer.js" ,
"api/mw.echo.api.EchoApi.js" ,
"api/mw.echo.api.APIHandler.js" ,
"api/mw.echo.api.LocalAPIHandler.js" ,
"api/mw.echo.api.ForeignAPIHandler.js" ,
"api/mw.echo.api.NetworkHandler.js"
] ,
"dependencies" : [
"mediawiki.api" ,
"mediawiki.ForeignApi" ,
"oojs"
]
} ,
2019-10-01 20:15:25 +00:00
"ext.echo.mobile" : {
"styles" : [
"mobile/overlay.less" ,
2023-08-01 23:22:30 +00:00
"mobile/notificationsFilterOverlay.less"
2019-10-01 20:15:25 +00:00
] ,
"messages" : [
"notifications" ,
"echo-mobile-notifications-filter-title" ,
"echo-mark-all-as-read-confirmation"
] ,
"dependencies" : [
"mediawiki.util" ,
"mediawiki.router" ,
"ext.echo.ui" ,
"oojs-ui.styles.icons-interactions"
] ,
"packageFiles" : [
"mobile/notifications.js" ,
"mobile/list.js" ,
2022-06-10 15:09:50 +00:00
{
"name" : "mobile/config.json" ,
"callback" : "MediaWiki\\Extension\\Notifications\\Hooks::getConfigVars"
} ,
2019-10-01 20:15:25 +00:00
"mobile/overlay.js" ,
"mobile/notificationsFilterOverlay.js"
]
} ,
2016-12-01 00:17:30 +00:00
"ext.echo.init" : {
2019-07-03 23:04:14 +00:00
"packageFiles" : [
"ext.echo.init.js" ,
{
"name" : "config.json" ,
2022-04-08 00:28:15 +00:00
"callback" : "MediaWiki\\Extension\\Notifications\\Hooks::getConfigVars"
2019-07-03 23:04:14 +00:00
}
2016-12-01 00:17:30 +00:00
] ,
"dependencies" : [
"ext.echo.api" ,
2019-07-11 11:52:14 +00:00
"mediawiki.jqueryMsg" ,
2016-12-01 00:17:30 +00:00
"mediawiki.Uri"
] ,
2019-06-25 02:22:58 +00:00
"messages" : [
"echo-badge-count" ,
2019-07-19 14:08:06 +00:00
"echo-displaysnippet-title" ,
2019-06-25 02:22:58 +00:00
"parentheses"
2016-12-01 00:17:30 +00:00
]
} ,
2022-11-20 07:17:50 +00:00
"ext.echo.centralauth" : {
"packageFiles" : [
"ext.echo.centralauth.js"
]
} ,
2016-12-01 00:17:30 +00:00
"ext.echo.styles.badge" : {
2023-08-01 08:56:59 +00:00
"styles" : [
"nojs/mw.echo.badge.less"
2016-12-01 00:17:30 +00:00
]
} ,
"ext.echo.styles.notifications" : {
"styles" : [
"nojs/mw.echo.notifications.less" ,
"styles/LabelIconWidget.less"
]
} ,
"ext.echo.styles.alert" : {
"styles" : [
"nojs/mw.echo.alert.less"
] ,
"skinStyles" : {
"monobook" : [
"nojs/mw.echo.alert.monobook.less"
]
2023-08-15 17:53:53 +00:00
}
2016-12-01 00:17:30 +00:00
} ,
"ext.echo.special" : {
"scripts" : [
"ui/mw.echo.ui.PaginationWidget.js" ,
"ui/mw.echo.ui.DatedSubGroupListWidget.js" ,
"ui/mw.echo.ui.DatedNotificationsWidget.js" ,
"ui/mw.echo.ui.ReadStateButtonSelectWidget.js" ,
"ui/mw.echo.ui.PageNotificationsOptionWidget.js" ,
"ui/mw.echo.ui.PageFilterWidget.js" ,
"ui/mw.echo.ui.CrossWikiUnreadFilterWidget.js" ,
"ui/mw.echo.ui.NotificationsInboxWidget.js" ,
"ui/mw.echo.ui.SpecialHelpMenuWidget.js" ,
"special/ext.echo.special.js"
] ,
"styles" : [
"styles/mw.echo.ui.PaginationWidget.less" ,
"styles/mw.echo.ui.DatedSubGroupListWidget.less" ,
"styles/mw.echo.ui.DatedNotificationsWidget.less" ,
"styles/mw.echo.ui.NotificationsInboxWidget.less" ,
"styles/mw.echo.ui.PageNotificationsOptionWidget.less" ,
"styles/mw.echo.ui.PageFilterWidget.less" ,
"styles/mw.echo.ui.CrossWikiUnreadFilterWidget.less" ,
"styles/mw.echo.ui.SpecialHelpMenuWidget.less"
] ,
2020-07-27 20:13:41 +00:00
"skinStyles" : {
"minerva" : [
"styles/mw.echo.ui.NotificationsInboxWidget.minerva.less"
]
} ,
2016-12-01 00:17:30 +00:00
"dependencies" : [
"ext.echo.ui" ,
"mediawiki.Uri" ,
"ext.echo.styles.special"
] ,
"messages" : [
"notification-inbox-filter-read" ,
"notification-inbox-filter-unread" ,
"notification-inbox-filter-all" ,
"echo-notification-placeholder-filters" ,
"echo-specialpage-pagination-numnotifications" ,
"echo-specialpage-pagination-range" ,
"echo-specialpage-pagefilters-title" ,
"echo-specialpage-pagefilters-subtitle" ,
"echo-mark-all-as-read" ,
"echo-learn-more" ,
"mypreferences" ,
2020-02-06 22:15:59 +00:00
"echo-specialpage-section-markread" ,
2020-08-17 02:36:57 +00:00
"echo-specialpage-pagefilterwidget-aria-label" ,
"echo-specialpage-special-help-menu-widget-aria-label"
2016-12-01 00:17:30 +00:00
]
} ,
"ext.echo.styles.special" : {
"styles" : [
"nojs/mw.echo.special.less"
]
}
} ,
"ResourceFileModulePaths" : {
"localBasePath" : "modules" ,
"remoteExtPath" : "Echo/modules"
} ,
"Hooks" : {
2023-08-15 15:30:57 +00:00
"LoadExtensionSchemaUpdates" : "schema" ,
2022-08-22 22:31:10 +00:00
"GetPreferences" : "main" ,
"BeforePageDisplay" : "main" ,
"ResourceLoaderRegisterModules" : "main" ,
"UserGroupsChanged" : "main" ,
"LoadUserOptions" : "main" ,
"SaveUserOptions" : "main" ,
"UserGetDefaultOptions" : "main" ,
"UserClearNewTalkNotification" : "main" ,
"EmailUserComplete" : "main" ,
2022-08-22 22:36:48 +00:00
"LoginFormValidErrorMessages" : "main" ,
"OutputPageCheckLastModified" : "main" ,
"ArticleDeleteComplete" : "main" ,
"ArticleUndelete" : "main" ,
2023-08-15 21:29:54 +00:00
"UserMergeAccountFields" : "usermerge" ,
"MergeAccountFromTo" : "usermerge" ,
"UserMergeAccountDeleteTables" : "usermerge" ,
2022-08-22 22:36:48 +00:00
"PageSaveComplete" : "main" ,
2022-08-22 22:46:42 +00:00
"LocalUserCreated" : "main" ,
"RollbackComplete" : "main" ,
"UserSaveSettings" : "main" ,
"AbortTalkPageEmailNotification" : "main" ,
"SendWatchlistEmailNotification" : "main" ,
"GetNewMessagesAlert" : "main" ,
"LinksUpdateComplete" : "main" ,
2023-08-15 15:30:57 +00:00
"SpecialMuteModifyFormFields" : "main" ,
2020-06-03 09:20:46 +00:00
"RecentChange_save" : "main" ,
2022-08-22 22:46:42 +00:00
"ApiMain::moduleManager" : "main" ,
"SkinTemplateNavigation::Universal" : "main" ,
2022-10-12 00:50:11 +00:00
"PreferencesGetIcon" : "main"
2016-12-01 00:17:30 +00:00
} ,
2020-06-03 09:20:46 +00:00
"HookHandlers" : {
"main" : {
2022-04-08 00:28:15 +00:00
"class" : "MediaWiki\\Extension\\Notifications\\Hooks" ,
2023-04-19 16:55:32 +00:00
"services" : [
"MainConfig"
]
2023-08-15 15:30:57 +00:00
} ,
"schema" : {
"class" : "MediaWiki\\Extension\\Notifications\\SchemaHooks"
2023-08-15 21:29:54 +00:00
} ,
"usermerge" : {
"class" : "MediaWiki\\Extension\\Notifications\\UserMergeHooks"
2020-06-03 09:20:46 +00:00
}
} ,
2016-12-01 00:17:30 +00:00
"config" : {
"EchoEnableEmailBatch" : {
"value" : true
} ,
"EchoUseJobQueue" : {
"value" : false
} ,
"EchoEmailFooterAddress" : {
"value" : ""
} ,
"EchoCluster" : {
"value" : false
} ,
"EchoSharedTrackingDB" : {
"value" : false
} ,
"EchoSharedTrackingCluster" : {
"value" : false
} ,
2019-10-04 00:01:00 +00:00
"EchoSeenTimeCacheType" : {
"value" : null
} ,
2016-12-01 00:17:30 +00:00
"EchoMaxUpdateCount" : {
"value" : 2000
} ,
"EchoMaxMentionsCount" : {
"value" : 50
} ,
"EchoMentionStatusNotifications" : {
"value" : false
} ,
"EchoMentionsOnMultipleSectionEdits" : {
"value" : true
} ,
"EchoMentionOnChanges" : {
"value" : true
} ,
"EchoBundleEmailInterval" : {
"value" : 0
} ,
"DefaultNotifyTypeAvailability" : {
"value" : {
"web" : true ,
"email" : true
}
} ,
"NotifyTypeAvailabilityByCategory" : {
"value" : {
2019-04-20 00:45:33 +00:00
"system-noemail" : {
"web" : true ,
"email" : false
} ,
2019-08-27 22:18:00 +00:00
"system-emailonly" : {
"web" : false ,
"email" : true
} ,
2016-12-01 00:17:30 +00:00
"emailuser" : {
"web" : true ,
"email" : false
} ,
2019-04-12 23:58:18 +00:00
"article-linked" : {
"web" : true ,
"email" : false
} ,
2016-12-01 00:17:30 +00:00
"mention-failure" : {
"web" : true ,
"email" : false
} ,
"mention-success" : {
"web" : true ,
"email" : false
2019-04-10 20:54:51 +00:00
} ,
"thank-you-edit" : {
"web" : true ,
"email" : false
2016-12-01 00:17:30 +00:00
}
} ,
"merge_strategy" : "array_plus_2d"
} ,
"EchoNotifiers" : {
"value" : {
"web" : [
"EchoNotifier" ,
"notifyWithNotification"
] ,
"email" : [
"EchoNotifier" ,
"notifyWithEmail"
]
}
} ,
"EchoAgentBlacklist" : {
"value" : [ ]
} ,
"EchoOnWikiBlacklist" : {
"value" : "Echo-blacklist"
} ,
2016-11-10 04:37:10 +00:00
"EchoPerUserBlacklist" : {
"value" : false
} ,
2016-12-01 00:17:30 +00:00
"EchoPerUserWhitelistFormat" : {
"value" : "%s/Echo-whitelist"
} ,
"EchoCrossWikiNotifications" : {
"value" : false
} ,
"EchoNotificationCategories" : {
"value" : {
"system" : {
"priority" : 9 ,
"no-dismiss" : [
"all"
]
} ,
2019-04-20 00:45:33 +00:00
"system-noemail" : {
"priority" : 9 ,
"no-dismiss" : [
2020-01-06 18:59:51 +00:00
"all"
2019-04-20 00:45:33 +00:00
]
} ,
2019-08-27 22:18:00 +00:00
"system-emailonly" : {
"priority" : 9 ,
"no-dismiss" : [
2020-01-06 18:59:51 +00:00
"all"
2019-08-27 22:18:00 +00:00
]
} ,
2016-12-01 00:17:30 +00:00
"user-rights" : {
"priority" : 9 ,
"tooltip" : "echo-pref-tooltip-user-rights"
} ,
"other" : {
"no-dismiss" : [
"all"
]
} ,
"edit-user-talk" : {
"priority" : 1 ,
"no-dismiss" : [
"web"
] ,
"tooltip" : "echo-pref-tooltip-edit-user-talk"
} ,
2023-04-27 19:07:47 +00:00
"edit-user-page" : {
"priority" : 1 ,
"tooltip" : "echo-pref-tooltip-edit-user-page"
} ,
2016-12-01 00:17:30 +00:00
"reverted" : {
"priority" : 9 ,
"tooltip" : "echo-pref-tooltip-reverted"
} ,
"article-linked" : {
"priority" : 5 ,
"tooltip" : "echo-pref-tooltip-article-linked"
} ,
"mention" : {
"priority" : 4 ,
"tooltip" : "echo-pref-tooltip-mention"
} ,
"mention-failure" : {
"priority" : 4 ,
"tooltip" : "echo-pref-tooltip-mention-failure"
} ,
"mention-success" : {
"priority" : 4 ,
"tooltip" : "echo-pref-tooltip-mention-success"
} ,
"emailuser" : {
"priority" : 9 ,
"tooltip" : "echo-pref-tooltip-emailuser"
2017-06-01 12:08:51 +00:00
} ,
"article-reminder" : {
"priority" : 1 ,
"tooltip" : "echo-pref-tooltip-article-reminder"
2019-04-10 20:54:51 +00:00
} ,
"thank-you-edit" : {
"priority" : 9 ,
"tooltip" : "echo-pref-tooltip-thank-you-edit"
2019-12-09 02:42:55 +00:00
} ,
"watchlist" : {
"priority" : 5 ,
"tooltip" : "echo-pref-tooltip-watchlist"
} ,
"minor-watchlist" : {
"priority" : 6 ,
"tooltip" : "echo-pref-tooltip-minor-watchlist"
2016-12-01 00:17:30 +00:00
}
} ,
"merge_strategy" : "array_plus_2d"
} ,
"EchoNotificationIcons" : {
"value" : {
2022-05-11 11:51:52 +00:00
"watchlist-progressive" : {
"path" : {
"ltr" : "Echo/modules/icons/watchlist-ltr-progressive.svg" ,
"rtl" : "Echo/modules/icons/watchlist-rtl-progressive.svg"
}
} ,
2016-12-01 00:17:30 +00:00
"placeholder" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/notice.svg"
2016-12-01 00:17:30 +00:00
} ,
"chat" : {
"path" : {
2018-03-23 01:27:28 +00:00
"ltr" : "Echo/modules/icons/speechBubbles-ltr-progressive.svg" ,
"rtl" : "Echo/modules/icons/speechBubbles-rtl-progressive.svg"
2016-12-01 00:17:30 +00:00
}
} ,
2018-03-23 01:27:28 +00:00
"edit" : {
"path" : "Echo/modules/icons/edit-progressive.svg"
} ,
2023-03-09 14:18:07 +00:00
"edit-user-page" : {
"path" : "Echo/modules/icons/edit-user-page.svg"
} ,
2016-12-01 00:17:30 +00:00
"edit-user-talk" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/edit-user-talk-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"linked" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/link-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"mention" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/mention-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"mention-failure" : {
"path" : "Echo/modules/icons/mention-failure.svg"
} ,
"mention-success" : {
2018-03-24 15:21:33 +00:00
"path" : "Echo/modules/icons/mention-success-constructive.svg"
2016-12-01 00:17:30 +00:00
} ,
"mention-status-bundle" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/mention-status-bundle-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"reviewed" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/articleCheck-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"revert" : {
"path" : "Echo/modules/icons/revert.svg"
} ,
"user-rights" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/user-rights-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"emailuser" : {
2018-03-24 15:21:33 +00:00
"path" : "Echo/modules/icons/message-constructive.svg"
2016-12-01 00:17:30 +00:00
} ,
"help" : {
2019-03-30 22:23:11 +00:00
"path" : {
"ltr" : "Echo/modules/icons/helpNotice-ltr.svg" ,
"rtl" : "Echo/modules/icons/helpNotice-rtl.svg"
}
2016-12-01 00:17:30 +00:00
} ,
"global" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/global-progressive.svg"
2016-12-01 00:17:30 +00:00
} ,
"site" : {
"url" : false
2017-06-01 12:08:51 +00:00
} ,
"article-reminder" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/global-progressive.svg"
2016-12-01 00:17:30 +00:00
}
} ,
"merge_strategy" : "array_plus_2d"
} ,
2017-03-02 05:01:56 +00:00
"EchoSecondaryIcons" : {
"value" : {
"linked" : {
2018-03-23 01:27:28 +00:00
"path" : "Echo/modules/icons/link-progressive.svg"
2017-03-02 05:01:56 +00:00
} ,
"changes" : {
"path" : "Echo/modules/icons/changes.svg"
} ,
"thanks" : {
"path" : {
2018-03-23 01:27:28 +00:00
"ltr" : "Echo/modules/icons/userTalk-ltr.svg" ,
"rtl" : "Echo/modules/icons/userTalk-rtl.svg"
2017-03-02 05:01:56 +00:00
}
} ,
2020-04-28 03:39:40 +00:00
"unbell" : {
"path" : "Echo/modules/icons/unbell.svg"
} ,
2017-03-02 05:01:56 +00:00
"userSpeechBubble" : {
"path" : "Echo/modules/icons/user-speech-bubble.svg"
}
} ,
"merge_strategy" : "array_plus_2d"
} ,
2016-12-01 00:17:30 +00:00
"EchoNotifications" : {
"value" : {
"welcome" : {
"user-locators" : [
"EchoUserLocator::locateEventAgent"
] ,
2018-10-26 23:46:16 +00:00
"canNotifyAgent" : true ,
2019-04-20 00:45:33 +00:00
"category" : "system-noemail" ,
2016-12-01 00:17:30 +00:00
"group" : "positive" ,
"section" : "message" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoWelcomePresentationModel"
2016-12-01 00:17:30 +00:00
} ,
2023-03-09 14:18:07 +00:00
"edit-user-page" : {
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoEditUserPagePresentationModel" ,
"user-locators" : [
"EchoUserLocator::locateUserPageOwner"
] ,
"category" : "edit-user-page" ,
"group" : "interactive" ,
"section" : "alert" ,
"bundle" : {
"web" : true ,
"email" : false ,
"expandable" : true
} ,
"immediate" : true
} ,
2016-12-01 00:17:30 +00:00
"edit-user-talk" : {
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoEditUserTalkPresentationModel" ,
2016-12-01 00:17:30 +00:00
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateTalkPageOwner"
2016-12-01 00:17:30 +00:00
] ,
"category" : "edit-user-talk" ,
"group" : "interactive" ,
"section" : "alert" ,
"bundle" : {
"web" : true ,
2017-10-20 09:26:24 +00:00
"email" : false ,
"expandable" : true
2016-12-01 00:17:30 +00:00
} ,
"immediate" : true
} ,
"reverted" : {
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoRevertedPresentationModel" ,
2016-12-01 00:17:30 +00:00
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateFromEventExtra" ,
2016-12-01 00:17:30 +00:00
[
"reverted-user-id"
]
]
] ,
"category" : "reverted" ,
"group" : "negative" ,
"section" : "alert"
} ,
"page-linked" : {
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoPageLinkedPresentationModel" ,
2016-12-01 00:17:30 +00:00
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateArticleCreator"
2016-12-01 00:17:30 +00:00
] ,
"category" : "article-linked" ,
"group" : "neutral" ,
"section" : "message" ,
"bundle" : {
"web" : true ,
"email" : true ,
"expandable" : true
}
} ,
2019-12-09 02:42:55 +00:00
"minor-watchlist-change" : {
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateUsersWatchingTitle"
2019-12-09 02:42:55 +00:00
] ,
"category" : "minor-watchlist" ,
"group" : "interactive" ,
2022-05-11 11:52:43 +00:00
"section" : "message" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoWatchlistChangePresentationModel" ,
2019-12-09 02:42:55 +00:00
"bundle" : {
"web" : true ,
"email" : true ,
"expandable" : true
}
} ,
"watchlist-change" : {
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateUsersWatchingTitle"
2019-12-09 02:42:55 +00:00
] ,
2022-05-11 11:52:43 +00:00
"section" : "message" ,
2019-12-09 02:42:55 +00:00
"category" : "watchlist" ,
"group" : "interactive" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoWatchlistChangePresentationModel" ,
2019-12-09 02:42:55 +00:00
"bundle" : {
"web" : true ,
"email" : true ,
"expandable" : true
}
} ,
2016-12-01 00:17:30 +00:00
"mention" : {
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateFromEventExtra" ,
2016-12-01 00:17:30 +00:00
[
"mentioned-users"
]
]
] ,
"category" : "mention" ,
"group" : "interactive" ,
"section" : "alert" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionPresentationModel"
2016-12-01 00:17:30 +00:00
} ,
2018-01-19 21:26:49 +00:00
"mention-summary" : {
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateFromEventExtra" ,
2018-01-19 21:26:49 +00:00
[
"mentioned-users"
]
]
] ,
"category" : "mention" ,
"group" : "interactive" ,
"section" : "alert" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionInSummaryPresentationModel"
2018-01-19 21:26:49 +00:00
} ,
2016-12-01 00:17:30 +00:00
"mention-failure" : {
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateEventAgent"
2016-12-01 00:17:30 +00:00
]
] ,
2018-10-26 23:46:16 +00:00
"canNotifyAgent" : true ,
2016-12-01 00:17:30 +00:00
"category" : "mention-failure" ,
"bundle" : {
"web" : true ,
"expandable" : true
} ,
"group" : "negative" ,
"section" : "alert" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionStatusPresentationModel"
2016-12-01 00:17:30 +00:00
} ,
"mention-failure-too-many" : {
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateEventAgent"
2016-12-01 00:17:30 +00:00
]
] ,
2018-10-26 23:46:16 +00:00
"canNotifyAgent" : true ,
2016-12-01 00:17:30 +00:00
"category" : "mention-failure" ,
"group" : "negative" ,
"section" : "alert" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionStatusPresentationModel"
2016-12-01 00:17:30 +00:00
} ,
"mention-success" : {
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateEventAgent"
2016-12-01 00:17:30 +00:00
]
] ,
2018-10-26 23:46:16 +00:00
"canNotifyAgent" : true ,
2016-12-01 00:17:30 +00:00
"category" : "mention-success" ,
"bundle" : {
"web" : true ,
"expandable" : true
} ,
"group" : "positive" ,
2022-08-05 23:26:31 +00:00
"section" : "message" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionStatusPresentationModel"
2016-12-01 00:17:30 +00:00
} ,
"user-rights" : {
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateFromEventExtra" ,
2016-12-01 00:17:30 +00:00
[
"user"
]
]
] ,
"category" : "user-rights" ,
"group" : "neutral" ,
"section" : "alert" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoUserRightsPresentationModel"
2016-12-01 00:17:30 +00:00
} ,
"emailuser" : {
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoEmailUserPresentationModel" ,
2016-12-01 00:17:30 +00:00
"user-locators" : [
[
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateFromEventExtra" ,
2016-12-01 00:17:30 +00:00
[
"to-user-id"
]
]
] ,
"category" : "emailuser" ,
"group" : "neutral" ,
"section" : "alert"
} ,
"foreign" : {
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoForeignPresentationModel" ,
2016-12-01 00:17:30 +00:00
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateEventAgent"
2016-12-01 00:17:30 +00:00
] ,
"category" : "foreign" ,
"group" : "positive" ,
"section" : "alert"
} ,
"thank-you-edit" : {
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateEventAgent"
2016-12-01 00:17:30 +00:00
] ,
2018-10-26 23:46:16 +00:00
"canNotifyAgent" : true ,
2019-04-10 20:54:51 +00:00
"category" : "thank-you-edit" ,
2016-12-01 00:17:30 +00:00
"group" : "positive" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoEditThresholdPresentationModel" ,
2016-12-01 00:17:30 +00:00
"section" : "message"
2017-06-01 12:08:51 +00:00
} ,
"article-reminder" : {
"user-locators" : [
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator::locateEventAgent"
2017-06-01 12:08:51 +00:00
] ,
2018-10-26 23:46:16 +00:00
"canNotifyAgent" : true ,
2017-06-01 12:08:51 +00:00
"category" : "article-reminder" ,
"group" : "positive" ,
2022-11-01 22:01:23 +00:00
"presentation-model" : "MediaWiki\\Extension\\Notifications\\Formatters\\EchoArticleReminderPresentationModel" ,
2017-06-01 12:08:51 +00:00
"section" : "message"
2016-12-01 00:17:30 +00:00
}
} ,
"merge_strategy" : "array_plus_2d"
} ,
"EchoCacheVersion" : {
"value" : "1.12"
} ,
2017-06-01 12:08:51 +00:00
"AllowArticleReminderNotification" : {
"value" : false ,
"description" : "This is a feature flag to the Article Reminder notification"
2018-01-19 21:26:49 +00:00
} ,
"EchoMaxMentionsInEditSummary" : {
"value" : 0 ,
"description" : "Maximum nubmer of users that will be notified that they were linked from an edit summary or 0 for no notifications"
2019-06-10 15:29:05 +00:00
} ,
"EchoPollForUpdates" : {
"value" : 0 ,
2019-06-25 02:22:58 +00:00
"description" : "This is the polling rate i.e. the time after which we check for notifications count on the client side. It also controls whether notification count will be displayed in browser title. If polling rate is 0 this means polling is disabled and notification count is also not shown in browser title"
2019-12-09 02:42:55 +00:00
} ,
"EchoWatchlistNotifications" : {
"value" : false ,
"description" : "Feature flag to enable Echo notifications whenever a page on a user's watchlist is changed, replacing the built-in preference to send emails in that circumstance."
} ,
"EchoWatchlistEmailOncePerPage" : {
"value" : true ,
"description" : "Whether to send email notifications each time a watched page is edited (if false) or only the first time the page is changed before being visited again by the user (if true)"
2020-05-15 17:19:03 +00:00
} ,
"EchoEnablePush" : {
"value" : false ,
"description" : "Whether to enable push notifications"
2020-05-22 22:02:34 +00:00
} ,
2020-06-02 23:21:36 +00:00
"EchoPushServiceBaseUrl" : {
2020-05-22 22:02:34 +00:00
"value" : false ,
"description" : "Request endpoint URL for the push notification service"
2020-08-12 21:33:06 +00:00
} ,
"EchoPushMaxSubscriptionsPerUser" : {
"value" : 0 ,
"description" : "Maximum number of push subscriptions that may be stored in the DB at any given time for a single central user ID."
2016-12-01 00:17:30 +00:00
}
} ,
2017-06-26 18:03:04 +00:00
"manifest_version" : 2 ,
"AutoloadClasses" : {
"BackfillUnreadWikis" : "maintenance/backfillUnreadWikis.php" ,
"EchoAttributeManager" : "includes/AttributeManager.php" ,
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\AttributeManager" : "includes/AttributeManager.php" ,
2022-11-02 20:26:48 +00:00
"EchoCallbackIterator" : "includes/Iterator/CallbackIterator.php" ,
"MediaWiki\\Extension\\Notifications\\Iterator\\CallbackIterator" : "includes/Iterator/CallbackIterator.php" ,
2017-06-26 18:03:04 +00:00
"EchoDiscussionParser" : "includes/DiscussionParser.php" ,
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\DiscussionParser" : "includes/DiscussionParser.php" ,
2022-11-01 22:01:23 +00:00
"EchoEditUserTalkPresentationModel" : "includes/Formatters/EchoEditUserTalkPresentationModel.php" ,
"MediaWiki\\Extension\\Notifications\\Formatters\\EchoEditUserTalkPresentationModel" : "includes/Formatters/EchoEditUserTalkPresentationModel.php" ,
2022-11-02 21:34:17 +00:00
"EchoEvent" : "includes/Model/Event.php" ,
"MediaWiki\\Extension\\Notifications\\Model\\Event" : "includes/Model/Event.php" ,
2022-11-01 22:01:23 +00:00
"EchoEventPresentationModel" : "includes/Formatters/EchoEventPresentationModel.php" ,
"MediaWiki\\Extension\\Notifications\\Formatters\\EchoEventPresentationModel" : "includes/Formatters/EchoEventPresentationModel.php" ,
"EchoMentionPresentationModel" : "includes/Formatters/EchoMentionPresentationModel.php" ,
"MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionPresentationModel" : "includes/Formatters/EchoMentionPresentationModel.php" ,
"EchoMentionStatusPresentationModel" : "includes/Formatters/EchoMentionStatusPresentationModel.php" ,
"MediaWiki\\Extension\\Notifications\\Formatters\\EchoMentionStatusPresentationModel" : "includes/Formatters/EchoMentionStatusPresentationModel.php" ,
2022-11-02 21:34:17 +00:00
"EchoNotification" : "includes/Model/Notification.php" ,
"MediaWiki\\Extension\\Notifications\\Model\\Notification" : "includes/Model/Notification.php" ,
2022-11-02 20:47:04 +00:00
"EchoNotificationMapper" : "includes/Mapper/NotificationMapper.php" ,
"MediaWiki\\Extension\\Notifications\\Mapper\\NotificationMapper" : "includes/Mapper/NotificationMapper.php" ,
2017-06-26 18:03:04 +00:00
"EchoNotifier" : "includes/Notifier.php" ,
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\Notifier" : "includes/Notifier.php" ,
2022-11-01 22:01:23 +00:00
"EchoPresentationModelSection" : "includes/Formatters/EchoPresentationModelSection.php" ,
"MediaWiki\\Extension\\Notifications\\Formatters\\EchoPresentationModelSection" : "includes/Formatters/EchoPresentationModelSection.php" ,
2017-06-26 18:03:04 +00:00
"EchoUserLocator" : "includes/UserLocator.php" ,
2022-11-12 07:19:00 +00:00
"MediaWiki\\Extension\\Notifications\\UserLocator" : "includes/UserLocator.php" ,
2017-06-26 18:03:04 +00:00
"GenerateSampleNotifications" : "maintenance/generateSampleNotifications.php" ,
2022-11-12 07:19:00 +00:00
"MWEchoDbFactory" : "includes/DbFactory.php" ,
"MediaWiki\\Extension\\Notifications\\DbFactory" : "includes/DbFactory.php" ,
2017-06-26 18:03:04 +00:00
"ProcessEchoEmailBatch" : "maintenance/processEchoEmailBatch.php" ,
2019-04-13 00:48:01 +00:00
"RecomputeNotifCounts" : "maintenance/recomputeNotifCounts.php" ,
2017-06-26 18:03:04 +00:00
"RemoveInvalidNotification" : "maintenance/removeInvalidNotification.php" ,
"RemoveOrphanedEvents" : "maintenance/removeOrphanedEvents.php" ,
2017-08-23 14:38:58 +00:00
"UpdateEchoSchemaForSuppression" : "maintenance/updateEchoSchemaForSuppression.php" ,
2022-04-08 00:38:27 +00:00
"EchoUpdatePerUserBlacklist" : "maintenance/updatePerUserBlacklist.php" ,
"EchoPush\\PushNotifier" : "includes/Push/PushNotifier.php" ,
"MediaWiki\\Extension\\Notifications\\Push\\PushNotifier" : "includes/Push/PushNotifier.php"
2019-12-30 23:23:54 +00:00
} ,
2020-04-18 23:44:11 +00:00
"AutoloadNamespaces" : {
2022-04-08 00:28:15 +00:00
"MediaWiki\\Extension\\Notifications\\" : "includes/"
2020-04-18 23:44:11 +00:00
} ,
2019-12-30 23:23:54 +00:00
"TestAutoloadClasses" : {
2022-11-02 20:47:04 +00:00
"EchoAbstractMapperStub" : "tests/phpunit/Mapper/EchoAbstractMapperStub.php" ,
"EchoExecuteFirstArgumentStub" : "tests/phpunit/Mapper/EchoExecuteFirstArgumentStub.php"
2020-05-15 17:19:03 +00:00
} ,
2022-11-13 06:43:40 +00:00
"TestAutoloadNamespaces" : {
"MediaWiki\\Extension\\Notifications\\Test\\" : "tests/phpunit/" ,
"MediaWiki\\Extension\\Notifications\\Test\\Integration\\" : "tests/phpunit/integration/"
} ,
2020-05-15 17:19:03 +00:00
"ServiceWiringFiles" : [
"ServiceWiring.php"
] ,
"ConfigRegistry" : {
"Echo" : "GlobalVarConfig::newInstance"
2017-06-26 18:03:04 +00:00
}
2019-06-28 00:05:55 +00:00
}