Tous les journaux publics

Sauter à la navigation Sauter à la recherche

Affichage combiné de tous les journaux disponibles sur Monde. 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
(les plus récentes | les plus anciennes) Voir ( | ) (20 | 50 | 100 | 250 | 500)
  • 26 février 2022 à 20:25 Leon discussion contributions a supprimé la page Module:List (contenait « -- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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) -… »)
  • 26 février 2022 à 20:25 Leon discussion contributions a supprimé la page Module:High-use (contenait « local p = {} -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count').fetch local yesno = require('Module:Yesno') function p.num(frame, count) if count == nil then if yesno(frame.args['fetch']) == false then if (frame.args[1] or '') ~= '' then count = tonumber(frame.args[1]) end else count = _fetch(frame) end end -- Build output string local return_value = "" if count == nil then if frame.args[1] == "risk" then retur… »)
  • 26 février 2022 à 20:25 Leon discussion contributions a supprimé la page Module:Hatnote list (contenait « -------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introduced… »)
  • 26 février 2022 à 20:24 Leon discussion contributions a supprimé la page Module:Hatnote (contenait « -------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules.… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Navbar/styles.css (contenait « {{pp|small=yes}} : .navbar { display: inline; font-size: 88%; font-weight: normal; } .navbar-collapse { float: left; text-align: left; } .navbar-boxtext { word-spacing: 0; } .navbar ul { display: inline-block; white-space: nowrap; line-height: inherit; } .navbar-brackets::before { margin-right: -0.125em; content: '[ '; } .navbar-brackets::after { margin-left: -0.125em; content: ' ]'; } .navbar li { word-spacing: -0.125em; } .navbar a > span, .navbar a… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Documentation/styles.css (contenait « {{pp|small=yes}} : .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation : font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation : } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-bottom: 1e… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Hatnote/styles.css (contenait « {{pp|small=y}} : .hatnote { font-style: italic; } Limit structure CSS to divs because of Module:Hatnote inline : div.hatnote { @noflip : padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206 : .hatnote + link + .hatnote { margin-top: -0.5em; } »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Arguments (contenait « -- 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' then… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Check for unknown parameters (contenait « -- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing the original wikitext. loc… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Documentation/config (contenait « ---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------------… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Documentation (contenait « -- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purposes. --… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Effective protection expiry (contenait « local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Effective protection level (contenait « local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local level = mw… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:File link (contenait « -- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in '%s' p… »)
  • 26 février 2022 à 20:21 Leon discussion contributions a supprimé la page Module:Format link (contenait « -------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require('libra… »)
  • 26 février 2022 à 20:20 Leon discussion contributions a supprimé la page Module:Sidebar/styles.css (contenait avant blanchiment « {{pp-template}} : TODO: Invert width design to be "mobile first" : .sidebar { TODO: Ask if we should have max-width 22em instead : width: 22em; @noflip : float: right; @noflip : clear: right; @noflip : margin: 0.5em 0 1em 1em; background: #f8f9fa; border: 1px solid #aaa; padding: 0.2em; text-align: center; line-height: 1.4em; font-size: 88%; border-collapse: collapse; /* Timeless has display: none on .nomobile at mobile… »)
  • 26 février 2022 à 20:18 Leon discussion contributions a supprimé la page Module:Infobox/styles.css (contenait « {{pp|small=y}} : * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See MediaWiki talk:Common.css/to do#Infobox * DO NOT ADD THEM HERE : * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully : .infobox-subbox { padding: 0; border: non… »)
  • 26 février 2022 à 20:18 Leon discussion contributions a supprimé la page Aide:Infobox/user style (contenait « {{{heading| ==Infoboxes and user style == }}} Users can have user CSS that hides<!--, moves, or makes collapsible--> any infoboxes in their own browsers. To hide all infoboxes, add the following to Special:MyPage/common.css (for all skins, or Special:MyPage/skin.css for just the current skin), on a line by itself: <syntaxhighlight lang="css">div.mw-parser-output .infobox { display: none; }</syntaxhighlight> Alternatively, you can add the… »)
  • 26 février 2022 à 20:18 Leon discussion contributions a supprimé la page Module:Distinguish (contenait « local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments --initialize lazily local mTableTools --initialize lazily local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.distinguish(frame) mArguments = require('Module:Arguments') mTableTools = require('Module:TableTools') local args = mArguments.getArgs(frame) local selfref = args.selfref local text = args.text args =… »)
  • 26 février 2022 à 20:17 Leon discussion contributions a supprimé la page Module:Infobox (contenait « local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local function fixChildBoxes(sval, tt) local function notempty( s ) return s and s:match( '%S' ) end if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval -- start moving templatestyles and categories inside of table rows loc… »)
(les plus récentes | les plus anciennes) Voir ( | ) (20 | 50 | 100 | 250 | 500)