Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of New Prairie Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:33, 17 July 2025 Randombell talk contribs created page Template:Tim (Created page with "[[m:Template:{{{1|{{PAGENAME}}}}}]] {{smaller|([[m:Special:Whatlinkshere/Template:{{{1|{{PAGENAME}}}}}|backlinks]] [{{fullurl:m:Template:{{{1|{{PAGENAME}}}}}|action=edit}} edit])}}<noinclude>{{Documentation}}</noinclude>")
- 12:31, 17 July 2025 Randombell talk contribs created page Module:Check for clobbered parameters (Created page with "local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end function p.check(frame) local args = frame.args local pargs = frame:getParent().args local checknested = isnotempty(args['nested']) local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';' local argpairs = {} for k, v in pairs(args) do if type(k) == 'number' then local plist = mw.text.split(v, delimiter)...")
- 12:01, 17 July 2025 Randombell talk contribs created page Module:HtmlBuilder (Created page with "-- Module for building complex HTML (e.g. infoboxes, navboxes) using a fluent interface. local HtmlBuilder = {} local metatable = {} metatable.__index = function(t, key) local ret = rawget(t, key) if ret then return ret end ret = metatable[key] if type(ret) == 'function' then return function(...) return ret(t, ...) end else return ret end end metatable.__tostring = function(t) local...") Tag: Recreated
- 12:01, 17 July 2025 Randombell talk contribs deleted page Module:HtmlBuilder (content was: "-- Module for building complex HTML (e.g. infoboxes, navboxes) using a fluent interface. local HtmlBuilder = {} local metatable = {} metatable.__index = function(t, key) local ret = rawget(t, key) if ret then return ret end ret = metatable[key] if type(ret) == 'function' then return function(...) return ret(t, ...) end else return ret end end metatable.__tostring = function(t) local ret = {...")
- 12:00, 17 July 2025 Randombell talk contribs created page Module:Navbar (Created page with "local p = {} local getArgs local HtmlBuilder = require('Module:HtmlBuilder') local function trim(s) return mw.ustring.match(s, "^%s*(.-)%s*$") end local function htmlError(s) local span = HtmlBuilder.create('span') span .addClass('error') .css('float', 'left') .css('white-space', 'nowrap') .wikitext('Error: ' .. s) return tostring(span) end local function getTitle(pageName) pageName = trim(pageName); local page_title, talk_page_title; if mw.u...") Tag: Recreated
- 12:00, 17 July 2025 Randombell talk contribs deleted page Module:Navbar (content was: "local p = {} local getArgs local HtmlBuilder = require('Module:HtmlBuilder') local function trim(s) return mw.ustring.match(s, "^%s*(.-)%s*$") end local function htmlError(s) local span = HtmlBuilder.create('span') span .addClass('error') .css('float', 'left') .css('white-space', 'nowrap') .wikitext('Error: ' .. s) return tostring(span) end local function getTitle(pageName) pageName = trim(pageName); local page_title, talk_page_title; if mw.ustring....")
- 11:59, 17 July 2025 Randombell 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....") Tag: Recreated
- 11:59, 17 July 2025 Randombell talk contribs deleted page Module:TableTools (content was: "-- ------------------------------------------------------------------------------------ -- 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....")
- 11:59, 17 July 2025 Randombell talk contribs created page Module:List (Created page with "-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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, ar...") Tag: Recreated
- 11:59, 17 July 2025 Randombell talk contribs deleted page Module:List (content was: "-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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) --...")
- 11:58, 17 July 2025 Randombell 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'...") Tag: Recreated
- 11:58, 17 July 2025 Randombell talk contribs deleted page Module:Arguments (content was: "-- 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' then...")
- 11:51, 17 July 2025 Randombell talk contribs created page Module:Infobox (Created page with "-- -- This module implements {{Infobox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local args = {} local origArgs local root local function union(t1, t2) -- Returns the union of the values of two tables, as a sequence. local vals = {} for k, v in pairs(t1) do vals[v] = true end for k, v in pairs(t2) do vals[v] = true end local ret = {} for k, v in pairs(vals) do table.insert(ret, k) en...") Tag: Recreated
- 11:50, 17 July 2025 Randombell talk contribs deleted page Module:Infobox (content before blanking was: "-- -- This module implements {{Infobox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local args = {} local origArgs local root local function union(t1, t2) -- Returns the union of the values of two tables, as a sequence. local vals = {} for k, v in pairs(t1) do vals[v] = true end for k, v in pairs(t2) do vals[v] = true end local ret = {} for k, v in pairs(vals) do table.insert(ret,...")
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Module rating/protected by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Hlist/styles.css by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Plainlist/styles.css by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Infobox/doc by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Transclusion count/data/I by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Module rating by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Module other by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Category link with count by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Clc by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Ombox by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Template:Namespace detect by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Infobox/styles.css by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Namespace detect/config by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Namespace detect/data by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Namespace detect by file upload (1 revision)
- 11:49, 17 July 2025 Randombell talk contribs imported Module:Infobox by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Track listing/doc by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Track listing/styles.css by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Track listing/configuration by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Message box/ombox.css by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Template:Bot use warning by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Transclusion count/data/T by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Template:High-risk by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Uses TemplateStyles/config by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Uses TemplateStyles by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Template:Uses TemplateStyles by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Template:Lua by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Lua banner by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Transclusion count by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:High-use by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Template:High-use by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Template:Sandbox other by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Documentation/styles.css by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Documentation/config by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:Documentation by file upload (1 revision)
- 11:46, 17 July 2025 Randombell talk contribs imported Module:TNT by file upload (1 revision)