Main public logs
Appearance
Combined display of all available logs of Rolling Lounge Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:16, 8 June 2025 AZMindroma talk contribs created page 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({...")
- 23:16, 8 June 2025 AZMindroma talk contribs created page 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("%[%[.-...")
- 23:11, 8 June 2025 AZMindroma talk contribs created page 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 ---------------------------------------------------------------------------...")
- 23:11, 8 June 2025 AZMindroma talk contribs created page 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...")
- 23:09, 8 June 2025 AZMindroma talk contribs created page 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 "...")
- 23:08, 8 June 2025 AZMindroma talk contribs created page 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...")
- 23:07, 8 June 2025 AZMindroma talk contribs created page 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...")
- 23:07, 8 June 2025 AZMindroma talk contribs created page 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. -- --...")
- 23:06, 8 June 2025 AZMindroma talk contribs created page 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(...")
- 23:05, 8 June 2025 AZMindroma talk contribs created page 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. ----------------------------...")
- 22:58, 8 June 2025 AZMindroma talk contribs created page 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...")
- 22:57, 8 June 2025 AZMindroma talk contribs created page 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...")
- 22:57, 8 June 2025 AZMindroma talk contribs created page 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...")
- 22:56, 8 June 2025 AZMindroma talk contribs created page 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...")
- 22:55, 8 June 2025 AZMindroma talk contribs created page Module:Message box/cmbox.css (Created page with "{{pp|small=y}}: .cmbox { margin: 3px 0; border-collapse: collapse; border: 1px solid #a2a9b1; background-color: #dfe8ff; Default "notice" blue: box-sizing: border-box; necessary when embedded in other templates like Category:Pending_AfC_submissions: color: var( --color-base ); } .cmbox-speedy { border: 4px solid #b32424; Red: background-color: #ffdbdb; Pink: } .cmbox-delete { background-color: #ffdbdb; Pink: ...")
- 22:54, 8 June 2025 AZMindroma talk contribs created page Module:Message box/ambox.css (Created page with "{{pp|small=y}}: .ambox { border: 1px solid #a2a9b1; @noflip: border-left: 10px solid #36c; Default "notice" blue: background-color: #fbfbfb; box-sizing: border-box; } Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed: .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: rais...")
- 22:45, 8 June 2025 AZMindroma talk contribs created page Module:Message box/configuration (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
- 14:18, 8 June 2025 AZMindroma talk contribs created page Template:Infobox Person/doc (Made TemplateData)
- 12:17, 8 June 2025 AZMindroma talk contribs protected Main Page [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (High traffic page) (hist)
- 12:14, 8 June 2025 AZMindroma talk contribs created page RLWiki:Making your own infobox (Just copy and paste lol but itll be improved later) Tag: Visual edit: Switched
- 12:08, 8 June 2025 AZMindroma talk contribs created page User talk:AZMindroma/sandbox (lalala: new section) Tag: New topic
- 12:07, 8 June 2025 AZMindroma talk contribs created page User:AZMindroma/sandbox (Created page with "lalala lilili")
- 12:02, 8 June 2025 AZMindroma talk contribs created page Talk:CentiCodes (wikitables instead of tables: new section)
- 08:55, 8 June 2025 AZMindroma talk contribs created page User:AZMindroma (Just some games lol) Tags: Mobile edit Mobile web edit Advanced mobile edit
- 09:44, 6 June 2025 AZMindroma talk contribs created page Category:ShaneCV18 Levels (Created blank page)
- 09:39, 6 June 2025 AZMindroma talk contribs created page File:Rolling World Shortened.mp3
- 09:39, 6 June 2025 AZMindroma talk contribs uploaded File:Rolling World Shortened.mp3
- 09:36, 6 June 2025 AZMindroma talk contribs created page Template:Infobox Game (Created page with "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is ok too --> | caption = {{{caption|}}} <!-- Image caption --> | header1 = Game Information | label2...")
- 09:05, 6 June 2025 AZMindroma talk contribs deleted page Template:Infobox Server Era (content was: "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is...", and the only contributor was "AZMindroma" (talk))
- 09:04, 6 June 2025 AZMindroma talk contribs created page Template:Infobox Server Era (Created page with "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is ok too --> | caption = {{{caption|}}} <!-- Image caption --> | header1 = Era Information | label2...")
- 08:52, 6 June 2025 AZMindroma talk contribs created page Template:Infobox OfficialLevel (Created page with "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is ok too --> | caption = {{{caption|}}} <!-- Image caption --> | header1 = Level Information | label...")
- 09:04, 5 June 2025 AZMindroma talk contribs created page Category:Server Particularities (Created blank page)
- 20:51, 4 June 2025 AZMindroma talk contribs created page Template:Navbox timeline (From Wikipedia (https://en.wikipedia.org/wiki/Template:Navbox_timeline))
- 20:51, 4 June 2025 AZMindroma talk contribs created page Module:Navbox timeline/styles.css (From Wikipedia (https://en.wikipedia.org/wiki/Module:Navbox_timeline/styles.css))
- 20:42, 4 June 2025 AZMindroma talk contribs created page Module:Navbox timeline (From Wikipedia (https://en.wikipedia.org/wiki/Module:Navbox_timeline))
- 20:37, 4 June 2025 AZMindroma talk contribs created page Template:Era Timeline (Created page with "{{Timeline | decades = no | name = {{FULLPAGENAME}} | state = uncollapsed | title = Rolling Lounge Eras | item1 = Reflex Games Discord | date1 = 2018-2018 | item2 = Rolling Sky Discord | date2 = 2018-2020 | item3 = Rolling Lounge Era | date3 = 2020-2024 | item4 = Rolling Lounge Part 1 | date4 = 2020-2020 | item5 = Rolling Lounge Part 2 | date5 = 2020-2023 | it...")
- 20:35, 4 June 2025 AZMindroma talk contribs created page Template:Infobox Era (Created page with "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is ok too --> | caption = {{{caption|}}} <!-- Image caption --> | header1 = Era Information | label2...")
- 20:28, 4 June 2025 AZMindroma talk contribs created page Template:Infobox Server (Created page with "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | above = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is ok too --> | caption = {{{caption|}}} <!-- Image caption --> | header1 = Server Information | labe...")
- 19:52, 4 June 2025 AZMindroma talk contribs created page File:Proxdxd03 Maze.wav
- 19:52, 4 June 2025 AZMindroma talk contribs uploaded File:Proxdxd03 Maze.wav
- 19:36, 4 June 2025 AZMindroma talk contribs created page Template:Proxdxd03 New Levels (Created page with "{{Navbox | name = Proxdxd03 New Levels | title = Other Levels by proxdxd03 | group1 = New Levels | list1 = Lost - Party of Doom - Maze }}")
- 19:19, 4 June 2025 AZMindroma talk contribs created page Category:Server Projects (Created blank page)
- 19:02, 4 June 2025 AZMindroma talk contribs created page Category:SMP (Created blank page)
- 17:40, 4 June 2025 AZMindroma talk contribs created page Template:Infobox SMP Settlement (Created page with "{{Infobox | headerstyle = {{#ifeq:{{{embed|}}}|yes||background-color:#ededed}} <!-- Makes sure the headers are darker --> | title = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} <!-- Title is the page name unless otherwise specified --> | image = {{#if:{{{image|}}}|[[File:{{{image}}}|frameless|alt={{{alt|{{{name}}}}}}]]}} <!-- Not adding images is ok too --> | caption = {{{caption|}}} <!-- Image caption --> | header1 = Settlement Information |...")
- 17:27, 4 June 2025 AZMindroma talk contribs created page Template:CentiCodes Ultimate NCS Collection (Created page with "{{Navbox | name = CentiCodes Ultimate NCS Collection | title = Ultimate NCS Collection | group1 = Main Levels | list1 = Falling - Flutter - Symbolism - Weakness - Feel Good - Delicious - Nekozilla - [[Lost Sky - Dreams pt. II (feat. Sara Skinner)|Dreams pt. II]...")
- 15:45, 4 June 2025 AZMindroma talk contribs created page File:RL10000.png (Uploaded by FrogB in #announcements (https://discord.com/channels/400983101507108874/400986110907383818/1376575472393130025))
- 15:45, 4 June 2025 AZMindroma talk contribs uploaded File:RL10000.png (Uploaded by FrogB in #announcements (https://discord.com/channels/400983101507108874/400986110907383818/1376575472393130025))
- 14:59, 4 June 2025 AZMindroma talk contribs deleted page RLWiki:Main Page/styles.css (content was: "{{pp|small=yes}}: .mp-box { border: 1px solid #aaa; all colors overriden on specific elements in @media screen: padding: 0 0.5em 0.5em; margin-top: 4px; } .mp-h2, body.skin-timeless .mp-h2 { Timeless needs a higher specificity: border: 1px solid #aaa; all colors overriden on specific elements in @media screen: margin: 0.5em 0; padding: 0.2em...", and the only contributor was "AZMindroma" (talk))
- 14:58, 4 June 2025 AZMindroma talk contribs created page RLWiki:Main Page/styles.css (Created page with "{{pp|small=yes}}: .mp-box { border: 1px solid #aaa; all colors overriden on specific elements in @media screen: padding: 0 0.5em 0.5em; margin-top: 4px; } .mp-h2, body.skin-timeless .mp-h2 { Timeless needs a higher specificity: border: 1px solid #aaa; all colors overriden on specific elements in @media screen: margin: 0.5em 0; padding: 0.2em 0.4em; font-size: 120%; font-weight: bold; font-family: inherit; } .mp-later { font-size: 85%; fon...")
- 14:58, 4 June 2025 AZMindroma talk contribs deleted page Main Page/styles.css (content was: "{{pp|small=yes}}: .mp-box { border: 1px solid #aaa; all colors overriden on specific elements in @media screen: padding: 0 0.5em 0.5em; margin-top: 4px; } .mp-h2, body.skin-timeless .mp-h2 { Timeless needs a higher specificity: border: 1px solid #aaa; all colors overriden on specific elements in @media screen: margin: 0.5em 0; padding: 0.2em...", and the only contributor was "AZMindroma" (talk))