More actions
28 September 2024
- 10:2210:22, 28 September 2024 diff hist +77 N Template:For Created page with "<includeonly>{{#invoke:For|For}}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 10:1910:19, 28 September 2024 diff hist +20,553 N Module:String/doc Created page with "{{Documentation|fromWikipedia=true}} This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. == Global options == ; ignore_error..." current
- 10:1810:18, 28 September 2024 diff hist +18,033 N Module:String Created page with "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error c..." current
- 10:1810:18, 28 September 2024 diff hist +677 N Template:Replace/doc Created page with "{{Documentation}} ;Usage <code>{{t|replace |''string'' |''target'' |''replacement''|''count''}}</code> Returns ''string'' with the first ''n'' occurrences of ''target'' replaced with ''replacement''. Omitting <code>count</code> will replace all occurrences. ;Examples * <code><nowiki>{{replace |One two two three two four twotwo five |two |NINE}}</nowiki></code> → {{replace|One two two three two four twotwo five|two|NINE}} * <code><nowiki>{{replace |One two two three t..." current
- 10:1810:18, 28 September 2024 diff hist +176 N Template:Replace Created page with "<includeonly>{{#invoke:String|replace|source={{{1}}}|{{{2}}}|{{{3}}}|count={{{count|}}}|plain={{yesno|{{{regex|no}}}|yes=0|no=1}}}}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 10:1710:17, 28 September 2024 diff hist +83 N Template:DPLAndEscape Created page with "<includeonly>{{replace|{{{1}}}|&|and}}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 10:1610:16, 28 September 2024 diff hist +90 N Template:DPLCat/doc Created page with "{{Documentation}} Template is used in several other dynamic templates. Please do not edit." current
- 10:1510:15, 28 September 2024 diff hist +398 N Template:DPLCat Created page with "<includeonly> {{#dpl: |category={{DPLAndEscape|{{{1}}}}}&{{DPLAndEscape|{{{2}}}}}&{{DPLAndEscape|{{{3}}}}} |notcategory={{{not1|}}} |mode=inline |noresultsheader=empty |ordermethod=title |allowcachedresults=true |includesubpages=false |notnamespace=File |skipthispage=no |format = ,%TITLE% • ,,}} </includeonly> <noinclude> Category:DPL templates{{/doc}}</noinclude>" current
- 10:1510:15, 28 September 2024 diff hist +233 N Template:DPLCat2/doc Created page with "{{Documentation}} Same as {{t|DPLCat}} except it does not have the dots. Template is used in several other dynamic templates. Please do not edit. <includeonly> Category:DPL templates Category:Utility templates </includeonly>" current
- 10:1410:14, 28 September 2024 diff hist +390 N Template:DPLCat2 Created page with "<includeonly> {{#dpl: |category={{DPLAndEscape|{{{1}}}}}&{{DPLAndEscape|{{{2}}}}}&{{DPLAndEscape|{{{3}}}}} |notcategory={{{not1|}}} |mode=inline |ordermethod=title |allowcachedresults=true |includesubpages={{#if:{{{includesubpages|}}}|true|false}} |namespace={{{namespace|}}} |notnamespace=File |skipthispage=no |format=,%TITLE%,,}} </includeonly> <noinclude>{{/doc}}</noinclude>" current
- 10:1310:13, 28 September 2024 diff hist 0 Age of Mythology: Lua No edit summary
- 10:1210:12, 28 September 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." current
- 10:1110:11, 28 September 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...."
- 10:1110:11, 28 September 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..." current
- 10:1110:11, 28 September 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 = ''..." current
- 10:1010:10, 28 September 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." current
- 10:1010:10, 28 September 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..." current
- 10:0910:09, 28 September 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..." current
- 10:0910:09, 28 September 2024 diff hist +96 N Template:Template shortcut Created page with "<includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 10:0810:08, 28 September 2024 diff hist +40 N Template:Tsh Redirected page to Template:Template shortcut current Tag: New redirect
- 10:0610:06, 28 September 2024 diff hist −2 Template:Short description/doc No edit summary current
- 10:0610:06, 28 September 2024 diff hist +714 N Template:Short description/doc Created page with "{{Documentation}} {{tsh|SHORTDESC}} {{t|Short description}} is used to add a short description to a page. == Usage == {{tlx|Short description|Write your short description here}} == TemplateData == <templatedata> { "params": { "1": { "label": "Description", "description": "The short description of the article", "example": "Online free encyclopedia anyone can edit", "required": true, "type": "content" } }, "descrip..."
- 10:0510:05, 28 September 2024 diff hist +86 N Template:Short description Created page with "{{#if:{{{1|}}}|{{SHORTDESC:{{{1|}}}}}|{{SHORTDESC:}}}}<noinclude> {{/doc}}</noinclude>" current
- 10:0510:05, 28 September 2024 diff hist +40 N Template:SHORTDESC Redirected page to Template:Short description current Tag: New redirect
- 10:0410:04, 28 September 2024 diff hist +2,048 N Module:Navplate/styles.css Created page with ".template-navplate { margin-top: 10px; clear: both; font-size: 0.75rem; line-height: 5px; border: 1px solid white; border-radius: 10px; overflow: hidden; } .template-navplate__header { padding: 15px; background-color: grey; display: flex; align-items: center; gap: 10px; } .template-navplate.mw-collapsed .template-navplate__header { background-color: transparent; } .template-navplate__subtitle { font-size: 0.5rem; } .template-navplate__subtitle,..."
- 09:5709:57, 28 September 2024 diff hist +36 N Template:Wiki navplate Redirected page to Template:Navplate wiki current Tag: New redirect
- 09:5609:56, 28 September 2024 diff hist +95 N Module:Navplate/doc Created page with "{{Documentation|scwShared=true}} '''Module:Navplate''' implements the {{t|navplate}} template."
- 09:5609:56, 28 September 2024 diff hist +7,322 N Module:Navplate Created page with "-------------------------------------------------------------------------------- -- Module:Navplate -- -- This module implements {{Navplate}} -- -- Based on Module:Infobox -- -- This is a work in progress -- ----------------------------------------------------------------------..."
- 09:5509:55, 28 September 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..."
- 09:5509:55, 28 September 2024 diff hist +132 N Template:Navplate Created page with "<includeonly>{{#invoke:Navplate|navplate}}</includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage --> </noinclude>" current
- 09:5509:55, 28 September 2024 diff hist +410 N Template:Navplate wiki Created page with "{{Navplate |id=wiki |subtitle=In the |title=Star Citizen Wiki community |label1 = Projects |list1 = {{DPLCat2|Projects|namespace=Star_Citizen}} |label2 = Policies |list2 = {{DPLCat2|Policies|namespace=Star_Citizen}} |label3 = Editing guides |list3 = {{DPLCat2|Star Citizen Wiki editing guides|namespace=Star_Citizen|includesubpages=true}} }} <noinclude>{{/doc}}</noinclude>"
- 09:5209:52, 28 September 2024 diff hist +30 N Template:Note Redirected page to Template:Hatnote current Tag: New redirect
- 09:5209:52, 28 September 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..." current
- 09:5109:51, 28 September 2024 diff hist +85 N Template:Hatnote Created page with "<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly><noinclude>{{/doc}}</noinclude>" current
- 09:4709:47, 28 September 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." current
- 09:4609:46, 28 September 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..." current
- 08:4808:48, 28 September 2024 diff hist +663 N Module:Statsbar/styles.css Created page with ".template-statsbar { margin: 10px; display: grid; font-size: 0.8125rem; line-height: 5px; overflow-x: auto; grid-auto-columns: minmax( auto, 1fr ); grid-auto-flow: column; } .template-statsbar__item { padding: 10px; display: flex; align-items: center; flex-direction: column; } .template-statsbar__item + .template-statsbar__item { border-left: 1px solid grey; } .template-statsbar__label { color: lightgrey; letter-spacing: 0.05em; white-spa..."
- 08:4608:46, 28 September 2024 diff hist +17 N Module:Statsbar/doc Created page with "{{Documentation}}" current
- 08:4608:46, 28 September 2024 diff hist +5,142 N Module:Statsbar Created page with "local p = {} local args = {} local origArgs = {} local root -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end tabl..." current
- 08:4508:45, 28 September 2024 diff hist +1,010 N Template:Statsbar/doc Created page with "{{Documentation}} {{t|Statsbar}} displays a list of stats in a horizontal scrollable bar. == Usage == Please remove the parameters that are left blank. <syntaxhighlight lang="wiki"> {{Statsbar |label1 = |data1 = |label2 = |data2 = |label3 = |data3 = }} </syntaxhighlight> == Parameter list == ;<code>label<sub>n</sub></code> :Label text for the stat ;<code>data<sub>n</sub></code> :Data/value for the stat ;<code>desc<sub>n</sub></code> :Description text for th..." current
- 08:4508:45, 28 September 2024 diff hist +132 N Template:Statsbar Created page with "<includeonly>{{#invoke:Statsbar|statsbar}}</includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage --> </noinclude>" current
- 08:4208:42, 28 September 2024 diff hist +1,467 N Template:Para/doc Created page with "{{Documentation}} == Usage == This template is for giving examples of template parameter source code (useful in template documentation and talk page discussions of template code). It must have one or two parameters itself. The first parameter is the name of the example parameter to display (this may be ''empty'', but it must be ''present''), and the second (optional) parameter is a value for the first example parameter or, if the first {{tlx|para}} parameter is empty, an..." current
- 08:4208:42, 28 September 2024 diff hist +183 N Template:Para Created page with "<code class="nowrap" {{#if:{{{plain|}}}|style="border:none;background-color:inherit;color:inherit;"}}>|{{#if:{{{1|}}}|{{{1}}}=}}{{{2|}}}</code><noinclude>{{/doc}}</noinclude>" current
- 08:4208:42, 28 September 2024 diff hist +48 N Template:Template link expanded/doc Redirected page to Template:Template link general/doc current Tag: New redirect
- 08:4108:41, 28 September 2024 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
- 08:4108:41, 28 September 2024 diff hist +45 N Template:Tlx Redirected page to Template:Template link expanded current Tag: New redirect
- 08:4008:40, 28 September 2024 diff hist +41 N Template:Tlc Redirected page to Template:Template link code current Tag: New redirect
- 08:3908:39, 28 September 2024 diff hist +88 N Template:Template link general Created page with "{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>" current
- 08:3908:39, 28 September 2024 diff hist +44 N Template:Tl Redirected page to Template:Template link general current Tag: New redirect
- 08:3908:39, 28 September 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" current