Extension:Thanks/de-formal

This page is a translated version of the page Extension:Thanks and the translation is 38% complete.
This extension comes with MediaWiki 1.40 and above. Thus you do not have to download it again. However, you still need to follow the other instructions provided.
MediaWiki extensions manual
Thanks
Release status: stable
Implementation User interface
Description Lets users thank other users for individual edits etc.
Author(s)
Latest version 1.2.0 (Continuous updates)
Compatibility policy Snapshots releases along with MediaWiki. Master is not backward compatible.
MediaWiki >= 1.42
License MIT License
Download
  • $wgThanksAllowedLogTypes
  • $wgThanksConfirmationRequired
  • $wgThanksLogging
  • $wgThanksSendToBots
Quarterly downloads 48 (Ranked 96th)
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

Die Danke-Erweiterung bietet eine schnelle Möglichkeit, positives Feedback für produktive Beiträge zu MediaWiki-Seiten zu geben. Sie ermöglicht Benutzern, anderen Benutzern für ihre individuellen Bearbeitungen und bestimmte geloggte Aktionen öffentliche 'Danke'-Benachrichtigungen (via §1) zu senden.

Die spezifische Veränderung, für die gedankt wurde, wird nicht in der öffentlichen Logging-Tabelle gespeichert. Nur der Zeitpunk, der Sender und der Empfänger werden öffentlcih geloggt.

Ein "danke"-Link befindet sich an den folgenden Stellen:

  • neben dem 'rückgängig machen'-Link in der Versionsgeschichte un der Vergleichs-Ansicht;
  • in manchen Log-Einträgen auf Special:Log (siehe #Configuration, unten); an
  • zu Flow Board-Kommentaren, wenn Flow installiert ist.

Es gibt außerdem eine API zum Senden von Dank.

Beachte, dass wenn Sie nicht möchten, dass Ihnen gedankt wird, Sie die Benachrichtigungen einfach in Ihren Einstellungen deaktivieren können, wie unten beschrieben.

Example of a 'thanks' notification

Wenn Sie die Möglichkeit hatten, dies auszuprobieren, freuen wir uns über Ihr Feedback zu dieser Funktion auf der Diskussions-Seite.

Wir hoffen, dass die Danke-Benachrichtigung es einfacher machen wird, die Arbeit der anderen zu würdigen - und sie sollte besonders hilfreich sein, um neue Benutzer bei ihren ersten kritischen Schritten in einem Wiki zu ermutigen. Wir haben diese Benachrichtigung absichtlich so einfach wie möglich gehalten, damit wir sie gemeinsam evaluieren und verbessern können. Viel Spaß damit...

Installation

Thanks requires the Echo extension be installed as a prerequisite.
  • Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens Thanks im Ordner extensions/ ablegen.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
  • Folgenden Code am Ende Ihrer LocalSettings.php -Datei hinzufügen:
    wfLoadExtension( 'Thanks' );
    
  • If necessary configure at your convenience
  • Go to the History action of a page to see the new "Thank" interface.
  •   Done – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Konfiguration

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"
];

Verwendung

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'].

Benachrichtigungen verhindern

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-Dokumentation

The Thanks extension includes an API for sending thanks. In order to call the API, use the parameter action=thank.

Parameter:

  • rev - The revision ID you would like to thank someone for (either this or log is required)
  • log - The log ID you would like to thank someone for (either this or rev 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)

Beispiel:

 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

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)

Beispiel:

 api.php?action=flowthank&postid=abc123&token=%2B\

Fehler und Warnungen

Code Info
invalidrecipient Keinen gültigen Empfänger gefunden
Bots kann nicht gedankt werden
Du kannst dir nicht selbst danken

SQL-Dokumentation

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.


Siehe auch