Tous les journaux publics

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).

Journaux d’opérations
  • 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... »)
  • 1 mai 2023 à 08:44 Electrolab discussion contributions a créé la page 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'] =... »)
  • 1 mai 2023 à 08:44 Electrolab discussion contributions a créé la page Module:Link capture/doc (Page créée avec « {{Documentation}} '''Module:Link capture''' implements the {{tl|Link capture}} template. »)
  • 1 mai 2023 à 08:44 Electrolab discussion contributions a créé la page /index.php (Page créée avec « {{Documentation}} '''Module:Link capture''' implements the {{tl|Link capture}} template. »)
  • 1 mai 2023 à 08:43 Electrolab discussion contributions a créé la page 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, "%[%[[^%|]+%|([^%}]+... »)
  • 1 mai 2023 à 08:37 Electrolab discussion contributions a créé la page 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. »)
  • 1 mai 2023 à 08:37 Electrolab discussion contributions a créé la page 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... »)
  • 1 mai 2023 à 08:36 Electrolab discussion contributions a créé la page 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> »)
  • 1 mai 2023 à 08:35 Electrolab discussion contributions a créé la page 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... »)
  • 1 mai 2023 à 08:33 Electrolab discussion contributions a créé la page 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... »)
  • 1 mai 2023 à 08:30 Electrolab discussion contributions a créé la page Module:Key/doc (Page créée avec « {{Documentation}} {{Wikipedia template}} Implements {{tl|key press}} »)
  • 1 mai 2023 à 08:30 Electrolab discussion contributions a créé la page 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... »)
  • 1 mai 2023 à 08:26 Electrolab discussion contributions a créé la page 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... »)
Les cookies nous aident à fournir nos services. En utilisant nos services, vous acceptez notre utilisation de cookies.