User contributions for Admin
Appearance
30 May 2026
- 19:0919:09, 30 May 2026 diff hist −770 Mippedia Community No edit summary current Tags: Manual revert Mobile edit Mobile web edit
- 19:0719:07, 30 May 2026 diff hist +89 N Template:(! Created page with "<includeonly>{|</includeonly><noinclude><nowiki>{|</nowiki>{{Documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 19:0719:07, 30 May 2026 diff hist +46 N Template:!) Created page with "|}<noinclude> {{Documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 19:0519:05, 30 May 2026 diff hist +770 Mippedia Community No edit summary Tags: Reverted Mobile edit Mobile web edit
- 18:5118:51, 30 May 2026 diff hist +314 N Template:Infobox/styles-images.css Created page with "→{{pp-template}}: @media screen { html.skin-theme-clientpref-night .infobox-has-images-with-white-backgrounds img { background: white; } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .infobox-has-images-with-white-backgrounds img { background: white; } }" current Tags: Mobile edit Mobile web edit
- 18:3618:36, 30 May 2026 diff hist +400 N Template:Start date Created page with "<includeonly>{{#invoke:Date time|generate_date}}<!-- Tracking categories -->{{#invoke:Check for unknown parameters|check|unknown={{Main other|_VALUE_}}|preview=Page using Template:Start date with unknown parameter "_VALUE_"|showblankpositional=1| 1 | 2 | 3 | 4 | 5 | 6 | 7 | df }}</includeonly><noinclude> {{documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 18:3518:35, 30 May 2026 diff hist +1,479 N Template:Infobox album/link Created page with "{{#switch: {{lc:{{delink|{{{1|}}}}}}}<!-- -->|studio album|studio|album |tribute|tribute album |cover album|cover |double album = Studio album |demo = Demo album<!-- -->|extended play|ep = EP |single album = Single album<!-- -->|live album|live..." current Tags: Mobile edit Mobile web edit
- 18:2718:27, 30 May 2026 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 Tags: Mobile edit Mobile web edit
- 18:2618:26, 30 May 2026 diff hist +104 N Template:Delink Created page with "{{<includeonly>safesubst:</includeonly>#invoke:delink|delink}}<noinclude> {{documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 18:2418:24, 30 May 2026 diff hist +1,446 N Module:MultiReplace Created page with "local p = {} local function MultiReplace(args) local input = args[1] or "{{{1}}}" local plain = args.plain == "yes" local i = 1 local changeList = {} while args[i * 2] do local change = {pattern = args[i * 2], repl = args[i * 2 + 1]} if not change.repl then return require('Module:Error').error{ 'MultiReplace: Unpaired argument: <code>' .. (i * 2) .. ' = ' .. mw.text.nowiki(change.pattern) .. '</code>' } end changeList[i] = change i = i + 1 end..." current Tags: Mobile edit Mobile web edit
- 18:2318:23, 30 May 2026 diff hist +133 N Template:Encodefirst Created page with "{{#invoke:MultiReplace|main|1={{{1}}}|2=^:|3=:|4=^;|5=;|6=^*|7=*|8=^#|9=#}}<noinclude> {{Documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 18:2318:23, 30 May 2026 diff hist +3,124 N Module:Hms Created page with "local p = {} function p._error( error_str ) return 'Category:Duration with input error<strong class="error">Error in Module:Duration: ' .. error_str .. '</strong>' end function p.main(frame) local args = require('Module:Arguments').getArgs(frame, {wrappers = {'Template:Duration', 'Template:Duration/sandbox'}}) local tmp = args.duration or args[1] or '' local duration = {} if tonumber(args[1]) or args[2] or args[3] then if args[4] then return p._error('Par..." current Tags: Mobile edit Mobile web edit
- 18:2218:22, 30 May 2026 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 Tags: Mobile edit Mobile web edit
- 18:2018:20, 30 May 2026 diff hist +761 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. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbo..." current Tags: Mobile edit Mobile web edit
- 18:2018:20, 30 May 2026 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 Tags: Mobile edit Mobile web edit
- 18:1818:18, 30 May 2026 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 Tags: Mobile edit Mobile web edit
- 18:1718:17, 30 May 2026 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 Tags: Mobile edit Mobile web edit
- 18:1618:16, 30 May 2026 diff hist +75 N Template:Category handler Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 18:1518:15, 30 May 2026 diff hist +1,068 N Template:Infobox album/color Created page with "<includeonly>{{#switch: {{lc:{{delink|{{{1|}}}}}}}<!-- -->|studio album|studio|album |tribute|tribute album |cover album|cover |double album |demo = lightsteelblue<!-- -->|extended play|ep |single album = #F4BF92<!-- -->|live album|live = burlywood<!-- -->|compilation album|compilation |greatest hits|greatest |box set|box |remix album|r..." current Tags: Mobile edit Mobile web edit
- 18:1418:14, 30 May 2026 diff hist +5,742 N Module:Unsubst-infobox Created page with "local p = {} local specialParams = { ['$params'] = 'all parameters', ['$extra'] = 'extra parameters', ['$set1'] = 'parameter set 1', ['$set2'] = 'parameter set 2', ['$set3'] = 'parameter set 3', ['$aliases'] = 'parameter aliases', ['$indent'] = 'indent', ['$flags'] = 'flags', ['$B'] = 'template content', ['$template-name'] = 'template invocation name override' } p[''] = function ( frame ) if not frame:getParent() then error( '{{#invoke:Unsubst-infobox|}} m..." current Tags: Mobile edit Mobile web edit
- 18:1318:13, 30 May 2026 diff hist +7,242 N Template:Infobox album Created page with "{{<includeonly>safesubst:</includeonly>#invoke:Unsubst-infobox||$params=italic_title,name,type,longtype,artist,cover,imageclass,border,alt,caption,released,recorded,venue,studio,genre,length,language,label,director,producer,compiler,chronology,prev_title,prev_year,year,next_title,next_year,misc|$extra=italic_title,longtype,border,caption,language,director,compiler,chronology,year,misc|$aliases=italic title>italic_title,Italic title>italic_title,Name>name,Type>type,image>..." current Tags: Mobile edit Mobile web edit
- 09:3309:33, 30 May 2026 diff hist −268 MediaWiki:Common.css No edit summary current Tags: Mobile edit Mobile web edit
- 09:2309:23, 30 May 2026 diff hist +937 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 09:1309:13, 30 May 2026 diff hist +33 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 09:1009:10, 30 May 2026 diff hist −966 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
29 May 2026
- 22:3222:32, 29 May 2026 diff hist +20 Rumi Haitami No edit summary current Tags: Mobile edit Mobile web edit
- 22:3122:31, 29 May 2026 diff hist +479 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 22:2322:23, 29 May 2026 diff hist +368 N Template:Subinfobox bodystyle/styles.css Created page with "→{{pp-protected|reason=match parent|small=yes}}: →* Templatestyles implementation of the styling from {{Subinfobox bodystyle}}: .subinfobox table { background-color: transparent; color: var( --color-base, #202122 ); border-collapse:collapse; border-spacing:0; border:none !important; width:100%; margin:0; font-size:100%; clear:none; float:none; }" current Tags: Mobile edit Mobile web edit
- 22:2222:22, 29 May 2026 diff hist +232 N Template:Subinfobox bodystyle Created page with "background-color: transparent; color: var( --color-base, #202122 ); border-collapse:collapse; border-spacing:0px; border:none; width:100%; margin:0px; font-size:100%; clear:none; float:none<noinclude> {{documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 22:2122:21, 29 May 2026 diff hist +4,899 N Module:Sidebar/styles.css Created page with "→{{pp-template}}: →TODO: Invert width design to be "mobile first": .sidebar { →TODO: Ask if we should have max-width 22em instead: width: 22em; →@noflip: float: right; →@noflip: clear: right; →@noflip: margin: 0.5em 0 1em 1em; background: var(--background-color-neutral-subtle, #f8f9fa); border: 1px solid var(--border-color-base, #a2a9b1); padding: 0.2em; text-align: center; line-height: 1.4em; font-size: 88%; border-collapse: collap..." current Tags: Mobile edit Mobile web edit
- 22:2022:20, 29 May 2026 diff hist +1,869 N Module:Sidebar/configuration Created page with "return { i18n = { child_yes = 'yes', float_none = 'none', float_left = 'left', wrap_true = 'true', navbar_none = 'none', navbar_off = 'off', default_list_title = 'List', title_not_to_add_navbar = 'Template:Sidebar', collapse_title_not_to_add_navbar = 'Template:Sidebar with collapsible lists', templatestyles = { sidebar = 'Module:Sidebar/styles.css', hlist = 'Hlist/styles.css', plainlist = 'Plainlist/styles.css', subinfobox = 'Subinfobox b..." current Tags: Mobile edit Mobile web edit
- 22:1922:19, 29 May 2026 diff hist +13,074 N Module:Sidebar Created page with "require('strict') local cfg = mw.loadData('Module:Sidebar/configuration') local p = {} local getArgs = require('Module:Arguments').getArgs --[[ Categorizes calling templates and modules with a 'style' parameter of any sort for tracking to convert to TemplateStyles. TODO after a long cleanup: Catch sidebars in other namespaces than Template and Module. TODO would probably want to remove /log and /archive as CS1 does ]] local function categorizeTemplatesWithInlineStyle..." current Tags: Mobile edit Mobile web edit
- 22:1822:18, 29 May 2026 diff hist +68 N Template:Sidebar Created page with "{{#invoke:Sidebar|sidebar}}<noinclude> {{documentation}}</noinclude>" current Tags: Mobile edit Mobile web edit
- 22:1722:17, 29 May 2026 diff hist +6,119 N Module:Color contrast/colors Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511..." current Tags: Mobile edit Mobile web edit
- 22:1622:16, 29 May 2026 diff hist +6,967 N Module:Color contrast Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *..." current Tags: Mobile edit Mobile web edit
- 22:1422:14, 29 May 2026 diff hist +2,515 N Module:Navbox/styles.css Created page with "→{{pp|small=y}}: .navbox { box-sizing: border-box; border: 1px solid #a2a9b1; width: 100%; clear: both; font-size: 88%; text-align: center; padding: 1px; margin: 1em auto 0; →Prevent preceding content from clinging to navboxes: } .navbox .navbox { margin-top: 0; →No top margin for nested navboxes: } .navbox + .navbox-styles + .navbox, →category positions are wrapped in an "empty" span in Parsoid [[phab:T378906]]: .navbox + span.mw-empty-elt +..." current Tags: Mobile edit Mobile web edit
- 22:1422:14, 29 May 2026 diff hist +5,537 N Module:Navbox/configuration Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = {..." current Tags: Mobile edit Mobile web edit
- 22:1322:13, 29 May 2026 diff hist +29,441 N Module:Navbox Created page with "require('strict') local p = {} local cfg = mw.loadData('Module:Navbox/configuration') local inArray = require("Module:TableTools").inArray local getArgs -- lazily initialized local hiding_templatestyles = {} -- global passthrough variables local passthrough = { [cfg.arg.above]=true,[cfg.arg.aboveclass]=true,[cfg.arg.abovestyle]=true, [cfg.arg.basestyle]=true, [cfg.arg.below]=true,[cfg.arg.belowclass]=true,[cfg.arg.belowstyle]=true, [cfg.arg.bodyclass]=true, [cfg.a..." current Tags: Mobile edit Mobile web edit
- 22:1122:11, 29 May 2026 diff hist +94 N Template:Navbox Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 22:0622:06, 29 May 2026 diff hist +271 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 21:5421:54, 29 May 2026 diff hist +1 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 21:4421:44, 29 May 2026 diff hist +34 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 21:3721:37, 29 May 2026 diff hist +11 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 21:3221:32, 29 May 2026 diff hist +2 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 21:3021:30, 29 May 2026 diff hist −9,065 MediaWiki:Common.css No edit summary Tags: Mobile edit Mobile web edit
- 21:2121:21, 29 May 2026 diff hist +1 Template:Fmbox No edit summary current Tags: Mobile edit Mobile web edit
- 21:2021:20, 29 May 2026 diff hist +1,286 N Module:Message box/fmbox.css Created page with "→{{pp|small=y}}: .fmbox { clear: both; →this sheet does not require overflow-x because of this clear: margin: 0.2em 0; 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-..." current Tags: Mobile edit Mobile web edit
- 21:1921:19, 29 May 2026 diff hist +173 N Template:Fmbox Created page with "{{#invoke:Message box|fmbox|plainlinks={{{plainlinks|yes}}}}}<noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>" Tags: Mobile edit Mobile web edit
- 21:1821:18, 29 May 2026 diff hist +470 N Template:FULLROOTPAGENAME Created page with "{{ safesubst:<noinclude/>#if: {{ safesubst:<noinclude/>Ns has subpages | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{ safesubst:<noinclude/>NAMESPACE:{{{1}}}}}|{{ safesubst:<noinclude/>NAMESPACE}}}} }} | {{ safesubst:<noinclude/>#titleparts:{{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}}|1}} | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}} }}<noinclude> {{documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit
- 21:1721:17, 29 May 2026 diff hist +103 N Template:Pp-protected Created page with "<includeonly>{{#invoke:Protection banner|main}}</includeonly><noinclude> {{Documentation}} </noinclude>" current Tags: Mobile edit Mobile web edit