1 mai 2023
- 09:211 mai 2023 à 09:21 diff hist +237 N Module:TableTools/doc Page créée avec « {{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. » actuelle
- 09:211 mai 2023 à 09:21 diff hist +8 274 N Module:TableTools Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ ------------------------------------------------------------------------------------ -- TableTools -- --... » actuelle
- 09:201 mai 2023 à 09:20 diff hist +40 N Module:TNT/doc Page créée avec « {{Documentation}} {{Wikipedia template}} » actuelle
- 09:201 mai 2023 à 09:20 diff hist +6 220 N Module:TNT Page créée avec « -- -- INTRO: (!!! DO NOT RENAME THIS PAGE !!!) -- This module allows any template or module to be copy/pasted between -- wikis without any translation changes. All translation text is stored -- in the global Data:*.tab pages on Commons, and used everywhere. -- -- SEE: https://www.mediawiki.org/wiki/Multilingual_Templates_and_Modules -- -- ATTENTION: -- Please do NOT rename this module - it has to be identical on all wikis. -- This code is mai... » actuelle
- 09:191 mai 2023 à 09:19 diff hist +4 144 N Module:String2/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:String2''' contains five general purpose calls that convert strings to upper, lower, sentence or title case. There are also two utility calls that strip leading zeros from padded numbers and transform text so that it is not interpreted as wikitext. == Functions == === upper === The upper function simply converts all characters to upper case. === lower === The upper function simply converts all characters to up... » actuelle
- 09:181 mai 2023 à 09:18 diff hist +244 Module:String2 Aucun résumé des modifications actuelle
- 09:181 mai 2023 à 09:18 diff hist +3 565 N Module:String2 Page créée avec « local p = {} p.upper = function(frame) local s = mw.text.trim(frame.args[1] or "") return string.upper(s) end p.lower = function(frame) local s = mw.text.trim(frame.args[1] or "") return string.lower(s) end p.sentence = function (frame ) frame.args[1] = string.lower(frame.args[1]) return p.ucfirst(frame) end p.ucfirst = function (frame ) local s = mw.text.trim( frame.args[1] or "" ) local s1 = "" -- if it's a list chop off and (store as s1) every... »
- 09:181 mai 2023 à 09:18 diff hist +8 209 N Module:String/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:String''' 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 option... » actuelle
- 09:171 mai 2023 à 09:17 diff hist +15 975 N Module:String Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ 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, Media... » actuelle
- 09:171 mai 2023 à 09:17 diff hist +744 N Module:Shortcut/styles.css Page créée avec « →-------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- : .module-shortcutboxplain { float: right; margin: 0.8rem 0 0.8rem 1rem; padding: 10px; color: var( --color-base--subtle ); background: var( --color-surface-2 ); border-radius: 8px; text-alig... » actuelle
- 09:161 mai 2023 à 09:16 diff hist +113 N Module:Shortcut/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Shortcut''' makes a box showing the shortcut links to a page. » actuelle
- 09:161 mai 2023 à 09:16 diff hist +1 273 N Module:Shortcut/config Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- 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-head... »
- 09:151 mai 2023 à 09:15 diff hist +4 580 N Module:Shortcut Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- 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') lo... » actuelle
- 09:141 mai 2023 à 09:14 diff hist +207 N Module:Redirect hatnote/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Moduke:Redirect hatnote''' produces a hatnote for disambiguating a page that is linked to by a given redirect. It implements the {{tl|redirect}} hatnote template. » actuelle
- 09:131 mai 2023 à 09:13 diff hist +4 218 N Module:Redirect hatnote Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ -- This module produces a "redirect" hatnote. It looks like this: -- '"X" redirects here. For other uses, see Y.' -- It implements the {{redirect}} template. --]] local mHatnote = require('Module:Hatnote') local mHatL... » actuelle
- 09:131 mai 2023 à 09:13 diff hist +202 N Module:Redirect/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Redirect''' contains functions to find the target of a redirect page. See Module:Redirect on Wikipedia for more details. » actuelle
- 09:121 mai 2023 à 09:12 diff hist +3 933 N Module:Redirect Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- 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 (amon... » actuelle
- 09:111 mai 2023 à 09:11 diff hist +190 N Module:Paramtest/doc Page créée avec « {{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. » actuelle
- 09:101 mai 2023 à 09:10 diff hist +244 Module:Paramtest Aucun résumé des modifications actuelle
- 09:101 mai 2023 à 09:10 diff hist +2 055 N Module:Paramtest Page créée avec « --[[ {{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{ {arg1,ar... »
- 09:101 mai 2023 à 09:10 diff hist +276 N Module:Parameter names example/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Parameter names example''' implements {{tl|Parameter names example}}. It creates a template demonstration such as that shown opposite. Please see the template page for full documentation. » actuelle
- 09:101 mai 2023 à 09:10 diff hist +1 765 N Module:Parameter names example Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- This module implements {{parameter names example}}. local p = {} local function makeParam(s) local lb = '{' local rb = '}' return lb:rep(3) .. s .. rb:rep(3) end local function italicize(s) return "''" .... » actuelle
- 08:581 mai 2023 à 08:58 diff hist +289 N Module:Pagetype/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Pagetype''' is used to detect the page type of a given page. It detects redirect pages automatically and is highly customisable. It can be used on its own or as a meta-module to create other page-type-detection templates. » actuelle
- 08:571 mai 2023 à 08:57 diff hist +3 696 N Module:Pagetype/config Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Module:Pagetype configuration data -- -- This page holds localisation and configuration data for Mo... » actuelle
- 08:571 mai 2023 à 08:57 diff hist +6 640 N Module:Pagetype Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- -- -- PAGETYPE... » actuelle
- 08:571 mai 2023 à 08:57 diff hist +166 N Module:Ordinal/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Ordinal''' is meant to implement the {{tl|Ordinal}} template. Please see the template page for usage instructions. » actuelle
- 08:561 mai 2023 à 08:56 diff hist +1 764 N Module:Ordinal Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --This template will add the appropriate ordinal suffix to a given integer. Please do not modify this code without applying the changes first at Module:Ordinal/sandbox and testing. local p = {} local yesno... » actuelle
- 08:541 mai 2023 à 08:54 diff hist +230 N Module:NumberSpell/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:NumberSpell''' takes a number and returns the equivalent English word. For example, "2" becomes "two" and "79" becomes "seventy-nine". Numbers must be integers between 0 and 100. » actuelle
- 08:541 mai 2023 à 08:54 diff hist +2 322 N Module:NumberSpell Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- This module converts a number into its written English form. -- For example, "2" becomes "two", and "79" becomes "seventy-nine". local getArgs = require('Module:Arguments').getArgs local p = {} local max = 100 -- The... » actuelle
- 08:521 mai 2023 à 08:52 diff hist +3 200 N Module:Navplate/styles.css Page créée avec « .template-navplate { margin-top: var( --space-md ); clear: both; font-size: 0.875rem; 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 ); } .template-navplate.mw-collapsed .template-navplate__header { background-color: transparent; }... » actuelle
- 08:521 mai 2023 à 08:52 diff hist +80 N Module:Navplate/doc Page créée avec « {{Documentation}} '''Module:Navplate''' implements the {{t|navplate}} template. » actuelle
- 08:501 mai 2023 à 08:50 diff hist +7 207 N Module:Navplate Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Module:Navplate -- -- This module implements {{Navplate}}... » actuelle
- 08:481 mai 2023 à 08:48 diff hist +396 N Module:Namespace detect/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Namespace detect''' allows you to output different text depending on the namespace that a given page is in. It is a Lua implementation of the {{tl|namespace detect}} template, with a few improvements: all namespaces and all namespace aliases are supported, and namespace names are detected automatically for the local wiki. » actuelle
- 08:481 mai 2023 à 08:48 diff hist +2 813 N Module:Namespace detect/data Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to... » actuelle
- 08:471 mai 2023 à 08:47 diff hist +3 789 N Module:Namespace detect/config Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Namespace detect configuration data -- --... » actuelle
- 08:471 mai 2023 à 08:47 diff hist +6 235 N Module:Namespace detect Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT... » actuelle
- 08:461 mai 2023 à 08:46 diff hist +686 N Module:Main/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Main''' produces a link to a main article or articles. It implements the {{tl|main}} template. Normally, it produces a link like "Main article: A". If used in the category namespace, it produces a link like "The main article for this category is A". It is possible to specify multiple articles, and in this case plural wording is used automatically. If the first link is not an article, the modul... » actuelle
- 08:461 mai 2023 à 08:46 diff hist +2 505 N Module:Main Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ -- This module produces a link to a main article or articles. It implements the -- template {{main}}. -- -- If the module is used in category or category talk space, it produces "The -- main article for this category... » actuelle
- 08:451 mai 2023 à 08:45 diff hist +9 112 N Module:List/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''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>''seco... » actuelle
- 08:441 mai 2023 à 08:44 diff hist +5 809 N Module:List Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] =... » actuelle
- 08:441 mai 2023 à 08:44 diff hist +89 N Module:Link capture/doc Page créée avec « {{Documentation}} '''Module:Link capture''' implements the {{tl|Link capture}} template. » actuelle
- 08:431 mai 2023 à 08:43 diff hist +644 N Module:Link capture Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- local p = {} function p.linkcapture(frame) local linkString = frame.args[1] or "" local linkText = string.match(linkString, "%[%[([^%]]+)%]%]") local linkTextText = string.match(linkString, "%[%[[^%|]+%|([^%}]+... » actuelle
- 08:371 mai 2023 à 08:37 diff hist +305 N Module:LibraryUtil/doc Page créée avec « {{Documentation}} '''Module:LibraryUtil''' is mostly to keep track of modules using the standard Scributo library <code>libraryUtil</code>. See [https://runescape.wiki/w/Module:LibraryUtil Module:LibraryUtil] on RuneScape Wiki for more details. » actuelle
- 08:371 mai 2023 à 08:37 diff hist +2 791 N Module:LibraryUtil Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- <nowiki> local libraryUtil = require( 'libraryUtil' ) -- libraryUtil is a standard scribunto module, the following commented out code is just to show what is inside it. Documentation about these functions can be found at... » actuelle
- 08:361 mai 2023 à 08:36 diff hist +381 N Module:Labelled list hatnote/doc Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Labelled list hatnote''' provides a handful of functions that make it easy to implement hatnotes that take the form of a label in front of a list of pages. See Module:Labelled list hatnote on Wikipedia for more details. <includeonly> <!-- Categories below this line --> </includeonly> » actuelle
- 08:351 mai 2023 à 08:35 diff hist +3 301 N Module:Labelled list hatnote Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- Labelled list -- -- -- -- This module does the core work of creating a hatnote comp... » actuelle
- 08:331 mai 2023 à 08:33 diff hist +610 N Module:Key/styles.css Page créée avec « →-------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- : .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: 1... » actuelle
- 08:301 mai 2023 à 08:30 diff hist +69 N Module:Key/doc Page créée avec « {{Documentation}} {{Wikipedia template}} Implements {{tl|key press}} » actuelle
- 08:301 mai 2023 à 08:30 diff hist +4 912 N Module:Key Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- 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', ['s... » actuelle
- 08:261 mai 2023 à 08:26 diff hist +1 667 N Module:Infobox/styles.css Page créée avec « →-------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- : .infobox { max-width: 400px; font-size: 0.875rem; background-color: var( --color-surface-2 ); border-radius: var( --border-radius--large ); border-collapse: collapse; line-height: var( --line-height-sm... » actuelle