Difference between revisions of "User:Tark/common.js"

From Team Fortress Wiki
Jump to: navigation, search
m
 
m
(58 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
// Begin User info
 
// Begin User info
 
// Adapted from http://en.wikipedia.org/wiki/w:User:PleaseStand/User_info
 
// Adapted from http://en.wikipedia.org/wiki/w:User:PleaseStand/User_info
function UserinfoJsFormatQty(qty, singular, plural) {
+
function UserinfoJsFormatQty( qty, singular, plural ) {
     return String(qty).replace(/\d{1,3}(?=(\d{3})+(?!\d))/g, "$&,") + "\u00a0" + (qty == 1 ? singular : plural);
+
     return String( qty ).replace( /\d{1,3}(?=(\d{3})+(?!\d))/g, "$&," ) + "\u00a0" + ( qty == 1 ? singular : plural );
 
}
 
}
  
function UserinfoJsFormatDateRel(old) {
+
function UserinfoJsFormatDateRel( old ) {
 
     // The code below requires the computer's clock to be set correctly.
 
     // The code below requires the computer's clock to be set correctly.
     var age = new Date().getTime() - old.getTime();
+
     var age = Date.now() - old.getTime();
     var ageNumber, ageRemainder, ageWords;
+
     var ageNumber, ageRemainder, ageWordp
     if (age < 60000) {
+
     if ( age < 60000 ) {
 
         // less than one minute old
 
         // less than one minute old
         ageNumber = Math.floor(age / 1000);
+
         ageNumber = Math.floor( age / 1000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "second", "seconds");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "second", "seconds" );
     } else if (age < 3600000) {
+
     } else if ( age < 3600000 ) {
 
         // less than one hour old
 
         // less than one hour old
         ageNumber = Math.floor(age / 60000);
+
         ageNumber = Math.floor( age / 60000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "minute", "minutes");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "minute", "minutes" );
     } else if (age < 86400000) {
+
     } else if ( age < 86400000 ) {
 
         // less than one day old
 
         // less than one day old
         ageNumber = Math.floor(age / 3600000);
+
         ageNumber = Math.floor( age / 3600000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "hour", "hours");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "hour", "hours" );
         ageRemainder = Math.floor((age - ageNumber * 3600000) / 60000);
+
         ageRemainder = Math.floor( ( age - ageNumber * 3600000 ) / 60000 );
     } else if (age < 604800000) {
+
     } else if ( age < 604800000 ) {
 
         // less than one week old
 
         // less than one week old
         ageNumber = Math.floor(age / 86400000);
+
         ageNumber = Math.floor( age / 86400000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "day", "days");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "day", "days" );
     } else if (age < 2592000000) {
+
     } else if ( age < 2592000000 ) {
 
         // less than one month old
 
         // less than one month old
         ageNumber = Math.floor(age / 604800000);
+
         ageNumber = Math.floor( age / 604800000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "week", "weeks");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "week", "weeks" );
     } else if (age < 31536000000) {
+
     } else if ( age < 31536000000 ) {
 
         // less than one year old
 
         // less than one year old
         ageNumber = Math.floor(age / 2592000000);
+
         ageNumber = Math.floor( age / 2592000000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "month", "months");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "month", "months" );
 
     } else {
 
     } else {
 
         // one year or older
 
         // one year or older
         ageNumber = Math.floor(age / 31536000000);
+
         ageNumber = Math.floor( age / 31536000000 );
         ageWords = UserinfoJsFormatQty(ageNumber, "year", "years");
+
         ageWords = UserinfoJsFormatQty( ageNumber, "year", "years" );
         ageRemainder =
+
         ageRemainder = Math.floor( ( age - ageNumber * 31536000000 ) / 2592000000 );
            Math.floor((age - ageNumber * 31536000000) / 2592000000);
+
 
         if (ageRemainder) {
+
         if ( ageRemainder ) {
             ageWords += " " +
+
             ageWords += " " + UserinfoJsFormatQty( ageRemainder, "month", "months" );
                UserinfoJsFormatQty(ageRemainder, "month", "months");
 
 
         }
 
         }
 
     }
 
     }
 +
 
     return ageWords;
 
     return ageWords;
 
}
 
}
  
 
// If on a user or user talk page, and not a subpage...
 
