Main public logs
From EunuchWiki
Combined display of all available logs of EunuchWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Wikimedia Commons modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Wikidata modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Module documentation pages by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Module:ComplForColorModules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Module:R from fictional object multi by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Module:Sort title by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Module:Country adjective by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Modules that check for strip markers by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Unicode data modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Modules that create a short description by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Infobox modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Module:Diff by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Location map modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Language-related modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Modules for test tools by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Hatnote modules by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Modules tracking Wikidata by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Category:Modules using data from Wikidata by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported Module:Format title by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported EunuchWiki:Guide to Scribbling/Programmers' Quick start Guide to Lua by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported EunuchWiki:Lua speed by file upload (1 revision)
- 18:07, 31 March 2024 AifoxHi talk contribs imported EunuchWiki:Comparable Lua functions to wikitext by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported EunuchWiki:Lua string functions by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Help:Lua debugging by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Help:Lua for beginners by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported EunuchWiki:Guide to Scribbling by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported EunuchWiki:Lua/To do by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Category:Modules that add a tracking category by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Category:Modules for image handling by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Category:Wikipedia protected modules by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Category:Lua metamodules by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Help:Lua metamodules by file upload (1 revision)
- 18:06, 31 March 2024 AifoxHi talk contribs imported Category:Module test cases by file upload (1 revision)
- 17:58, 31 March 2024 AifoxHi 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. ---------------------------------------------------------------------------------...")
- 17:56, 31 March 2024 AifoxHi 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...")
- 17:55, 31 March 2024 AifoxHi talk contribs created page 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:55, 31 March 2024 AifoxHi 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 =...")
- 17:54, 31 March 2024 AifoxHi talk contribs created page 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:53, 31 March 2024 AifoxHi 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, 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:52, 31 March 2024 AifoxHi 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'...")
- 17:52, 31 March 2024 AifoxHi talk contribs created page 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:51, 31 March 2024 AifoxHi 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 local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
- 17:51, 31 March 2024 AifoxHi talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
- 17:50, 31 March 2024 AifoxHi talk contribs created page 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:50, 31 March 2024 AifoxHi talk contribs created page 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:50, 31 March 2024 AifoxHi 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)...")
- 17:49, 31 March 2024 AifoxHi talk contribs created page 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:49, 31 March 2024 AifoxHi talk contribs created page 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:48, 31 March 2024 AifoxHi talk contribs created page 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:47, 31 March 2024 AifoxHi 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('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...")