User contributions for AZMindroma
Appearance
8 June 2025
- 23:1623:16, 8 June 2025 diff hist +4,976 N Module:Clickable button Created page with "-- This module implements {{clickable button 2}}. local yesno = require('Module:Yesno') local delink = require('Module:Delink')._delink local p = {} function p.main(frame) local getArgs = require('Module:Arguments').getArgs local args = getArgs(frame) return p._main(args) end function p._main(args) -- If first arg or a url is not provided, -- but we have a second arg, make a button. -- Otherwise, return nothing. args.originalInput = args[1] args[1] = delink({..." current
- 23:1623:16, 8 June 2025 diff hist −6 m Chaos King Text replacement - "image_caption" to "caption"
- 23:1623:16, 8 June 2025 diff hist −6 m Hotel City Text replacement - "image_caption" to "caption"
- 23:1623:16, 8 June 2025 diff hist +7,111 N Module:Delink Created page with "-- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per Help:Pipe trick. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-..." current
- 23:1623:16, 8 June 2025 diff hist −6 m Jensation - Delicious Text replacement - "image_caption" to "caption"
- 23:1523:15, 8 June 2025 diff hist −6 m WHAT THE HELL Text replacement - "image_caption" to "caption"
- 23:1523:15, 8 June 2025 diff hist −6 m Hellcat Text replacement - "image_caption" to "caption"
- 23:1523:15, 8 June 2025 diff hist +24 RLWiki:Templates and Modules →Documentation
- 23:1523:15, 8 June 2025 diff hist −6 m Slow Down Text replacement - "image_caption" to "caption"
- 23:1423:14, 8 June 2025 diff hist +104 RLWiki:Templates and Modules →Documentation: Added full tree
- 23:1123:11, 8 June 2025 diff hist −6 m Legendary Text replacement - "image_caption" to "caption"
- 23:1123:11, 8 June 2025 diff hist −6 m Collide Text replacement - "image_caption" to "caption"
- 23:1123:11, 8 June 2025 diff hist +18,961 N Module:Message box Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------..." current
- 23:1123:11, 8 June 2025 diff hist +7,871 N Module:Category handler Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia..." current
- 23:0923:09, 8 June 2025 diff hist −6 m Where We Started Text replacement - "image_caption" to "caption"
- 23:0923:09, 8 June 2025 diff hist −6 m Syn Cole - Feel Good Text replacement - "image_caption" to "caption"
- 23:0923:09, 8 June 2025 diff hist −6 m Elektronomia - Heaven Text replacement - "image_caption" to "caption"
- 23:0923:09, 8 June 2025 diff hist −6 m Diviners & Azertion - Reality (feat. Dayce Williams) Text replacement - "image_caption" to "caption"
- 23:0923:09, 8 June 2025 diff hist −6 m Shine On Text replacement - "image_caption" to "caption"
- 23:0923:09, 8 June 2025 diff hist +752 N Module:Category handler/blacklist Created page with "-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^RLWiki:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbox "..." current
- 23:0823:08, 8 June 2025 diff hist −6 m Final Chapter: Infinite Text replacement - "image_caption" to "caption"
- 23:0823:08, 8 June 2025 diff hist +888 N Module:Category handler/shared Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return..." current
- 23:0723:07, 8 June 2025 diff hist −6 m Elektronomia & RUD - Rollercoaster Text replacement - "image_caption" to "caption"
- 23:0723:07, 8 June 2025 diff hist +2,569 N Module:Namespace detect/data Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function..." current
- 23:0723:07, 8 June 2025 diff hist −6 m Jim Yosef & Shiah Misael - Slow Down Text replacement - "image_caption" to "caption"
- 23:0723:07, 8 June 2025 diff hist −6 m Valence - Infinite Text replacement - "image_caption" to "caption"
- 23:0723:07, 8 June 2025 diff hist +3,545 N Module:Namespace detect/config Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --..." current
- 23:0723:07, 8 June 2025 diff hist −6 m Circus Text replacement - "image_caption" to "caption"
- 23:0623:06, 8 June 2025 diff hist −6 m Electro-Light - Symbolism Text replacement - "image_caption" to "caption"
- 23:0623:06, 8 June 2025 diff hist +631 N Module:Category handler/data Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(..." current
- 23:0623:06, 8 June 2025 diff hist −6 m Sky's The Limit Text replacement - "image_caption" to "caption"
- 23:0523:05, 8 June 2025 diff hist −6 m Infinite Text replacement - "image_caption" to "caption"
- 23:0523:05, 8 June 2025 diff hist −6 m Nekozilla Text replacement - "image_caption" to "caption"
- 23:0523:05, 8 June 2025 diff hist +5,755 N Module:Category handler/config Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------..." current
- 23:0523:05, 8 June 2025 diff hist −6 m Reflex Games Discord Text replacement - "image_caption" to "caption"
- 23:0323:03, 8 June 2025 diff hist −6 m Viral Threat Text replacement - "image_caption" to "caption"
- 23:0323:03, 8 June 2025 diff hist −6 m Dance of Death Text replacement - "image_caption" to "caption"
- 23:0323:03, 8 June 2025 diff hist +122 RLWiki:Templates and Modules →Documentation: Added extras
- 22:5822:58, 8 June 2025 diff hist −6 m Rolling Sky Discord Text replacement - "image_caption" to "caption"
- 22:5822:58, 8 June 2025 diff hist −6 m Rolling Lounge SMP Text replacement - "image_caption" to "caption"
- 22:5822:58, 8 June 2025 diff hist −6 m Ultimate PC Collection Text replacement - "image_caption" to "caption"
- 22:5822:58, 8 June 2025 diff hist +1,974 N Module:Message box/tmbox.css Created page with "→{{pp|small=y}}: .tmbox { margin: 4px 0; border-collapse: collapse; border: 1px solid #c0c090; →Default "notice" gray-brown: background-color: #f8eaba; box-sizing: border-box; } →For the "small=yes" option.: .tmbox.mbox-small { font-size: 88%; line-height: 1.25em; } .tmbox-speedy { border: 2px solid #b32424; →Red: background-color: #fee7e6; →Pink: } .tmbox-delete { border: 2px solid #b32424; →Red: } .tmbox-content { bord..." current
- 22:5722:57, 8 June 2025 diff hist −6 m Diamond Eyes - Flutter Text replacement - "image_caption" to "caption"
- 22:5722:57, 8 June 2025 diff hist −6 m Lost (RSR) Text replacement - "image_caption" to "caption"
- 22:5722:57, 8 June 2025 diff hist −6 m Reality Text replacement - "image_caption" to "caption"
- 22:5722:57, 8 June 2025 diff hist +1,852 N Module:Message box/ombox.css Created page with "→{{pp|small=y}}: .ombox { margin: 4px 0; border-collapse: collapse; border: 1px solid #a2a9b1; →Default "notice" gray: background-color: var(--background-color-neutral-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } →For the "small=yes" option.: .ombox.mbox-small { font-size: 88%; line-height: 1.25em; } .ombox-speedy { border: 2px solid #b32424; →Red: background-color: #fee7e6; →Pink: } .ombox-de..." current
- 22:5722:57, 8 June 2025 diff hist −6 m Rolling Sky Remake Text replacement - "image_caption" to "caption"
- 22:5722:57, 8 June 2025 diff hist −6 m Careless Whisper Text replacement - "image_caption" to "caption"
- 22:5722:57, 8 June 2025 diff hist +1,842 N Module:Message box/imbox.css Created page with "→{{pp|small=y}}: .imbox { margin: 4px 0; border-collapse: collapse; border: 3px solid #36c; →Default "notice" blue: background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; } →For imboxes inside imbox-text cells.: .imbox .mbox-text .imbox { margin: 0 -0.5em; →0.9 - 0.5 = 0.4em left/right.: →TODO: Still needed?: display: block; →Fix for webkit to force 100% width.: } .imbox-speedy { border: 3px..." current
- 22:5622:56, 8 June 2025 diff hist +1,084 N Module:Message box/fmbox.css Created page with "→{{pp|small=y}}: .fmbox { clear: both; margin: 0.2em 0; width: 100%; border: 1px solid #a2a9b1; background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } .fmbox-warning { border: 1px solid #bb7070; →Dark pink: background-color: #ffdbdb; →Pink: } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { border: none; →@noflip: padding: 0.25em..." current