Extension:LiquidThreads/fr

Category:Unmaintained extensions/fr#LiquidThreads/fr Category:GPL licensed extensions/fr
Manuel des extensions MediaWiki
LiquidThreads
État de la version : non-maintenuCategory:Unmaintained extensions/fr
Implémentation Action de page Category:Page action extensions/fr, Page spéciale Category:Special page extensions/fr, API Category:API extensions/fr
Description Implémente un système de discussions structurées
Auteur(s) David McCabe, Andrew Garrett
Dernière version 2.2-alpha (2014-03-28)
MediaWiki 1.29+Category:Extensions with manual MediaWiki version
PHP 5.4+
Modifie la base
de données
Oui
Tables thread
thread_history
thread_pending_relationship
thread_reaction
historical_thread
user_message_state
Licence Licence publique générale GNU v2.0 ou supérieur
Téléchargement Category:Extensions in Wikimedia version control/fr
README
  • $egLqtNamespaceNumbers
Téléchargements trimestriels 6 (Ranked 101st)
Traduire l’extension LiquidThreads sur translatewiki.net si elle y est disponible
Problèmes Tâches ouvertes · Signaler un bogue
Category:All extensions/fr

L'extension LiquidThreads (LQT) implémente un système de pages de discussion utilisant des fils de discussion.

Avertissement Avertissement : This extension is currently incompatible with temporary accounts.
Temporary accounts can be disabled with $wgAutoCreateTempUser['enabled'] = false; in your LocalSettings.php.
Category:Extensions incompatible with temporary accounts

Historique

The original code was developed by David McCabe under sponsorship from the Google Summer of Code 2006, the Commonwealth of Learning, and Wikia. Néanmoins, David McCabe n'est plus impliqué dans ce projet.

The original LiquidThreads code was substantially improved and augmented by Andrew Garrett at the Wikimedia Foundation since May 2009. The latest stable release of the LiquidThreads extension is LQT 2.0, described on this page. LQT 2.0 is the version currently being used on several Wikimedia wikis, and was used in the strategic planning process.

In January 2011, work on LiquidThreads 3.0 was begun at the Wikimedia Foundation. LQT 3.0 was being developed, with Andrew Garrett as the lead developer, but is now suspended. The last commits to LQT3's branch (lqt-updates) were in September 2011. Le développement par la Foundation a été interrompu.

Documentation utilisateur

To activate LiquidThreads on a specific page on a wiki where LiquidThreads is opt-in, add the following to the page's source code:

