User contributions for VancityRothaug
Jump to navigation
Jump to search
2 February 2025
- 19:3719:37, 2 February 2025 diff hist +110 User:VancityRothaug/common.js Installing User:VancityRothaug/diff-permalink.js (script-installer) current
- 19:3719:37, 2 February 2025 diff hist −100 User:VancityRothaug/common.js Uninstalling User:Bhairava7/diff-permalink.js (script-installer)
- 19:3719:37, 2 February 2025 diff hist +1,491 N User:VancityRothaug/diff-permalink.js Created page with "// <nowiki> $.when( $.ready, mw.loader.using( [ "mediawiki.util" ] ) ).then( function () { var suffix = mw.config.get( "wgDiffNewId" ); var page; if( suffix ) { if( document.getElementsByClassName( "diff-multi" ).length || mw.config.get("wgCanonicalSpecialPageName") === "ComparePages" ) { suffix = mw.config.get( "wgDiffOldId" ) + "/" + suffix; } page = "Special:Diff/" + suffix; } else { // If "oldid"..." current
- 19:3619:36, 2 February 2025 diff hist +110 User:VancityRothaug/common.js Installing User:VancityRothaug/ShowRevisionID.js (script-installer)
- 19:3619:36, 2 February 2025 diff hist −100 User:VancityRothaug/common.js Uninstalling User:Bhairava7/ShowRevisionID.js (script-installer)
- 19:3619:36, 2 February 2025 diff hist +587 N User:VancityRothaug/ShowRevisionID.js Created page with "→** Show Revision ID **: // Shows the revison id on history pages // Documentation at en:w:User:BrandonXLF/ShowRevisionID // By en:w:User:BrandonXLF $(function() { if (location.search.includes('action=history') || location.href.includes('Special:Watchlist') || location.href.includes('Special:Contributions')) { var items = document.querySelectorAll('li[data-mw-revid]'); for (var i = 0; i < items.length; i++) { items[i].getElementsByClassName('mw-change..." current
- 19:3519:35, 2 February 2025 diff hist +114 User:VancityRothaug/common.js Installing User:VancityRothaug/quick-vand-block.js (script-installer)
- 19:3519:35, 2 February 2025 diff hist −104 User:VancityRothaug/common.js Uninstalling User:Bhairava7/quick-vand-block.js (script-installer)
- 19:3519:35, 2 February 2025 diff hist +3,658 N User:VancityRothaug/quick-vand-block.js Created page with "//<nowiki> $.when( mw.loader.using( [ "mediawiki.api", "mediawiki.util" ] ), $.ready ).then( function () { var MONTHS = mw.config.get( "wgMonthNames" ).slice( 1 ); // theirs starts with the empty string var api = new mw.Api(); var IP_BLOCK_LENGTH = "custom reason"; function deliverBlockTemplate( username, isAnon ) { var now = new Date(); var sectionName = MONTHS[now.getMonth()] + " " + now.getFullYear(); api.get( { pro..." current
- 19:3419:34, 2 February 2025 diff hist +114 User:VancityRothaug/common.js Installing User:VancityRothaug/revert-and-block.js (script-installer)
- 19:3419:34, 2 February 2025 diff hist −104 User:VancityRothaug/common.js Uninstalling User:Bhairava7/revert-and-block.js (script-installer)
- 19:3419:34, 2 February 2025 diff hist +4,919 N User:VancityRothaug/revert-and-block.js Created page with "//<nowiki> $( function () { var ADVERT = " (RNB)"; var IP_BLOCK_LENGTH = window.revertAndBlockIpBlockLength || "custom reason"; if( mw.config.get( "wgAction" ) === "history" ) { mw.loader.using( [ "mediawiki.util", "mediawiki.api" ] ).then( function () { var MONTHS = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];..." current
- 19:3319:33, 2 February 2025 diff hist +104 User:VancityRothaug/common.js Installing User:VancityRothaug/rollbackSum.js (script-installer)
- 19:3319:33, 2 February 2025 diff hist −94 User:VancityRothaug/common.js Uninstalling User:Bhairava7/rollbackSum.js (script-installer)
- 19:3319:33, 2 February 2025 diff hist +709 N User:VancityRothaug/rollbackSum.js Created page with "→rollback summary control panel: $(function(){ var promptSummary = function () { var summary = prompt("Enter summary for rollback (or leave as current to use default summary):", "Reverted edits by $2 (talk) to last version by $1"); if (summary == null || summary == "") return false; if (summary == "Reverted edits by [[Special:Contribut..." current
- 19:3219:32, 2 February 2025 diff hist +110 User:VancityRothaug/common.js Installing User:VancityRothaug/unblock-review.js (script-installer)
- 19:3219:32, 2 February 2025 diff hist −100 User:VancityRothaug/common.js Uninstalling User:Bhairava7/unblock-review.js (script-installer)
- 19:3219:32, 2 February 2025 diff hist +8,380 N User:VancityRothaug/unblock-review.js Created page with "// <nowiki> ( function () { var UNBLOCK_REQ_COLOR = "rgb(235, 244, 255)"; var SIGNATURE = "~~" + "~~"; var DECLINE_REASON_HERE = "{" + "{subst:Decline reason here}}"; // broken up to prevent processing var ADVERT = " (unblock-review)"; // Making this a function for unit test reasons. function getInitialText(wikitext, appealReason) { // https://stackoverflow.com/a/6969486/3480193 function escape..." current
- 19:3119:31, 2 February 2025 diff hist −126 User:VancityRothaug/common.js Uninstalling User:Bhairava7/confirmationRollback-mobile.js (script-installer)
- 19:3019:30, 2 February 2025 diff hist +100 User:VancityRothaug/common.js Installing User:VancityRothaug/QuickEdit.js (script-installer)
- 19:3019:30, 2 February 2025 diff hist −90 User:VancityRothaug/common.js Uninstalling User:Bhairava7/QuickEdit.js (script-installer)
- 19:2919:29, 2 February 2025 diff hist +13,611 N User:VancityRothaug/QuickEdit.js Created page with "→* Quick Edit *: // Edit sections of a page without leaving the article // en:w:User:BrandonXLF/QuickEdit // By en:w:User:BrandonXLF (function() { var mobile = mw.config.get('skin') === 'minerva', apiSingleton, titleRegexp = new RegExp( mw.config.get('wgArticlePath').replace(/[.*+?^${}()|[\]\\]/g, '\\$&').replace(/\\\$1/, '([^?]+)') + '|[?&]title=([^&#]*)' ); function api(func, params) { if (!apiSingleton) apiSingleton = new mw.Api(); $.ex..." current
- 19:2819:28, 2 February 2025 diff hist +108 User:VancityRothaug/common.js Installing User:VancityRothaug/CleanDiffURLs.js (script-installer)
- 19:2819:28, 2 February 2025 diff hist −98 User:VancityRothaug/common.js Uninstalling User:Bhairava7/CleanDiffURLs.js (script-installer)
- 19:2719:27, 2 February 2025 diff hist +862 N User:VancityRothaug/CleanDiffURLs.js creating script locally current
30 January 2025
- 19:5219:52, 30 January 2025 diff hist −2 User:VancityRothaug/common.js Enabling User:Bhairava7/rollbackSum.js (script-installer) Tag: Manual revert
- 17:4317:43, 30 January 2025 diff hist +2 User:VancityRothaug/common.js Disabling User:Bhairava7/rollbackSum.js (script-installer) Tag: Reverted
- 10:2310:23, 30 January 2025 diff hist 0 m User:TheAstorPastor/Admins →Bureaucrats
29 January 2025
- 10:5710:57, 29 January 2025 diff hist −5 m Abuse filter test Reverted edit by VancityRothaug (talk) to last revision by Paflidy Tag: Rollback
- 10:5710:57, 29 January 2025 diff hist +5 Abuse filter test No edit summary Tags: Reverted Visual edit
- 10:4110:41, 29 January 2025 diff hist +1 m Test Wiki:Administrators' newsletter/2025/2 spelling correction in Recent Changes
- 10:4010:40, 29 January 2025 diff hist −26 Newsletter:Administrators' newsletter inactive publisher removed
27 January 2025
- 12:2512:25, 27 January 2025 diff hist −7 m User:VancityRothaug No edit summary current
- 12:2412:24, 27 January 2025 diff hist 0 m User:VancityRothaug Removed protection from "User:VancityRothaug"
- 11:3011:30, 27 January 2025 diff hist −41 m Suppression test Reverted edit by VancityRothaug (talk) to last revision by Bhairava7 current Tag: Rollback
- 11:2911:29, 27 January 2025 diff hist +41 m Suppression test test Tag: Reverted
25 January 2025
- 11:0911:09, 25 January 2025 diff hist +743 User:VancityRothaug Undo revision 56762 by VancityRothaug (talk) Tag: Undo
- 11:0811:08, 25 January 2025 diff hist −743 User:VancityRothaug testing changes Tag: Reverted
24 January 2025
- 18:3218:32, 24 January 2025 diff hist −66 User:TheAstorPastor/Admins →Suppressors: removed Bhairava7 from list
- 18:3218:32, 24 January 2025 diff hist −143 User:TheAstorPastor/Admins →Bureaucrats: removing bureaucrats which rights expired
23 January 2025
- 21:0121:01, 23 January 2025 diff hist +1 Test Wiki:Community portal →Discussion: updated discussion layout
- 21:0121:01, 23 January 2025 diff hist +287 Test Wiki:Community portal →Discussion
- 12:1912:19, 23 January 2025 diff hist +319 Test Wiki:Request for permissions →DodoMan
18 January 2025
- 21:1921:19, 18 January 2025 diff hist 0 User:TheAstorPastor/Admins →Bureaucrats
- 21:1621:16, 18 January 2025 diff hist +834 User talk:Justarandomamerican →A barnstar for you!: new WikiLove message Tag: WikiLove
- 19:4619:46, 18 January 2025 diff hist +316 Test Wiki:Community portal →Crat Abuse RFC: Reply Tag: Reply
- 13:5713:57, 18 January 2025 diff hist +280 Test Wiki:Community portal →Discussion 2: Reply Tag: Reply
- 13:5613:56, 18 January 2025 diff hist 0 Test Wiki:Community portal →Option 3
- 13:5613:56, 18 January 2025 diff hist 0 Test Wiki:Community portal →Option 1: strikethrough
- 13:5613:56, 18 January 2025 diff hist +7 Test Wiki:Community portal →Option 3