Jump to content

Extensió:Nuke

From mediawiki.org
This page is a translated version of the page Extension:Nuke and the translation is 21% complete.
Manual d'extensions de MediaWiki
Nuke
Notes de la versió: estable
Implementació Pàgina especial , Acció de pàgina
Descripció Dona als administradors del sistema la capacitat d'eliminar pàgines massivament.
Autor(s)
Darrera versió 1.3.0 (2017-03-01)
MediaWiki 1.28.1+
Canvis a la base de dades No
  • $wgNukeMaxAge
  • $wgNukeUIType
  • nuke
Licence Llicència pública general GNU 2.0 o posterior
Descàrrega
Traduir l'extensió Nuke si està disponible a translatewiki.net
Incidències Tasques obertes · Informar d'un error

L'extensió Nuke permet que els administradors suprimeixin pàgines massivament.

Instal·lació

This extension comes with MediaWiki 1.18 and later, so you do not need to download it. The remaining configuration instructions must still be followed.
  • Download and move the extracted Nuke folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
    
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'Nuke' );
    
  • Configure as required.
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuració

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;

Maximum age

By default, Nuke will only list pages that were created as recent as what is shown on Special:RecentChanges (controlled by $wgRCMaxAge ; 90 days by default).

MediaWiki version:
1.44
Gerrit change 1089919

This can be configured to use a different duration with the $wgNukeMaxAge configuration setting. For example, to restrict Nuke to only allow deleting pages up to 30 days old, add the following to your LocalSettings.php file:

$wgNukeMaxAge = 30 * 86400;

Ús

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.

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.

See also

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)