// If on a user or user talk page, and not a subpage...
if ((mw.config.get("wgNamespaceNumber") == 2 || mw.config.get("wgNamespaceNumber") == 3)) {
+
if ( mw.config.get( "wgNamespaceNumber" ) == 2 || mw.config.get( "wgNamespaceNumber" ) == 3 ) {
 
     // add a hook to...
 
     // add a hook to...
     mw.loader.using(["mediawiki.util"], function () {
+
     mw.loader.using( [ "mediawiki.util" ], function () {
         $(function () {
+
         $( function () {
 
             // Request the user's information from the API.
 
             // Request the user's information from the API.
 
             // Note that this is allowed to be up to 5 minutes old.
 
             // Note that this is allowed to be up to 5 minutes old.
             var et = encodeURIComponent(mw.config.get("wgTitle"));
+
             var et = encodeURIComponent( mw.config.get( "wgTitle" ) );
 
+
             $.getJSON( mw.config.get( "wgScriptPath" ) + "/api.php?format=json&action=query&list=users|usercontribs&usprop=blockinfo|editcount|gender|registration|groups&uclimit=1&ucprop=timestamp&ususers=" + et + "&ucuser=" + et + "&meta=allmessages&amprefix=grouppage-&amincludelocal=1" ).done( function ( query ) {
             $.getJSON(mw.config.get("wgScriptPath") + "/api.php?format=json&action=query&list=users|usercontribs&usprop=blockinfo|editcount|gender|registration|groups&uclimit=1&ucprop=timestamp&ususers=" + et + "&ucuser=" + et + "&meta=allmessages&amprefix=grouppage-&amincludelocal=1")
+
                // When response arrives extract the information we need.
                .done(function (query) {
+
                if ( !query.query ) {
                    // When response arrives extract the information we need.
+
                    return;
                    if (!query.query) {
+
                }
                        return;
+
                // Suggested by Gary King to avoid JS errors --PS 2010-08-25
                    } // Suggested by Gary King to avoid JS errors --PS 2010-08-25
+
                query = query.query;
 +
                var blocked, editcount, groups, invalid, lastEdited, missing, registration, user;
  
                     query = query.query;
+
                try {
 +
                     user = query.users[0];
 +
                    invalid = typeof user.invalid !== "undefined";
 +
                    missing = typeof user.missing !== "undefined";
 +
                    groups = typeof user.groups === "object" ? user.groups : [];
 +
                    editcount = typeof user.editcount === "number" ? user.editcount : null;
 +
                    registration = typeof user.registration === "string" ? new Date( user.registration ) : null;
 +
                    blocked = typeof user.blockedby !== "undefined";
 +
                    lastEdited = typeof query.usercontribs[0] === "object" && typeof query.usercontribs[0].timestamp === "string" ? new Date( query.usercontribs[0].timestamp ) : null;
 +
                } catch ( e ) {
 +
                    return;
 +
                    // Not much to do if the server is returning an error (e.g. if the username is malformed).
 +
                }
 +
                // Format the information for on-screen display
 +
                var statusText = "";
  
                     var user, invalid, missing, groups, editcount, registration, blocked, lastEdited;
+
                if ( blocked ) {
 +
                     statusText += "<a href=\"" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:Log&amp;page=" + encodeURIComponent( mw.config.get( "wgFormattedNamespaces" )[2] + ":" + user.name ) + "&amp;type=block\">blocked</a> ";
 +
                }
  
                    try {
+
                if ( missing ) {
                        user = query.users[0];
+
                    statusText += "username not registered";
                        invalid = typeof user.invalid != "undefined";
+
                } else if ( invalid ) {
                        missing = typeof user.missing != "undefined";
+
                    statusText += "invalid username";
                         groups = (typeof user.groups == "object") ? user.groups : [];
+
                } else {
                         editcount = (typeof user.editcount == "number") ? user.editcount : null;
+
                    var friendlyGroupNames = {
                         registration = (typeof user.registration == "string") ?
+
                         "*": false,
                            new Date(user.registration) : null;
+
                         user: false,
                         blocked = typeof user.blockedby != "undefined";
+
                         autoconfirmed: false,
                         lastEdited = (typeof query.usercontribs[0] == "object") &&
+
                         sysop: "administrator",
                            (typeof query.usercontribs[0].timestamp == "string") ?
+
                         suppress: "suppressor"
                            new Date(query.usercontribs[0].timestamp) : null;
+
                     };
                     } catch (e) {
+
                     var friendlyGroups = [];
                        return; // Not much to do if the server is returning an error (e.g. if the username is malformed).
 
                     }
 
  
                     // Format the information for on-screen display
+
                     for ( var i = 0; i < groups.length; ++i ) {
                    var statusText = "";
+
                        var s = groups[i];
 +
                        var t = Object.prototype.hasOwnProperty.call( friendlyGroupNames, s ) ? friendlyGroupNames[s] : s;
  
                    if (blocked) {
+
                        if ( t ) {
                        statusText += "<a href=\"" + mw.config.get("wgScriptPath") +
+
                            friendlyGroups.push( t );
                            "/index.php?title=Special:Log&amp;page=" +
+
                        }
                            encodeURIComponent(mw.config.get("wgFormattedNamespaces")[2] + ":" + user.name) +
 
                            "&amp;type=block\">blocked</a> ";
 
 
                     }
 
                     }
  
                     if (missing) {
+
                     switch ( friendlyGroups.length ) {
                         statusText += "username not registered";
+
                    case 0:
                    } else if (invalid) {
+
                         if ( blocked ) {
                        statusText += "invalid username";
+
                            statusText += "user";
                    } else {
+
                        } else {
                        var friendlyGroupNames = {
+
                            statusText += "registered user";
                            "*": false,
+
                         }
                            "user": false,
 
                            "autoconfirmed": false,
 
                            sysop: "administrator",
 
                            suppress: "suppressor"
 
                         };
 
 
 
                        var friendlyGroups = [];
 
 
 
                        for (var i = 0; i < groups.length; ++i) {
 
                            var s = groups[i];
 
                            var t = friendlyGroupNames.hasOwnProperty(s) ? friendlyGroupNames[s] : s;
 
  
                            if (t) {
+
                        break;
                                friendlyGroups.push(t);
 
                            }
 
                        }
 
  
                        switch (friendlyGroups.length) {
+
                    case 1:
                            case 0:
+
                        statusText += friendlyGroups[0];
                                if (blocked) {
+
                        break;
                                    statusText += "user";
 
                                } else {
 
                                    statusText += "registered user";
 
                                }
 
                                break;
 
                            case 1:
 
                                statusText += friendlyGroups[0];
 
                                break;
 
                            case 2:
 
                                statusText += friendlyGroups[0] + " and " + friendlyGroups[1];
 
                                break;
 
                            default:
 
                                statusText += friendlyGroups.slice(0, -1).join(", ") +
 
                                    ", and " + friendlyGroups[friendlyGroups.length - 1];
 
                                break;
 
                        }
 
                    }
 
  
                     // Registration date
+
                     case 2:
                    if (registration) {
+
                         statusText += friendlyGroups[0] + " and " + friendlyGroups[1];
                        var firstLoggedUser = new Date("22:16, 7 September 2005"); // When the [[Special:Log/newusers]] was first activated
+
                         break;
                         if (registration >= firstLoggedUser) {
 
                            statusText += ", <a href='" + mw.config.get("wgScriptPath") +
 
                                "/index.php?title=Special:Log&amp;type=newusers&amp;dir=prev&amp;limit=1&amp;user=" +
 
                                et + "'>" + UserinfoJsFormatDateRel(registration) + "</a> old";
 
                         } else {
 
                            statusText += ", <a href='" + mw.config.get("wgScriptPath") +
 
                                "/index.php?title=Special:ListUsers&amp;limit=1&amp;username=" +
 
                                et + "'>" + UserinfoJsFormatDateRel(registration) + "</a> old";
 
                        }
 
                    }
 
  
                     // Edit count
+
                     default:
                    if (editcount !== null) {
+
                         statusText += friendlyGroups.slice( 0, -1 ).join( ", " ) + ", and " + friendlyGroups[friendlyGroups.length - 1];
                         statusText += ", with <a href=\"" + mw.config.get("wgArticlePath").replace("$1", "Special:Contributions/" + encodeURIComponent(user.name)) + "\">" + UserinfoJsFormatQty(editcount, "edit", "edits") + "</a>";
+
                        break;
 
                     }
 
                     }
 
+
                }
                     // Prefix status text with correct article
+
                // Registration date
                     if ("AEIOaeio".indexOf(statusText.charAt(statusText.indexOf(">") + 1)) >= 0) {
+
                if ( registration ) {
                        statusText = "An " + statusText;
+
                    var firstLoggedUser = new Date( "22:16, 7 September 2005" );
 +
                     // When the [[Special:Log/newusers]] was first activated
 +
                     if ( registration >= firstLoggedUser ) {
 +
                        statusText += ", <a href='" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:Log&amp;type=newusers&amp;dir=prev&amp;limit=1&amp;user=" + et + "'>" + UserinfoJsFormatDateRel( registration ) + "</a> old";
 
                     } else {
 
                     } else {
                         statusText = "A " + statusText;
+
                         statusText += ", <a href='" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:ListUsers&amp;limit=1&amp;username=" + et + "'>" + UserinfoJsFormatDateRel( registration ) + "</a> old";
 
                     }
 
                     }
 +
                }
 +
                // Edit count
 +
                if ( editcount !== null ) {
 +
                    statusText += ", with <a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:Contributions/" + encodeURIComponent( user.name ) ) + "\">" + UserinfoJsFormatQty( editcount, "edit", "edits" ) + "</a>";
 +
                }
 +
                // Prefix status text with correct article
 +
                if ( "AEIOaeio".indexOf( statusText.charAt( statusText.indexOf( ">" ) + 1 ) ) >= 0 ) {
 +
                    statusText = "An " + statusText;
 +
                } else {
 +
                    statusText = "A " + statusText;
 +
                }
  
                    if (lastEdited) {
+
                if ( lastEdited ) {
                        statusText += ". Last edited " + UserinfoJsFormatDateRel(lastEdited) + " ago.";
+
                    statusText += ". Last edited " + UserinfoJsFormatDateRel( lastEdited ) + " ago.";
                    }
+
                }
                   
 
                    // otfwiki links
 
                    statusText += " Links: ";
 
                    statusText += "<a href=\"" + mw.config.get("wgArticlePath").replace("$1", "Special:Block/" + encodeURIComponent(user.name)) + "\">Block user</a>";
 
                    statusText += " &middot; <a href=\"https://wiki.tarkoviski.me/tfu/" + encodeURIComponent(user.name) + "\">Wiki Stats</a>";
 
  
                    var ss = document.getElementById("siteSub");
+
                // otfwiki links
                    ss.innerHTML = "<span>" + statusText + "</span>";
+
                statusText += " Links: ";
                    ss.style.display = "block";
+
                statusText += "<a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:Block/" + encodeURIComponent( user.name ) ) + "\">Block</a>";
                });
+
                statusText += " | <a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:RenameUser/" + encodeURIComponent( user.name ) ) + "\">Rename</a>";
         });
+
                statusText += " | <a href=\"https://wikistats.espacore.de/user/tf/" + encodeURIComponent( user.name ) + "\">Wiki Stats</a>";
     })
+
                var ss = document.getElementById( "siteSub" );
 +
                ss.innerHTML = "<span>" + statusText + "</span>";
 +
                ss.style.display = "block";
 +
            } );
 +
         } );
 +
     } );
 
}
 
}
 
