확장기능:감사
Thanks 출시 상태: 안정 |
|
---|---|
![]() |
|
구현 | 사용자 인터페이스 |
설명 | 다른 사용자의 각각의 편집에 감사를 표할 수 있도록 함 |
만든이 |
|
최신 버전 | 1.2.0 (Continuous updates) |
호환성 정책 | 출시 브랜치 |
MediaWiki | 1.31+ |
PHP | 5.4+ |
라이선스 | MIT License |
다운로드 | |
|
|
Thanks 확장 기능 번역 (translatewiki.net에서 가능한 경우) | |
Vagrant 역할 | 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
The extension can be retrieved directly from Git
[?]:
- Browse code
- Some extensions have tags for stable releases.
- Browse tags
- Select the tag
- Click "snapshot"
- Each branch is associated with a past MediaWiki release. There is also a "master" branch containing the latest alpha version (might require an alpha version of MediaWiki).
- Browse branches
- Select a branch name
- Click "Continue"
Extract the snapshot and place it in the extensions/Thanks/ directory of your MediaWiki installation.
If you are familiar with git and have shell access to your server, you can also obtain the extension as follows:
cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks.git
설치
- 파일을 다운로드해서,
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’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.
미디어위키 1.26 이하를 실행 중인 사용자에게:
위의 지시사항은 wfLoadExtension()
을 사용하여 이 확장기능을 설치하는 새로운 방법을 기술한 것으로,
wfLoadExtension( 'Thanks' );
대신 초기 버전(미디어위키 1.26 이하)에 이 확장기능을 설치하려면 다음을 사용해야 합니다:
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 only? | 예 |
생성된 도움말 | 현재 |
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.
플로우 Thanks
flowthank | |
---|---|
이 모듈은 $generator로 사용할 수 없습니다. |
|
접두어 | |
요구되는 권한 | 없음 |
Post only? | 예 |
생성된 도움말 | 현재 |
There is a separate API for sending Thanks for comments on Flow boards. To call the API, use action=flowthank
.
변수:
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)
예시:
api.php?action=flowthank&postid=abc123&token=%2B\
오류와 경고
코드 | 정보 |
---|---|
invalidrecipient | No valid recipient found 봇은 감사를 받을 수 없습니다 자기 자신에게 감사를 표할 수 없습니다 |
같이 보기
- 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)
- 확장기능:위키사랑 - 확장기능:위키사랑 - Another extension for sending gratitude
- 확장기능:Echo - 확장기능:Echo - 기본적인 알림 시스템
This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page. |