User contributions for Oros
Appearance
27 February 2025
- 06:5906:59, 27 February 2025 diff hist −81 Category:Realms No edit summary
- 06:5806:58, 27 February 2025 diff hist −16 Form:Realms Generated from a page schema
- 06:5806:58, 27 February 2025 diff hist −22 Category:Realms No edit summary
- 06:5706:57, 27 February 2025 diff hist +62 Form:Realms Generated from a page schema
- 06:5706:57, 27 February 2025 diff hist −4 Template:Realm Infobox Generated from a page schema Tag: Manual revert
- 06:5706:57, 27 February 2025 diff hist +157 Category:Realms No edit summary
- 06:5006:50, 27 February 2025 diff hist −36 Form:Realms Generated from a page schema Tags: Mobile edit Mobile web edit
- 06:5006:50, 27 February 2025 diff hist −129 Category:Realms No edit summary
- 06:4706:47, 27 February 2025 diff hist +4 Template:Realm Infobox Generated from a page schema Tags: Manual revert Mobile edit Mobile web edit
- 06:4706:47, 27 February 2025 diff hist +4 Category:Realms No edit summary
- 06:4706:47, 27 February 2025 diff hist −27 Template:Realm Infobox Generated from a page schema Tags: Manual revert Mobile edit Mobile web edit
- 06:4706:47, 27 February 2025 diff hist −47 Category:Realms No edit summary Tag: Manual revert
- 06:4606:46, 27 February 2025 diff hist +27 Template:Realm Infobox Generated from a page schema
- 06:4606:46, 27 February 2025 diff hist +47 Category:Realms No edit summary
- 06:3606:36, 27 February 2025 diff hist +10 Form:Realms Generated from a page schema
- 06:3606:36, 27 February 2025 diff hist +48 Category:Realms No edit summary
- 06:3006:30, 27 February 2025 diff hist −11 Form:Realms Generated from a page schema Tag: Manual revert
- 06:3006:30, 27 February 2025 diff hist −4 Template:Realm Infobox Generated from a page schema Tag: Manual revert
- 06:2906:29, 27 February 2025 diff hist −42 Category:Realms No edit summary Tag: Manual revert
- 06:2706:27, 27 February 2025 diff hist +4 Template:Realm Infobox Generated from a page schema
- 06:2706:27, 27 February 2025 diff hist +4 Category:Realms No edit summary
- 06:2506:25, 27 February 2025 diff hist −61 Form:Realms Generated from a page schema
- 06:2506:25, 27 February 2025 diff hist −61 Category:Realms No edit summary
- 06:2306:23, 27 February 2025 diff hist +72 Form:Realms Generated from a page schema
- 06:2306:23, 27 February 2025 diff hist +28 Category:Realms No edit summary
- 06:2306:23, 27 February 2025 diff hist +71 Category:Realms No edit summary
- 06:2006:20, 27 February 2025 diff hist +20 Form:Realms Generated from a page schema
- 06:1906:19, 27 February 2025 diff hist +40 Category:Realms No edit summary
- 06:1806:18, 27 February 2025 diff hist −5 Form:Realms Generated from a page schema
- 06:1706:17, 27 February 2025 diff hist +2 Category:Realms No edit summary
- 06:1606:16, 27 February 2025 diff hist −42 Form:Realms Generated from a page schema
- 06:1606:16, 27 February 2025 diff hist −107 Category:Realms No edit summary
- 06:1506:15, 27 February 2025 diff hist +73 Form:Realms Generated from a page schema
- 06:1506:15, 27 February 2025 diff hist +231 Category:Realms No edit summary
- 06:0606:06, 27 February 2025 diff hist −50 Form:Realms Generated from a page schema Tag: Manual revert
- 06:0606:06, 27 February 2025 diff hist −88 Category:Realms No edit summary Tag: Manual revert
- 06:0506:05, 27 February 2025 diff hist +50 Form:Realms Generated from a page schema
- 06:0506:05, 27 February 2025 diff hist +88 Category:Realms No edit summary
- 05:5805:58, 27 February 2025 diff hist +47 Template:Realm Sections Generated from a page schema
- 05:5805:58, 27 February 2025 diff hist +79 Form:Realms Generated from a page schema
- 05:5805:58, 27 February 2025 diff hist +259 Category:Realms No edit summary
- 05:5505:55, 27 February 2025 diff hist +486 N Module:Hatnote/styles.css Created page with "→{{pp|small=y}}: .hatnote { font-style: italic; } →Limit structure CSS to divs because of [[Module:Hatnote inline]]: div.hatnote { →@noflip: padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } →The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .hatnote + link + .hatnote { margin-top: -0.5em; } @media print { body.ns-0 .hatnote { display: none !impo..." current
- 05:5505:55, 27 February 2025 diff hist +745 N Module:Yesno 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 =..." current
- 05:5405:54, 27 February 2025 diff hist +10,054 N Module:Arguments 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'..." current
- 05:5405:54, 27 February 2025 diff hist +6,484 N Module:Format link Created page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(..." current
- 05:5405:54, 27 February 2025 diff hist +6,037 N Module:Hatnote Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules...." current
- 05:5305:53, 27 February 2025 diff hist +4,641 N Module:Labelled list hatnote Created page with "-------------------------------------------------------------------------------- -- Labelled list -- -- -- -- This module does the core work of creating a hatnote composed of a list -- -- prefixed by a colon-terminated label, i.e. "LABEL: [andList of pages]", -- -- for {{see also}} and similar templates...." current
- 05:5305:53, 27 February 2025 diff hist +7,325 N Module:Hatnote list Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd..." current
- 05:5105:51, 27 February 2025 diff hist +157 N Template:Hatnote/styles.css Created page with ".hatnote { font-style: italic; padding-bottom: 0.4em; margin-bottom: 0.4em; border-bottom: 1px solid #ccc; } .hatnote.no-border { border-bottom: none; }" current
- 05:3405:34, 27 February 2025 diff hist +157 N Template talk:Hatnote/styles.css Created page with ".hatnote { font-style: italic; padding-bottom: 0.4em; margin-bottom: 0.4em; border-bottom: 1px solid #ccc; } .hatnote.no-border { border-bottom: none; }" current