Recent changes
Appearance
Track the most recent changes to the wiki on this page.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
25 January 2025
|
17:28 | (Deletion log) [SoupLuigi (2×)] | |||
|
17:28 SoupLuigi talk contribs deleted page Template:Imbox (content was: "<onlyinclude>{{#invoke:Message box|imbox}}</onlyinclude> {{Documentation}} <!-- Add categories to the /doc subpage and interwikis in Wikidata, not here! -->", and the only contributor was "SoupLuigi" (talk)) | ||||
|
17:05 SoupLuigi talk contribs deleted page Template:Navbox (content was: "{{#invoke:Navbox|navbox}} <!--{| class="navbox wikitable mw-collapsible mw-collapsed" cellspacing="1" id="{{{id}}}" cellpadding="3" align="center" style="{{#if:{{{border|}}}| border:{{{borderwidth|5px}}} solid {{{border|}}} | border:1px solid #999}}; font-size: 15px; width: 100%; margin-top:5px; margin-bottom:5px; background:{{{background|transparent}}};" |- | colspan="2...", and the only contributor was "SoupLuigi" (talk)) |
N 17:25 | Module:Namespace detect/config diffhist +3,558 SoupLuigi talk contribs (Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...") |
N 17:23 | Module:Namespace detect/data diffhist +2,577 SoupLuigi talk contribs (Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local functi...") |
N 17:20 | Module:Namespace detect diffhist +6,006 SoupLuigi talk contribs (Created page with "--[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace aliases are...") |
N 17:19 | Module:Category handler/blacklist diffhist +254 SoupLuigi talk contribs (Created page with "-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '/[aA]rchive' -- Don't categorise archives. }") |
N 17:18 | Module:Category handler/shared diffhist +888 SoupLuigi talk contribs (Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return...") |
N 17:16 | Module:Category handler/config diffhist +5,755 SoupLuigi talk contribs (Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------...") |
N 17:15 | Module:Category handler/data diffhist +631 SoupLuigi talk contribs (Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(...") |
N 17:14 | Module:Category handler diffhist +7,871 SoupLuigi talk contribs (Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia...") |
N 17:13 | Module:Message box/configuration diffhist +6,798 SoupLuigi talk contribs (Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee...") |
N 17:11 | Module:Yesno diffhist +745 SoupLuigi talk contribs (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 =...") |
N 17:07 | Module:Message box diffhist +18,558 SoupLuigi talk contribs (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('strict') 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', image = '...") |
N 17:04 | Module:Arguments diffhist +10,054 SoupLuigi talk contribs (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'...") |
N 17:02 | Module:Navbar/configuration diffhist +904 SoupLuigi talk contribs (Created page with "local configuration = { ['templatestyles'] = 'Module:Navbar/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 list class ['mini'] = 'navbar-mini...") |
N 17:00 | Module:Navbar diffhist +5,089 SoupLuigi talk contribs (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, false, true, false, fals...") |
N 16:58 | Module:Navbox diffhist +15,215 SoupLuigi talk contribs (Created page with "-- -- This module implements {{Navbox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local getArgs -- lazily initialized local args local border local listnums local ODD_EVEN_MARKER = '\127_ODDEVEN_\127' local RESTART_MARKER = '\127_ODDEVEN0_\127' local REGEX_MARKER = '\127_ODDEVEN(%d?)_\127' local function striped(wikitext) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category th...") |
12:15 | User talk:SoupLuigi diffhist +33 SoupLuigi talk contribs (→Hello) |
12:15 | User rights log SoupLuigi talk contribs changed group membership for LBMapper12 from (none) to bureaucrat and administrator |
24 January 2025
10:36 | User talk:SoupLuigi diffhist +223 LBMapper12 talk contribs |