Розширення:Подяки
Thanks Статус релізу: стабільний |
|
---|---|
Реалізація | Інтерфейс користувача |
Опис | Дозволяє користувачам дякувати іншим користувачам за окремі редагування і дії. |
Автор(и) |
|
Найновіша версія | 1.2.0 (Постійні оновлення) |
Compatibility policy | Snapshots releases along with MediaWiki. Master is not backward compatible. |
MediaWiki | >= 1.43 |
Ліцензія | MIT License |
Завантажити | |
|
|
Quarterly downloads | 23 (Ranked 108th) |
Public wikis using | 2,442 (Ranked 193rd) |
Translate the Thanks extension if it is available at translatewiki.net | |
Vagrant role | echo |
Issues | Open tasks · Report a bug |
Розширення подяк (Thanks) додає швидкий спосіб дати позитивний відгук за продуктивний внесок на сайти MediaWiki. Воно дозволяє користувачам надіслати публічне сповіщення про подяку (через Echo ) іншим користувачам за окремі редагування та деякі журнальні дії.
У публічному журналі не зберігається конкретна різниця версій, «за яку» користувачеві подякували: лише часова мітка, відправник та отримувач подяки.
Посилання «подякувати» додане у таких місцях:
- поруч з посиланням «скасувати» в історії і порівнянні версій,
- у деяких журнальних записах на Спеціальна:Журнали (див. #Configuration нижче),
- біля коментарів дошки Flow, якщо Flow встановлено.
Також доступний API для надсилання подяк.
Зверніть увагу, що якщо ви не хочете, аби вам дякували, ви можете легко вимкнути це сповіщення у своїх налаштуваннях, як описано нижче.
Якщо ви спробували цю функцію, будемо раді почути ваш відгук про неї на сторінці обговорення.
Ми сподіваємося, що таке сповіщення зробить процес дякування одне одному легшим — і особливо корисним це має бути для заохочення нових користувачів на їхніх надзвичайно важливих перших кроках у вікі. Ми навмисне залишили це сповіщення якомога простішим, щоб можна було оцінити його і покращити. Насолоджуйтеся…
Встановлення
- Завантажте і розмістіть файли в каталозі з назвою
Thanks
у вашійextensions/
папці.
Розробники та автори коду повинні замість цього встановити розширення з Git, використовуючи:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks - Додайте такий код унизу вашого файлу 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 вашої вікі, щоб переконатися, що розширення встановлено успішно.
Configuration
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"
];
Usage
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 | |
---|---|
Цей модуль не можна використовувати як генератор. | |
Префікс | |
Запитувані права | жоден |
Лише опублікувати? | Так |
Створена довідка | Поточний |
The Thanks extension includes an API for sending thanks. In order to call the API, use the parameter action=thank
.
Parameters:
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)
Example:
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 | |
---|---|
Цей модуль не можна використовувати як генератор. | |
Префікс | |
Запитувані права | жоден |
Лише опублікувати? | Так |
Створена довідка | Поточний |
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 | Не знайдено дійсного одержувача Не можна дякувати ботам Ви не можете подякувати собі |
SQL 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
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.
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)
- Extension:WikiLove - Another extension for sending gratitude
- Розширення:Echo - Provides the notification system
Це розширення використовується в одному або декількох проєктах Вікімедіа. Це, мабуть, означає, що розширення стабільне і працює досить добре, щоб його могли використовувати веб-сайти з великим трафіком. Шукайте назву цього розширення у файлах конфігурації Wikimedia CommonSettings.php та InitialiseSettings.php, щоб побачити, де це встановлене. Повний перелік розширень, встановлених на певній вікі, можна переглянути на сторінці Special:Version вікі. |
Це розширення включено до таких вікі-ферм/хостів та/або пакетів: Це не авторитетний список. Деякі вікі-ферми/хости та/або пакунки можуть містити це розширення, навіть якщо вони не вказані тут. Завжди звертайтеся до своїх вікі-ферм/хостів або комплекту для підтвердження. |