Extension:WhoIsWatching

From mediawiki.org
This page is a translated version of the page Extension:WhoIsWatching and the translation is 100% complete.
Manuel des extensions MediaWiki
Who Is Watching
État de la version : stable
Implémentation Page spéciale , Base de données , Fonction d'analyseur
Description Find out who is watching a particular page, and add others to watchlist for that page.
Auteur(s)
Dernière version 0.13.0 (2019-08-04)
Politique de compatibilité Le master conserve la compatibilité arrière.
MediaWiki 1.32+
PHP 5.4+
Composer mediawiki/who-is-watching
Licence Licence publique générale GNU v2.0 seulement
Téléchargement
README.mediawiki
Exemple http://ec.europa.eu/eurostat/
  • $whoiswatching_nametype
  • $whoiswatching_allowaddingpeople
  • $whoiswatching_showifzero
  • $whoiswatching_showwatchingusers
  • $whoiswatching_maxPicklistUsers
  • addpagetoanywatchlist
  • seepagewatchers
Téléchargements trimestriels 3 (Ranked 144th)
Traduire l’extension WhoIsWatching sur translatewiki.net si elle y est disponible
Problèmes Tâches ouvertes · Signaler un bogue

L’extension WhoIsWatching permet de savoir qui regarde une page particulière, et d’ajouter d’autres à la liste de surveillance pour cette page.

Rationale

Even though this notion goes against Wikipedia and Wikimedia privacy policy, some wikis may actually like to see which of its users are watching particular pages. This extension provides just such an interface at the bottom of every page. Additionally, this extension has an option to allow any user to add any page to any other user's watch list.

Installation

Make sure that Extension:Echo ist installed as it is a prerequisite for this extension to work.

  • Téléchargez et placez le(s) fichier(s) dans un répertoire appelé WhoIsWatching dans votre dossier extensions/.
    Les développeurs et les contributeurs au code doivent à la place installer l'extension à partir de Git en utilisant:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/WhoIsWatching
  • Ajoutez le code suivant à la fin de votre fichier LocalSettings.php  :
    wfLoadExtension( 'WhoIsWatching' );
    # $whoiswatching_nametype = "RealName";
    # $whoiswatching_allowaddingpeople = false;
    # $whoiswatching_showifzero = true;
    # $whoiswatching_showwatchingusers = false;
    # $whoiswatching_maxPicklistUsers = 10;
    # $wgGroupPermissions['sysop']['addpagetoanywatchlist'] = true;
    # $wgGroupPermissions['sysop']['seepagewatchers'] = true;
    
  • Yes Fait – Accédez à Special:Version sur votre wiki pour vérifier que l'extension a bien été installée.

Configuration

You can simply start using the extension without changing anything else. The only additional configuration that is currently possible for the extension defines how to display the names of the users watching the pages. In SpecialWhoIsWatching.php, there is

# Set the following to either 'UserName' or 'RealName' to change how watching users are displayed.
$whoiswatching_nametype = 'RealName';

As the comment implies, depending on the value of this variable, you can display either the real names of the watching users or their wiki usernames. The reason some wiki's may want to switch over to the 'UserName' mode is if they do not require their members to have a valid real name.

Another configurable option in the extension is the ability to switch on/off the option to allow any user to add any page to any other user's watch list. This is done in SpecialWhoIsWatching.php, where there is

# Set true if you don't want to use permissions and users are allowed to add to other user's watchlists.
$whoiswatching_allowaddingpeople = true;

It is also possible to only display the count of watching people if the count is greater than zero. This is done in SpecialWhoIsWatching.php, where there is

# Set to true if you want people with permission to see 0 if no one is watching the page.
$whoiswatching_showifzero = true;

Finally, newer versions of this extension, while we attempt to be backward compatible, allow you to use permissions instead of global variables.

# Set to true if you don't want to use permissions.
$whoiswatching_showwatchingusers = true;

By default, users in the sysop group have permission to see page watchers and add pages to anyone's watchlist. You can grant these permissions to logged in users, too, or any group you think needs it.

# Give all logged in users full access.
$wgGroupPermissions['user']['addpagetoanywatchlist'] = true;
$wgGroupPermissions['user']['seepagewatchers'] = true;

Utilisation

This extension also provides the {{#whoiswatching:Some Page}} parser function showing the number of watching users of Some Page plus providing a link to Special:WhoIsWatching/Some Page. This can be used with skins not supporting footer links or to create the WhoIsWatching link somewhere in a wiki page.


Problèmes connus

The first time after a you submit a request to remove a page from the users watchlist, the user is still shown on the form. To get around this it is disabled and displayed with a red strikethrough.