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:
- D
- wikiNonStop edit
- 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
9 September 2026
|
|
N 11:52 | Module:Icon/data 2 changes history +12,711 [Majestix (2×)] | |||
|
|
11:52 (cur | prev) +101 Majestix talk contribs | ||||
| N |
|
10:20 (cur | prev) +12,610 Majestix talk contribs (Created page with "-- This module stores icon data for Module:Icon. -------------------------------------------------------------------------------- -- Icon data -------------------------------------------------------------------------------- local data = { fa = { image = "Featured article star.svg", tooltip = "Featured article", link = true, }, far = { image = "Cscr-star piece.png", tooltip = "Featured article review", link = true, }, farc = { image = "Cscr-star p...") | |||
| N 10:50 | Template:Icon/doc diffhist +1,746 Majestix talk contribs (Created page with "{{Documentation subpage}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see Wikipedia:Wikidata) --> {{High-use}} {{Lua|Module:Icon}} == About == This template creates an inline image that is used in metapages such as Wikipedia:Vital articles and/or in user pages. == Usage == ;Basic usage :{{tlx|icon|''code''}} :{{tlx|icon|class{{=}}''code''}} ;Custom size :{{tlx|ico...") | ||||
| N 10:49 | Module:Icon/table diffhist +2,939 Majestix talk contribs (Created page with "-- Create a table of icons to display on the template test case page require('strict') local p = {} local m_iconData = mw.loadData("Module:Icon/data") local m_iconSandboxData = mw.loadData("Module:Icon/data/sandbox") local function mergeTables(...) local ret = {} for _, t in ipairs{...} do for k, v in pairs(t) do ret[k] = v end end return ret end local function reconstituteAliases(iconDataCollection) local ret = {} for code, iconData in pairs(iconDataCol...") | ||||
| N 09:48 | Module:Icon diffhist +2,140 Majestix talk contribs (Created page with "-- This module implements Template:Icon. require("strict") local yesNo = require("Module:Yesno") local getArgs = require("Module:Arguments").getArgs local p = {} -- Determine whether we're being called from a sandbox local sandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true) and '/sandbox' or '' -- Implements Template:Icon -- Returns the icon image corresponding to a string (like 'B') function p._main(args, data) local data_module = 'Module:Ico...") | ||||