Extension:Echo/pt-br
There is a stalled attempt to move this functionality into core MediaWiki; for more information, see Notificações and Requests for comment/Notifications in core. |
Notifications Estado da versão: estável |
|
---|---|
Implementação | Sistema de notificações |
Descrição | Fornece um sistema de notificações dentro do wiki que pode ser utilizado por outras extensões. |
Autor(es) | |
Última versão | atualizações contínuas |
Política de compatibilidade |
Snapshots releases along with MediaWiki. Master is not backward compatible. |
Modifica o banco de dados |
Sim |
Tabelas | echo_email_batch echo_event echo_notification echo_subscription echo_target_page echo_push_provider echo_push_subscription echo_push_topic echo_unread_wikis |
Licença | Licença MIT |
Download | |
|
|
|
|
|
|
Quarterly downloads | 131 (Ranked 41st) |
Public wikis using | 2,698 (Ranked 187th) |
Para traduzir a extensão Echo, verifique sua disponibilidade no translatewiki.net | |
Problemas | Tarefas em aberto · Relatar um bug |
A extensão Notificações, historicamente chamada de Echo no código e na documentação para administradores de sistemas e desenvolvedores, fornece um sistema de notificação no wiki que fornece ao usuário alertas e avisos sobre atividades no wiki, como outro usuário mencionando-o em uma página de discussão ou uma edição dele sendo revertida. Outras extensões do MediaWiki podem usar Notificações para enviar suas próprias notificações; Thanks e DiscussionTools são duas dessas extensões.
Instalação
- O usuário do banco de dados deve ter recebido o direito "REFERENCES" para o banco de dados. How you check this depends on how you set up the database in the first place. For example, if you used a control panel application, then that interface should provide a way to check and change the privileges of the database user (
$wgDBuser
in LocalSettings.php ). - Baixe e coloque o(s) arquivo(s) num diretório chamado
Echo
na sua pastaextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo - Adicione o seguinte código ao final do seu arquivo LocalSettings.php :
wfLoadExtension( 'Echo' );
- Execute o script de atualização que criará automaticamente as tabelas de banco de dados necessárias a essa extensão.
- Se necessário, configure conforme sua conveniência.
- Concluído – Navegue à página Special:Version em sua wiki para verificar se a instalação da extensão foi bem sucedida.
Para permitir que notificações de resumo diárias ou semanais sejam entregues por e-mail (para usuários que escolherem isso nas preferências), o seguinte script dentro do diretório da extensão Echo precisa ser executado diariamente, o que pode ser agendado em uma tarefa cron:
maintenance/processEchoEmailBatch.php
Configuração
É possível usar opções de usuário condicionais para definir preferências de notificação diferentes para novos usuários, sem afetar os usuários existentes.
Veja Special:DisplayNotificationsConfiguration para mais detalhes.
Parâmetros
Parâmetro | Padrão | Comentário |
---|---|---|
$wgEchoEnableEmailBatch
|
true
|
Se deve ativar a função de envio em lote de e-mails |
$wgEchoUseJobQueue
|
false
|
|
$wgEchoEmailFooterAddress
|
'' | O endereço da organização (ou qualquer texto que você queira que apareça no rodapé das notificações por e-mail). Deve ser definido em LocalSettings.php |
$wgNotificationSender
|
$wgPasswordSender
|
O endereço de e-mail para "de" e "responder para" nas notificações por e-mail. Deve ser definido em LocalSettings.php |
$wgNotificationSenderName
|
Mensagem "emailsender" (MediaWiki) | Nome para "de" em notificações por e-mail. Deve ser definido em LocalSettings.php |
$wgNotificationReplyName
|
No Reply | Nome para "responder a" em notificações por e-mail. Should be defined in LocalSettings.php |
$wgEchoCluster
|
false
|
Use the main db if this is set to false, to use a specific external db, just use any key defined in $wgExternalServers |
$wgEchoSharedTrackingDB
|
false
|
Shared database to use for keeping track of cross-wiki unread notifications; false to not keep track of it at all |
$wgEchoSharedTrackingCluster
|
false
|
Cluster the shared tracking database is located on; false if it is on the main one. Must be a key defined in $wgExternalServers |
$wgEchoMaxUpdateCount
|
2000 | The max number of notifications allowed for a user to do a live update, this is also the number of max notifications allowed for a user to have. |
$wgEchoMaxMentionsCount
|
50 | The max number of mention notifications allowed for a user to send at once |
$wgEchoMentionStatusNotifications
|
false
|
Enable mention success/failure notifications |
$wgEchoMentionsOnMultipleSectionEdits
|
true
|
Trigger mentions for multiple-section edits |
$wgEchoMentionOnChanges
|
true
|
Trigger mentions for edits to existing comments, as long as a signature is added in the same section |
$wgEchoMaxMentionsInEditSummary
|
0 | Maximum number of users that will be notified that they were linked from an edit summary or 0 for no notifications |
$wgEchoBundleEmailInterval
|
0 | The time interval between each bundle email in seconds; set a small number for test wikis. This should be set to 0 to disable email bundling if there is no delay queue support |
$wgEchoNewMsgAlert
|
true
|
Whether or not to enable a new talk page message alert for logged in users. |
$wgNotifyTypeAvailabilityByCategory
|
[
// Otherwise, a user->user email could trigger an additional redundant notification email.
'emailuser' => [
'web' => true,
'email' => false,
],
'mention-failure' => [
'web' => true,
'email' => false,
],
'mention-success' => [
'web' => true,
'email' => false,
],
]
|
Define which notify types are available for each notification category. If any notify types are omitted, it defaults to $wgDefaultNotifyTypeAvailability. |
$wgEchoNotifiers
|
[
'web' => [ 'EchoNotifier', 'notifyWithNotification' ],
'email' => [ 'EchoNotifier', 'notifyWithEmail' ],
]
|
Definitions of the different types of notification delivery that are possible. Each definition consists of a class name and a function name. See also EchoNotificationController class. |
$wgEchoAgentBlacklist
|
[] | List of usernames which will not trigger notifications |
$wgEchoOnWikiBlacklist
|
Echo-blacklist | Page location of community maintained blacklist within NS_MEDIAWIKI containing one username per line which will not trigger notifications. Set to null to disable. |
$wgEchoPerUserWhitelistFormat
|
%s/Echo-whitelist | An sprintf format of the location of the per-user notification agent whitelist within the NS_USER namespace. %s will be replaced with the users name. The whitelists must contain one username per line which will always trigger notifications regardless of their existence in the blacklists. Set to null to disable.
|
$wgEchoCrossWikiNotifications
|
false
|
Whether to enable the cross-wiki notifications feature. To enable this feature you need to:
|
$wgEchoUseCrossWikiBetaFeature
|
false
|
Feature flag for the cross-wiki notifications beta feature
If this is This does not control whether cross-wiki notifications are enabled by default.
For that, use |
$wgEchoNotificationCategories
|
See extension.json | Define the categories that notifications can belong to. Categories can be assigned the following parameters. All parameters are optional:
If a notifications type doesn't have a category parameter, it is automatically assigned to the |
$wgEchoNotificationIcons
|
See extension.json | Defines icons, which are 30x30 images. This is passed to BeforeCreateEchoEvent so extensions can define their own icons with the same structure. It is recommended that extensions prefix their icon key. An example is myextension-name. This will help avoid namespace conflicts.
You can use either a path or a url, but not both. The value of 'path' is relative to The value of 'url' should be a URL. You should customize the site icon URL, which is: |
$wgEchoNotifications
|
See extension.json | Define the event types for echo. Event definitions are in the form of 'event-name' => [ ... ].
|
$wgEchoConfig
|
See extension.json | Configuration for EventLogging. Individual schemas can be disabled. |
$wgEchoPerUserBlacklist
|
null
|
Boolean that enabled Per User Blacklist. |
Preferências do usuário
Preferência | Padrão | Comment |
---|---|---|
$wgDefaultUserOptions['echo-email-frequency']
|
0 | How often to send emails, by default:
|
$wgDefaultUserOptions['echo-email-format']
|
Depends on $wgAllowHTMLEmail
|
Default user preference for whether to use HTML or text email. Either html or plain-text .
|
$wgDefaultUserOptions["echo-subscriptions-email-{$category}"]
|
false for most categories; depends
|
Default user preference for whether to notify via email for a particular category |
$wgDefaultUserOptions["echo-subscriptions-web-{$category}"]
|
true for most categories; depends
|
Default user preference for whether to notify via web for a particular category |
Arquitetura
Veja a seção de arquitetura da página de recursos .
Usage
Notification negative list / positive list
There are occasionally specific users, typically bots, which perform maintenance tasks that should not generate notifications. To handle these cases, users can be globally blacklisted from the LocalSettings.php file (or InitialiseSettings.php in the case of WMF wikis):
$wgEchoAgentBlacklist = [ 'SampleBot', 'SampleUser' ];
There is also an on-wiki blacklist that can be maintained by the wiki's community. The location of the global on-wiki blacklist defaults to MediaWiki:Echo-blacklist. Individual users can override the blacklist by creating a whitelist. The whitelist location defaults to Special:MyPage/Echo-whitelist. All on-wiki lists expect to receive one case-specific username per line with no special markup or prefixes. For example:
SampleBot SampleUser
"Mention" option
One of the notification types that this extension allows is: "Notify me when someone links to my user page." It might not be obvious to some users, but this particular notification only works when the person linking to another user's page also signs (~~~~) the post.
After installation of the extension, a new tab "Notifications" is created in a user's Special:Preferences page. Under the section "Notify me about these events", in front of the "Mention" option, the hoverbox states: "Notify me when someone links to my user page." If an administrator feels, that the requirement for signing the post isn't obvious in this help text, it can be modified by changing the text in the Wiki's MediaWiki:Echo-pref-tooltip-mention page.
Terminologia
- notification - Any individual notice that is delivered by Echo
- message - A notification about activity in a Flow discussion
- alert - Any notification other than a message
Ver também
- Notifications/API
- Manual:Echo - for details on the Mention requirements
- Extension:Echo/Creating a new notification type (current)
- Notifications/Developer_guide (outdated)
Esta extensão está sendo usada(o) por um ou mais projetos da Wikimedia. Isto significa que, provavelmente, a extensão é estável e funciona bem o suficiente para ser utilizada(o) em sites da web de alto tráfego. Procure pelo nome dessa extensão nos arquivos de configuração CommonSettings.php e InitialiseSettings.php da Wikimedia para verificar onde ela foi instalada. Uma lista completa das extensões instaladas numa wiki em particular podem ser visualizadas na página Special:Version da wiki. |
Esta extensão está incluída nas seguintes fazendas/hospedagens (farms/hosts) e/ou pacotes wiki: Esta não é uma lista autoritativa (oficial). Algumas fazendas/hospedagens (farms/hosts) e/ou pacotes wiki podem conter esta extensão mesmo que não estejam listados aqui. Sempre verifique com suas fazendas/hospedagens (farms/hosts) ou pacotes wiki para confirmar. |
- Extensions bundled with MediaWiki 1.40/pt-br
- Stable extensions/pt-br
- Notification extensions/pt-br
- MIT licensed extensions/pt-br
- Extensions in Wikimedia version control/pt-br
- AbortTalkPageEmailNotification extensions/pt-br
- ApiMain::moduleManager extensions/pt-br
- ArticleDeleteComplete extensions/pt-br
- ArticleUndelete extensions/pt-br
- BeforePageDisplay extensions/pt-br
- EmailUserComplete extensions/pt-br
- GetNewMessagesAlert extensions/pt-br
- GetPreferences extensions/pt-br
- LinksUpdateComplete extensions/pt-br
- LoadExtensionSchemaUpdates extensions/pt-br
- LoadUserOptions extensions/pt-br
- LocalUserCreated extensions/pt-br
- LoginFormValidErrorMessages extensions/pt-br
- MergeAccountFromTo extensions/pt-br
- OutputPageCheckLastModified extensions/pt-br
- PageSaveComplete extensions/pt-br
- PreferencesGetIcon extensions/pt-br
- RecentChange save extensions/pt-br
- ResourceLoaderRegisterModules extensions/pt-br
- RollbackComplete extensions/pt-br
- SaveUserOptions extensions/pt-br
- SendWatchlistEmailNotification extensions/pt-br
- SkinTemplateNavigation::Universal extensions/pt-br
- SpecialMuteModifyFormFields extensions/pt-br
- UserClearNewTalkNotification extensions/pt-br
- UserGetDefaultOptions extensions/pt-br
- UserGroupsChanged extensions/pt-br
- UserMergeAccountDeleteTables extensions/pt-br
- UserMergeAccountFields extensions/pt-br
- UserSaveSettings extensions/pt-br
- All extensions/pt-br
- Extensions used on Wikimedia/pt-br
- Extensions included in BlueSpice/pt-br
- Extensions included in Canasta/pt-br
- Extensions included in Miraheze/pt-br
- Extensions included in MyWikis/pt-br
- Extensions included in ProWiki/pt-br
- Extensions included in semantic::core/pt-br
- Extensions included in ShoutWiki/pt-br
- Extensions included in Telepedia/pt-br
- Extensions included in wiki.gg/pt-br
- Extensions included in WikiForge/pt-br
- Echo/pt-br