A user with 73 edits. Account created on 28 March 2024.
25 March 2024
- 13:1813:18, 25 March 2024 diff hist +96 N Template:Template shortcut Created page with "<includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{/doc}}</noinclude>"
- 12:0912:09, 25 March 2024 diff hist +48 N Template:Template link code/doc Redirected page to Template:Template link general/doc
- 12:0812:08, 25 March 2024 diff hist +41 N Template:Tlc Redirected page to Template:Template link code
- 12:0612:06, 25 March 2024 diff hist +88 N Template:Template link general Created page with "{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>"
- 12:0512:05, 25 March 2024 diff hist +3,293 N Template:Template link general/doc Created page with "{{Documentation|fromWikipedia=true}} {{tsh|{{{1|tlg}}}|{{{2|}}}}} This template, often abbreviated as {{tlf|{{#switch:{{lc:{{ROOTPAGENAME}}}} | tlg | template link general = tlg | tlb | template link with bold = tlb | tlc | template link code = tlc | tlw ||template link with linked braces = tlw | tlf | template link with link off = tlf | tltss | template link with title span, subst = tltss | tlx | template link expanded = tlx | tlxb | template link expanded with bold =..."
- 12:0412:04, 25 March 2024 diff hist +214 Nm Template:Template link code Pookaw moved page Template:Tlc to Template:Template link code without leaving a redirect
- 11:5011:50, 25 March 2024 diff hist +1,123 N Template:Documentation/styles.css Created page with ".documentation { margin-top: var( --space-md ); padding-top: var( --space-md ); border-top: 1px solid; border-color: var( --border-color-base ); font-size: var( --font-size-small ); } .documentation-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .documentation-title { color: var( --color-base--emphasized ); font-size: var( --font-size-x-large ); font-weight: var( --font-wei..."
- 11:4911:49, 25 March 2024 diff hist +111 N Template:T/piece Created page with "{{#ifeq: {{{1|---}}}|---|||<font color="gray">''<{{{1}}}>''</font>}}<noinclude> {{/doc}}</noinclude>"
- 11:4911:49, 25 March 2024 diff hist +627 N Template:T/doc Created page with "{{Documentation}} ;Description :A template link with a variable number of example parameters (0-20), which can be used to show example inputs. :Utilises Template:T/piece. ;Syntax :{{t|t|parameter1|parameter2|parameter3|parameter4|...|parameter20}} ;Sample code :<code><nowiki>{{t|welcome}}</nowiki></code> gives... :{{t|welcome}} :<code><nowiki>{{t|welcome|Item1|Item2|Item3|Item4|Item5|...}}</nowiki></code> gives... :{{t|welcome|Item1|Item2|Item3|Item4|Item5|...}} ;See..."
- 11:4911:49, 25 March 2024 diff hist +606 N Template:T Created page with "<includeonly><nowiki>{{</nowiki>[[Template:{{{1}}}|{{{1}}}]]{{t/piece|{{{2|---}}}}}{{t/piece|{{{3|---}}}}}{{t/piece|{{{4|---}}}}}{{t/piece|{{{5|---}}}}}{{t/piece|{{{6|---}}}}}{{t/piece|{{{7|---}}}}}{{t/piece|{{{8|---}}}}}{{t/piece|{{{9|---}}}}}{{t/piece|{{{10|---}}}}}{{t/piece|{{{11|---}}}}}{{t/piece|{{{12|---}}}}}{{t/piece|{{{13|---}}}}}{{t/piece|{{{14|---}}}}}{{t/piece|{{{15|---}}}}}{{t/piece|{{{16|---}}}}}{{t/piece|{{{17|---}}}}}{{t/piece|{{{18|---}}}}}{{t/piece|{{{19..."
- 11:4711:47, 25 March 2024 diff hist +1,226 N Template:Documentation/doc No edit summary
- 11:4211:42, 25 March 2024 diff hist +222 N Module:Module toc/doc Created page with "{{Documentation}} This module is used to generate a table of content consists of functions of a Lua module. See [https://runescape.wiki/w/Module:Module_toc Module:Module toc] on RuneScape Wiki for more details."
- 11:4111:41, 25 March 2024 diff hist +2,845 N Module:Module toc Created page with "-- Imported from: https://runescape.wiki/w/Module:Module%20toc -- <nowiki> local p = {} local function getNewlineLocations( content ) local locs = {} local pos = 0 repeat pos = mw.ustring.find( content, '\n', pos + 1, true ) table.insert( locs, pos ) until not pos return locs end local function findLineNumber( pos, newLineLocs ) local max = #newLineLocs local min = 1 repeat local i = math.ceil( (max + min) / 2..."
- 11:2611:26, 25 March 2024 diff hist +653 N Module:Arguments/doc Created page with "{{Documentation|scwShared=true|fromWikipedia=true}} '''Module:Arguments''' provides easy processing of arguments passed from #invoke. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly. Its features include: * Easy trimming of arguments and removal of blank arguments. * Arguments can be passed by both the current frame and by the parent frame at the same time. (More details below.) * Arguments can be passed in directly fr..."
- 11:2511:25, 25 March 2024 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
- 11:2511:25, 25 March 2024 diff hist +111 N Module:Template link general/doc Created page with "{{Documentation|fromWikipedia=true}} Implements {{Tl|Template link general}} and other templates in its family"
- 11:2411:24, 25 March 2024 diff hist +4,323 N Module:Template link general Created page with "-- This implements Template:Tlg local getArgs = require('Module:Arguments').getArgs local p = {} -- Is a string non-empty? local function _ne(s) return s ~= nil and s ~= "" end local nw = mw.text.nowiki local function addTemplate(s) local i, _ = s:find(':', 1, true) if i == nil then return 'Template:' .. s end local ns = s:sub(1, i - 1) if ns == '' or mw.site.namespaces[ns] then return s else return 'Template:' .. s end end local function trimTemplate(..."
- 11:2311:23, 25 March 2024 diff hist +88 N Template:Tl Created page with "{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>"
- 11:2211:22, 25 March 2024 diff hist +1,567 N Module:Mbox/styles.css Created page with ".mbox { position: relative; display: flex; flex-direction: column; margin-top: var( --space-xs ); margin-bottom: var( --space-md ); background-color: var( --color-surface-2 ); border-radius: var( --border-radius--medium ); color: var( --color-base--subtle ); font-size: var( --font-size-small ); line-height: var( --line-height-xs ); } .mbox.mbox-high { →FIXME: Update back to Citzen CSS var when patched: background-color..."
- 11:2211:22, 25 March 2024 diff hist +3,105 N Template:Format link/doc Created page with "{{Documentation|fromWikipedia=true}} This template formats a link for use in hatnote templates. It accepts up to three positional parameters, the link, an optional display value, and an optional target override (which if provided, makes the link parameter optional). These parameters may also be supplied by name, as <var>link</var>, <var>display</var>, and <var>target</var> respectively. Links to categories and files are automatically escaped with the [https://en.wikiped..."
- 11:2111:21, 25 March 2024 diff hist +186 N Template:Format link Created page with "<includeonly>{{{{{|safesubst:}}}#invoke:format link|formatLink}}</includeonly><noinclude> {{/doc}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>"
- 01:4501:45, 25 March 2024 diff hist +597 N Module:Hatnote/styles.css Pookaw changed the content model of the page Module:Hatnote/styles.css from "wikitext" to "Sanitized CSS"
- 01:3501:35, 25 March 2024 diff hist +966 N Module:Translate/doc Created page with "{{Documentation|scwShared=true}} This module allows templates and modules to be easily translated as part of the multilingual templates and modules project. Instead of storing English text in a module or a template, Translate module allows modules to be designed language-neutral, and store multilingual text in the <code>/i18n.json</code> subpage. This way your module or template will use those translated strings (messages), or if the message has not yet been translated,..."
- 01:3501:35, 25 March 2024 diff hist +8,376 N Module:Translate Created page with "require( 'strict' ) local Translate = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType --- Cache table containing i18n data at the 'data' key, and a key map at the 'keys' key --- The table is keyed by the i18n.json module name local cache = {} local i18nDataset = 'Module:Translate/i18n.json' --- Uses the current title as the base and appends '/i18n.js..."
- 01:3401:34, 25 March 2024 diff hist +17 N Module:Mbox/doc Created page with "{{Documentation}}"
- 01:3301:33, 25 March 2024 diff hist +1,880 N Module:Mbox Created page with "local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local mError -- lazily initialise Module:Error local p = {} --- Helper function to throw error -- -- @param msg string - Error message -- -- @return string - Formatted error message in wikitext local function makeWikitextError( msg ) mError = require( 'Module:Error' ) return mError.error { message = 'Error: ' .. msg..."
- 01:3201:32, 25 March 2024 diff hist +5,722 N Module:Format link/doc Created page with "{{Documentation|fromWikipedia=true}} This module, migrated from origins in Module:Hatnote, provides functionality for formatting links for display, including that powering the {{tl|format link}} template. It can pretty-format section links with the section symbol ("§") and appropriate whitespace, it automatically escapes category and file names with the colon trick, and includes functionality for italicizing the page or section name, and for d..."
- 01:3201:32, 25 March 2024 diff hist +6,544 N Module:Format link Created page with "-- Imported from: https://en.wikipedia.org/wiki/Module:Format_link -------------------------------------------------------------------------------- -- 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. -----------------------------------------..."
- 01:3101:31, 25 March 2024 diff hist +350 N Module:Hatnote list/doc Created page with "{{Documentation|fromWikipedia=true}} '''Module:Hatnote list''' 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 {{t|about}}, {{t|redirect}}, and their variants. Also introduced are andList & orList helpers for formatting lists with those conjunctions."
- 01:3101:31, 25 March 2024 diff hist +8,121 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..."
- 01:3101:31, 25 March 2024 diff hist +404 N Module:Hatnote/doc Created page with "{{Documentation|scwShared=true|fromWikipedia=true}} '''Module:Hatnote''' is a meta-module that provides various functions for making hatnotes. It implements the {{tl|hatnote}} template, for use in hatnotes at the top of pages, and the {{tl|format link}} template, which is used to format a wikilink for use in hatnotes. It also contains a number of helper functions for use in other Lua hatnote modules."
- 01:2901:29, 25 March 2024 diff hist +200 N Module:User error/doc Created page with "{{Documentation}} A less intimidating version of the built-in <syntaxhighlight inline lang="lua">error(...)</syntaxhighlight> function, to help editors fix their mistakes when transcluding a template."
- 01:2901:29, 25 March 2024 diff hist +920 N Module:User error Created page with "-------------------------------------------------------------------------------- -- A less intimidating version of the built-in "error()" function, to help -- editors fix their mistakes when transcluding a template. -- -- @see wikia:w:c:Dev:Module:User error for a similar module. -------------------------------------------------------------------------------- local checkType = require("libraryUtil").checkType; return function (message, ...) checkType("Module:User..."
- 01:2801:28, 25 March 2024 diff hist +926 N Module:Paramtest/doc Created page with "{{Documentation}} {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {ar..."
- 01:2801:28, 25 March 2024 diff hist +2,904 N Module:Paramtest Created page with "-- Imported from: https://runescape.wiki/w/Module:Paramtest --[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1..."
- 01:2701:27, 25 March 2024 diff hist +784 N Module:Yesno/doc Created page with "{{Documentation|fromWikipedia=true}} '''Module:Yesno''' provides a consistent interface for processing boolean or boolean-style string input. While Lua allows the <code>true</code> and <code>false</code> boolean values, wikicode templates can only express boolean values through strings such as "yes", "no", etc. This module processes these kinds of strings and turns them into boolean input for Lua to process. It also returns <code>nil</code> values as <code>nil</code>, t..."
- 01:2601:26, 25 March 2024 diff hist +1,039 N Module:Yesno Created page with "-- Imported from: https://en.wikipedia.org/wiki/Module:Yesno -- 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..."
- 01:2501:25, 25 March 2024 diff hist +30,602 N Module:Array Created page with "-- Imported from: https://runescape.wiki/w/Module:Array local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---@class Array ---@operator call(any[]): Array ---@operator concat(any[]): Array ---@operator concat(number|string|function): string ---@operator unm: Array ---@operator add(number|number[]|Array): Array ---@operator sub(number|number[]|Array): Array ---@operator mul(number|number[]..." current
- 01:2301:23, 25 March 2024 diff hist +22,955 N Module:DependencyList Created page with "--- Based on Module:DependencyList from RuneScape Wiki --- Modified to use SMW instead of DPL --- @see https://runescape.wiki/w/Module:DependencyList require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local userError = require("Module:User error") local hatnote = require('Module:Hatnote')._hatnote local mHatlist = require('Mod..."
- 01:1901:19, 25 March 2024 diff hist +1,123 N Module:Documentation/styles.css Created page with ".documentation { margin-top: var( --space-md ); padding-top: var( --space-md ); border-top: 1px solid; border-color: var( --border-color-base ); font-size: var( --font-size-small ); } .documentation-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .documentation-title { color: var( --color-base--emphasized ); font-size: var( --font-size-x-large ); font-weight: var( --font-wei..."
24 March 2024
- 22:1222:12, 24 March 2024 diff hist +602 N Template:Main page/header No edit summary
- 20:2020:20, 24 March 2024 diff hist +51 N Template:Key press No edit summary
- 19:5919:59, 24 March 2024 diff hist +361 N Module:Key/styles.css Created page with ".keyboard-key { padding: 0.25em 0.5em; display: inline-block; line-height: 1; font-weight: var( --font-weight-medium ); font-size: 0.875rem; border-radius: var( --border-radius--small ); border: 1px solid; border-color: var( --border-color-base ); background: var( --color-surface-3 ); color: var( --color-base--emphasized ); }"
- 19:5719:57, 24 March 2024 diff hist +4,946 N Module:Key Created page with "-- This module implements {{key press}}. local kbdPrefix = '<kbd class="keyboard-key nowrap">' local kbdSuffix = '</kbd>' local keyText = { ['caps lock'] = '⇪ Caps Lock', ['caps lock'] = '⇪ Caps Lock', ['shift'] = '⇧ Shift', ['shift'] = '⇧ Shift', ['enter'] = '↵ Enter', ['enter'] = '↵ Enter', ['cmd'] = '⌘ Cmd', ['cmd'] = '⌘ Cmd', ['command'] = '⌘..."
- 19:3919:39, 24 March 2024 diff hist +1,764 N Template:Main page/header/styles.css No edit summary
- 12:5712:57, 24 March 2024 diff hist 0 N MediaWiki:Disclaimers Created blank page
- 12:5412:54, 24 March 2024 diff hist 0 N MediaWiki:Disclaimerpage Blanked the page
- 01:4101:41, 24 March 2024 diff hist +62 N MediaWiki:Citizen-footer-tagline Created page with "© 2024 Dawn of the Fallen Community. All rights reserved."
- 01:3501:35, 24 March 2024 diff hist +5 N Category:Rules Created page with "Rules"
23 March 2024
- 16:4816:48, 23 March 2024 diff hist +2,741 N Template:Card/styles.css Created page with ".card { display: flex; min-width: 240px; max-width: 100%; box-sizing: border-box; flex-direction: column; flex-grow: 1; justify-content: space-between; margin: 0 0.2rem 0.4rem 0.2rem; background-color: var( --color-surface-1 ); border: 1px solid var( --border-color-base ); border-radius: var( --border-radius--medium ); box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.03 ), 0 1px 2px rgba( 0, 0, 0, 0.06 ); font-size: 0.875rem; transition: box-shadow 0.2s ease; } .car..."