A user with 73 edits. Account created on 28 March 2024.
25 March 2024
- 18:1118:11, 25 March 2024 diff hist +2,161 N Template:Card No edit summary
- 18:0118:01, 25 March 2024 diff hist +508 N MediaWiki:Common.js No edit summary
- 14:4714:47, 25 March 2024 diff hist +6,738 N Module:Documentation No edit summary
- 14:4314:43, 25 March 2024 diff hist +365 N Template:Documentation No edit summary
- 14:4014:40, 25 March 2024 diff hist +5,880 N Module:Documentation/i18n.json No edit summary
- 14:2314:23, 25 March 2024 diff hist +95 N Module:Navplate/doc No edit summary
- 14:1514:15, 25 March 2024 diff hist +2,631 N Module:Navplate/styles.css Created page with ".template-navplate { margin-top: var( --space-md ); clear: both; font-size: var( --font-size-small ); line-height: var( --line-height-sm ); border: 1px solid var( --border-color-base ); border-radius: var( --border-radius--medium ); overflow: hidden; } .template-navplate__header { padding: var( --space-sm ) var( --space-md ); background-color: var( --color-surface-2 ); display: flex; align-items: center; gap: var( --space-md ); } .template-navplate..."
- 14:1414:14, 25 March 2024 diff hist +3,515 N Module:DependencyList/i18n.json No edit summary
- 14:0814:08, 25 March 2024 diff hist +7,268 N Module:Navplate Created page with "-------------------------------------------------------------------------------- -- Module:Navplate -- -- This module implements {{Navplate}} -- -- Based on Module:Infobox -- -- This is a work in progress -- ----------------------------------------------------------------------..."
- 14:0814:08, 25 March 2024 diff hist +2,217 N Template:Navplate/doc Created page with "{{Documentation}} {{t|navplate}} allows a navigational template to be set up relatively quickly by supplying it with one or more lists of links, similar to [https://en.wikipedia.org/wiki/Template:Navbox Template:Navbox] on Wikipedia. == Usage == Please remove the parameters that are left blank. <pre> {{Navplate |subtitle = |title = |label1 = |list1 = |label2 = |list2 = |label3 = |list3 = }} </pre> == Parameter list == ;<code>subtitle</code> :Subtitle text..."
- 14:0814:08, 25 March 2024 diff hist +132 N Template:Navplate Created page with "<includeonly>{{#invoke:Navplate|navplate}}</includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage --> </noinclude>"
- 14:0314:03, 25 March 2024 diff hist +202 N Module:Redirect/doc Created page with "{{Documentation}} {{Wikipedia template}} '''Module:Redirect''' contains functions to find the target of a redirect page. See Module:Redirect on Wikipedia for more details."
- 14:0314:03, 25 March 2024 diff hist +3,689 N Module:Redirect Created page with "-- This module provides functions for getting the target of a redirect page. local p = {} -- Gets a mw.title object, using pcall to avoid generating script errors if we -- are over the expensive function count limit (among other possible causes). local function getTitle(...) local success, titleObj = pcall(mw.title.new, ...) if success then return titleObj else return nil end end -- Gets the name of a page that a redirect leads to, or nil if it isn't a -- redi..."
- 14:0314:03, 25 March 2024 diff hist +2,030 N Template:No redirect/doc Created page with "{{Documentation}} This template provides an easy way to link a redirect page without following the redirect. See Template:No redirect on Wikipedia for more details. == Usage == <pre>{{no redirect|page name|label}}</pre> It accepts two unnamed parameters: * 1= (required) the name of the page to link. * 2= (optional) the text to be displayed. If this is omitted then the input of the first parameter is used. === Example === Instead of h..."
- 13:4913:49, 25 March 2024 diff hist +355 N Template:No redirect Created page with "{{{{{|safesubst:}}}#if: {{{{{|safesubst:}}}#invoke:Redirect|isRedirect|{{{1}}}}} | <span class="plainlinks">[{{{{{|safesubst:}}}fullurl:{{{1}}}|redirect=no}} {{{2|{{{1}}}}}}]</span> | {{{{{|safesubst:}}}#if:{{{2|}}}|[[:{{{{{|safesubst:}}}FULLPAGENAME:{{{1}}}}}|{{{2}}}]]|[[:{{{{{|safesubst:}}}FULLPAGENAME:{{{1}}}}}]]}} }}<noinclude> {{/doc}} </noinclude>"
- 13:4813:48, 25 March 2024 diff hist +710 N Template:Short description/doc No edit summary
- 13:4613:46, 25 March 2024 diff hist +86 N Template:Short description Created page with "{{#if:{{{1|}}}|{{SHORTDESC:{{{1|}}}}}|{{SHORTDESC:}}}}<noinclude> {{/doc}}</noinclude>"
- 13:4613:46, 25 March 2024 diff hist +40 N Template:SHORTDESC Redirected page to Template:Short description
- 13:4413:44, 25 March 2024 diff hist +674 N Template:Hatnote/doc Created page with "{{Documentation|fromWikipedia=true}} {{t|Hatnote}} is a simple notice template intended for use posting editorial notes in articles. Note that the user should supply a short bolded description of what kind of editorial note this is. ;Sample Output: <nowiki>{{Note|'''Note:''' This is an editorial comment.}}</nowiki> ;Results in: {{Note|'''Note:''' This is an editorial comment.}} ;Sample Output: <nowiki>{{Note|'''Errata:''' Correction to this comm-link (include referen..."
- 13:4413:44, 25 March 2024 diff hist +85 N Template:Hatnote Created page with "<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly><noinclude>{{/doc}}</noinclude>"
- 13:4313:43, 25 March 2024 diff hist +30 N Template:Note Redirected page to Template:Hatnote
- 13:3213:32, 25 March 2024 diff hist +124 N Module:Documentation/doc Created page with "{{Documentation|scwShared=true}} '''Module:Documentation''' implements Template:Documentation for templates and modules."
- 13:2313:23, 25 March 2024 diff hist +203 N Module:Error/doc Created page with "{{Documentation|fromWikipedia=true}} '''Module:Error''' creates an html message with class "error". It is a replacement for {{tl|error}} - please see the documentation page there for usage instructions."
- 13:2313:23, 25 March 2024 diff hist +1,191 N Module:Error Created page with "-- Imported from: https://en.wikipedia.org/wiki/Module:Error -- This module implements {{error}}. local p = {} local function _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') :wikitext(tostring(args.message or args..."
- 13:2213:22, 25 March 2024 diff hist +237 N Module:TableTools/doc Created page with "{{Documentation}} {{Wikipedia template}} '''Module:TableTools''' includes a number of functions for dealing with Lua tables. It is a meta-module, meant to be called from other Lua modules, and should not be called directly from #invoke."
- 13:2213:22, 25 March 2024 diff hist +8,030 N Module:TableTools Created page with "--[[ ------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should -- -- not be called directly from #invoke...."
- 13:2113:21, 25 March 2024 diff hist +9,108 N Module:List/doc Created page with "{{Documentation|fromWikipedia=true}} '''Module:List''' outputs various kinds of lists. At present, it supports bulleted lists, unbulleted lists, horizontal lists, ordered lists (numbered or alphabetical), and horizontal ordered lists. It allows for easy css styling of the list or of the individual list items. == Usage == ; Quick usage <pre><nowiki>{{</nowiki>#invoke:list<nowiki>|</nowiki>''function''<nowiki>|</nowiki>''first item''<nowiki>|</nowiki>''second item''<no..."
- 13:2113:21, 25 March 2024 diff hist +5,565 N Module:List Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''..."
- 13:2013:20, 25 March 2024 diff hist +1,023 N Module:Shortcut/config Created page with "-- This module holds configuration data for Module:Shortcut. return { -- The heading at the top of the shortcut box. It accepts the following parameter: -- $1 - the total number of shortcuts. (required) ['shortcut-heading'] = '{{PLURAL:$1|Shortcut|Shortcuts}}', -- The error message to display when a shortcut is invalid (is not a string, or -- is the blank string). It accepts the following parameter: -- $1 - the number of the shortcut in the argu..."
- 13:2013:20, 25 March 2024 diff hist +109 N Module:Shortcut/doc Created page with "{{Documentation|fromWikipedia=true}} '''Module:Shortcut''' makes a box showing the shortcut links to a page."
- 13:1913:19, 25 March 2024 diff hist +4,336 N Module:Shortcut Created page with "-- This module implements {{shortcut}}. -- Set constants local CONFIG_MODULE = 'Module:Shortcut/config' -- Load required modules local checkType = require('libraryUtil').checkType local yesno = require('Module:Yesno') local p = {} local function message(msg, ...) return mw.message.newRawMessage(msg, ...):plain() end local function makeCategoryLink(cat) return string.format('%s:%s', mw.site.namespaces[14].name, cat) end function p._main(shortcuts, options, fra..."
- 13:1913:19, 25 March 2024 diff hist +40 N Template:Tsh Redirected page to Template:Template shortcut
- 13:1813:18, 25 March 2024 diff hist +1,766 N Template:Template shortcut/doc Created page with "{{Documentation|fromWikipedia=true}} {{tsh|tsh}} This template displays one or more of a template's shortcuts (that is, redirects, also known as aliases, as in the box appearing at the right. {{tl|Tsh}} is a shortcut to this template, {{<nowiki />template shortcut}}, and can be used in its place. See Wikipedia:Template:Template shortcut for more details. Note that there are no optional parameter in this template. == Usage == Place this template and its list of few..."
- 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(..."