3 July 2023
- 19:0219:02, 3 July 2023 diff hist +241 N Template:DPLlua helper/doc Created page with "{{Documentation}} '''Template:DPLlua helper''' is a helper template for Module:DPLlua to make it possible to include all parameters of a template while maintaining good performance. This template is not meant to be used on content pages." current
- 19:0219:02, 3 July 2023 diff hist +83 N Template:DPLlua helper Created page with "<includeonly>`#@@#`{{{%ARGS%|}}}`#@@#`</includeonly><noinclude>{{/doc}}</noinclude>" current
- 19:0119:01, 3 July 2023 diff hist +261 N Module:DPLlua/doc Created page with "{{Documentation}} '''Module:DPLlua''' uses Template:DPLlua helper to make it possible to include all parameters of a template while maintaining good performance. See [https://runescape.wiki/w/Module:DPLlua Module:DPLlua] on RuneScape Wiki for more details." current
- 19:0119:01, 3 July 2023 diff hist +16,313 N Module:DPLlua Created page with "-- <nowiki> local dpl = {} local libraryUtil = require( 'libraryUtil' ) local hasContent = require( 'Module:Paramtest' ).has_content local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg dpl.pipe = '¦' local dataContentMarker = '`#@@#`' local allIncludedParamNames = {} -- Custom function for splitting a string because mw.text.split() is waaay too slow local function split( str, pattern, plain ) local res = {} local con..." current
- 19:0019:00, 3 July 2023 diff hist +190 N Module:Paramtest/doc Created page with "{{Documentation}} '''Module:Paramtest''' is a helper module to be used by other modules. See [https://runescape.wiki/w/Module:Paramtest Module:Paramtest] on RuneScape Wiki for more details." current
- 19:0019:00, 3 July 2023 diff hist +2,892 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..." current
- 18:5118:51, 3 July 2023 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..." current
- 18:5118:51, 3 July 2023 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..." current
- 18:5018:50, 3 July 2023 diff hist +215 N Module:Array/doc Created page with "{{Documentation}} This module is a helper module to be used by other modules; it may not designed to be invoked directly. See [https://runescape.wiki/w/Module:Array Module:Array] on RuneScape Wiki for more details." current
- 18:5018:50, 3 July 2023 diff hist +30,594 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
- 18:4918:49, 3 July 2023 diff hist +120 N Module:DependencyList/doc Created page with "{{Documentation}} '''Module:DependencyList''' generates a list of dependency used by template and module documentation." current
- 18:4818:48, 3 July 2023 diff hist +24,819 N Module:DependencyList Created page with "require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local dpl = require( 'Module:DPLlua' ) local userError = require("Module:User error") local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local moduleIsUsed = false local COLLAPSE_LIST_LENGTH_THRESHOLD = 1 local MAX_DYNAMIC_REQUIRE_LIST_LE..."
- 18:4818:48, 3 July 2023 diff hist +109 N Module:Documentation/doc Created page with "{{Documentation}} '''Module:Documentation''' implements Template:Documentation for templates and modules." current
- 18:4718:47, 3 July 2023 diff hist +6,856 N Module:Documentation Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local yn = require( 'Module:Yesno' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local lang = mw.getContentLanguage() local p = {} function p.doc( frame ) local title = mw.title.getCurrentTitle() local args = frame:getParent().args local page = args[1] or mw.ustring.gsub( title.fullText, '/doc$', '' ) local ret, cats, ret1, ret2, ret..."
- 18:4618:46, 3 July 2023 diff hist +1,639 N Template:Documentation/styles.css Created page with ".documentation { display: flex; box-sizing: border-box; flex-direction: column; margin: 1.6rem 0; padding-top: 1.6rem; border-top: 1px solid; border-color: var( --border-color-base ); border-radius: var( --border-radius--medium ); font-size: 0.875rem; } .documentation-header { margin-top: 0; margin-bottom: 0.8rem; color: var( --color-base--emphasized ); font-size: 1.25rem; font-weight: 600; line-height: 1.2; } .documentation-subheader { margin: -0.6r..." current
- 18:4218:42, 3 July 2023 diff hist +1,226 N Template:Documentation/doc Created page with "{{Documentation}} The '''documentation''' template is transcluded in the template/module documentation. This template should only be used on subpages titled "doc". ==Usage== Place {{t|documentation}} at the top of the documentation page. If the page to be documented is a subpage, use {{t|documentation|pagename of page to be documented}} at the top of the documentation page. For example, Template:Foo/bar's documentation page would use {{t|documentation|Template:Foo/ba..." current
- 18:4218:42, 3 July 2023 diff hist +393 Template:Documentation No edit summary current
- 18:3918:39, 3 July 2023 diff hist +1,253 N Template:R from template shortcut Created page with "<noinclude>{{Template:This is a redirect/rcat|from shortcut}} </noinclude>{{#switch:{{#invoke:RedirectData|getRedirectToNamespace}} |Template= {{Redirect template |id=R from template shortcut |name=From a template shortcut |from=a shortcut page name '''in ''any'' namespace''' |to=a page in template namespace |info=**Shortcuts are wikilinked on community pages, talk pages, and edit summaries, but not in wp:mainspa..." current
- 18:3818:38, 3 July 2023 diff hist +62 N Template:Sc2 Redirected page to Template:Smallcaps2 current Tag: New redirect
- 18:3518:35, 3 July 2023 diff hist +3,083 Template:Template link code No edit summary current
- 18:3518:35, 3 July 2023 diff hist +214 N Template:Template link code Created page with "<includeonly>{{#Invoke:Template link general|main|nolink=yes|code=yes|nowrap=yes}}</includeonly><noinclude> {{Template:Template link general/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>"
- 18:3418:34, 3 July 2023 diff hist −173 Template:Tlc Redirected page to Template:Template link code current Tag: New redirect
- 18:3318:33, 3 July 2023 diff hist +214 N Template:Tlc Created page with "<includeonly>{{#Invoke:Template link general|main|nolink=yes|code=yes|nowrap=yes}}</includeonly><noinclude> {{Template:Template link general/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>"
- 18:3218:32, 3 July 2023 diff hist 0 N File:Ctl wndws alt.jpg No edit summary current
- 18:3118:31, 3 July 2023 diff hist 0 N File:AltGr Win Menu Ctrl key.jpg No edit summary current
- 18:2618:26, 3 July 2023 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..." current
- 18:2618:26, 3 July 2023 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
- 18:1418:14, 3 July 2023 diff hist +2,094 N Template:Mono/doc Created page with "{{Documentation}} == Usage == {{tlx|Mono|<var>text to format here</var>}} renders as: {{Mono|text to format here}} This template is for formatting short bits of content (the only parameter) as monospaced (nonproportional) text. It is simply a quick shorthand for the necessary {{WP|ref=no|Cascading Style Sheets|text=CSS}} code. It is a replacement for {{tag|tt}} which is an obsolete element under HTML5. ([http://www.w3.org/TR/html5/obsolete.html#non-conforming-featu..." current
- 18:1418:14, 3 July 2023 diff hist +103 N Template:Mono Created page with "<span style="font-family: monospace, monospace;">{{{2|{{{1}}}}}}</span><noinclude> {{/doc}}</noinclude>" current
- 18:1218:12, 3 July 2023 diff hist +115 N Module:Template link general/doc Created page with "{{Documentation}} {{Wikipedia template}} Implements {{Tl|Template link general}} and other templates in its family" current
- 18:1218:12, 3 July 2023 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(..." current
- 18:1118:11, 3 July 2023 diff hist +88 N Template:Template link general Created page with "{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>" current
- 18:1018:10, 3 July 2023 diff hist +44 N Template:Tlg Redirected page to Template:Template link general current Tag: New redirect
- 18:1018:10, 3 July 2023 diff hist +3,297 N Template:Template link expanded/doc Created page with "{{Documentation}} {{Wikipedia template}} {{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 bo..." current
- 18:0918:09, 3 July 2023 diff hist +134 N Template:Template link expanded Created page with "{{#Invoke:Template link general|main|code=on}}<noinclude> {{/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>" current
- 18:0918:09, 3 July 2023 diff hist +45 N Template:Tlx Redirected page to Template:Template link expanded current Tag: New redirect
- 18:0718:07, 3 July 2023 diff hist +1,134 N Template:Clear/doc Created page with "{{Documentation}} {{Wikipedia template}} {{t|Clear}} makes content wait until existing content is completed in all columns. It is often used to prevent text from flowing next to unrelated images. == Usage == * {{tlx|clear}} — adds <code><div style="clear:both;"></div></code> * {{tlx|clear|left}} — adds <code><div style="clear:left;"></div></code> * {{tlx|clear|right}} — adds <code><div style="clear:right;"></div></code> == Tem..." current
- 18:0718:07, 3 July 2023 diff hist +72 N Template:Clear Created page with "<div style="clear:{{{1|both}}};"></div><noinclude> {{/doc}} </noinclude>" current
- 17:5117:51, 3 July 2023 diff hist 0 m Template:Key press 1 revision imported current
- 14:5014:50, 3 July 2023 diff hist +13 Isuzu Vehicross Wiki No edit summary Tag: Visual edit: Switched
- 14:1314:13, 3 July 2023 diff hist +3 Template:Main page/offciallinks No edit summary current
- 14:1114:11, 3 July 2023 diff hist −883 Template:Main page/featured Replaced content with " <div class="home-card__label">Featured</div>" Tag: Replaced
- 14:0814:08, 3 July 2023 diff hist −79 Template:Main page/navigation/styles.css No edit summary current
- 14:0714:07, 3 July 2023 diff hist +24 Template:Main page/navigation/styles.css No edit summary
- 14:0614:06, 3 July 2023 diff hist +79 Template:Main page/navigation/styles.css No edit summary
- 14:0114:01, 3 July 2023 diff hist 0 N File:MPNav wheelstires.png No edit summary current
- 14:0114:01, 3 July 2023 diff hist 0 N File:MPNav suspension.png No edit summary current
- 14:0114:01, 3 July 2023 diff hist 0 N File:MPNav lights.png No edit summary current
- 14:0014:00, 3 July 2023 diff hist 0 N File:MPNav interior.png No edit summary current
- 14:0014:00, 3 July 2023 diff hist 0 N File:MPNav intake.png No edit summary current