Extensión:TalkRight
![]() | ¡Esta extensión no es compatible con la versión de MediaWiki 1.36 o posterior! Desaconsejamos usar esta extensión en un sitio en producción. Volunteer developers are invited to pledge their efforts to updating this extension to make it compatible with MediaWiki 1.40 by replacing the {{Incompatible }} template with {{Incompatible |version=1.36|pledge=~~~~}} . |
![]() | ¡En estos momentos no hay nadie que se encargue del mantenimiento de esta extensión! Aunque todavía puede que funcione, los informes sobre errores o peticiones de nuevas funcionalidades serán probablemente ignorados.
|
![]() Estado de lanzamiento: sin mantenimiento |
|
---|---|
Implementación | Derechos de usuario |
Descripción | Makes the editing of talk pages a distinct action from article editing. |
Autor(es) | P Leveque, Marc Noirot, James Montalvo |
Última versión | 1.5.0 (2013-05-06) |
MediaWiki | 1.19+ |
Cambios de la base de datos | No |
Composer | mediawiki/talk-right |
Licencia | GNU Licencia Pública general 2.0 o posterior |
Descarga | Descargar snapshot Nota: |
talk |
|
The Talkright extension makes the editing of talk pages a distinct action from the editing of articles to create finer permissions, by adding the talk
right.
Instalación
Composer
From MediaWiki version 1.22 onwards TalkRight should be installed using Composer.
El nombre del paquete es mediawiki/talk-right
.
For instructions on how to install Composer see MediaWiki's Composer User manual.
Once you have Composer properly installed, all you need to do is go to your MediaWiki installation directory and run:
composer require mediawiki/talk-right ~1.5
for the latest stable version or
composer require mediawiki/talk-right 'dev-master'
for the latest development version
Any future update is then just a call to composer update
or composer update enterprisemediawiki/talk-right
and you can always be sure that all dependencies are met (currently there are no dependencies).
Continue with the Common steps below.
Beware: If you have installed an earlier version of TalkRight you need to remove its code from the MediaWiki extension directory and delete the call to require_once
from the LocalSettings.php
file before starting the re-installation with Composer.
Using packaged downloads
If this is not an option, you may also install it like this:
- Download the latest stable release or latest development release from GitHub.
- Alternatively you can clone TalkRight using git
- Extract the files to the
$IP/extensions
directory
- If necessary rename the newly created directory to TalkRight
- Add to the end of LocalSettings.php :
wfLoadExtension( 'TalkRight' );
- Continúa con los pasos comunes abajo.
Pasos comunes
- Edit LocalSettings to specify which users have the talk right (see below)
- Go to the Special:Version page of your wiki and verify that an entry for TalkRight exists
Uso
On a semi private wiki, a user can be allowed to read but not to edit the content of a page as well as its talk page. Esto se hace configurando:
$wgGroupPermissions['user']['read'] = true;
$wgGroupPermissions['user']['edit'] = false;
Now, if you want to encourage comments to your wiki from a group of persons, by giving them rights to edit the talk pages only, you need to install this TalkRight extension and to add, for example, the following two lines:
$wgGroupPermissions['commentators']['edit'] = false;
$wgGroupPermissions['commentators']['talk'] = true;
Historia
Fecha | Versión | Notas |
---|---|---|
2014-06-06 | Version 1.5.0 | Extension can now be installed via Composer |
2013-05-06 | Version 1.4.1 | updated for MW1.19. added new topic and edit section link. |
2011-11-24 | Version 1.3 | No need to modify 'includes/SkinTemplate.php ' to edit "view source" button.
|
2008-08-05 | Version 1.1 | Added credits for MediaWiki version 1.12, 1.13. |
2006-06-20 | Version 1.0.1 | Added credits and extension version information. |
2006-06-07 | Version 1.0 | Primer lanzamiento. |
- Extensions incompatible with 1.36/es
- Unmaintained extensions/es
- User rights extensions/es
- Extensions supporting Composer/es
- GPL licensed extensions/es
- Extensions in GitHub version control/es
- Extensions which add rights/es
- AlternateEdit extensions/es
- ParserBeforeStrip extensions/es
- All extensions/es
- Edit extensions/es