Extension:Nuke/id

This page is a translated version of the page Extension:Nuke and the translation is 7% complete.
Ekstensi ini tersedia di MediaWiki 1.18 dan selanjutnya. Jadi Anda tidak perlu mengunduhnya lagi. Akan tetapi, Anda masih perlu mengikuti instruksi lain yang diberikan.
Ekstensi MediaWiki
Nuke
Status rilis stabil
Implementasi Halaman istimewa , Tindakan halaman
Deskripsi Gives sysops the ability to mass delete pages.
Perancang awal
Versi terbaru 1.3.0 (2017-03-01)
MediaWiki 1.28.1+
Perubahan basis data Tidak
Lisensi Lisensi Publik Umum GNU 2.0 atau lebih baru
Unduh
  • nuke
Quarterly downloads 107 (Ranked 60th)
Public wikis using 12,649 (Ranked 7th)
Terjemahkan ekstensi Nuke jika tersedia di translatewiki.net
Masalah Tugas terbuka · Laporkan kekutu

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

  • Unduh dan letakkan berkas-berkasnya di dalam sebuah direktori yang bernama Nuke di folder extensions/ Anda.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
  • Tambahkan kode berikut di bagian bawah LocalSettings.php Anda:
    wfLoadExtension( 'Nuke' );
    
  • Configure as required.
  • Yes Selesai – Telusuri ke Special:Version di wiki Anda untuk memastikan ekstensinya berhasil dipasang.

Configuration

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;

Pemakaian

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.

Lihat juga

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)