Extension:EmailDiff
![]() État de la version : stable |
|
---|---|
Implémentation | Notifier |
Description | Envoyer des différences textuelles des modifications de page dans les e-mails de notification |
Auteur(s) | Greg Sabino Mullane (Turnstepdiscussion) |
Dernière version | 1.9 (2017-11-14) |
MediaWiki | 1.29+ |
Licence | Licence MIT |
Téléchargement | |
|
|
Téléchargements trimestriels | 5 (Ranked 168th) |
Traduire l’extension EmailDiff sur translatewiki.net si elle y est disponible | |
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
- Télécharger et placez le(s) fichier(s) dans un répertoire appelé
EmailDiff
dans votre dossierextensions/
. - Ajoutez le code suivant à la fin de votre fichier
LocalSettings.php
: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 ] );
- Fait – Accédez à Special:Version sur votre wiki pour vérifier que l'extension a bien été installée.
Modifier le modèle
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.
It is recommended that you put some short summary information at the top before the diff. Here is one suggested layout:
Page: $PAGETITLE Summary: $PAGESUMMARY $PAGEMINOREDIT User: $PAGEEDITOR Time: $PAGEEDITDATE $PAGEDIFF $NEWPAGE
Activate for users
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;
Paramètres de configuration
If you need to change these, add them to your LocalSettings.php after the wfLoadExtension command above:
$wgEmailDiffSubjectSuffix
- String to be added to the end of the subject line. Defaults to (diff)$wgEmailDiffCommand
- Command to perform the diff. Seldom needs to be changed from the default.