// End User info
 
// End User info
  
// Begin Purge link
+
// Begin Delete link
// Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-purgetab.js
+
if ( mw.config.get( "wgIsArticle" ) ) {
if (mw.config.get('wgIsArticle')) {
+
     var dBtn = mw.util.addPortletLink( "p-views",
     mw.util.addPortletLink(
+
        mw.util.wikiScript() + "?" + $.param( { title: mw.config.get( "wgPageName" ), action: "delete" } ),
        'p-views',
+
        "Deleto",
mw.util.wikiScript() + '?' + $.param({ title: mw.config.get( 'wgPageName' ), action: 'purge' }),
+
        "ca-delete",
mw.config.get( 'skin' ) === 'vector' ? 'Purge' : '*',
+
        "Deleto!!!!"
'ca-purge',
 
'Purge the server cache of this page',
 
'*'
 
 
     );
 
     );
 +
    dBtn.classList.add("collapsible");
 
}
 
}
// End Purge link
+
// End Delete link
 +
 
 +
mw.loader.load('https://en.wikipedia.org/w/index.php?title=User:BrandonXLF/TestWikitext.js&action=raw&ctype=text/javascript');
 +
mw.loader.load("https://en.wikipedia.org/w/index.php?title=User:Awesome%20Aasim/savedraft.js&action=raw&ctype=text/javascript");
 +
 
 +
