Erweiterung:EmailDiff
![]() Freigabestatus: stabil |
|
---|---|
Einbindung | Benachrichtigung |
Beschreibung | Versenden von textlichen Diffs von Seitenänderungen in den Benachrichtigungs-E-Mails |
Autor(en) | Greg Sabino Mullane (TurnstepDiskussion) |
Letzte Version | 1.9 (2017-11-14) |
MediaWiki | 1.29+ |
Lizenz | MIT-Lizenz |
Herunterladen | |
|
|
Quarterly downloads | 5 (Ranked 162nd) |
Übersetze die EmailDiff-Erweiterung, wenn sie auf translatewiki.net verfügbar ist | |
The EmailDiff extension modifies outgoing notification emails by providing a text diff of all changes made. This enables you to see the changes without having to leave your mail client.
Installation
- Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens
EmailDiff
im Ordnerextensions/
ablegen. - Folgenden Code am Ende der
LocalSettings.php
einfügen:A new hook will need to be added to the filewfLoadExtension( 'EmailDiff' );
includes/mail/EmailNotification.php
. Inside the functionsendPersonalized
, right before the "return" line, add:
Hooks::run( 'SendPersonalizedNotificationEmail',
[ $watchingUser, $this->oldid, $this->title, &$headers, &$this->subject, &$body ] );
- Erledigt – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.
Die Vorlage bearbeiten
The extension works by replacing the word $PAGEDIFF in the email notification template with the actual diff. Therefore, you will need to edit the MediaWiki:Enotif_body page on your wiki to add that string.
Es wird empfohlen, dass du eine kurze Zusammenfassung oben vor dem Diff. Hier ist ein Vorschlag für das Layout:
Page: $PAGETITLE Summary: $PAGESUMMARY $PAGEMINOREDIT User: $PAGEEDITOR Time: $PAGEEDITDATE $PAGEDIFF $NEWPAGE
Aktivieren für Benutzer
In Preferences -> User profile
add a tick in Send a diff of changes
Or activate the extension for all users in LocalSettings.php by adding:
$wgDefaultUserOptions['enotifshowdiff'] = true;
Konfigurationsparameter
If you need to change these, add them to your LocalSettings.php after the wfLoadExtension command above:
$wgEmailDiffSubjectSuffix
- String, der am Ende der Betreffzeile hinzugefügt wird. Defaults to (diff)$wgEmailDiffCommand
- Befehl, um den Vergleich durchzuführen. Die Standardeinstellung muss selten geändert werden.