Extension:VoteNY/fr

From mediawiki.org
This page is a translated version of the page Extension:VoteNY and the translation is 4% complete.
Manuel des extensions MediaWiki
VoteNY
État de la version : stable
Implémentation Extension de l'analyseur , Accroche , Balise
Description JavaScript-based voting with the ‎<vote> tag
Auteur(s)
Dernière version 3.2 (2021-11-24)
Politique de compatibilité Le master conserve la compatibilité arrière.
MediaWiki 1.39+
Modifie la base
de données
Oui
Tables Vote
Licence Licence publique générale GNU v2.0 ou supérieur
Téléchargement
  • voteny
Téléchargements trimestriels 26 (Ranked 124th)
Traduire l’extension VoteNY sur translatewiki.net si elle y est disponible
Problèmes Tâches ouvertes · Signaler un bogue

The VoteNY a.k.a Vote extension adds the ‎<vote> parser hook tag to allow voting on articles where the tag is present.

Installation

  • Téléchargez et placez le(s) fichier(s) dans un répertoire appelé VoteNY 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/VoteNY
  • Ajoutez le code suivant à la fin de votre fichier LocalSettings.php  :
    wfLoadExtension( 'VoteNY' );
    
  • Exécutez le script de mise à jour qui va créer automatiquement les tables de base de données dont cette extension a besoin.
  • Yes Fait – Accédez à Special:Version sur votre wiki pour vérifier que l'extension a bien été installée.


Configuration

This extension adds one new user right, voteny, which is required in order to vote. By default, anonymous users do not have this right and thus they cannot vote but registered users can. To allow anonymous users to vote, add the following to your LocalSettings.php:

$wgGroupPermissions['*']['voteny'] = true;


Usage

Tags

‎<vote /> outputs a green square voting box.

<vote type=1 /> outputs five voting stars.

Magic words

  • {{NUMBEROFVOTES}}: Returns the entire number of votes on the wiki.
  • {{NUMBEROFVOTESPAGE}}: Returns the number of votes on the current page.
  • {{NUMBEROFVOTESPAGE:<page>}}: Returns the number of votes on the given page.

The magic word {{NUMBEROFVOTES}} can be used to display the number of votes in the database; this number is cached (in memcached ) for 24 hours, so it's not totally up-to-date.

Special page

The special page Special:TopRatings displays the highest rated pages on the wiki. It supports filtering by category and namespace and its output can be embedded on wiki pages, so {{Special:TopRatings/Adventure Games/0/10}} will show 10 ratings where the pages are in the "Adventure Games" category and the pages are in the main (0) namespace.

Internationalization

Message anglais Description
voteny-link Vote
voteny-unvote-link unvote Displayed to the user after their vote has been successfully added.
voteny-community-score community score: $1 "community score" is the average score of the page in question
voteny-ratings {{PLURAL:$1|one rating|$1 ratings}} $1 is the number of ratings, if said number is greater than 1.
voteny-remove remove
voteny-gave-this you gave this a $1 $1 is the score you gave to the page, for example 5 or 3.50.
voteny-votes {{PLURAL:$1|one vote|$1 votes}} $1 is the number of votes.
topratings Top Ratings Title of Special:TopRatings, will be shown on the listing of special pages at Special:SpecialPages and on Special:TopRating itself.
topratings-no-pages No top rated pages. Shown on Special:TopRatings if there are absolutely no pages that have been rated yet (as is the case usually right after installing the extension).
right-voteny Vote pages Displayed on Special:ListGroupRights.

See also

  • RatePage - Allows for voting and voting contests