Difference between revisions of "User:Tark/common.js"
m |
m (man) |
||
Line 264: | Line 264: | ||
if (isArticle && isUserNamespace && isValid) { | if (isArticle && isUserNamespace && isValid) { | ||
− | var notice = | + | var notice = '<table class="eninfo fmbox plainlinks"style=padding:.5em><tr><td style="padding:2px 0 2px 0;text-align:center"><a href=/wiki/File:Warning_blue.png class=image><img alt="Warning blue.png"data-file-height=256 data-file-width=256 height=56 src=/w/images/thumb/8/81/Warning_blue.png/56px-Warning_blue.png srcset="/w/images/thumb/8/81/Warning_blue.png/84px-Warning_blue.png 1.5x, /w/images/thumb/8/81/Warning_blue.png/112px-Warning_blue.png 2x"width=56></a><td style=width:100%;padding:.25em><div style=padding-left:.5em;text-align:left><div style="font-size:1.5em;margin:.25em 0"><b>This page has been created by a user and is not part of the encyclopedia.</b></div><div>This page is <b>not part of the main wiki content</b>. Please note that it may not adhere to all the stylistic guidelines applicable to official pages.</div><div>Editors can create pages for various purposes, as long as they adhere to our <a href=/wiki/Help:Style_guide/User_pages title="Help:Style guide/User pages">rules for user-created pages</a>. If you mistook this page for an official one, or if you were linked here from a third-party website (i.e., not from a link within this wiki), <a href=/wiki/Team_Fortress_Wiki:Help_Desk title="Team Fortress Wiki:Help Desk">please let us know</a>.</div></div></table>'; |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
$('#bodyContent.mw-body-content').prepend(notice); | $('#bodyContent.mw-body-content').prepend(notice); |
Revision as of 20:25, 11 January 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&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>"; var ss = document.getElementById( "siteSub" ); ss.innerHTML = "<span>" + statusText + "</span>"; ss.style.display = "block"; var bBtn = mw.util.addPortletLink( "p-views", mw.config.get( "wgArticlePath" ).replace( "$1", "Special:Block/" + encodeURIComponent( user.name ) ), "Block", "ca-byeeee", "Block this fella" ); bBtn.classList.add("collapsible"); var rBtn = mw.util.addPortletLink( "p-views", mw.config.get( "wgArticlePath" ).replace( "$1", "Special:RenameUser/" + encodeURIComponent( user.name ) ), "Rename", "ca-byeeee", "new phone, who dis?" ); rBtn.classList.add("collapsible"); var wsBtn = mw.util.addPortletLink( "p-views", "https://wikistats.espacore.de/user/tf/" + encodeURIComponent( user.name ), "WS", "ca-wikistats", "View stats for this user on Wiki Stats" ); wsBtn.classList.add("collapsible"); } ); } ); } ); } // End User info // 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" ) ) { 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 // Stat Wiki Stats link if ( mw.config.get( "wgIsArticle" ) && !mw.config.get( "wgPageName" ).includes( "User" ) ) { var wsBtn = mw.util.addPortletLink( "p-views", "https://wikistats.espacore.de/article/tf/" + mw.config.get( "wgPageName" ), "WS", "ca-wikistats", "View stats for this page on Wiki Stats" ); wsBtn.classList.add("collapsible"); } // End Wiki Stats 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_Aasim/rcpatrol.js&action=raw&ctype=text/javascript'); mw.loader.load("https://en.wikipedia.org/wiki/User:Awesome Aasim/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 anonUserSpaceNotice = { init: function() { var isArticle = mw.config.get("wgIsArticle"); var isUserNamespace = mw.config.get("wgCanonicalNamespace") == "User"; var isValid = mw.config.get("wgCurRevisionId") != 0; if (isArticle && isUserNamespace && isValid) { var notice = '<table class="eninfo fmbox plainlinks"style=padding:.5em><tr><td style="padding:2px 0 2px 0;text-align:center"><a href=/wiki/File:Warning_blue.png class=image><img alt="Warning blue.png"data-file-height=256 data-file-width=256 height=56 src=/w/images/thumb/8/81/Warning_blue.png/56px-Warning_blue.png srcset="/w/images/thumb/8/81/Warning_blue.png/84px-Warning_blue.png 1.5x, /w/images/thumb/8/81/Warning_blue.png/112px-Warning_blue.png 2x"width=56></a><td style=width:100%;padding:.25em><div style=padding-left:.5em;text-align:left><div style="font-size:1.5em;margin:.25em 0"><b>This page has been created by a user and is not part of the encyclopedia.</b></div><div>This page is <b>not part of the main wiki content</b>. Please note that it may not adhere to all the stylistic guidelines applicable to official pages.</div><div>Editors can create pages for various purposes, as long as they adhere to our <a href=/wiki/Help:Style_guide/User_pages title="Help:Style guide/User pages">rules for user-created pages</a>. If you mistook this page for an official one, or if you were linked here from a third-party website (i.e., not from a link within this wiki), <a href=/wiki/Team_Fortress_Wiki:Help_Desk title="Team Fortress Wiki:Help Desk">please let us know</a>.</div></div></table>'; $('#bodyContent.mw-body-content').prepend(notice); } } }; $(anonUserSpaceNotice.init); // End WP pls review