User contributions for AifoxHi
From EunuchWiki
31 March 2024
- 18:0718:07, 31 March 2024 diff hist 0 m Module:R from fictional object multi 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Module:Sort title 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Module:Country adjective 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Modules that check for strip markers 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Unicode data modules 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Modules that create a short description 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Infobox modules 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Module:Diff 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Location map modules 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Language-related modules 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Modules for test tools 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Hatnote modules 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Modules tracking Wikidata 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Category:Modules using data from Wikidata 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m Module:Format title 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m EunuchWiki:Guide to Scribbling/Programmers' Quick start Guide to Lua 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m EunuchWiki:Lua speed 1 revision imported current
- 18:0718:07, 31 March 2024 diff hist 0 m EunuchWiki:Comparable Lua functions to wikitext 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m EunuchWiki:Lua string functions 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Help:Lua debugging 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Help:Lua for beginners 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m EunuchWiki:Guide to Scribbling 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m EunuchWiki:Lua/To do 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Category:Modules that add a tracking category 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Category:Modules for image handling 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Category:Wikipedia protected modules 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Category:Lua metamodules 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Help:Lua metamodules 1 revision imported current
- 18:0618:06, 31 March 2024 diff hist 0 m Category:Module test cases 1 revision imported current
- 17:5817:58, 31 March 2024 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. ---------------------------------------------------------------------------------..."
- 17:5617:56, 31 March 2024 diff hist +6,555 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..."
- 17:5517:55, 31 March 2024 diff hist +18,677 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 ---------------------------------------------------------------------------..."
- 17:5517:55, 31 March 2024 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 =..."
- 17:5417:54, 31 March 2024 diff hist +2,295 N Module:Transclusion count Created page with "local p = {} function p.fetch(frame) local template = nil local return_value = nil -- Use demo parameter if it exists, otherswise use current template name local namespace = mw.title.getCurrentTitle().namespace if frame.args["demo"] and frame.args["demo"] ~= "" then template = mw.ustring.gsub(frame.args["demo"],"^[Tt]emplate:","") elseif namespace == 10 then -- Template namespace template = mw.title.getCurrentTitle().text elseif namespace == 828 then -- Modu..."
- 17:5317:53, 31 March 2024 diff hist +6,675 N 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, 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 -- Build output string local return_value = "" if count == nil then if frame.args[1] == "risk" then..."
- 17:5217:52, 31 March 2024 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'..."
- 17:5217:52, 31 March 2024 diff hist +270 N Template:High-use Created page with "{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|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>"
- 17:5117:51, 31 March 2024 diff hist +35,058 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..."
- 17:5117:51, 31 March 2024 diff hist +151 N Template:Documentation Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>"
- 17:5017:50, 31 March 2024 diff hist +414 N Template:Module 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:Module}} | module | other }} }} | module = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>"
- 17:5017:50, 31 March 2024 diff hist +5,006 N Template:Module rating Created page with "<includeonly>{{#ifeq:{{SUBPAGENAME}}|doc|<!--do not show protection level of the module on the doc page, use the second and optionally third parameter if the doc page is also protected -->{{#if:{{{2|}}}|{{Pp|{{{2}}}|action={{{3|}}}}}}}|{{Module other|{{ombox | type = notice | image = {{#switch: {{{1|}}} | pre-alpha | prealpha | pa = 40x40px|link=|alt=Pre-alpha | alpha | a = File:Greek lc alph..."
- 17:5017:50, 31 March 2024 diff hist +3,838 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)..."
- 17:5017:50, 31 March 2024 diff hist −3,832 Module:Protection banner/config Replaced content with "--help" Tags: Replaced Reverted
- 17:4917:49, 31 March 2024 diff hist +3,838 N Module:Protection banner/config 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)..." Tag: Reverted
- 17:4917:49, 31 March 2024 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>"
- 17:4817:48, 31 March 2024 diff hist +6,613 N Module:Protection banner/doc Created page with "{{High-use}} {{Module rating|protected}} {{Lua|Module:Protection banner/config|Module:File link|Module:Effective protection level|Module:Effective protection expiry|Module:Yesno|Module:Arguments|Module:Message box|Module:Submit an edit request}} This module creates protection banners and padlock icons that are placed at the top of protected pages. == Usage == Most users will not need to use this module directly. For adding protection templates to pa..."
- 17:4717:47, 31 March 2024 diff hist +26,018 N 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('strict') 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 modules and..."