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 18:30 | Template:Module rating 2 changes history +8,520 [Rosie (2×)] | |||
|
|
18:30 (cur | prev) +8,407 Rosie talk contribs (Removed redirect to Template:Template rating) Tag: Removed redirect | ||||
| N |
|
00:37 (cur | prev) +113 Rosie talk contribs (Redirected page to Template:Template rating) Tag: New redirect | |||
| N 17:52 | Template:Module other diffhist +429 Rosie talk contribs (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 and interwikis to the /doc subpage, not here! --> </noinclude>") | ||||
|
|
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:33 | Template:IsDocSubpage diffhist +418 Rosie talk contribs (Created page with "<onlyinclude><includeonly>{{#ifexpr: ( {{#ifeq:{{lc:{{SUBPAGENAME}}}}|{{lc:{{{override|doc}}}}}|1|0}} or ( {{#ifeq:{{lc:{{#titleparts:{{FULLPAGENAME}}|-1|-2}}}}|{{lc:{{{override|doc}}}}}|1|0}} and {{#if:{{#translation:}}|1|0}} ) )<!-- -->|{{{true|1}}}<!-- -->|{{{false|}}}<!-- -->}}</includeonly></onlyinclude> {{Documentation}} <!-- Add categories to the /doc subpage and interwikis in Wikidata, not here! -->") | ||||
| N 15:22 | Module:Category handler/blacklist/doc diffhist +513 Rosie talk contribs (Created page with "{{Module rating |<!-- Values: pre-alpha • alpha • beta • release • protected -- If a rating not needed/relevant, delete this template call -->}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see Wikipedia:Wikidata) --> == Usage == <code><nowiki>{{</nowiki>#invoke:{{BASEPAGENAME}}|''function_name''}}</code> <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | | <!-- Categories below this line, please; interw...") | ||||
| N 00:52 | Module:Error diffhist +1,156 Rosie talk contribs (Created page with "-- This module implements {{error}}. local p = {} function p._error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :cssText(args.style) :wikitext(tostring(args.message or args[1] or error('no message specified',...") | ||||
| N 00:52 | Template:Error diffhist +102 Rosie talk contribs (Created page with "{{#invoke:Error|error|{{{message|{{{1}}}}}}|tag={{{tag|}}}}}<noinclude> {{documentation}} </noinclude>") | ||||
| N 00:34 | Template:Ombox diffhist +146 Rosie talk contribs (Created page with "{{#invoke:Message box|ombox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </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>") | ||||