Extensão: Thanks
Estado de lançamento: estável |
|
|---|---|
| Implementação | Interface do utilizador |
| Descrição | Permite aos utilizadores agradecerem aos outros utilizadores por edições individuais, etc. |
| Autor(es) |
|
| Última versão | 1.2.0 (Atualizações contínuas) |
| Política de compatibilidade | Lançamentos de capturas de ecrã em conjunto com o MediaWiki. Original não é compatível com as versões anteriores. |
| Licença | Licença MIT |
| Transferência | |
|
|
| Traduza a extensão Thanks se esta estiver disponível em translatewiki.net | |
| Função no Vagrant | echo |
| Problemas | Tarefas em aberto · Reportar um erro |
A extensão Thanks adiciona uma maneira rápida de dar feedback positivo para as contribuições produtivas nos sites do MediaWiki. It allows users to send public 'thank you' notifications (via Echo) to other users for their edits and some logged actions.
A 'thank' link is added in the following places:
- next to the 'undo' link in history and diff views;
- on some log entries on Special:Log (see #Configuration, below); and
- if the StructuredDiscussions extension is installed, to Flow board comments.
It also provides an API for sending thanks.
Note that if you do not want to be thanked, you can easily disable this notification in your preferences, as described below.
Once you have had a chance to try it out, we welcome your feedback about this feature on the talk page.
We hope the Thanks notification will make showing appreciation for each other's work easier. It should be particularly helpful for encouraging new users during their first critical steps on a wiki. We have intentionally kept this notification as simple as possible so we can evaluate it and improve it together. Enjoy…
Instalação
- Exporte e coloque o ficheiro, ou ficheiros, num diretório chamado
Thanks, 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/Thanks
- Acrescente o seguinte código ao fundo do ficheiro $LocalSettings:
wfLoadExtension( 'Thanks' );
- Configure à sua conveniência.
- Go to the history tab of a page to see the new "Thank" interface.
Pronto – Na página especial Special:Version da sua wiki verifique se a extensão foi instalada.
Configuração
Enable the Thank interface for bot edits (disabled by default)
$wgThanksSendToBots = false;
Log Thank actions to Special:Log (enabled by default)
$wgThanksLogging = true;
Whether or not confirmation is required for sending thanks (enabled by default)
$wgThanksConfirmationRequired = true;
Log entry types that can be thanked from Special:Log:
$wgThanksAllowedLogTypes = [
"contentmodel",
"delete",
"import",
"merge",
"move",
"patrol",
"protect",
"tag",
"managetags",
"rights"
];
Utilização
To thank another user, go to the History tab of any page. Next to each revision will be a 'thank' link. Click the link to send thanks to that user. This link is also available in the diff view, on some entries in Special:Log, and below comments on Flow boards if Flow is installed.
When the thank link is clicked, the recipient will receive a notification with your thanks via the Echo extension (unless they have opted out of receiving thanks notifications). A record of the action is also recorded as a log entry at Special:Log/thanks.
If the wiki is using memcached, a rate limit is imposed of no more than 10 thanks per minute per user. The limit can be configured with $wgRateLimits['thanks-notification'].
Evitar agradecimentos
To stop getting thanks notifications, you can opt out from them in your notification preferences. Go to the Notifications tab of your preferences. This only prevents you from getting notified, it does not prevent users from thanking you.
Documentação da API =
| thank | |
|---|---|
Este módulo não pode ser utilizado como um gerador. | |
| Prefixo | |
| Permissões requeridas | nenhuma |
| Só publicação? | Sim |
| Ajuda gerada | Atual |
The Thanks extension includes an API for sending thanks.
In order to call the API, use the parameter action=thank.
Parâmetros:
rev- The revision ID you would like to thank someone for (either this orlogis required)log- The log ID you would like to thank someone for (either this orrevis required)source- Source of the thank event. This is a short string that identifies where the thanks was sent from. For example, if the thanks was sent from Huggle, the value could be 'huggle'. (optional)token- Edit token (a.k.a. CSRF token). You can get one of these through the tokens API. (required)
Exemplo:
api.php?action=thank&rev=16543&token=%2B\
To send thanks via OAuth only the "Basic" grant permission is required. A python example is available.
Flow Thanks
| flowthank | |
|---|---|
Este módulo não pode ser utilizado como um gerador. | |
| Prefixo | |
| Permissões requeridas | nenhuma |
| Só publicação? | Sim |
| Ajuda gerada | Atual |
There is a separate API for sending Thanks for comments on Flow boards.
To call the API, use action=flowthank.
Parâmetros:
postid- The UUID of the comment for which to send thanks (required)token- Edit token. You can get one of these through prop=info. (required)
Exemplo:
api.php?action=flowthank&postid=abc123&token=%2B\
Erros e Avisos
| Código | Informação |
|---|---|
| invalidrecipient | Não foi encontrado nenhum destinatário válido Não se pode agradecer a robôs Não pode agradecer a si mesmo |
Documentação de SQL
The specific revision, event, or action that gets "thanked" is not stored in the logging database table (and so the system limits what can be shown e.g. on Special:Log/thanks). Only the timestamp, sender, and recipient are logged.
Understanding who thanked who from the logs requires some understanding of the columns.
Within the logging table, the log_title represents the receiver, and the log_user_text represents the sender.
The following SQL which finds all the thanks a receiver received within a time period illustrates this:
select log_timestamp as thank_timestamp,
replace(log_title, '_', ' ') as receiver,
log_user_text as sender
from logging_logindex
where log_title = :user_name
and log_action = 'thank'
and :start_date <= log_timestamp
and log_timestamp <= :end_date
Notice also that the logging table is not selected from directly, but on Wikimedia servers we take advantage of the logging_logindex table.
In order to quickly search for all the thanks a user sent the logging_userindex provides the correct index.
Consultar também
- w:Help:Notifications/Thanks - Informação sobre a utilização desta extensão na Wikipédia em inglês
- Echo (Notifications)/Feature requirements#Thank_you_notification - Proposta inicial de funcionalidade (para a extensão Echo)
- Extension:WikiLove - Outra extensão para enviar gratidão
- Extensão: Echo - Fornece o sistema de notificação
| Este extensão está a ser utilizado em um ou mais projetos da Wikimedia. Isso provavelmente significa que a extensão é estável e funciona bem o suficiente para ser usada por esses sites de alto tráfego. Procure o nome desta extensão nos arquivos de configuração CommonSettings.php e InitialiseSettings.php da Wikimedia para ver onde está instalado. Uma lista completa das extensões instaladas em um determinado wiki pode ser vista na página Special:Version do wiki. |
| This extension is included in the following wiki farms/hosts and/or packages: This is not an authoritative list. Some wiki farms/hosts and/or packages may contain this extension even if they are not listed here. Always check with your wiki farms/hosts or bundle to confirm. |
- Stable extensions/pt
- User interface extensions/pt
- MIT licensed extensions/pt
- Extensions in Wikimedia version control/pt
- ApiMain::moduleManager extensions/pt
- BeforeCreateEchoEvent extensions/pt
- BeforePageDisplay extensions/pt
- ChangesListInitRows extensions/pt
- DiffTools extensions/pt
- DifferenceEngineViewHeader extensions/pt
- EchoGetBundleRules extensions/pt
- GetAllBlockActions extensions/pt
- GetLogTypesOnUser extensions/pt
- HistoryTools extensions/pt
- LocalUserCreated extensions/pt
- LogEventsListLineEnding extensions/pt
- PageHistoryBeforeList extensions/pt
- PageHistoryPager::doBatchLookups extensions/pt
- All extensions/pt
- Extensions bundled with MediaWiki 1.40/pt
- Extensions used on Wikimedia/pt
- Extensions included in Canasta/pt
- Extensions available as Debian packages/pt
- Extensions included in Fandom/pt
- Extensions included in Miraheze/pt
- Extensions included in MyWikis/pt
- Extensions included in ProWiki/pt
- Extensions included in ShoutWiki/pt
- Extensions included in wiki.gg/pt
- Extensions included in WikiForge/pt
