Jump to content

Main public logs

Combined display of all available logs of Wiki Bread. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)
  • 03:37, 4 October 2025 UwUbread talk contribs created page Module:String (Created page with "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error c...")
  • 03:35, 4 October 2025 UwUbread talk contribs created page Module:Check for unknown parameters (Created page with "-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list require ('strict'); local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing...")
  • 03:34, 4 October 2025 UwUbread talk contribs created page Template:Short description (Created page with "{{#ifeq:{{lc:{{{1|}}}}}|none|{{SHORTDESC:}}<nowiki/><!--Prevents whitespace issues when used with adjacent newlines-->|<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">{{{1|}}}{{SHORTDESC:{{{1|}}}|{{{2|}}}}}</div>}}<includeonly>{{#ifeq:{{{pagetype}}}|Disambiguation pages||{{#ifeq:{{pagetype |defaultns = all |user=exclude}}|exclude||{{#ifeq:{{#switch: {{NAMESPACENUMBER}} | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 100 | 1...")
  • 03:33, 4 October 2025 UwUbread talk contribs created page Help:IPA/English (Created page with "Are you looking for something here?????")
  • 03:31, 4 October 2025 UwUbread talk contribs created page Module:Namespace detect/config (Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...")
  • 03:30, 4 October 2025 UwUbread talk contribs created page Module:Namespace detect/data (Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function...")
  • 03:27, 4 October 2025 UwUbread 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...")
  • 03:27, 4 October 2025 UwUbread 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...")
  • 03:25, 4 October 2025 UwUbread 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. ----------------------------...")
  • 03:24, 4 October 2025 UwUbread 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(...")
  • 03:23, 4 October 2025 UwUbread talk contribs created page Template:Audio (Created page with "<includeonly>{{#if:{{{1|}}}|{{#ifexist:Media:{{{1}}}|{{#tag:phonos|{{{2|{{{1|}}}}}}|file={{{1}}}}}|{{error{{main other||-small}}|Audio file "{{{1}}}" not found}}<!-- tracking category begin -->{{Category handler|Category:Pages linking to missing files}}<!-- tracking category end -->}}}}</includeonly><noinclude> <!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! --> {{documentation}} </noinclude>")
  • 03:21, 4 October 2025 UwUbread talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
  • 03:20, 4 October 2025 UwUbread talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
  • 03:19, 4 October 2025 UwUbread talk contribs created page Template:IPA audio link (Created page with " {{Audio|{{{1|}}}||help=no}}<noinclude> {{documentation}} </noinclude>")
  • 03:19, 4 October 2025 UwUbread talk contribs created page Module:Yesno (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...")
  • 03:17, 4 October 2025 UwUbread 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...")
  • 03:14, 4 October 2025 UwUbread talk contribs created page 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:13, 4 October 2025 UwUbread talk contribs created page 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...")
  • 02:50, 4 October 2025 UwUbread talk contribs created page 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...")
  • 02:49, 4 October 2025 UwUbread talk contribs created page 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...")
  • 02:45, 4 October 2025 UwUbread talk contribs created page 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;...")
  • 02:38, 4 October 2025 UwUbread talk contribs deleted page Citation/CS1 (content was: "stupid", and the only contributor was "a dumb person" (talk))
  • 02:37, 4 October 2025 UwUbread talk contribs created page 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...")
  • 02:32, 4 October 2025 UwUbread talk contribs created page 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...")
  • 01:48, 4 October 2025 UwUbread 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...")
  • 01:47, 4 October 2025 UwUbread 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 *...")
  • 01:45, 4 October 2025 UwUbread talk contribs created page 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...")
  • 01:43, 4 October 2025 UwUbread talk contribs created page 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...")
  • 01:41, 4 October 2025 UwUbread talk contribs created page 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'...")
  • 01:39, 4 October 2025 UwUbread talk contribs created page 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....")
  • 01:37, 4 October 2025 UwUbread 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 = {...")
  • 01:32, 4 October 2025 UwUbread 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...")
  • 01:24, 4 October 2025 UwUbread talk contribs created page 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...")
  • 17:46, 3 October 2025 UwUbread talk contribs created page Aaaaaaaaaa (Created page with "Aaaaaaaaaa is the letter a repeated ten times.")
  • 15:43, 3 October 2025 UwUbread talk contribs created page 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...")
  • 15:42, 3 October 2025 UwUbread talk contribs created page Template:Navbox (Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>")
  • 15:41, 3 October 2025 UwUbread talk contribs created page Template:Navbox documentation (Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>")
  • 15:40, 3 October 2025 UwUbread talk contribs created page 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:38, 3 October 2025 UwUbread talk contribs created page Template:Cite web (Created page with "<includeonly>{{#invoke:citation/CS1|citation |CitationClass=web }}</includeonly><noinclude> {{documentation}} </noinclude>")
  • 15:38, 3 October 2025 UwUbread talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
  • 15:37, 3 October 2025 UwUbread talk contribs created page Template:IPAc-en (Created page with "<includeonly>{{#invoke:IPAc-en|main}}</includeonly><noinclude> {{documentation}} </noinclude>")
  • 15:36, 3 October 2025 UwUbread talk contribs created page 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...")
  • 13:03, 3 October 2025 UwUbread talk contribs imported Bread by file upload (1 revision)
  • 12:54, 3 October 2025 UwUbread talk contribs created page 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:49, 3 October 2025 UwUbread talk contribs created page Bread (Created page with "Bread is <strong><u>very</u></strong> cool!")
  • 03:32, 3 October 2025 UwUbread talk contribs protected Main Page [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 03:19, 3 October 2025 UwUbread talk contribs created page User:UwUbread (Created page with "==WELCOME TO BREAD== ahhahahahahhahhahhahahhahahhhaaaahahahahhahaahahahaha, BREAD!")
  • 03:16, 3 October 2025 UwUbread talk contribs created page 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:10, 3 October 2025 UwUbread talk contribs created page 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!")
  • 02:57, 3 October 2025 UwUbread talk contribs deleted page M:UwU (Broken redirect: oops accedent)
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)