// Start addUploadsLink
 +
// Adapted from: https://en.wikipedia.org/wiki/User:Begoon/addUploadsLink.js
 +
mw.loader.using('mediawiki.util', function () {
 +
jQuery(function( $ ) {
 +
var wServerName = mw.config.get('wgServer');
 +
if (document.getElementById("t-contributions")) {
 +
var rUser =  mw.config.get('wgRelevantUserName');
 +
var followNode = document.getElementById("t-contributions").nextSibling;
 +
mw.util.addPortletLink(
 +
'p-tb',  wServerName + '/wiki/Special:ListFiles?limit=500&user=' + rUser.replace(/ /g, '+') + '&ilshowall=1',
 +
'User uploads', 't-userfileuploads', 'View list of files uploaded by ' + rUser,'', followNode
 +
)
 +
}
 +
});
 +
});
 +
 
 +
// End addUploadsLink
 +
 
 +
// ----
 +
 
 +
// Start WP pls review :^)
 +
var classicNp = {
 +
  init: function() {
 +
if ( mw.config.get("wgPageName").includes("(Classic)") ) {
 +
    console.log("Classic page: redirect main page links.");
 +
    // Wiki logo
 +
    var logoLink = document.querySelector('#p-logo a');
 +
    logoLink.href = logoLink.href.replace("Main_Page", "Main_Page_(Classic)");
 +
 +
    // Sidebar "Main page" link
 +
    var sidebarLink = document.querySelector("#n-mainpage-description a");
 +
    sidebarLink.href = sidebarLink.href.replace("Main_Page", "Main_Page_(Classic)");
 +
 +
    // Sidebar "Team Fortress 2 portal"
 +
    var tf2Portal = document.querySelector("#p-Team_Fortress_2 .body ul");
 +
    var tf2Li = document.createElement("li");
 +
    var tf2Link = document.createElement("a");
 +
    tf2Link.href = sidebarLink.href.replace("_(Classic)", "");
 +
    tf2Link.textContent = "Main Page";
 +
    tf2Li.appendChild(tf2Link);
 +
    tf2Portal.insertBefore(tf2Li, tf2Portal.firstChild);
 +
}
 +
  }
 +
};
 +
 
 +
