Extension:Thanks
Thanks وضعیت انتشار: پایدار |
|
---|---|
انجام | رابط کاربری |
توضیحات | به کاربران این امکان را میدهد که از سایر کاربران برای ویرایشهای فردی و غیره تشکر کنند. |
نویسنده(گان) |
|
آخرین نسخه: | 1.2.0 (Continuous updates) |
سیاست سازگاری | 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 · گزارش یک مشکل |
افزونه متشکرم راهی سریع برای ارائه بازخورد مثبت برای مشارکتهای سازنده در سایتهای مدیاویکی اضافه میکند. این به کاربران اجازه میدهد اعلانهای عمومی 'تشکر از شما' را (از طریق Echo ) به سایر کاربران برای ویرایشهای فردی و برخی اقدامات ثبتشده ارسال کنند.
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 the following 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 and move the extracted
Thanks
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks - کد زیر را در انتهای $LocalSettings خودتان اضافه کنید:
wfLoadExtension( 'Thanks' );
- If necessary configure at your convenience
- Go to the History action of a page to see the new "Thank" interface.
- انجام شد – به Special:Version در ویکی خودتان بروید تا مطئمن شوید که افزونه با موفقیت نصب شده است.
پیکربندی
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"
];
کاربرد
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 استفاده شود. | |
پیشوند | |
نیازمند دسترسی است | هیچکدام |
فقط پست؟ | بله |
راهنمای ساختهشده | کنونی |
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 | |
---|---|
این پودمان نمیتواند بهعنوان یک$generator استفاده شود. | |
پیشوند | |
نیازمند دسترسی است | هیچکدام |
فقط پست؟ | بله |
راهنمای ساختهشده | کنونی |
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.
همچنین ببینید
- 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
- افزونه: اکو - Provides the notification system
این افزونه در یکی یا بیشتر پروژههای ویکیمدیا استفاده شده است. این احتمالاً به این معنی است که افزونه پایدار است و به اندازه کافی برای استفاده توسط وبسایتهای ترافیک-بالا به خوبی کار میکند. برای نام این افزونه در پروندههای پیکربندی CommonSettings.php و InitialiseSettings.php ویکیمدیا بگردید تا جایی که آنها نصب شده را ببینید. یک فهرست کامل از افزونهها نصبشده روی یک ویکی مشخص را میتوان در صفحۀ Special:Version دید. |
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. |