Расширение:Thanks
Thanks Статус релиза: стабильный |
|
---|---|
![]() |
|
Реализация | Пользовательский интерфейс |
Описание | Позволяет участникам поблагодарить других участников за их изменения. |
Автор(ы) |
|
Последняя версия | 1.2.0 (Continuous updates) |
Политика совместимости | Snapshots releases along with MediaWiki. Master is not backwards compatible. |
MediaWiki | 1.31+ |
PHP | 5.4+ |
Лицензия | MIT License |
Загрузка | |
|
|
Переведите расширение Thanks если оно доступно на translatewiki.net | |
Vagrant role | echo |
Проблемы | Открытые задачи · Сообщить об ошибке |
The Thanks extension adds a quick way to give positive feedback for productive contributions to MediaWiki sites. It allows users to send public 'thank you' notifications (via Echo ) to other users for their individual edits and some logged actions.
The specific revision that is being "thanked" for is not stored in the public logging table. Only the timestamp, sender, and recipient, are publicly logged.
A 'thank' link is added in four places:
- next to the 'undo' link in history and diff views;
- on some log entries on Special:Log (see #Configuration, below); and
- to Flow board comments if Flow is installed.
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 that the Thanks notification will make it easier to show appreciation for each other's work – and 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…
Download
Расширение можно получить непосредственно из Git [?]:
- Просмотреть код
- Некоторые расширения имеют теги для стабильных выпусков.
- Посмотрите теги
- Выберите тег
- Нажмите "snapshot"
- Каждая ветвь связана с прошлым выпуском MediaWiki. Существует также ветвь "master", содержащая последнюю альфа-версию (может потребоваться альфа-версия MediaWiki).
- Посмотрите ветви
- Выберите название ветви
- Нажмите "Continue"
Извлеките snapshot и поместите его в каталог extensions/Thanks/ вашей MediaWiki.
Если вы знакомы с git и имеете доступ к оболочке на своём сервере, тогда Вы можете получить расширение следующим образом:
cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks.git
Installation
- Скачайте и распакуйте файл(ы) в папку с названием
Thanks
в вашей папкеextensions/
. - Добавьте следующие строки в конец файла LocalSettings.php:
wfLoadExtension( 'Thanks' );
- If necessary configure at your convenience
- Go to the History action of a page to see the new "Thank" interface.
Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.
Для использующих MediaWiki 1.26 или более ранние версии:
В приведенных выше инструкциях описывается новый способ установки этого расширения с использованием wfLoadExtension()
.
Если вам нужно установить это расширение на более ранние версии (MediaWiki 1.26 и более ранние), вместо wfLoadExtension( 'Thanks' );
, вам необходимо использовать:
require_once "$IP/extensions/Thanks/Thanks.php";
Конфигурация
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:
$wgThanksLogTypeWhitelist = [
"contentmodel",
"delete",
"import",
"merge",
"move",
"patrol",
"protect",
"tag",
"managetags",
"rights"
];
Использование
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']
.
Avoiding thanks
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.
API documentation
thank | |
---|---|
Этот модуль не может быть использован в качестве generator. | |
Префикс | |
Необходимые права | нет |
Только POST? | Да |
Генерируемая справка | Текущее |
The Thanks extension includes an API for sending thanks. In order to call the API, use the parameter action=thank
.
Параметры:
rev
- The revision ID you would like to thank someone for (either this orlog
is required)log
- The log ID you would like to thank someone for (either this orrev
is 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)
Пример:
api.php?action=thank&rev=16543&token=%2B\
To send thanks via OAuth only the "Basic" grant permission is required. A python example can be found here.
Log Documentation
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 <= :end_date
Notice also that the logging table is not selected from directly, but on Wikimedia servers we take advantage the logging_logindex
table.
In order to quickly search for all the thanks a user sent the logging_userindex
provides the correct index.
Flow Thanks
flowthank | |
---|---|
Этот модуль не может быть использован в качестве generator. | |
Префикс | |
Необходимые права | нет |
Только POST? | Да |
Генерируемая справка | Текущее |
There is a separate API for sending Thanks for comments on Flow boards. To call the API, use action=flowthank
.
Parameters:
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)
Example:
api.php?action=flowthank&postid=abc123&token=%2B\
Errors and Warnings
Code | Info |
---|---|
invalidrecipient | Не найдено корректного получателя Нельзя поблагодарить ботов Вы не можете поблагодарить сами себя |
See also
- w:Wikipedia:Notifications/Thanks - Information about the usage of this extension on English Wikipedia
- Echo (Notifications)/Feature requirements#Thank_you_notification - Initial feature proposal (for the Echo extension)
- Расширение:WikiLove - Another extension for sending gratitude
- Расширение:Echo - Provides the notification system
![]() | Это расширение используется в одном или нескольких проектах Викимедиа. Вероятно, это означает, что расширение стабильно и работает достаточно хорошо, чтобы использоваться такими сайтами с высоким трафиком. Найдите название этого расширения в файлах конфигурации Викимедиа CommonSettings.php и InitialiseSettings.php, чтобы узнать, где оно установлено. Полный список расширений, установленных на конкретной вики, можно увидеть на странице Special:Version wiki. |
- Stable extensions/ru
- User interface extensions/ru
- MIT licensed extensions/ru
- Extensions in Wikimedia version control/ru
- ApiMain::moduleManager extensions/ru
- BeforeCreateEchoEvent extensions/ru
- BeforePageDisplay extensions/ru
- BeforeSpecialMobileDiffDisplay extensions/ru
- DiffTools extensions/ru
- DifferenceEngineViewHeader extensions/ru
- EchoGetBundleRules extensions/ru
- EchoGetDefaultNotifiedUsers extensions/ru
- GetLogTypesOnUser extensions/ru
- HistoryTools extensions/ru
- LocalUserCreated extensions/ru
- LogEventsListLineEnding extensions/ru
- PageHistoryBeforeList extensions/ru
- All extensions/ru
- Extensions used on Wikimedia/ru