$(classicNp.init);
 +
// End WP pls review

Revision as of 19:16, 29 April 2024

// Begin User info
// Adapted from http://en.wikipedia.org/wiki/w:User:PleaseStand/User_info
function UserinfoJsFormatQty( qty, singular, plural ) {
    return String( qty ).replace( /\d{1,3}(?=(\d{3})+(?!\d))/g, "$&," ) + "\u00a0" + ( qty == 1 ? singular : plural );
}

function UserinfoJsFormatDateRel( old ) {
    // The code below requires the computer's clock to be set correctly.
    var age = Date.now() - old.getTime();
    var ageNumber, ageRemainder, ageWordp
    if ( age < 60000 ) {
        // less than one minute old
        ageNumber = Math.floor( age / 1000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "second", "seconds" );
    } else if ( age < 3600000 ) {
        // less than one hour old
        ageNumber = Math.floor( age / 60000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "minute", "minutes" );
    } else if ( age < 86400000 ) {
        // less than one day old
        ageNumber = Math.floor( age / 3600000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "hour", "hours" );
        ageRemainder = Math.floor( ( age - ageNumber * 3600000 ) / 60000 );
    } else if ( age < 604800000 ) {
        // less than one week old
        ageNumber = Math.floor( age / 86400000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "day", "days" );
    } else if ( age < 2592000000 ) {
        // less than one month old
        ageNumber = Math.floor( age / 604800000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "week", "weeks" );
    } else if ( age < 31536000000 ) {
        // less than one year old
        ageNumber = Math.floor( age / 2592000000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "month", "months" );
    } else {
        // one year or older
        ageNumber = Math.floor( age / 31536000000 );
        ageWords = UserinfoJsFormatQty( ageNumber, "year", "years" );
        ageRemainder = Math.floor( ( age - ageNumber * 31536000000 ) / 2592000000 );

        if ( ageRemainder ) {
            ageWords += " " + UserinfoJsFormatQty( ageRemainder, "month", "months" );
        }
    }

    return ageWords;
}

