Extension:Nuke/es

This page is a translated version of the page Extension:Nuke and the translation is 15% complete.
This extension comes with MediaWiki 1.18 and above. Thus you do not have to download it again. However, you still need to follow the other instructions provided.
Manual de extensiones de MediaWiki
Nuke
Estado de lanzamiento: estable
Implementación Página especial , Acción de página
Descripción Gives sysops the ability to mass delete pages.
Autor(es)
Última versión 1.3.0 (2017-03-01)
MediaWiki 1.28.1+
Cambios de la base de datos No
Licencia GNU Licencia Pública general 2.0 o posterior
Descarga
  • nuke
Descargas trimestrales 106 (Ranked 61st)
Wikis públicos que lo utilizan 12,649 (Ranked 7th)
Traduce la extensión Nuke si está disponible en translatewiki.net
Asuntos Tareas abiertas · Reportar un bug

The Nuke extension makes it possible for sysops to mass delete pages.

Instalación

  • Descarga y extrae los archivos en un directorio denominado «Nuke» dentro de la carpeta extensions/.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
  • Añade el siguiente código en la parte final de tu archivo LocalSettings.php :
    wfLoadExtension( 'Nuke' );
    
  • Configure as required.
  •   Hecho – Navega a Special:Version en el wiki para verificar que la extensión se haya instalado correctamente.

Configuración

The user right "nuke" is automatically granted to the "sysop" user group. To decouple this and assign this right to a dedicated new user group such as "nuke" add the following to your "LocalSettings.php" file:

$wgGroupPermissions['sysop']['nuke'] = false;
$wgGroupPermissions['nuke']['nuke'] = true;

Uso

Véase también: Help:Extension:Nuke

Go to Special:Nuke in order to mass delete pages recently added by a user or IP address. If you don't want to filter by user, you can also just filter by namespace.

Only pages listed in recentchanges table will be shown. By default, this includes all pages created in last 90 days. The special page is listed under Special:SpecialPages as Mass delete.

You can also specify a pattern for the page title. The field accepts SQL wildcards, like %lol%.

All deletions, as usual, are recorded in Special:Log/delete.

Ve también

Graphical
Command line
  • deleteBatch.php - Delete multiple pages using a text file containing the names
  • nukeNS.php - Delete all pages in a specific namespace without creating any deletion log (from command line)
  • deleteArchivedRevisions.php - Script to permanently blow away pages after deleting them (e.g. after using Extension:Nuke)