Difference between revisions of "User:Tark/common.js"
m |
m |
||
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 = | + | var age = Date.now() - old.getTime(); |
var ageNumber, ageRemainder, ageWords; | var ageNumber, ageRemainder, ageWords; | ||
− | 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 ); |
− | + | ||
− | if (ageRemainder) { | + | if ( ageRemainder ) { |
− | ageWords += " " + | + | ageWords += " " + 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 | + | 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&refix=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&refix=grouppage-&amincludelocal=1") | + | // 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; | ||
− | 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 = ""; | ||
− | + | if ( blocked ) { | |
+ | statusText += "<a href=\"" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:Log&page=" + encodeURIComponent( mw.config.get( "wgFormattedNamespaces" )[2] + ":" + user.name ) + "&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 ( | + | if ( registration ) { |
− | 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&type=newusers&dir=prev&limit=1&user=" + et + "'>" + UserinfoJsFormatDateRel( registration ) + "</a> old"; | |
− | |||
− | |||
} else { | } else { | ||
− | statusText = " | + | statusText += ", <a href='" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:ListUsers&limit=1&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."; | |
− | + | } | |
− | statusText += " | ||
− | + | // otfwiki links | |
− | + | statusText += " Links: "; | |
− | + | statusText += "<a href=\"" + mw.config.get( "wgArticlePath" ).replace( "$1", "Special:Block/" + encodeURIComponent( user.name ) ) + "\">Block user</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 | ||
Line 185: | Line 172: | ||
// Begin Purge link | // Begin Purge link | ||
// Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-purgetab.js | // Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-purgetab.js | ||
− | if (mw.config.get("wgIsArticle")) { | + | if ( mw.config.get( "wgIsArticle" ) ) { |
− | mw.util.addPortletLink( | + | mw.util.addPortletLink( "p-views", mw.util.wikiScript() + "?" + $.param( { |
− | + | title: mw.config.get( "wgPageName" ), | |
− | + | action: "purge" | |
− | + | } ), mw.config.get( "skin" ) === "vector" ? "Purge cache" : "*", "ca-purge", "Purge the server cache of this page", "*" ); | |
− | |||
− | |||
− | |||
− | |||
} | } | ||
// End Purge link | // End Purge link | ||
Line 199: | Line 182: | ||
// Begin Clean delete reasons | // Begin Clean delete reasons | ||
// Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-CleanDeleteReasons.js | // Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-CleanDeleteReasons.js | ||
− | if (mw.config.get("wgAction") == "delete") { | + | if ( mw.config.get( "wgAction" ) == "delete" ) { |
− | var wpReason = document.getElementById("wpReason"); | + | var wpReason = document.getElementById( "wpReason" ); |
− | if (wpReason) { | + | |
+ | if ( wpReason ) { | ||
var regexp = /(content was|page was empty)/i; | var regexp = /(content was|page was empty)/i; | ||
− | if (regexp.test(wpReason.value)) { | + | |
+ | if ( regexp.test( wpReason.value ) ) { | ||
wpReason.value = ""; | wpReason.value = ""; | ||
} | } | ||
Line 211: | Line 196: | ||
// Begin Delete link | // Begin Delete link | ||
− | if (mw.config.get("wgIsArticle")) { | + | if ( mw.config.get( "wgIsArticle" ) ) { |
− | mw.util.addPortletLink( | + | mw.util.addPortletLink( "p-views", mw.util.wikiScript() + "?" + $.param( { |
− | + | title: mw.config.get( "wgPageName" ), | |
− | + | action: "delete" | |
− | + | } ), mw.config.get( "skin" ) === "vector" ? "Deleto" : "*", "ca-delete", "Deleto!!!!", "*" ); | |
− | |||
− | |||
− | |||
− | |||
} | } | ||
// End Delete link | // End Delete link | ||
// Stat Wiki Stats link | // Stat Wiki Stats link | ||
− | if (!mw.config.get("wgPageName").includes("User")) { | + | if ( !mw.config.get( "wgPageName" ).includes( "User" ) ) { |
− | + | var ss2 = document.getElementById( "siteSub" ); | |
− | + | ss2.innerHTML = "Links: <span><a href=\"https://staging-wikistats.espacore.de/article/tf/" + mw.config.get( "wgPageName" ) + "\">Wiki Stats</a></span>"; | |
− | + | ss2.style.display = "block"; | |
} | } | ||
// End Wiki Stats link | // End Wiki Stats link | ||
Line 234: | Line 215: | ||
// Adapted from https://pt.wikipedia.org/wiki/MediaWiki:Gadget-LanguageConverter.js | // Adapted from https://pt.wikipedia.org/wiki/MediaWiki:Gadget-LanguageConverter.js | ||
var tempPirateMode = { | var tempPirateMode = { | ||
− | langs: ["ar", "cs", "da", "de", "es", "fi", "fr", "hu", "it", "ja", "ko", "nl", "no", "pl", "pt", "pt-br", "ro", "ru", "sv", "zh-hans", "zh-hant"], | + | langs: [ "ar", "cs", "da", "de", "es", "fi", "fr", "hu", "it", "ja", "ko", "nl", "no", "pl", "pt", "pt-br", "ro", "ru", "sv", "zh-hans", "zh-hant" ], |
init: function () { | init: function () { | ||
− | if (window.LanguageConverter === undefined) { | + | if ( window.LanguageConverter === undefined ) { |
window.LanguageConverter = {}; | window.LanguageConverter = {}; | ||
} | } | ||
+ | |||
window.LanguageConverter.config = { | window.LanguageConverter.config = { | ||
msg: { | msg: { | ||
Line 250: | Line 232: | ||
menu_title: "" | menu_title: "" | ||
}, | }, | ||
− | word_chars: "a-zA-Z0-9áàâãçéêíñóôõúüÁÀÂÃÇÉÊÍÑÓÔÕÚ | + | word_chars: "a-zA-Z0-9áàâãçéêíñóôõúüÁÀÂÃÇÉÊÍÑÓÔÕÚ'ºª\\-", |
typo_changes: { | typo_changes: { | ||
− | + | pirate: [ | |
− | + | // [ /ing /g, "in' " ], | |
− | [ /(?:U?S?\$)(\d+(?:\.? | + | [ /(?:U?S?\$)(\d+(?:\.?,?\d+)*)/, "$1 doubloons" ] // moners |
] | ] | ||
}, | }, | ||
variants_list: { | variants_list: { | ||
− | + | en: "English", | |
− | + | pirate: "Pirate" | |
}, | }, | ||
ns_list: { | ns_list: { | ||
− | + | 0: true | |
}, | }, | ||
local_dic_id: { | local_dic_id: { | ||
− | + | en: "dict-en", | |
− | + | pirate: "dict-pirate" | |
}, | }, | ||
global_dic_page: { | global_dic_page: { | ||
− | + | pirate: "User:Tark/A22/Dictionary" | |
}, | }, | ||
help_page: "", | help_page: "", | ||
Line 276: | Line 258: | ||
selection_mode: "OR", | selection_mode: "OR", | ||
max_seq: 5 // this is bad | max_seq: 5 // this is bad | ||
+ | |||
}; | }; | ||
− | + | mw.loader.load( "https://meta.wikimedia.org/w/index.php?title=User:He7d3r/Tools/LanguageConverter.js&action=raw&ctype=text/javascript" ); | |
− | mw.loader.load("https://meta.wikimedia.org/w/index.php?title=User:He7d3r/Tools/LanguageConverter.js&action=raw&ctype=text/javascript"); | ||
} | } | ||
}; | }; | ||
// Lazy fix: ignore lang pages | // Lazy fix: ignore lang pages | ||
− | if (!tempPirateMode.langs.includes(mw.config.get("wgPageName").split("/").pop())) { | + | if ( !tempPirateMode.langs.includes( mw.config.get( "wgPageName" ).split( "/" ) |
− | $(tempPirateMode.init); | + | .pop() ) ) { |
+ | $( tempPirateMode.init ); | ||
} | } | ||
// End A23 | // End A23 | ||
− | function gibAchievement(title | + | function gibAchievement( title, img ) { |
+ | if ( !title ) { | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | if ( !img ) { | ||
+ | img = "https://wiki.teamfortress.com/w/images/4/49/Tf_dominate_for_goggles.png"; | ||
+ | } | ||
+ | |||
// Play sound effect | // Play sound effect | ||
− | + | var achAudio = new Audio( "https://wiki.teamfortress.com/w/images/5/5e/Spy_feelgood01.wav" ); | |
achAudio.play(); | achAudio.play(); | ||
+ | |||
// Create the achievement container and append it to the body | // Create the achievement container and append it to the body | ||
− | + | var achTarget = document.getElementById( "mw-panel" ); | |
− | achTarget.innerHTML += | + | achTarget.innerHTML += "<div id=\"achpop\" class=\"sachievement\"> \ |
− | + | <div class=\"achcontainer\"> \ | |
− | <div class="achcontainer"> | + | <div class=\"item icon\"> \ |
− | <div class="item icon"> | + | <img alt=\"" + title + "\" src=\"" + img + "\" width=\"64\" height=\"64\"> \ |
− | <img alt=" | + | </div> \ |
− | </div> | + | <div class=\"item content\"> \ |
− | <div class="item content"> | + | <span class=\"title\"> \ |
− | <span class="title"> | + | Achievement Unlocked! \ |
− | Achievement Unlocked! | + | </span> \ |
− | </span> | + | <p class=\"desc\"> \ |
− | <p class="desc"> | + | " + title + " \ |
− | + | </p> \ | |
− | </p> | + | </div> \ |
− | </div> | + | </div> \ |
− | </div> | + | </div>"; |
− | </div> | + | |
− | |||
// Remove the achievement element | // Remove the achievement element | ||
− | setTimeout(function () { | + | setTimeout( function () { |
− | + | var achEl = document.getElementById( "achpop" ); | |
achEl.remove(); | achEl.remove(); | ||
− | }, 4000); | + | }, 4000 ); |
} | } |
Revision as of 17:50, 5 April 2022
// 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, ageWords; 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&refix=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&page=" + encodeURIComponent( mw.config.get( "wgFormattedNamespaces" )[2] + ":" + user.name ) + "&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&type=newusers&dir=prev&limit=1&user=" + et + "'>" + UserinfoJsFormatDateRel( registration ) + "</a> old"; } else { statusText += ", <a href='" + mw.config.get( "wgScriptPath" ) + "/index.php?title=Special:ListUsers&limit=1&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 user</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 Purge link // Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-purgetab.js if ( mw.config.get( "wgIsArticle" ) ) { mw.util.addPortletLink( "p-views", mw.util.wikiScript() + "?" + $.param( { title: mw.config.get( "wgPageName" ), action: "purge" } ), mw.config.get( "skin" ) === "vector" ? "Purge cache" : "*", "ca-purge", "Purge the server cache of this page", "*" ); } // End Purge link // Begin Clean delete reasons // Adapted from https://www.mediawiki.org/wiki/MediaWiki:Gadget-CleanDeleteReasons.js if ( mw.config.get( "wgAction" ) == "delete" ) { var wpReason = document.getElementById( "wpReason" ); if ( wpReason ) { var regexp = /(content was|page was empty)/i; if ( regexp.test( wpReason.value ) ) { wpReason.value = ""; } } } // End Clean delete reasons // Begin Delete link if ( mw.config.get( "wgIsArticle" ) ) { mw.util.addPortletLink( "p-views", mw.util.wikiScript() + "?" + $.param( { title: mw.config.get( "wgPageName" ), action: "delete" } ), mw.config.get( "skin" ) === "vector" ? "Deleto" : "*", "ca-delete", "Deleto!!!!", "*" ); } // End Delete link // Stat Wiki Stats link if ( !mw.config.get( "wgPageName" ).includes( "User" ) ) { var ss2 = document.getElementById( "siteSub" ); ss2.innerHTML = "Links: <span><a href=\"https://staging-wikistats.espacore.de/article/tf/" + mw.config.get( "wgPageName" ) + "\">Wiki Stats</a></span>"; ss2.style.display = "block"; } // End Wiki Stats link // Begin A23 // Adapted from https://pt.wikipedia.org/wiki/MediaWiki:Gadget-LanguageConverter.js var tempPirateMode = { langs: [ "ar", "cs", "da", "de", "es", "fi", "fr", "hu", "it", "ja", "ko", "nl", "no", "pl", "pt", "pt-br", "ro", "ru", "sv", "zh-hans", "zh-hant" ], init: function () { if ( window.LanguageConverter === undefined ) { window.LanguageConverter = {}; } window.LanguageConverter.config = { msg: { error_missing_dict: "Missing dictionary: ", error_missing_dict_name: "Missing dictionary name for ", error_word_processing: "There was an error processing this word: ", error_typo_processing: "An error occurred when processing the following typographical change:\n", help_page_link: "", show_changes_link: "", hide_changes_link: "", menu_title: "" }, word_chars: "a-zA-Z0-9áàâãçéêíñóôõúüÁÀÂÃÇÉÊÍÑÓÔÕÚ'ºª\\-", typo_changes: { pirate: [ // [ /ing /g, "in' " ], [ /(?:U?S?\$)(\d+(?:\.?,?\d+)*)/, "$1 doubloons" ] // moners ] }, variants_list: { en: "English", pirate: "Pirate" }, ns_list: { 0: true }, local_dic_id: { en: "dict-en", pirate: "dict-pirate" }, global_dic_page: { pirate: "User:Tark/A22/Dictionary" }, help_page: "", show_changes: false, show_menu_title: true, selection_mode: "OR", max_seq: 5 // this is bad }; mw.loader.load( "https://meta.wikimedia.org/w/index.php?title=User:He7d3r/Tools/LanguageConverter.js&action=raw&ctype=text/javascript" ); } }; // Lazy fix: ignore lang pages if ( !tempPirateMode.langs.includes( mw.config.get( "wgPageName" ).split( "/" ) .pop() ) ) { $( tempPirateMode.init ); } // End A23 function gibAchievement( title, img ) { if ( !title ) { return; } if ( !img ) { img = "https://wiki.teamfortress.com/w/images/4/49/Tf_dominate_for_goggles.png"; } // Play sound effect var achAudio = new Audio( "https://wiki.teamfortress.com/w/images/5/5e/Spy_feelgood01.wav" ); achAudio.play(); // Create the achievement container and append it to the body var achTarget = document.getElementById( "mw-panel" ); achTarget.innerHTML += "<div id=\"achpop\" class=\"sachievement\"> \ <div class=\"achcontainer\"> \ <div class=\"item icon\"> \ <img alt=\"" + title + "\" src=\"" + img + "\" width=\"64\" height=\"64\"> \ </div> \ <div class=\"item content\"> \ <span class=\"title\"> \ Achievement Unlocked! \ </span> \ <p class=\"desc\"> \ " + title + " \ </p> \ </div> \ </div> \ </div>"; // Remove the achievement element setTimeout( function () { var achEl = document.getElementById( "achpop" ); achEl.remove(); }, 4000 ); }