// If on a user or user talk page, and not a subpage...
if ( mw.config.get( "wgNamespaceNumber" ) == 2 || mw.config.get( "wgNamespaceNumber" ) == 3 ) {
    // add a hook to...
    mw.loader.using( [ "mediawiki.util" ], function () {
        $( function () {
            // Request the user's information from the API.
            // Note that this is allowed to be up to 5 minutes old.
            var et = encodeURIComponent( mw.config.get( "wgTitle" ) );
            $.getJSON( mw.config.get( "wgScriptPath" ) + "/api.php?format=json&action=query&list=users|usercontribs&usprop=blockinfo|editcount|gender|registration|groups&uclimit=1&ucprop=timestamp&ususers=" + et + "&ucuser=" + et + "&meta=allmessages&amprefix=grouppage-&amincludelocal=1" ).done( function ( query ) {
                // When response arrives extract the information we need.
                if ( !query.query ) {
                    return;
                }
                // Suggested by Gary King to avoid JS errors --PS 2010-08-25
                query = query.query;
                var blocked, editcount, groups, invalid, lastEdited, missing, registration, user;

                try {
                    user = query.users[0];
                    invalid = typeof user.invalid !== "undefined";
                    missing = typeof user.missing !== "undefined";
                    groups = typeof user.groups === "object" ? user.groups : [];
                    editcount = typeof user.editcount === "number" ? user.editcount : null;
                    registration = typeof user.registration === "string" ? new Date( user.registration ) : null;
                    blocked = typeof user.blockedby !== "undefined";
                    lastEdited = typeof query.usercontribs[0] === "object" && typeof query.usercontribs[0].timestamp === "string" ? new Date( query.usercontribs[0].timestamp ) : null;
                } catch ( e ) {
                    return;
                    // Not much to do if the server is returning an error (e.g. if the username is malformed).
                }
                // Format the information for on-screen display
                var statusText = "";

                if ( blocked ) {
                    statusText += "<a href=\"" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:Log&amp;page=" + encodeURIComponent( mw.config.get( "wgFormattedNamespaces" )[2] + ":" + user.name ) + "&amp;type=block\">blocked</a> ";
                }

                if ( missing ) {
                    statusText += "username not registered";
                } else if ( invalid ) {
                    statusText += "invalid username";
                } else {
                    var friendlyGroupNames = {
                        "*": false,
                        user: false,
                        autoconfirmed: false,
                        sysop: "administrator",
                        suppress: "suppressor"
                    };
                    var friendlyGroups = [];

                    for ( var i = 0; i < groups.length; ++i ) {
                        var s = groups[i];
                        var t = Object.prototype.hasOwnProperty.call( friendlyGroupNames, s ) ? friendlyGroupNames[s] : s;

                        if ( t ) {
                            friendlyGroups.push( t );
                        }
                    }

                    switch ( friendlyGroups.length ) {
                    case 0:
                        if ( blocked ) {
                            statusText += "user";
                        } else {
                            statusText += "registered user";
                        }

                        break;

                    case 1:
                        statusText += friendlyGroups[0];
                        break;

                    case 2:
                        statusText += friendlyGroups[0] + " and " + friendlyGroups[1];
                        break;

                    default:
                        statusText += friendlyGroups.slice( 0, -1 ).join( ", " ) + ", and " + friendlyGroups[friendlyGroups.length - 1];
                        break;
                    }
                }
                // Registration date
                if ( registration ) {
                    var firstLoggedUser = new Date( "22:16, 7 September 2005" );
                    // When the [[Special:Log/newusers]] was first activated
                    if ( registration >= firstLoggedUser ) {
                        statusText += ", <a href='" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:Log&amp;type=newusers&amp;dir=prev&amp;limit=1&amp;user=" + et + "'>" + UserinfoJsFormatDateRel( registration ) + "</a> old";
                    } else {
                        statusText += ", <a href='" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:ListUsers&amp;limit=1&amp;username=" + et + "'>" + UserinfoJsFormatDateRel( registration ) + "</a> old";
                    }
                }
                // Edit count
                if ( editcount !== null ) {
                    statusText += ", with <a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:Contributions/" + encodeURIComponent( user.name ) ) + "\">" + UserinfoJsFormatQty( editcount, "edit", "edits" ) + "</a>";
                }
                // Prefix status text with correct article
                if ( "AEIOaeio".indexOf( statusText.charAt( statusText.indexOf( ">" ) + 1 ) ) >= 0 ) {
                    statusText = "An " + statusText;
                } else {
                    statusText = "A " + statusText;
                }

                if ( lastEdited ) {
                    statusText += ". Last edited " + UserinfoJsFormatDateRel( lastEdited ) + " ago.";
                }

                // otfwiki links
                statusText += " Links: ";
                statusText += "<a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:Block/" + encodeURIComponent( user.name ) ) + "\">Block</a>";
                statusText += " | <a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:RenameUser/" + encodeURIComponent( user.name ) ) + "\">Rename</a>";
                statusText += " | <a href=\"https://wikistats.espacore.de/user/tf/" + encodeURIComponent( user.name ) + "\">Wiki Stats</a>";
                var ss = document.getElementById( "siteSub" );
                ss.innerHTML = "<span>" + statusText + "</span>";
                ss.style.display = "block";
            } );
        } );
    } );
}
// End User info

