User contributions for UwUbread
5 October 2025
- 17:3517:35, 5 October 2025 diff hist +1 Gunnar Rose No edit summary
- 17:3417:34, 5 October 2025 diff hist +180 Gunnar Rose No edit summary
- 17:3317:33, 5 October 2025 diff hist +114 Gunnar Rose Undo revision 148 by Penisman (talk) because it was stupid Tag: Undo
- 17:2917:29, 5 October 2025 diff hist +24 Gunnar Rose No edit summary
- 17:2817:28, 5 October 2025 diff hist +115 Gunnar Rose No edit summary
- 17:2817:28, 5 October 2025 diff hist +39 N File:Gunnar Rose.jpg No edit summary current
- 17:2517:25, 5 October 2025 diff hist 0 Penisman No edit summary
- 17:2517:25, 5 October 2025 diff hist +17 Penisman No edit summary
- 17:2217:22, 5 October 2025 diff hist −17 Main Page No edit summary
- 17:2117:21, 5 October 2025 diff hist +14 N File:Kris get the banana.webp No edit summary current
- 17:1917:19, 5 October 2025 diff hist +6 N Gunnar Rose Created page with "Person"
- 17:1917:19, 5 October 2025 diff hist +4 Penisman No edit summary
- 16:3416:34, 5 October 2025 diff hist −4 MediaWiki:Sidebar No edit summary
- 16:3416:34, 5 October 2025 diff hist −3 MediaWiki:Sidebar No edit summary
- 15:1215:12, 5 October 2025 diff hist +93 Main Page No edit summary
- 15:0515:05, 5 October 2025 diff hist 0 Main Page No edit summary Tag: Visual edit: Switched
- 01:4801:48, 5 October 2025 diff hist −6 Main Page No edit summary Tag: Visual edit
- 01:1701:17, 5 October 2025 diff hist +11 Main Page No edit summary
4 October 2025
- 16:0816:08, 4 October 2025 diff hist +72 Main Page No edit summary Tag: Visual edit
- 16:0716:07, 4 October 2025 diff hist +18 N File:HATSUNE MIKI.webp No edit summary current
- 14:5714:57, 4 October 2025 diff hist +15 Main Page No edit summary
- 14:5614:56, 4 October 2025 diff hist −39 Main Page No edit summary
- 14:5514:55, 4 October 2025 diff hist 0 Wikipedia No edit summary current
- 14:5514:55, 4 October 2025 diff hist 0 Wikipedia No edit summary
- 14:5514:55, 4 October 2025 diff hist +14 Wikipedia No edit summary
- 05:1105:11, 4 October 2025 diff hist −4,180 UwU No edit summary
- 04:5704:57, 4 October 2025 diff hist −244 UwU No edit summary
- 04:5304:53, 4 October 2025 diff hist +2 Main Page No edit summary
- 04:5304:53, 4 October 2025 diff hist +2 Main Page No edit summary
- 04:5304:53, 4 October 2025 diff hist +4 Wikipedia No edit summary
- 04:5304:53, 4 October 2025 diff hist +155 N Wikipedia Created page with "Wikipedia is a free encyclopedia that anyone can edit created by the Wikimedia Foundation. <strong>It is the worse alternative to using Wiki Bread</strong>"
- 04:5104:51, 4 October 2025 diff hist +25 Main Page No edit summary
- 04:4904:49, 4 October 2025 diff hist +17 N Uwu Redirected page to UwU current Tag: New redirect
- 04:2204:22, 4 October 2025 diff hist +1,156 N Module:Error Created page with "-- This module implements {{error}}. local p = {} function p._error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :cssText(args.style) :wikitext(tostring(args.message or args[1] or error('no message specified',..." current
- 04:2204:22, 4 October 2025 diff hist +102 N Template:Error Created page with "{{#invoke:Error|error|{{{message|{{{1}}}}}}|tag={{{tag|}}}}}<noinclude> {{documentation}} </noinclude>" current
- 04:2104:21, 4 October 2025 diff hist +148 N Template:Category handler Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, and interwikis to Wikidata. --> </noinclude>" current
- 04:2004:20, 4 October 2025 diff hist +6,484 N Module:Format link Created page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(..." current
- 04:1904:19, 4 October 2025 diff hist +46,537 N Module:Protection banner/config Created page with "-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that appear..." current
- 04:1904:19, 4 October 2025 diff hist +7,325 N Module:Hatnote list Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd..." current
- 04:1804:18, 4 October 2025 diff hist +1,494 N Module:Effective protection expiry Created page with "local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'auto..." current
- 04:1704:17, 4 October 2025 diff hist +4,368 N Module:Redirect hatnote Created page with "--[[ -- This module produces a "redirect" hatnote. It looks like this: -- '"X" redirects here. For other uses, see Y.' -- It implements the {{redirect}} template. --]] local mHatnote = require('Module:Hatnote') local mHatList = require('Module:Hatnote list') local mArguments --lazily initialize local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local p = {} ------------------------------..." current
- 04:1504:15, 4 October 2025 diff hist +6,129 N Module:Hatnote Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules...." current
- 04:1404:14, 4 October 2025 diff hist +3,660 N Module:Effective protection level Created page with "local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local level..." current
- 04:1304:13, 4 October 2025 diff hist +2,544 N Module:File link Created page with "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in..." current
- 04:1104:11, 4 October 2025 diff hist +26,590 N Module:Protection banner Created page with "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('strict') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules and..." current
- 04:0904:09, 4 October 2025 diff hist +463 Template:Dated maintenance category No edit summary current
- 04:0804:08, 4 October 2025 diff hist +197 N Template:Dated maintenance category Created page with "{{Dated maintenance category |onlyarticles=yes |1={{{1|}}} |2={{{2|}}} |3={{{3|}}} |4={{{4|}}} |5={{{5|}}} }}<noinclude> {{documentation|Template:Dated maintenance category/doc}} </noinclude>" Tag: Recreated
- 04:0704:07, 4 October 2025 diff hist +197 N Template:DMCA Created page with "{{Dated maintenance category |onlyarticles=yes |1={{{1|}}} |2={{{2|}}} |3={{{3|}}} |4={{{4|}}} |5={{{5|}}} }}<noinclude> {{documentation|Template:Dated maintenance category/doc}} </noinclude>" current
- 04:0604:06, 4 October 2025 diff hist +640 N Module:Pagetype/rfd Created page with "-- This page contains a table of all RfD templates and their -- redirects. Templates names are capitalized, and the Template: prefix is -- removed. Templates are grouped with the main template first, followed by -- its redirects. return { -- Template forms (these should be substituted so we should rarely see these) ["Redirect for discussion"] = true, ["RFD"] = true, ["RfD"] = true, ["Rfd1"] = true, ["Rfd-t"] = true, ["Rfd"] = true, ["Rfd-NPF"] = true, ["..." current
- 03:5803:58, 4 October 2025 diff hist +3,948 N Module:Unsubst Created page with "local checkType = require('libraryUtil').checkType local p = {} local BODY_PARAM = '$B' local specialParams = { ['$params'] = 'parameter list', ['$aliases'] = 'parameter aliases', ['$flags'] = 'flags', ['$B'] = 'template content', ['$template-name'] = 'template invocation name override', } function p.main(frame, body) -- If we are substing, this function returns a template invocation, and if -- not, it returns the template body. The template body can be specif..." current