Main public logs
Combined display of all available logs of Mippedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:07, 30 May 2026 Admin talk contribs created page Template:(! (Created page with "<includeonly>{|</includeonly><noinclude><nowiki>{|</nowiki>{{Documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 19:07, 30 May 2026 Admin talk contribs created page Template:!) (Created page with "|}<noinclude> {{Documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 18:51, 30 May 2026 Admin talk contribs created page 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; } }") Tags: Mobile edit Mobile web edit
- 18:48, 30 May 2026 Admin talk contribs created page Template:Infobox/mobileviewfix.css (Created page with "body.skin-minerva .infobox table { display: table; } body.skin-minerva .infobox caption { display: table-caption; }") Tags: Mobile edit Mobile web edit
- 18:36, 30 May 2026 Admin talk contribs created page 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>") Tags: Mobile edit Mobile web edit
- 18:35, 30 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 18:27, 30 May 2026 Admin 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("%[%[.-...") Tags: Mobile edit Mobile web edit
- 18:26, 30 May 2026 Admin talk contribs created page Template:Delink (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:delink|delink}}<noinclude> {{documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 18:24, 30 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 18:23, 30 May 2026 Admin talk contribs created page Template:Encodefirst (Created page with "{{#invoke:MultiReplace|main|1={{{1}}}|2=^:|3=:|4=^;|5=;|6=^*|7=*|8=^#|9=#}}<noinclude> {{Documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 18:23, 30 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 18:22, 30 May 2026 Admin 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. ----------------------------...") Tags: Mobile edit Mobile web edit
- 18:20, 30 May 2026 Admin 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. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbo...") Tags: Mobile edit Mobile web edit
- 18:20, 30 May 2026 Admin 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...") Tags: Mobile edit Mobile web edit
- 18:18, 30 May 2026 Admin 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(...") Tags: Mobile edit Mobile web edit
- 18:17, 30 May 2026 Admin 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...") Tags: Mobile edit Mobile web edit
- 18:16, 30 May 2026 Admin talk contribs created page Template:Category handler (Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 18:15, 30 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 18:14, 30 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 18:13, 30 May 2026 Admin talk contribs created page 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>...") Tags: Mobile edit Mobile web edit
- 00:16, 30 May 2026 User account JeannieWayn talk contribs was created
- 22:23, 29 May 2026 Admin talk contribs created page 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; }") Tags: Mobile edit Mobile web edit
- 22:22, 29 May 2026 Admin talk contribs created page 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>") Tags: Mobile edit Mobile web edit
- 22:21, 29 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 22:20, 29 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 22:19, 29 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 22:18, 29 May 2026 Admin talk contribs created page Template:Sidebar (Created page with "{{#invoke:Sidebar|sidebar}}<noinclude> {{documentation}}</noinclude>") Tags: Mobile edit Mobile web edit
- 22:17, 29 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 22:16, 29 May 2026 Admin talk contribs created page 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 *...") Tags: Mobile edit Mobile web edit
- 22:14, 29 May 2026 Admin talk contribs created page 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 +...") Tags: Mobile edit Mobile web edit
- 22:14, 29 May 2026 Admin talk contribs created page 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 = {...") Tags: Mobile edit Mobile web edit
- 22:13, 29 May 2026 Admin talk contribs created page 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...") Tags: Mobile edit Mobile web edit
- 22:11, 29 May 2026 Admin talk contribs created page Template:Navbox (Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 21:20, 29 May 2026 Admin talk contribs created page 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-...") Tags: Mobile edit Mobile web edit
- 21:19, 29 May 2026 Admin talk contribs created page 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:18, 29 May 2026 Admin talk contribs created page 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>") Tags: Mobile edit Mobile web edit
- 21:17, 29 May 2026 Admin talk contribs created page Template:Pp-protected (Created page with "<includeonly>{{#invoke:Protection banner|main}}</includeonly><noinclude> {{Documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 21:16, 29 May 2026 Admin talk contribs created page Template:Editnotice/styles.css (Created page with "{{pp-protected|small=yes}}: * Originally copied from [[Module:Message box/fmbox.css]] as base on 2025/09/06: * Community consensus at [[Special:Diff/1317496908]]: @media screen and (max-width: 479px) { Target smartphones: .editnotice .mbox-image, Stack icon and text vertically: .editnotice .mbox-text, Make the font size normal: .editnotice .mbox-imageright, .editnotice-header, .editnotice-header span { fo...") Tags: Mobile edit Mobile web edit
- 21:15, 29 May 2026 Admin talk contribs created page Template:Editnotice (Created page with "{{#ifeq:{{FULLROOTPAGENAME}}|Template:Editnotices |{{Editnotice/notice |expiry={{{expiry|¬}}} |redirect={{{redirect|}}} }} }}{{#ifexpr:{{#ifeq:{{FULLROOTPAGENAME}}|Template:Editnotices |1 |0 }}+{{#switch:{{{expiry|¬}}} |indefinite = 1 | |¬ = 1 <!-- Expiry not specified --> |#default = {{#iferror:{{#time:U|{{{expiry}}}}} |0 <!-- Invalid expiry time --> |{{#ifexpr:{{#time:U|{{{expiry}}}}}-{{#time:U|{{CURRENTTIMESTAMP}}}}>0 |1 <!--...") Tags: Mobile edit Mobile web edit
- 21:06, 29 May 2026 Admin talk contribs created page Template:MONTHNUMBER (Created page with "<includeonly>{{safesubst:<noinclude/>#if:{{{1|}}} |{{safesubst:<noinclude/>#switch:{{safesubst:<noinclude/>lc:{{{1}}}}} |january|jan=1 |february|feb=2 |march|mar=3 |apr|april=4 |may=5 |june|jun=6 |july|jul=7 |august|aug=8 |september|sep|sept=9 |october|oct=10 |november|nov=11 |december|dec=12 |{{safesubst:<noinclude/>#ifexpr:{{{1}}}<0 |{{safesubst:<noinclude/>#ifexpr:(({{{1}}})round 0)!=({{{1}}}) |{{safesubst:<noinclude/>#expr:12-(((0.5-...") Tags: Mobile edit Mobile web edit
- 21:03, 29 May 2026 Admin talk contribs created page Template:Efn (Created page with "<includeonly>{{safesubst<noinclude />:#if:{{{name|}}} |{{#tag:ref|{{{1|{{{reference|{{{content|{{{text|}}}}}}}}}}}}|name={{{name|}}}|group={{safesubst<noinclude />:#switch: {{{group|}}} | note | upper-alpha | upper-roman | lower-alpha | lower-greek | lower-roman = {{{group|}}} | #default = lower-alpha }}}} |{{#tag:ref|{{{1|{{{reference|{{{content|{{{text|}}}}}}}}}}}}|group={{safesubst<noinclude />:#switch: {{{group|}}} | note | up...") Tags: Mobile edit Mobile web edit
- 21:00, 29 May 2026 Admin talk contribs created page Template:Trim (Created page with "<includeonly>{{safesubst:#if:1|{{{1|}}}}}</includeonly><noinclude> {{Documentation}} </noinclude>") Tags: Mobile edit Mobile web edit
- 21:00, 29 May 2026 Admin talk contribs created page Template:Time ago (Created page with "{{#invoke:Time ago|main}}<noinclude> {{documentation}} <!-- Categories go in the /doc subpage and interwikis go in Wikidata. --> </noinclude>") Tags: Mobile edit Mobile web edit
- 20:59, 29 May 2026 Admin talk contribs created page Template:MONTHNAME (Created page with "<includeonly>{{#if:{{{1|}}}|{{#switch:{{MONTHNUMBER|{{{1}}}}}|1=January|2=February|3=March|4=April|5=May|6=June|7=July|8=August|9=September|10=October|11=November|12=December|Incorrect required parameter 1=''month''!}}|Missing required parameter 1=''month''!}}</includeonly><noinclude> {{Documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>") Tags: Mobile edit Mobile web edit
- 20:57, 29 May 2026 Admin talk contribs created page Module:Time ago (Created page with "-- Implement Template:Time ago local numberSpell, yesno -- lazy load function numberSpell(arg) numberSpell = require('Module:NumberSpell')._main return numberSpell(arg) end function yesno(arg) yesno = require('Module:Yesno') return yesno(arg) end local p = {} -- Table to convert entered text values to numeric values. local timeText = { ['seconds'] = 1, ['minutes'] = 60, ['hours'] = 3600, ['days'] = 86400, ['weeks'] = 604800, ['months'] = 2629800, --...") Tags: Mobile edit Mobile web edit
- 20:57, 29 May 2026 Admin talk contribs created page Module:Date time (Created page with "--[[ Module:Date time – Date formatting and validation module. This module provides functions for validating and formatting dates in templates such as {{Start date}}, {{End date}}, {{Start date and age}}, and {{End date and age}}. It handles: - Validation of date components (year, month, day) - Validation of time components (hour, minute, second) - Timezone formatting and validation - Generation of appropriate hCalendar microformat markup - "time-ago" calculations D...") Tags: Mobile edit Mobile web edit
- 20:56, 29 May 2026 Admin talk contribs created page Template:Start date and age (Created page with "<includeonly><!-- IMPLEMENTATION OF DATE -->{{#if: {{{1|}}}<!-- -->|{{#if: {{{2|}}}<!-- -->|{{#if: {{{3|}}}<!-- -->|{{#ifeq:{{yesno|{{{df|no}}}}}|yes<!-- -->|{{#expr:{{{3}}}}} {{MONTHNAME|{{{2}}}}}<!-- -->|{{MONTHNAME|{{{2}}}}} {{#expr:{{{3}}}}},<!-- -->}} {{{1}}}<!-- -->|{{MONTHNAME|{{{2}}}}} {{{1}}}<!-- -->}}<!-- -->|{{{1}}}<!-- -->}}<!-- --><span class="noprint">{{#ife...") Tags: Mobile edit Mobile web edit
- 20:54, 29 May 2026 Admin talk contribs moved page Template:Hidden begin/styles.css to Template:Begin hidden/styles.css without leaving a redirect Tags: Mobile edit Mobile web edit
- 20:52, 29 May 2026 Admin talk contribs moved page Template:End hidden to Template:Hidden end Tags: Mobile edit Mobile web edit
- 20:51, 29 May 2026 Admin talk contribs moved page Template:Begin hidden/styles.css to Template:Hidden begin/styles.css without leaving a redirect Tags: Mobile edit Mobile web edit