Fandom Developers Wiki
Advertisement

AjaxBatchDelete is based on a script written by Splarka on Wikipedia. This code has been rewritten to use jQuery by Grunny.

Installation

Usage

The option to use the Batch Delete script will appear under your "My Tools" list.

In order to delete a batch of pages, just add the page names (not page URLs) in the form, each on a new line, and proceed to delete them with a set reason. The script will stop when it reaches an empty line, and it can be terminated early by blanking the list of pages remaining to be deleted.

It also features the ability to protect the pages after deletion (this is optional), as well as loading from a modal on any page with the option to modify the rate at which it deletes/protects. If you'd like to modify the default rate of one delete every 1000 milliseconds (1 second), add the config window.batchDeleteDelay before importing the script with your own number (in milliseconds) instead. For example, using:

window.batchDeleteDelay = 100;

will lower the delete rate to 0.1 second.

Using configuration options with Fandom Developers Wiki scripts

The instructions on this page describe how to use configuration options with a script. Here on the Fandom Developers Wiki, many scripts provide optional configuration settings as a mean to alter or enhance the default behavior of the script. When installing configuration options in your JavaScript file, please note that they need to go above the import statement in order to work — unless the directions say otherwise. In case MediaWiki:ImportJS is used to load the scripts, it will be executed last.

Configuration options load too late, don't work
// 1. AjaxRC import statement
importArticles({
    type: 'script',
    articles: [
        'u:dev:MediaWiki:AjaxRC.js'
    ]
});

// 2. AjaxRC configuration option
window.ajaxRefresh = 30000;
Proper placement of configuration options
// 1. AjaxRC configuration option
window.ajaxRefresh = 30000;

// 2. AjaxRC import statement
importArticles({
    type: 'script',
    articles: [
        'u:dev:MediaWiki:AjaxRC.js'
    ]
});

It also enables the user to grab a whole category's contents and puts them into the text area ready for deletion. Note that the script will only load if the user has access to the delete right (content moderator, administrator, SOAP, staff, or wiki-specialist).

Text above can be found here (edit)


Advertisement