Affichage combiné de tous les journaux disponibles sur Wiki Electrolab. Vous pouvez personnaliser l’affichage en sélectionnant le type de journal, le nom d’utilisateur ou la page concernée (ces deux derniers étant sensibles à la casse).
- 1 mai 2023 à 09:36 Electrolab discussion contributions a créé la page Modèle:Cite Jump Point (Page créée avec « <includeonly><cite class="citation rsi_jp"><span class="metadata citation-icon" title="Jump Point">x11px|link=</span><!-- -->{{#if:{{{author1|}}}|[[{{{author1}}}]],{{nbsp}}}}<!-- -->{{#if:{{{author2|}}}|[[{{{author2}}}]],{{nbsp}}}}<!-- -->{{#if:{{{author3|}}}|[[{{{author3}}}]],{{nbsp}}}}<!-- -->{{#ifexpr:{{{volume}}}<6 |David Ladyman,{{nbsp}} |{{#ifexpr: {{{volume}}} = 6 and {{{month}}} < 5 |David Ladyman,{{nbsp}} }} }}Ben Le... »)
- 1 mai 2023 à 09:27 Electrolab discussion contributions a créé la page Module:Yesno/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} '''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>n... »)
- 1 mai 2023 à 09:26 Electrolab discussion contributions a créé la page Module:Yesno (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- 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... »)
- 1 mai 2023 à 09:26 Electrolab discussion contributions a créé la page Module:Util/doc (Page créée avec « {{No documentation}} »)
- 1 mai 2023 à 09:25 Electrolab discussion contributions a créé la page Module:Util (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- Lua utility module. -- Usage: {{#invoke:util|function|arg1|arg2|...}} local p = {} -- Pluralize a word based on local dictionary or rules. -- Usage: {{#invoke:util|pluralize|arg}} function p.pluralize(frame) local base... »)
- 1 mai 2023 à 09:24 Electrolab discussion contributions a créé la page Module:Transcluder/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} »)
- 1 mai 2023 à 09:24 Electrolab discussion contributions a créé la page Module:Transcluder (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- local p = {} -- Helper function to test for truthy and falsy values local function truthy(value) if not value or value == '' or value == 0 or value == '0' or value == 'false' or value == 'no' then return false end ret... »)
- 1 mai 2023 à 09:24 Electrolab discussion contributions a créé la page Module:Time ago/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Time ago''' implements the {{tl|Time ago}} template. »)
- 1 mai 2023 à 09:23 Electrolab discussion contributions a créé la page Module:Time ago (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- Replacement for Template:Time ago local numberSpell = require('Module:NumberSpell')._main local yesno = require('Module:Yesno') local p = {} -- Table to convert entered text values to numeric values. timeText = {... »)
- 1 mai 2023 à 09:23 Electrolab discussion contributions a créé la page Module:Template translation/doc (Page créée avec « {{Documentation}} '''Module:Template translation''' is used to show translatable templates in the language of the current page. It is used to implement {{t|Translatable template}}. »)
- 1 mai 2023 à 09:22 Electrolab discussion contributions a créé la page Module:Template translation (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- local this = {} function this.checkLanguage(subpage, default) --[[Check first if there's an any invalid character that would cause the mw.language.isKnownLanguageTag function() to throw an exception: -... »)
- 1 mai 2023 à 09:22 Electrolab discussion contributions a créé la page Module:Template link general/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} Implements {{Tl|Template link general}} and other templates in its family »)
- 1 mai 2023 à 09:22 Electrolab discussion contributions a créé la page Module:Template link general (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -- 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... »)
- 1 mai 2023 à 09:21 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 09:21 Electrolab discussion contributions a créé la page Module:TableTools (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ ------------------------------------------------------------------------------------ -- TableTools -- --... »)
- 1 mai 2023 à 09:20 Electrolab discussion contributions a créé la page Module:TNT/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} »)
- 1 mai 2023 à 09:20 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:19 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:18 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:18 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:17 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:17 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:16 Electrolab discussion contributions a créé la page Module:Shortcut/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} '''Module:Shortcut''' makes a box showing the shortcut links to a page. »)
- 1 mai 2023 à 09:16 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:15 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:14 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 09:13 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:13 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 09:12 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:11 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 09:10 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 09:10 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 09:10 Electrolab discussion contributions a créé la page 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 "''" .... »)
- 1 mai 2023 à 08:58 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 08:57 Electrolab discussion contributions a créé la page Module:Pagetype/config (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Module:Pagetype configuration data -- -- This page holds localisation and configuration data for Mo... »)
- 1 mai 2023 à 08:57 Electrolab discussion contributions a créé la page Module:Pagetype (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- -- -- PAGETYPE... »)
- 1 mai 2023 à 08:57 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 08:56 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 08:54 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 08:54 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 08:52 Electrolab discussion contributions a créé la page 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; }... »)
- 1 mai 2023 à 08:52 Electrolab discussion contributions a créé la page Module:Navplate/doc (Page créée avec « {{Documentation}} '''Module:Navplate''' implements the {{t|navplate}} template. »)
- 1 mai 2023 à 08:50 Electrolab discussion contributions a créé la page Module:Navplate (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Module:Navplate -- -- This module implements {{Navplate}}... »)
- 1 mai 2023 à 08:48 Electrolab discussion contributions a créé la page 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. »)
- 1 mai 2023 à 08:48 Electrolab discussion contributions a créé la page Module:Namespace detect/data (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to... »)
- 1 mai 2023 à 08:47 Electrolab discussion contributions a créé la page Module:Namespace detect/config (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Namespace detect configuration data -- --... »)
- 1 mai 2023 à 08:47 Electrolab discussion contributions a créé la page Module:Namespace detect (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- --[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT... »)
- 1 mai 2023 à 08:46 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 08:46 Electrolab discussion contributions a créé la page 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... »)
- 1 mai 2023 à 08:45 Electrolab discussion contributions a créé la page 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... »)