7 February 2026
- 03:5003:50, 7 February 2026 diff hist −1 Brewer No edit summary current Tag: Visual edit
25 January 2026
- 04:4404:44, 25 January 2026 diff hist −350 Template:Jobs No edit summary current
- 04:4104:41, 25 January 2026 diff hist +6 Jobs No edit summary current Tag: Visual edit: Switched
- 03:3603:36, 25 January 2026 diff hist +66 N MediaWiki:Jobs.css Created page with "@import url("/wiki/MediaWiki:Jobs.css?action=raw&ctype=text/css");" current
- 03:2603:26, 25 January 2026 diff hist −93 Template:Hlist/styles.css No edit summary
- 03:2303:23, 25 January 2026 diff hist +4,899 Module:Sidebar/styles.css No edit summary
- 03:2303:23, 25 January 2026 diff hist 0 N Module:Sidebar/styles.css Taelor created the page Module:Sidebar/styles.css using a non-default content model "CSS"
- 03:2203:22, 25 January 2026 diff hist +1,149 Module:Documentation/styles.css No edit summary current
- 03:2103:21, 25 January 2026 diff hist 0 N Module:Documentation/styles.css Taelor created the page Module:Documentation/styles.css using a non-default content model "CSS"
- 03:2003:20, 25 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
- 03:1903:19, 25 January 2026 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
- 03:1903:19, 25 January 2026 diff hist +1,852 Module:Message box/ombox.css No edit summary current
- 03:1903:19, 25 January 2026 diff hist 0 N Module:Message box/ombox.css Taelor created the page Module:Message box/ombox.css using a non-default content model "CSS"
- 03:1103:11, 25 January 2026 diff hist 0 N Template:Pp Created blank page current
- 03:0903:09, 25 January 2026 diff hist +6,546 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
- 03:0903:09, 25 January 2026 diff hist +18,961 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 ---------------------------------------------------------------------------..." current
- 03:0903:09, 25 January 2026 diff hist +3,908 N Module:Lua banner Created page with "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args)..." current
- 03:0803:08, 25 January 2026 diff hist +5,643 N Module:List Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''..." current
- 03:0703:07, 25 January 2026 diff hist +196 N Template:Lua Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>" current
- 03:0503:05, 25 January 2026 diff hist −442 Template:Sidebar No edit summary current Tag: Manual revert
- 02:5902:59, 25 January 2026 diff hist 0 Template:Hlist/styles.css Taelor changed the content model of the page Template:Hlist/styles.css from "wikitext" to "CSS" Tag: content model change
24 January 2026
- 19:1419:14, 24 January 2026 diff hist +442 Template:Sidebar Undo revision 639 by Taelor (talk) Tags: Undo Reverted
- 19:1219:12, 24 January 2026 diff hist −442 Template:Sidebar No edit summary Tag: Reverted
- 19:0819:08, 24 January 2026 diff hist +3,015 N Template:Hlist/styles.css Created page with "<nowiki>→{{pp-protected|reason=match parent|small=yes}}: →* hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * [[MediaWiki talk:Common.css/to do#hlist-separated]]: /* * TODO: When the majority of readership supports..."
- 19:0419:04, 24 January 2026 diff hist +181 N Template:Hlist Created page with "{{<includeonly>safesubst:</includeonly>#invoke:list|horizontal}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>" current
- 19:0319:03, 24 January 2026 diff hist +456 Template:Jobs No edit summary
12 January 2026
- 22:3022:30, 12 January 2026 diff hist +842 N Module:If preview/configuration Created page with "--We perform the actual check for whether this is a preview here since preprocessing is relatively expensive. local frame = mw.getCurrentFrame() local function is_preview() local revision_id = frame:preprocess('{{REVISIONID}}') -- {{REVISIONID}} is usually the empty string when previewed. -- I don't know why we're checking for nil but hey, maybe someday things -- would have broken return revision_id == nil or revision_id == '' end local function templatestyl..." current
- 22:2922:29, 12 January 2026 diff hist +1,973 N Module:If preview Created page with "local p = {} local getArgs = require("Module:Arguments").getArgs local yn = require("Module:Yesno") local cfg = mw.loadData('Module:If preview/configuration') --main This function returns either the first argument or second argument passed to this module, depending on whether the page is being previewed. function p.main(frame) local args = getArgs(frame) if cfg.preview then return args[1] or '' else return args[2] or '' end end --[[ pmain This function..." current
- 22:0622:06, 12 January 2026 diff hist +17,747 N 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. ---------------------------------------------------------------------------------..." current
- 22:0522:05, 12 January 2026 diff hist +35,178 N 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..." current
- 22:0322:03, 12 January 2026 diff hist +3,339 N 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..." current
- 22:0222:02, 12 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
- 22:0022:00, 12 January 2026 diff hist +269 N Template:Yesno-no Created page with "{{safesubst:<noinclude />yesno|{{{1}}}|yes={{{yes|yes}}}|no={{{no|no}}}|blank={{{blank|no}}}|¬={{{¬|no}}}|def={{{def|no}}}}}<noinclude> {{Documentation|Template:Yesno/doc}} <!--Categories go in the doc page referenced above; interwikis go in Wikidata.--> </noinclude>" current
- 22:0022:00, 12 January 2026 diff hist +374 N Template:Yesno Created page with "{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }} |no |n |f |false |off |0 = {{{no|<!-- null -->}}} | = {{{blank|{{{no|<!-- null -->}}}}}} |¬ = {{{¬|}}} |yes |y |t |true |on |1 = {{{yes|yes}}} |#default = {{{def|{{{yes|yes}}}}}} }}<noinclude> {{Documentation}} </noinclude>" current
- 21:5921:59, 12 January 2026 diff hist +1,436 N Template:Template parameter usage Created page with "{{#switch:{{{label|}}} |=[https://bambots.brucemyers.com/TemplateParam.php?wiki=enwiki&template={{Urlencode:{{#if:{{{1|}}}|{{ROOTPAGENAME:{{{1|}}}}}|{{ROOTPAGENAME}}}}}} {{#ifeq:{{yesno-no|{{{lc}}}}}|no|S|s}}ee a monthly parameter usage report] for {{#if:{{{1|}}}|[[Template:{{ROOTPAGENAME:{{{1|}}}}}]]|this template}} in articles{{#ifeq:{{yesno-no|{{{based}}}}}|yes| based on {{#if:{{{1|}}}|its|this}} TemplateData}}. |None|none=[https://bambots.brucemyers.com/Templat..." current
- 21:5821:58, 12 January 2026 diff hist +435 N Template:Template other Created page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>" current
- 21:5021:50, 12 January 2026 diff hist +224 N Template:Template link Created page with "<span class="nowrap">{{</span>[[Template:{{{1}}}|{{{1}}}]]<span class="nowrap">}}</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>" current
- 21:4921:49, 12 January 2026 diff hist +1,164 N Template:TemplateData header Created page with "<div class="templatedata-header">{{#if:{{{noheader|}}}|<!-- noheader: -->{{Template parameter usage|{{{1|{{BASEPAGENAME}}}}}|based=y}}|<!-- +header: -->This is the {{#if:{{{nolink|}}}|<!-- +header, nolink TD -->TemplateData|<!-- +header, +link TD; DEFAULT: -->TemplateData}}<!-- e.o. #if:nolink; DEFAULT: --> for this template used by TemplateWizard, VisualEditor and other..." current
- 21:4721:47, 12 January 2026 diff hist +260 N Template:Sandbox other Created page with "{{#if:{{#ifeq:{{#invoke:String|sublength|s={{SUBPAGENAME}}|i=0|len=7}}|sandbox|1}}{{#ifeq:{{SUBPAGENAME}}|doc|1}}{{#invoke:String|match|{{PAGENAME}}|/sandbox/styles.css$|plain=false|nomatch=}}|{{{1|}}}|{{{2|}}}}}<!-- --><noinclude>{{documentation}}</noinclude>" current
- 21:4621:46, 12 January 2026 diff hist +3,552 N Template:Note/doc Created page with "{{Documentation subpage}} <!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> {{TemplateData header|editlinks=1|docpage=Note/doc}} <templatedata> { "format": "block", "description": { "en": "Show a note in a box (e.g. a top-of-the-page warning).", "es": "Muestra una nota en un recuadro (p. ej. un aviso en la parte superior de la página).", "cs": "Zobrazí poznámku v poli (např. upozornění v horní části stránky)",..." current
- 21:4421:44, 12 January 2026 diff hist +1,697 N Template:Documentation Subpage Created page with "<includeonly><!-- -->{{#ifeq:{{lc:{{SUBPAGENAME}}}} |{{{override|doc}}} | <!--(this template has been transcluded on a /doc or /{{{override}}} page)--> </includeonly><!-- -->{{#ifeq:{{{doc-notice|show}}} |show | {{Mbox | type = notice | style = margin-bottom:1.0em; | image = 40px|alt=|link= | text = {{strong|This is a documentation..." current
- 21:4321:43, 12 January 2026 diff hist +2,050 N Template:Documentation Created page with "<noinclude> <languages/> </noinclude><includeonly>{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}</includeonly><noinclude> {{documentation|content= {{Lua|Module:Documentation}} <translate><!--T:12--> This template automatically displays a documentation box like the one you are seeing now, of which the content is sometimes transcluded from another page.</translate> <translate><!--T:13--> It is intended for pages which are <tvar name=..." current
- 19:5019:50, 12 January 2026 diff hist +60 MediaWiki:Sidebar No edit summary current
- 19:5019:50, 12 January 2026 diff hist +483 N MediaWiki:Sidebar Created page with "Welcome! mainpage | Home Main_Page#Joining_the_Server | Server IP Getting started Jobs | Jobs Making money | Making money Category:Tips and Tricks | Tips and tricks Policies rules | Rules Category:Staff | Staff Server Category:Crime | Crime Category:Features | Features Category:Government | Government Category:History | Server history Useful_commands | Commands Miscellaneous Special:AllPages|All pages Special:Random|Random page DemocracyCraft_Wiki:Editor's_guide | Editor..."
- 19:4119:41, 12 January 2026 diff hist +5,455 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
- 19:3919:39, 12 January 2026 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
- 19:3919:39, 12 January 2026 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
- 19:3019:30, 12 January 2026 diff hist +2,194 N MediaWiki:Citizen.css Created page with "→All CSS here will be loaded for users of the Citizen skin: →Make sidebar persist: →Many thanks to Coasterpedia: →Make drawer always visible > 1300px: @media screen and ( min-width: 1300px ) { :root { --fixed-menu-width: 240px; } .citizen-page-container { →Reserve space for drawer: margin-left: calc( var( --header-size ) + var( --fixed-menu-width ) ); } .citizen-drawer .citizen-dropdown-details {..." current
11 January 2026
- 23:2223:22, 11 January 2026 diff hist +692 N Template:Jobs Created page with "<includeonly>{{Sidebar | title = Jobs | image = frameless|150px | heading1 = Trades | content2 = {{Hlist| Brewer| Carpenter| Chef| Designer| Farmer| Fisher| Journalist| Lumberjack| Miner| Hunter Accountant Pharmacist }} | heading3 = Professions | content3 = {{Hlist| Armourer| Jeweller| Mason| Mechanic| Realtor}} | heading4 = Government jobs | content4 = {{Hlist| Aud..."
- 23:2023:20, 11 January 2026 diff hist +1,796 N 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 = 'Module:Sidebar/styles.css', hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', category = {..." current