_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Animum/moveRV.js

In today's world, User:Animum/moveRV.js is a topic that has captured the attention of millions of people around the world. Whether due to its historical relevance, its impacts on society or its influence on popular culture, User:Animum/moveRV.js has become a focal point for debate and reflection. In this article, we will explore the different facets of User:Animum/moveRV.js and examine its importance in the current context. From its origin to its possible consequences, we will delve into an in-depth analysis of User:Animum/moveRV.js and its role in the modern world.
importScript('User:Animum/urlparameters.js');
importScript('User:Animum/formatresponse.js');
importScript('User:Animum/moveRV-movefunc.js');

function zeroPad(str) {
    return ("0" + str).slice(-2);
}

var isSysop = /sysop/.test(mw.config.get('wgUserGroups'));

function doMoveRV() {
    var domove = confirm("All of the moves listed on this page will be reverted" + (isSysop ? ", and the resulting redirects will be deleted" : "") + ".\n\nClick \"OK\" to proceed or \"Cancel\" to abort.");
    if(domove) {
        revertmoves(); //Function contained in moveRV-movefunc.js
    } else {
        return;
    }
}

addOnloadHook(function() {
    if(mw.config.get('wgNamespaceNumber') == -1 && mw.config.get('wgCanonicalSpecialPageName') == "Log" && (UrlParameters == "move" || location.href.substring(location.href.indexOf("title=") + 6).split("/") == "move" || location.href.substring(location.href.indexOf("https://wiki386.com/en/") + 6).split("?").split("/") == "move") && (UrlParameters || location.href.substring(location.href.indexOf("user=") + 5))) {
        mw.util.addPortletLink("p-cactions", "javascript:doMoveRV()", "pagemove", "ca-pagemove");
    }
});