User contributions for UwUbread
4 October 2025
- 03:1703:17, 4 October 2025 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
- 03:1503:15, 4 October 2025 diff hist −3 m Module:IPAc-en/phonemes No edit summary current
- 03:1403:14, 4 October 2025 diff hist +10,145 N Module:IPAc-en/phonemes Created page with "-- This module contains phoneme data for Module:IPAc-en. return { -- CONSONANTS { code = "b", label = "b", tooltip = "'b' in 'buy'", }, { code = "d", label = "d", tooltip = "'d' in 'dye'", }, { code = "dj", aliases = {"dy", "dʲ"}, label = "dj", tooltip = "/dj/: 'd' in 'dew'", }, { code = "dʒ", aliases = {"dZ", "ʤ"}, label = "dʒ", tooltip = "/dʒ/: 'j' in 'jam'", }, { code = "ð", aliases = {"D"}, label = "ð", toolti..."
- 03:1303:13, 4 October 2025 diff hist +817 N Module:IPAc-en/pronunciation Created page with "-- This module contains pronunciation-key data for Module:IPAc-en. return { { code = 'lang', text = 'English:' }, { code = 'pron', text = '' }, { code = 'local', text = 'locally' }, { code = 'ipa', text = 'IPA:' }, { code = 'also', text = 'also' }, { code = 'uk', text = 'UK:' }, { code = 'us', text = 'US:' }, { code = 'uklang', text = '[[Britis..." current
- 02:5002:50, 4 October 2025 diff hist +1,200 N Module:IPAc-en/data Created page with "-- This module processes data for Module:IPAc-en. It is intended to be -- loaded with mw.loadData. local PRONUNCIATION_MODULE = 'Module:IPAc-en/pronunciation' local PHONEME_MODULE = 'Module:IPAc-en/phonemes' local function makeData(oldData) local newData = {} for i, old in ipairs(oldData) do local new = {} for k, v in pairs(old) do if k ~= 'aliases' and k ~= 'code' then new[k] = v end end newData[old.code] = new if old.aliases then for i, a..." current
- 02:4902:49, 4 October 2025 diff hist +4,690 N Module:IPAc-en Created page with "-- This module implements Template:IPAc-en. local data = mw.loadData('Module:IPAc-en/data') local p = {} -- Global container for tracking categories local categoryHandler = require('Module:Category handler').main local categories = {} -- Trims whitespace from a string local function trim(s) return s:match('^%s*(.-)%s*$') end -- This implements Template:Nowrap. local function makeNowrapSpan(s) local span = mw.html.create('span') :addClass('rt-commentedText..." current
- 02:4502:45, 4 October 2025 diff hist +118,517 N Module:Citation/CS1/Configuration Created page with "local lang_obj = mw.language.getContentLanguage(); -- make a language object for the local language; used here for languages and dates --[[--------------------------< S E T T I N G S >-------------------------------------------------------------- boolean settings used to control various things. these setting located here to make them easy to find ]] -- these settings local to this module only local local_digits_from_mediawiki = false;..." current
- 02:3702:37, 4 October 2025 diff hist +236,222 N Module:Citation/CS1 Created page with "require ('strict'); --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- each of these counts against the Lua upvalue limit ]] local validation; -- functions in Module:Citation/CS1/Date_validation local utilities; -- functions in Module:Citation/CS1/Utilities local z = {}; -- table of tables in Module:Citation/CS1/Utilities local identifiers; -- f..." current
- 02:2702:27, 4 October 2025 diff hist +17 Main Page No edit summary
- 02:2602:26, 4 October 2025 diff hist 0 m Main Page No edit summary
- 02:2602:26, 4 October 2025 diff hist +266 Main Page No edit summary
- 02:2002:20, 4 October 2025 diff hist +7 Main Page No edit summary Tag: Manual revert
- 01:4801:48, 4 October 2025 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
- 01:4701:47, 4 October 2025 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
- 01:4501:45, 4 October 2025 diff hist +915 N Module:Navbar/configuration Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal lis..." current
- 01:4301:43, 4 October 2025 diff hist +5,296 N Module:Navbar Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false..." current
- 01:4101:41, 4 October 2025 diff hist +10,054 N Module:Arguments Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'..." current
- 01:3901:39, 4 October 2025 diff hist +16,577 N Module:TableTools Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke...." current
- 01:3701:37, 4 October 2025 diff hist +5,454 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
- 01:3201:32, 4 October 2025 diff hist +29,049 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
- 01:2401:24, 4 October 2025 diff hist +15,479 N Module:Navbox Created page with "-- -- This module implements {{Navbox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local getArgs -- lazily initialized local args local border local listnums local ODD_EVEN_MARKER = '\127_ODDEVEN_\127' local RESTART_MARKER = '\127_ODDEVEN0_\127' local REGEX_MARKER = '\127_ODDEVEN(%d?)_\127' local function striped(wikitext) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category th..." current
- 01:2101:21, 4 October 2025 diff hist −106 Template:Generation Z slang No edit summary current
- 01:2101:21, 4 October 2025 diff hist −24 Template:Navbox No edit summary current
- 01:2101:21, 4 October 2025 diff hist −18 Template:Navbox No edit summary
- 00:2100:21, 4 October 2025 diff hist +10 m UwU Reverted edits by Penisman (talk) to last revision by 74.76.49.147 Tag: Rollback
3 October 2025
- 17:5317:53, 3 October 2025 diff hist −7 Main Page No edit summary Tag: Reverted
- 17:4617:46, 3 October 2025 diff hist +46 N Aaaaaaaaaa Created page with "Aaaaaaaaaa is the letter a repeated ten times." current
- 15:4415:44, 3 October 2025 diff hist +1,229 Template:Navbox documentation No edit summary current
- 15:4315:43, 3 October 2025 diff hist +2,514 N Template:Internet slang Created page with "{{Navbox |name = Internet slang |title = Internet slang |state = {{{state<includeonly>|autocollapse</includeonly>}}} |bodyclass = hlist |image = 80px|Map of the Internet |group1 = Abuse |list1 = * Baizuo * Creepy treehouse * Cyberbullying * Cyberstalking * Doxing * Edgelord * Flaming * Griefer * Hacker * Keylogger * Littl..." current
- 15:4215:42, 3 October 2025 diff hist +94 N Template:Navbox Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>"
- 15:4115:41, 3 October 2025 diff hist +94 N Template:Navbox documentation Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>"
- 15:4015:40, 3 October 2025 diff hist +986 N Template:Generation Z slang Created page with "{{navbox | name = Generation Z slang | title = 2020s slang | state = {{{state|uncollapsed}}} | bodyclass = hlist | above = | group1 = Slang | list1 = {{Navbox|child |list1 = * "Ghosting" * "Basic" * "-ussy" * "uwu" | list2 = * "Delulu" * "The ick" * "Ligma" * "NPC" * "OK boomer" * "Girlboss" | list3 = * "Rizz..."
- 15:3815:38, 3 October 2025 diff hist +122 N Template:Cite web Created page with "<includeonly>{{#invoke:citation/CS1|citation |CitationClass=web }}</includeonly><noinclude> {{documentation}} </noinclude>" current
- 15:3815:38, 3 October 2025 diff hist +151 N Template:Documentation Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>" current
- 15:3715:37, 3 October 2025 diff hist +93 N Template:IPAc-en Created page with "<includeonly>{{#invoke:IPAc-en|main}}</includeonly><noinclude> {{documentation}} </noinclude>" current
- 15:3615:36, 3 October 2025 diff hist +2,357 N Template:Furry fandom Created page with "{{Navbox | state = {{{state<includeonly>|autocollapse</includeonly>}}} | name = Furry fandom | title = Furry fandom | bodyclass = hlist | group1 = Terms | list1 = * Fursona * Fursuit * Kemonā * uwu * Yiff | group2 = Conventions | list2 = {{Navbox|subgroup |group1=Current |list1= * Anthro New England * Anthrocon * Eurofurence * Furry Weekend Atlanta * Further Confusion * Midwest FurFest..." current
- 13:0313:03, 3 October 2025 diff hist 0 m Bread 1 revision imported
- 12:5412:54, 3 October 2025 diff hist −9 MediaWiki:Sidebar No edit summary
- 12:5412:54, 3 October 2025 diff hist +198 N MediaWiki:Sidebar Created page with " * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** Bread|help-mediawiki ** specialpages-url|specialpages * SEARCH * TOOLBOX * LANGUAGES"
- 12:4912:49, 3 October 2025 diff hist +43 N Bread Created page with "Bread is <strong><u>very</u></strong> cool!"
- 12:4312:43, 3 October 2025 diff hist +41 m Main Page No edit summary
- 03:3203:32, 3 October 2025 diff hist 0 m Main Page Protected "Main Page" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
- 03:1903:19, 3 October 2025 diff hist +83 N User:UwUbread Created page with "==WELCOME TO BREAD== ahhahahahahhahhahhahahhahahhhaaaahahahahhahaahahahaha, BREAD!"
- 03:1703:17, 3 October 2025 diff hist +3 Wiki Bread:General disclaimer No edit summary current
- 03:1603:16, 3 October 2025 diff hist +5 m Wiki Bread:General disclaimer No edit summary
- 03:1603:16, 3 October 2025 diff hist +170 N Wiki Bread:General disclaimer Created page with "==Disclaimer== You may like this wiki so much that you can't stop looking at it. If this happens to you <strong>please go to the store immediately AND BUY CHEESE</strong>"
- 03:1203:12, 3 October 2025 diff hist +1 m Wiki Bread:About →ABOUT current
- 03:1103:11, 3 October 2025 diff hist +4 m Wiki Bread:About No edit summary
- 03:1103:11, 3 October 2025 diff hist −7 Wiki Bread:About →ABOUT
- 03:1003:10, 3 October 2025 diff hist +171 N Wiki Bread:About Created page with "============ABOUT============ Wiki Bread is a better alternative to wikipedia it is more trustworthy and is very cool so teachers will ALWAYS let you use this as a source!"