All public logs
Combined display of all available logs of Stiles Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:12, 20 May 2022 Maxwells talk contribs created page 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)...")
- 20:08, 20 May 2022 Maxwells talk contribs created page Template:Terminate sentence (Created page with "{{{1}}}{{#if:{{#invoke:text|sentenceTerminated|{{{1|}}}}}||{{{2|.}}}}}<noinclude>{{documentation}}</noinclude>")
- 20:07, 20 May 2022 Maxwells talk contribs created page Template:Strong (Created page with "<strong {{#if:{{{role|}}}|role="{{{role}}}"}} {{#if:{{{class|}}}|class="{{{class}}}"}} {{#if:{{{id|}}}|id="{{{id}}}"}} {{#if:{{{style|}}}|style="{{{style}}}"}} {{#if:{{{title|}}}|title="{{{title}}}"}}>{{{1}}}</strong><noinclude> {{documentation}} <!-- Add cats and interwikis to the /doc subpage, not here! --> </noinclude>")
- 20:07, 20 May 2022 Maxwells talk contribs created page File:Edit-copy green.svg
- 20:07, 20 May 2022 Maxwells talk contribs uploaded File:Edit-copy green.svg
- 20:06, 20 May 2022 Maxwells talk contribs created page 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...")
- 20:04, 20 May 2022 Maxwells talk contribs uploaded a new version of File:Test Template Info-Icon - Version (2).svg
- 20:01, 20 May 2022 Maxwells talk contribs created page File:Test Template Info-Icon - Version (2).webp
- 20:01, 20 May 2022 Maxwells talk contribs uploaded File:Test Template Info-Icon - Version (2).webp
- 19:58, 20 May 2022 Maxwells talk contribs created page File:Test Template Info-Icon - Version (2).svg
- 19:58, 20 May 2022 Maxwells talk contribs uploaded File:Test Template Info-Icon - Version (2).svg
- 19:50, 20 May 2022 Maxwells talk contribs created page Module:Documentation/styles.css (Created page with "{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-bott...")
- 19:44, 20 May 2022 Maxwells talk contribs created page Module:Protection banner/config (Created page with "-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that appear...")
- 19:44, 20 May 2022 Maxwells talk contribs created page Module:Effective protection expiry (Created page with "local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'auto...")
- 19:43, 20 May 2022 Maxwells talk contribs created page Module:Effective protection level (Created page with "local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local leve...")
- 19:43, 20 May 2022 Maxwells 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 =...")
- 19:42, 20 May 2022 Maxwells talk contribs created page Module:File link (Created page with "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in...")
- 19:42, 20 May 2022 Maxwells talk contribs created page Module:No globals (Created page with "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)")
- 19:41, 20 May 2022 Maxwells talk contribs created page Module:Protection banner (Created page with "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('Module:No globals') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise m...")
- 19:41, 20 May 2022 Maxwells talk contribs created page Template:Pp (Created page with "{{#invoke:Protection banner|main}}<noinclude> {{documentation}} </noinclude>")
- 19:39, 20 May 2022 Maxwells 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. ---------------------------------------------------------------------------------...")
- 19:38, 20 May 2022 Maxwells 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'...")
- 19:37, 20 May 2022 Maxwells 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 ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purpos...")
- 19:37, 20 May 2022 Maxwells talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
- 19:36, 20 May 2022 Maxwells talk contribs created page Module:Message box (Created page with "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('Module:No globals') local getArgs local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox'...")
- 19:36, 20 May 2022 Maxwells talk contribs created page Template:Mbox (Created page with "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 19:35, 20 May 2022 Maxwells talk contribs created page 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...")
- 19:25, 20 May 2022 Maxwells talk contribs created page Template:Infobox Campaign/doc (Created page with "{{Infobox Campaign }} Template:Infobox Adventure This template is used for campaign information")
- 19:16, 20 May 2022 Maxwells talk contribs created page Category:Lawful Good Deities (Created page with "test")
- 19:54, 19 May 2022 Maxwells talk contribs created page Template:Infobox Session (Created page with "<includeonly> {{infobox |above = {{#if:{{{name|}}}|{{{name|}}}|{{PAGENAME}}}} |subheader = {{#if:{{{tag|}}}|{{{tag|}}}}} |subheader2 = {{#if:{{{adventure|}}}|[[{{{adventure|}}}]]}}{{#ifexpr:{{#if:{{{adventure|}}}|1|0}} = {{#if:{{{setting|}}}|1|0}}| - |}}{{#if:{{{campaign|}}}|[[{{{campaign|}}}]]}} |image = {{#if:{{{image|}}}|[[File:{{{image|}}}|250px]]}} |caption = {{#if:{{{caption|}}}|{{{caption|}}}}} |label1 = Date Played |data1 = {{#if:{{{irldate|}}}|{{#invok...")
- 19:58, 18 May 2022 Maxwells talk contribs created page Template:Infobox Adventure (Created page with "<includeonly> {{infobox |above = {{#if:{{{name|}}}|{{{name|}}}|}} |subheader = {{#if:{{{tag|}}}|{{{tag|}}}}} |image = {{#if:{{{image|}}}|[[File:{{{image|}}}|250px]]}} |caption = {{#if:{{{caption|}}}|{{{caption|}}}}} |label1 = Start Date |data1 = {{#if:{{{start|}}}|{{#invoke:Date Stuff|date|{{{start|}}}|{{{setting|}}}}}}} |label2 = {{#if:{{#ifeq:{{{status|}}}|Concluded||1}}|Current Date|End Date}} |data2 = {{#if:{{#ifeq:{{{status|}}}|Concluded|1|}}|{{#invoke:Date Stuff|da...")
- 19:47, 17 May 2022 Maxwells talk contribs created page The Adventures of NKG (Created page with "#The Forge of Fury ##Session 1 #Eyes of the Lich Queen ##Session ##Session 2")
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Template:Template other (content was: "{{#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...", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Template:Documentation (content was: "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Template:Documentation subpage (content was: "<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 = File:Edit-copy green.svg|40px|alt=|l...", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Template:High-use (content was: "{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|all-pages={{{all-pages|}}}|info={{{info|}}}|demo={{{demo|}}}|form={{{form|}}}|expiry={{{expiry|}}}|system={{{system|}}}}}<noinclude> {{Documentation}} <!-- Add categories to the /doc subpage; interwiki links go to Wikidata, thank you! --> </noinclude>", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Template:Sidebar (content was: "{{#invoke:Sidebar|sidebar}}<noinclude> {{documentation}}</noinclude>", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Module:Documentation (content was: "-- 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 ---------------------------------------------------------------------------- -- Helper functions -- -...", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Module:Documentation/config (content was: "---------------------------------------------------------------------------------------------------- -- -- 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...", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:43, 15 May 2022 Maxwells talk contribs deleted page Module:High-use (content was: "local p = {} -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count').fetch local yesno = require('Module:Yesno') function p.num(frame, count) if count == nil then if yesno(frame.args['fetch']) == false then if (frame.args[1] or '') ~= '' then count = tonumber(frame.args[1]) end else count = _fetch(frame) end end -- Buil...", and the only contributor was "Maxwells" (talk)) Tags: Mobile edit Mobile web edit
- 19:40, 15 May 2022 Maxwells talk contribs created page Module:High-use (Created page with "local p = {} -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count').fetch local yesno = require('Module:Yesno') function p.num(frame, co...") Tags: Mobile edit Mobile web edit
- 19:39, 15 May 2022 Maxwells talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation...") Tags: Mobile edit Mobile web edit
- 19:38, 15 May 2022 Maxwells 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('M...") Tags: Mobile edit Mobile web edit
- 19:37, 15 May 2022 Maxwells talk contribs created page Template:Sidebar (Created page with "{{#invoke:Sidebar|sidebar}}<noinclude> {{documentation}}</noinclude>") Tags: Mobile edit Mobile web edit
- 19:34, 15 May 2022 Maxwells talk contribs undeleted page Template:Lua (1 revision) Tags: Mobile edit Mobile web edit
- 19:33, 15 May 2022 Maxwells talk contribs created page Template:High-use (Created page with "{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|all-pages={{{all-pages|}}}|info={{{info|}}}|demo={{{demo|}}}|form={{{form|}}}|expiry={{{expiry|}}}|system={{{system|}}}}}<noinclu...") Tags: Mobile edit Mobile web edit
- 19:32, 15 May 2022 Maxwells talk contribs created page Template:Documentation subpage (Created page with "<includeonly><!-- -->{{#ifeq:{{lc:{{SUBPAGENAME}}}} |{{{override|doc}}} | <!--(this template has been transcluded on a /doc or /{{{override}}} page)--> </includeonly><!-...") Tags: Mobile edit Mobile web edit
- 19:31, 15 May 2022 Maxwells talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>") Tags: Mobile edit Mobile web edit
- 19:27, 15 May 2022 Maxwells talk contribs created page Template:Template other (Created page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {...") Tags: Mobile edit Mobile web edit
- 19:08, 12 May 2022 Maxwells talk contribs moved page Leon von Stilford to Leon von Stilfurt