Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
Show changes on pages linked from
Pages linked from the selected page
Pages linking to the selected page
CollapseList of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
20 March 2025
19 March 2025
|
N 17:25 | Module:Documentation/config 2 changes history +17,747 [Shia.k (2×)] | |||
|
17:25 (cur | prev) 0 Shia.k talk contribs | ||||
N |
|
16:11 (cur | prev) +17,747 Shia.k talk contribs (Created page with "---------------------------------------------------------------------------------------------------- -- -- 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. ---------------------------------------------------------------------------------...") |
N 16:16 | Module:Protection banner diffhist +26,590 Shia.k talk contribs (Created page with "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('strict') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules and...") |
|
N 16:14 | Module:Lua banner 2 changes history +3,908 [Shia.k (2×)] | |||
|
16:14 (cur | prev) 0 Shia.k talk contribs | ||||
N |
|
16:05 (cur | prev) +3,908 Shia.k talk contribs (Created page with "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args)...") |
|
N 16:11 | Template:Lua 3 changes history +17,944 [Shia.k (3×)] | |||
|
16:11 (cur | prev) 0 Shia.k talk contribs | ||||
|
16:08 (cur | prev) +17,748 Shia.k talk contribs | ||||
N |
|
16:04 (cur | prev) +196 Shia.k talk contribs (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>") |
N 16:07 | Module:TableTools diffhist +16,577 Shia.k talk contribs (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....") |
N 16:06 | Module:List diffhist +5,643 Shia.k talk contribs (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 = ''...") |
N 15:58 | Module:Documentation diffhist +35,178 Shia.k talk contribs (Created page with "-- 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 local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...") |
15:58 | Template:Documentation diffhist −620 Shia.k talk contribs |
18 March 2025
18:51 | Protection log Shia.k talk contribs protected Module:Message box/configuration [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist) |
N 18:50 | Module:Message box/configuration diffhist +6,546 Shia.k talk contribs (Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee...") |
N 18:47 | Module:Yesno diffhist +745 Shia.k talk contribs (Created page with "-- 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", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...") |
N 18:47 | Module:Message box diffhist +18,963 Shia.k talk contribs (Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------...") |