Jump to content

User contributions for Admin

A user with 412 edits. Account created on 24 December 2025.
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)

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

(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)