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
11 January 2026
|
|
22:07 | (Import log) [P1gsel (7×)] | |||
|
|
22:07 P1gsel talk contribs imported Module:Message box/ombox.css by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Module:Message box/configuration by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Module:Message box by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Template:Template link by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Template:Tl by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Module:Arguments by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Module:Yesno by file upload (1 revision) | ||||
| 19:50 | Template:Tl diffhist −47 Rosie talk contribs | ||||
|
|
N 17:37 | Module:Message box/ombox.css 2 changes history +2,401 [Rosie (2×)] | |||
|
|
17:37 (cur | prev) +478 Rosie talk contribs | ||||
| N |
|
00:32 (cur | prev) +1,923 Rosie talk contribs (Created page with "→{{pp|small=y}}: .ombox { margin: 4px 0; border-collapse: collapse; border: 1px solid #a2a9b1; →Default "notice" gray: background-color: var(--background-color-neutral-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } →For the "small=yes" option.: .ombox.mbox-small { font-size: 88%; line-height: 1.25em; } .ombox-speedy { border: 2px solid #b32424; →Red: background-color: #fee7e6; →Pink: } .ombox-de...") | |||
| N 15:24 | Module:Category handler/shared diffhist +888 Rosie 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 15:22 | Module:Category handler/blacklist diffhist +254 Rosie 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 15:21 | Module:Category handler/config diffhist +5,755 Rosie 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 15:21 | Template:Heavily used template/layout diffhist +523 Rosie talk contribs (Created page with "{{Mbox |type = query |image = {{NoImageNotes|class=noviewer|alt=⚠|40px}} |text = {{{text|empty}}} <div style="font-size:0.9em;"> {{{small|}}} {{#switch:{{PROTECTIONLEVEL:edit}} |autoconfirmed={{{autoconfirmed|}}} |templateeditor={{{templateeditor|{{{temp|}}}}}} |sysop={{{sysop|}}} }}</div> |width = 80% |style = padding:3px; border-color: var(--border-color-content-removed, #fc3); text-align:start |lang = {{{lang|}}} }}<noinc...") | ||||
| N 00:40 | Module:Namespace detect/config diffhist +3,545 Rosie 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 00:39 | Module:Namespace detect/data diffhist +2,569 Rosie 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 00:36 | Module:Category handler/data diffhist +631 Rosie 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 00:35 | Module:Category handler diffhist +7,871 Rosie 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 00:27 | Template:Mbox diffhist +153 Rosie talk contribs (Created page with "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! --> </noinclude>") | ||||
| N 00:14 | Module:Message box/configuration diffhist +6,642 Rosie 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 00:11 | Module:Message box diffhist +22,838 Rosie talk contribs (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 ---------------------------------------------------------------------------...") | ||||
| N 00:10 | Module:Yesno diffhist +745 Rosie 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 =...") | ||||
10 January 2026
| N 23:43 | Module:Arguments diffhist +10,054 Rosie 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 23:41 | Template:Tl diffhist +83 Rosie talk contribs (Redirected page to Template:Template link) | ||||
| N 23:41 | Template:Template link diffhist +224 Rosie talk contribs (Created page with "<span class="nowrap">{{</span>[[Template:{{{1}}}|{{{1}}}]]<span class="nowrap">}}</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>") | ||||