{{#useliquidthreads:1}}

To deactivate LiquidThreads on a specific page on a wiki where LiquidThreads is opt-out add the following to the page's source code:

{{#useliquidthreads:0}}


Principe

Wiki discussion pages have some advantages over web and Usenet forums:

  • They allow use of the entire wiki syntax, from images to links to transclusions.
  • It is possible to refactor entire discussion pages.

But web forums offer many more advantages over the MediaWiki talk page model:

  • Threads can be displayed in different views: flat, nested, sorted by date, subject, etc.
  • The user only needs to click a "Reply" button or link in order to respond to a comment. Manual indentation is not required. Quotations from the source comment can be inserted automatically.
  • Les commentaires sont automatiquement signés et datés.
  • Les avatars sont possibles (mais pas encore créés).
  • L'utilisateur peut suivre des threads individuels ou être notifié des réponses dans les threads.
  • Les commentaires et les threads peuvent être affichés individuellement, sans la page environnante.
  • Les anciens commentaires sont archivés de manière automatique et invisible, avec des liens permanents facilement accessibles.
  • La recherche de l'auteur, du sujet, de la date, etc. est possible.
  • Les threads individuels peuvent avoir des catégories.
  • It is relatively easy to manage related discussions in a subject-specific forum, whereas MediaWiki talk pages always follow the "one discussion page per subject page" model.
  • Il peut y avoir des restrictions sur les utilisateurs pouvant modifier les messages d'autres utilisateurs.

LiquidThreads vise à unir les avantages des deux types de forums et à ajouter des fonctionnalités de discussion uniques au démarrage.

Installation

Prerequisites: LiquidThreads currently requires the Extension:WikiEditor extension to be already installed. See T40654.

  • Téléchargez et placez le(s) fichier(s) dans un répertoire appelé LiquidThreads 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/LiquidThreads
  • Ajoutez le code suivant à la fin de votre fichier LocalSettings.php  :
    wfLoadExtension( 'LiquidThreads' );
    
  • 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 is the default configuration of the extension. You can override such values in LocalSettings.php:

// Preferences
$wgDefaultUserOptions['lqtnotifytalk'] = false;
$wgDefaultUserOptions['lqtdisplaydepth'] = 5;
$wgDefaultUserOptions['lqtdisplaycount'] = 25;
$wgDefaultUserOptions['lqtcustomsignatures'] = true;
$wgDefaultUserOptions['lqt-watch-threads'] = true;

// Permissions
$wgGroupPermissions['user']['lqt-split'] = true;
$wgGroupPermissions['user']['lqt-merge'] = true;
$wgGroupPermissions['user']['lqt-react'] = true;

/* Allows activation of LiquidThreads on individual pages */
$wgLqtPages = array();

/* Allows switching LiquidThreads off for regular talk pages
	(intended for testing and transition) */
$wgLqtTalkPages = true;

/* Whether or not to activate LiquidThreads email notifications */
$wgLqtEnotif = true;

/* Thread actions which do *not* cause threads to be "bumped" to the top */
/* Using numbers because the change type constants are defined in Threads.php, don't
	want to have to parse it on every page view */
$wgThreadActionsNoBump = array(
	3 /* Edited summary */,
	10 /* Merged from */,
	12 /* Split from */,
	2 /* Edited root */,
	14 /* Adjusted sortkey */
);

/** Switch this on if you've migrated from a version before around May 2009 */
$wgLiquidThreadsMigrate = false;

/** The default number of threads per page */
$wgLiquidThreadsDefaultPageLimit = 20;

/** Whether or not to allow users to activate/deactivate LiquidThreads per-page */
$wgLiquidThreadsAllowUserControl = true;

/** Whether or not to allow users to activate/deactivate LiquidThreads
	in specific namespaces.  NULL means either all or none, depending
	on the above. */
$wgLiquidThreadsAllowUserControlNamespaces = null;

/** Allow LiquidThreads embedding */
$wgLiquidThreadsAllowEmbedding = true;

// Namespaces in which to enable LQT
$wgLqtNamespaces = array();

/** Enable/disable the bump checkbox. **/
$wgLiquidThreadsShowBumpCheckbox = false;

/** Enable/Disable 'New messages' link and special page (Special:NewMessages) */
$wgLiquidThreadsEnableNewMessages = true;

API

Page principale : Extension:LiquidThreads/API

Voir aussi

Liens externes

Category:Extensions used on Wikimedia/fr#LiquidThreads/fr Category:Discussion and forum extensions/fr Category:Summer of Code 2006/fr Category:LiquidThreads/fr
Category:APIQueryAfterExecute extensions/fr Category:API extensions/fr Category:AfterImportPage extensions/fr Category:All extensions/fr Category:ArticleConfirmDelete extensions/fr Category:ArticleDeleteComplete extensions/fr Category:ArticleDelete extensions/fr Category:ArticleEditUpdateNewTalk extensions/fr Category:ArticleUndelete extensions/fr Category:CanonicalNamespaces extensions/fr Category:ChangesListSpecialPageQuery extensions/fr Category:Discussion and forum extensions/fr Category:EditPageGetCheckboxesDefinition extensions/fr Category:Extensions in Wikimedia version control/fr Category:Extensions incompatible with temporary accounts Category:Extensions used on Wikimedia/fr Category:Extensions which add rights/fr Category:Extensions with manual MediaWiki version Category:GPL licensed extensions/fr Category:GetNewMessagesAlert extensions/fr Category:GetPreferences extensions/fr Category:GetUserPermissionsErrors extensions/fr Category:ImportHandlePageXMLTag extensions/fr Category:InfoAction extensions/fr Category:LiquidThreads/fr Category:LoadExtensionSchemaUpdates extensions/fr Category:MediaWikiPerformAction extensions/fr Category:ModifyExportQuery extensions/fr Category:MovePageIsValidMove extensions/fr Category:OldChangesListRecentChangesLine extensions/fr Category:OutputPageBeforeHTML extensions/fr Category:OutputPageParserOutput extensions/fr Category:PageContentLanguage extensions/fr Category:PageMoveComplete extensions/fr Category:PageSaveComplete extensions/fr Category:Page action extensions/fr Category:ParserFirstCallInit extensions/fr Category:PreferencesGetIcon extensions/fr Category:RenameUserSQL extensions/fr Category:RevisionUndeleted extensions/fr Category:ShowSearchHitTitle extensions/fr Category:SkinTemplateNavigation::Universal extensions/fr Category:SpecialPage initList extensions/fr Category:SpecialSearchProfiles extensions/fr Category:Special page extensions/fr Category:Summer of Code 2006/fr Category:TitleGetRestrictionTypes extensions/fr Category:Unmaintained extensions/fr Category:UserIsBlockedFrom extensions/fr Category:UserMergeAccountFields extensions/fr Category:XmlDumpWriterOpenPage extensions/fr