Extension:Thanks/pl
Status wydania: stabilne |
|
|---|---|
| Realizacja | Interfejs użytkownika |
| Opis | Umożliwia użytkownikom dziękowanie za poszczególne edycje, itp. |
| Autor(zy) |
|
| Ostatnia wersja | 1.2.0 (Continuous updates) |
| Polityka zgodności | Snapshots releases along with MediaWiki. Master nie jest kompatybilny wstecznie. |
| Licencja | Licencja MIT |
| Pobieranie | |
|
|
| Przetłumacz rozszerzenie Thanks jeżeli jest dostępne na translatewiki.net | |
| Rola Vagrant | echo |
| Problemy | Otwarte zadania · Zgłoś błąd |
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 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…
Instalacja
- Pobierz i umieść plik(i) w katalogu o nazwie
Thanksw folderzeextensions/.
Developers and code contributors should install the extension from Git instead, using:cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
- Dodaj poniższy kod na dole twojego pliku LocalSettings.php:
wfLoadExtension( 'Thanks' );
- Configure at your convenience.
- Go to the history tab of a page to see the new "Thank" interface.
Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Konfiguracja
Zezwól na dziękowanie za edycje bota (domyślnie wyłączone)
$wgThanksSendToBots = false;
Umieszczaj podziękowania w rejestrze dostępnym na stronie "Specjalna:Rejestr" (domyślnie włączone)
$wgThanksLogging = true;
Czy wymagać potwierdzenia przy wysyłaniu podziękowania (domyślnie włączone)
$wgThanksConfirmationRequired = true;
Log entry types that can be thanked from Special:Log:
$wgThanksAllowedLogTypes = [
"contentmodel",
"delete",
"import",
"merge",
"move",
"patrol",
"protect",
"tag",
"managetags",
"rights"
];
Użycie
Aby podziękować innemu użytkownikowi, przejdź do zakładki "Historia" na wybranej stronie. Przy każdej wersji znajduje się link "podziękuj". Kliknij go, aby wysłac podziękowanie do użytkownika. Ten link jest także dostępny w widoku porównania zmian, w niektórych wpisach na Specjalna:Rejestr oraz przy każdym komentarzu we Flow, jeżeli jest zainstalowany. 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.
Po kliknięciu linku podziękowania, odbiorca otrzyma powiadomienie o twoim podziękowaniu poprzez rozszerzenie Echo (chyba że będzie mieć wyłączone otrzymywanie powiadomień o podziękowaniach). Informacja o tej akcji jest także zapisywana w rejestrze dostępnym na stronie Special:Log/thanks. A record of the action is also recorded as a log entry at Special:Log/thanks.
Jeżeli wiki używa memcached, jest ograniczenie do 10 podziękowań na minutę przez jednego użytkownika. Limit ten można konfigurować poprzez $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.
Dokumentacja API
| thank | |
|---|---|
Ten moduł nie może być użyty jako generator. | |
| Prefiks | |
| Wymagane uprawnienia | brak |
| Tylko POST? | Tak |
| Wygenerowana pomoc | Aktualna |
The Thanks extension includes an API for sending thanks.
In order to call the API, use the parameter action=thank.
Parametry:
rev- ID wersji, za którą podziękować (to lublogwymagane)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- Token edycji (a.k.a. csrf token). You can get one of these through the tokens API. (required)
Przykład:
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.
Podziękowania we Flow
| flowthank | |
|---|---|
Ten moduł nie może być użyty jako generator. | |
| Prefiks | |
| Wymagane uprawnienia | brak |
| Tylko POST? | Tak |
| Wygenerowana pomoc | Aktualna |
There is a separate API for sending Thanks for comments on Flow boards.
To call the API, use action=flowthank.
Parametry:
postid- UUID komentarza za który podziękować (wymagane)token- Token edycji. Można go pobrać poprzez prop=info. (wymagane) You can get one of these through prop=info. (required)
Przykład:
api.php?action=flowthank&postid=abc123&token=%2B\
Błędy i ostrzeżenia
| Kod | Info |
|---|---|
| invalidrecipient | Nie znaleziono odbiorcy Botom nie można dziękować Nie możesz sobie podziękować |
SQL documentation
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.
Zobacz też
- w:Help: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)
- Rozszerzenie:WikiLove - Another extension for sending gratitude
- Extension:Echo - Dostarcza system powiadomień
| To rozszerzenie jest wykorzystywane przez jeden lub więcej projektów Wikimedia. Oznacza to prawdopodobnie, że to rozszerzenie jest stabilne i działa wystarczająco dobrze, aby wykorzystywać je na stronach o dużym natężeniu ruchu. Odnajdź nazwę tego rozszerzenia w plikach konfiguracyjnych Wikimedia CommonSettings.php oraz InitialiseSettings.php, aby zobaczyć gdzie są zainstalowane. Pełną listę rozszerzeń zainstalowanych na określonej wiki można znaleźć na stronie Special:Version na danej wiki. |
| To rozszerzenie jest dołączone do następujących farm/hostów wiki lub pakietów: |
- Stable extensions/pl
- User interface extensions/pl
- MIT licensed extensions/pl
- Extensions in Wikimedia version control/pl
- ApiMain::moduleManager extensions/pl
- BeforeCreateEchoEvent extensions/pl
- BeforePageDisplay extensions/pl
- ChangesListInitRows extensions/pl
- DiffTools extensions/pl
- DifferenceEngineViewHeader extensions/pl
- EchoGetBundleRules extensions/pl
- GetAllBlockActions extensions/pl
- GetLogTypesOnUser extensions/pl
- HistoryTools extensions/pl
- LocalUserCreated extensions/pl
- LogEventsListLineEnding extensions/pl
- PageHistoryBeforeList extensions/pl
- PageHistoryPager::doBatchLookups extensions/pl
- All extensions/pl
- Extensions bundled with MediaWiki 1.40/pl
- Extensions used on Wikimedia/pl
- Extensions included in Canasta/pl
- Extensions available as Debian packages/pl
- Extensions included in Fandom/pl
- Extensions included in Miraheze/pl
- Extensions included in MyWikis/pl
- Extensions included in ProWiki/pl
- Extensions included in ShoutWiki/pl
- Extensions included in wiki.gg/pl