// Begin Delete link
if ( mw.config.get( "wgIsArticle" ) ) {
    var dBtn = mw.util.addPortletLink( "p-views",
        mw.util.wikiScript() + "?" + $.param( { title: mw.config.get( "wgPageName" ), action: "delete" } ),
        "Deleto",
        "ca-delete",
        "Deleto!!!!"
    );
    dBtn.classList.add("collapsible");
}
// End Delete link

mw.loader.load('https://en.wikipedia.org/w/index.php?title=User:BrandonXLF/TestWikitext.js&action=raw&ctype=text/javascript');
mw.loader.load("https://en.wikipedia.org/w/index.php?title=User:Awesome%20Aasim/savedraft.js&action=raw&ctype=text/javascript");

// Start addUploadsLink
// Adapted from: https://en.wikipedia.org/wiki/User:Begoon/addUploadsLink.js
mw.loader.using('mediawiki.util', function () {
	jQuery(function( $ ) {
		var wServerName = mw.config.get('wgServer');
		if (document.getElementById("t-contributions")) {
			var rUser =  mw.config.get('wgRelevantUserName');
			var followNode = document.getElementById("t-contributions").nextSibling;
			mw.util.addPortletLink(
				'p-tb',  wServerName + '/wiki/Special:ListFiles?limit=500&user=' + rUser.replace(/ /g, '+') + '&ilshowall=1',
				'User uploads', 't-userfileuploads', 'View list of files uploaded by ' + rUser,'', followNode
			)
		}
	});
});

// End addUploadsLink

// ----

// Start WP pls review :^)
var classicNp = {
  init: function() {
	if ( mw.config.get("wgPageName").includes("(Classic)") ) {
	    console.log("Classic page: redirect main page links.");
	    // Wiki logo
	    var logoLink = document.querySelector('#p-logo a');
	    logoLink.href = logoLink.href.replace("Main_Page", "Main_Page_(Classic)");
	
	    // Sidebar "Main page" link
	    var sidebarLink = document.querySelector("#n-mainpage-description a");
	    sidebarLink.href = sidebarLink.href.replace("Main_Page", "Main_Page_(Classic)");
	
	    // Sidebar "Team Fortress 2 portal"
	    var tf2Portal = document.querySelector("#p-Team_Fortress_2 .body ul");
	    var tf2Li = document.createElement("li");
	    var tf2Link = document.createElement("a");
	    tf2Link.href = sidebarLink.href.replace("_(Classic)", "");
	    tf2Link.textContent = "Main Page";
	    tf2Li.appendChild(tf2Link);
	    tf2Portal.insertBefore(tf2Li, tf2Portal.firstChild);
	}
  }
};

$(classicNp.init);
// End WP pls review