User contributions for Bofh
From MuttWiki
Jump to navigationJump to search
26 January 2026
- 18:0318:03, 26 January 2026 diff hist +2,163 N Module:Message box/ambox.css Created page with "→{{pp|small=y}}: .ambox { border: 1px solid #a2a9b1; →@noflip: border-left: 10px solid #36c; →Default "notice" blue: background-color: #fbfbfb; box-sizing: border-box; } →Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed: .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: rais..." current
- 17:5917:59, 26 January 2026 diff hist +20,256 N Module:Arguments/doc Created page with "{{Used in system}} {{Module rating|p}} {{cascade-protected template|page=module}} This module provides easy processing of arguments passed from <code>#invoke</code>. It is a meta-module, meant for use by other modules, and should not be called from <code>#invoke</code> directly (for a module directly invocable by templates you might want to have a look at {{ml|params|}}). Its features include: * Easy trimming of arguments and removal..." current
- 17:5917:59, 26 January 2026 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 Tag: Recreated
- 17:5817:58, 26 January 2026 diff hist +745 N 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 =..." current Tag: Recreated
- 17:5717:57, 26 January 2026 diff hist +6,642 N Module:Message box/configuration Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee..." current Tag: Recreated
- 17:5617:56, 26 January 2026 diff hist −36 Module:Message box/doc No edit summary current
- 17:3217:32, 26 January 2026 diff hist +5,170 N Module:Message box/doc Created page with "This is a meta-module that implements the message box templates {{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead. == Usage == To use this module from another Lua module, first you need to load it. <syntaxhi..."
- 17:3017:30, 26 January 2026 diff hist +22,838 N Module:Message box Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------..." Tag: Recreated
- 16:5916:59, 26 January 2026 diff hist 0 m Module:Message box/ombox.css 1 revision imported current
- 16:5916:59, 26 January 2026 diff hist 0 m Template:Para 1 revision imported
- 16:4716:47, 26 January 2026 diff hist +1,830 MediaWiki:Common.css Add infobox code current
20 May 2025
- 15:5915:59, 20 May 2025 diff hist +191 Main Page No edit summary
24 February 2025
- 23:1823:18, 24 February 2025 diff hist +60 m Main Page rainbow
22 February 2025
- 10:1710:17, 22 February 2025 diff hist +149 Module:Gradient/doc No edit summary current
- 10:1610:16, 22 February 2025 diff hist +250 Module:Gradient/doc →multi
- 10:1310:13, 22 February 2025 diff hist +14 Module:Gradient No edit summary current
- 10:1210:12, 22 February 2025 diff hist −1 Module:Gradient No edit summary
- 10:1110:11, 22 February 2025 diff hist −2 Module:Gradient No edit summary
- 10:1110:11, 22 February 2025 diff hist +119 Module:Gradient/doc No edit summary
- 10:0910:09, 22 February 2025 diff hist +1,008 Module:Gradient No edit summary
- 09:3809:38, 22 February 2025 diff hist +27 Module:Gradient/doc →rgb
- 09:3009:30, 22 February 2025 diff hist +29 Main Page →Page list
- 09:2309:23, 22 February 2025 diff hist +241 User talk:WarezWolf →Text gradient module: new section current Tag: New topic
- 09:2109:21, 22 February 2025 diff hist −1,617 m Main Page Convert gradient to module invocation
- 09:1909:19, 22 February 2025 diff hist +517 N Module:Gradient/doc Created page with "{{#invoke:Gradient|rgb|FF0000|0000FF|This module provides support for generating text gradients.}} It contains the following functions: == rgb == <pre><nowiki>{{#invoke:Gradient|rgb|<from>|<to>|<text>}}</nowiki></pre> {| class="wikitable" |+ Parameters |- ! Name !! Description |- | from || A 6-digit hex code for the start colour. (No starting <code>#</code>.) |- | to || A 6-digit hex code for the end colour. (No starting <code>#</code>.) |- | text || The text to apply t..."
- 09:1309:13, 22 February 2025 diff hist +17 Module:Gradient No edit summary
- 09:1209:12, 22 February 2025 diff hist −5 Module:Gradient No edit summary
- 09:1109:11, 22 February 2025 diff hist +710 N Module:Gradient Created page with "local p={} function parse_colour(c) return { tonumber(string.sub(c,1,2),16), tonumber(string.sub(c,3,4),16), tonumber(string.sub(c,5,6),16) } end function fmt_colour(r,g,b) return string.format("%02x%02x%02x",math.floor(r),math.floor(g),math.floor(b)) end function p.rgb(frame) local r,g,b = parse_colour(frame.args[1]) local r2,g2,b2 = parse_colour(frame.args[2]) local text = frame.args[3] local n = mw.ustring.len(text) local out = "" local dr,dg,db = (r2..."
- 08:5008:50, 22 February 2025 diff hist +84 Main Page No edit summary
- 08:4508:45, 22 February 2025 diff hist −15 User talk:Bofh testing something
- 07:1107:11, 22 February 2025 diff hist −10,380 User talk:Bofh Replaced content with "== bites you == breed me uwu (REAL) Zima (talk) 07:07, 22 February 2025 (UTC) :yeah you're just proving my point the bastard pup from hell (talk) 07:09, 22 February 2025 (UTC)" Tag: Replaced
- 07:0907:09, 22 February 2025 diff hist +132 User talk:Bofh →bites you: Reply Tag: Reply
- 06:3906:39, 22 February 2025 diff hist +5 Main Page better quotes
- 06:3406:34, 22 February 2025 diff hist +191 N MediaWiki:Common.css Created page with "→CSS placed here will be applied to all skins: .no-all-pages-columns .mw-allpages-body { columns: unset !important; -moz-columns: unset !important; -webkit-columns: unset !important; }"
- 06:3306:33, 22 February 2025 diff hist +42 Main Page No edit summary
- 05:0405:04, 22 February 2025 diff hist +210 Main Page Randomized tagline
- 04:5304:53, 22 February 2025 diff hist +169 Module:Random No edit summary current
- 04:3904:39, 22 February 2025 diff hist +63 Module:Random No edit summary
- 04:2904:29, 22 February 2025 diff hist +137 Module:Random No edit summary
- 04:2404:24, 22 February 2025 diff hist +22 Module:Random No edit summary
- 04:2304:23, 22 February 2025 diff hist +435 Module:Random No edit summary
- 03:4803:48, 22 February 2025 diff hist +76 N Module:Random testing
21 February 2025
- 22:0622:06, 21 February 2025 diff hist +108 Faggot No edit summary
- 22:0122:01, 21 February 2025 diff hist +371 N Toaster Created page with "A '''toaster''' is a small electric appliance that uses radiant heat to brown sliced bread into toast, the color caused from the Maillard reaction. It typically consists of one or more slots into which bread is inserted, and heating elements, often made of nichrome wire, to generate heat and toast the bread to the desired level of crispiness. All toasters toast toast."
- 02:1002:10, 21 February 2025 diff hist +122 N User talk:WarezWolf →ARF: new section Tag: New topic
- 01:2501:25, 21 February 2025 diff hist +31 Faggot No edit summary
- 01:2401:24, 21 February 2025 diff hist +94 Faggot No edit summary
- 01:1801:18, 21 February 2025 diff hist +15 MuttWiki:Terms of Service No edit summary current
- 01:1301:13, 21 February 2025 diff hist +27 N User:Zima Created page with "Zima is a faggot (real)"
- 01:1301:13, 21 February 2025 diff hist +701 N Faggot need this for something