Related changes
Appearance
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
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 2026
| N 21:48 | Module:Message box/imbox.css diffhist +1,840 LIMAFOX76 talk contribs (Created page with "→{{pp|small=y}}: .imbox { margin: 4px 0; border: 3px solid #36c; →Default "notice" blue: background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; overflow-x: hidden; } →For imboxes inside imbox-text cells.: .imbox .mbox-text .imbox { margin: 0 -0.6em; →1 - 0.6 = 0.4em left/right.: } .imbox-speedy { border: 3px solid #b32424; →Red: background-color: #fee7e6; →Pink: } .imbox-delete { border...") | ||||
| N 21:48 | Module:Namespace detect/config diffhist +3,545 LIMAFOX76 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 21:47 | Module:Namespace detect/data diffhist +2,569 LIMAFOX76 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 function...") | ||||
| N 21:47 | Module:Category handler/blacklist diffhist +765 LIMAFOX76 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 { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Heroes Wiki:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The user...") | ||||
| N 21:45 | Module:Category handler/shared diffhist +888 LIMAFOX76 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 21:45 | Module:Category handler/config diffhist +5,755 LIMAFOX76 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 21:44 | Module:Category handler/data diffhist +631 LIMAFOX76 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 21:43 | Module:Category handler diffhist +7,871 LIMAFOX76 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...") | ||||