Related changes
Appearance
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.
List 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
11 January 2026
|
|
22:07 | (Import log) [P1gsel (2×)] | |||
|
|
22:07 P1gsel talk contribs imported Module:File link by file upload (1 revision) | ||||
|
|
22:07 P1gsel talk contribs imported Module:Effective protection level by file upload (1 revision) | ||||
|
|
N 18:30 | Template:Module rating 2 changes history +8,520 [Rosie (2×)] | |||
|
|
18:30 (cur | prev) +8,407 Rosie talk contribs (Removed redirect to Template:Template rating) Tag: Removed redirect | ||||
| N |
|
00:37 (cur | prev) +113 Rosie talk contribs (Redirected page to Template:Template rating) Tag: New redirect | |||
|
|
N 16:57 | Module:Wd 3 changes history +74,177 [Rosie; Wouter (2×)] | |||
|
|
16:57 (cur | prev) −42 Wouter talk contribs Tag: Manual revert | ||||
|
|
16:56 (cur | prev) +42 Wouter talk contribs Tag: Reverted | ||||
| N |
|
16:49 (cur | prev) +74,177 Rosie talk contribs (Created page with "-- Original module located at en:Module:Wd and en:Module:Wd/i18n. require("strict") local p = {} local module_arg = ... local i18n local i18nPath local function loadI18n(aliasesP, frame) local title if frame then -- current module invoked by page/template, get its title from frame title = frame:getTitle() else -- current module included by other module, get its title from ... title = module_arg end if not i18n then i18nPath = title .. "/i18n"...") | |||
|
|
N 16:53 | Module:Effective protection level/doc 2 changes history +1,751 [Rosie (2×)] | |||
|
|
16:53 (cur | prev) −557 Rosie talk contribs | ||||
| N |
|
00:12 (cur | prev) +2,308 Rosie talk contribs (Created page with "{{Module rating|protected}} {{cascade-protected template|page=module}} {{used in system}} This module provides a way to retrieve the group required to perform a given action on a page. It currently tests the following criteria: * The page being pending-changes protected: autoconfirmed * The page being a JavaScript or CSS subpage in userspace, or in the MediaWiki namespace: interfaceadmin * The page being in the MediaWiki namespace: sysop * The page being a JSON subpage...") | |||
|
|
N 16:53 | Module:Effective protection level 2 changes history +2,408 [Rosie (2×)] | |||
|
|
16:53 (cur | prev) −1,252 Rosie talk contribs | ||||
| N |
|
00:11 (cur | prev) +3,660 Rosie talk contribs (Created page with "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...") | |||
| N 16:51 | Module:Wd/doc diffhist +1,436 Rosie talk contribs (Created page with "{{Module rating|protected}} {{High-use}} {{ombox|text=You might want to use one of the user-friendly wrapper templates {{tl|Wikidata}} and {{tl|WikidataOI}} instead of invoking this module directly.}} {{Wikidata/doc|prename=<nowiki/>#invoke:|prename_code=#invoke:|section==== Main class === The <code>main</code> command is always used alone and does not take any flags or arguments. It allows parent templates to pass on their parameters in the form of commands to this modu...") | ||||
| N 16:19 | Module:Calendar/doc diffhist +139 Rosie talk contribs (Created page with "{{Module rating|release}}{{Module rating|protected}} Convert dates between Gregorian and Julian Calendars. Used by Module:Complex date.") | ||||
| N 16:19 | Module:Calendar diffhist +8,761 Rosie talk contribs (Created page with "--[[ __ __ _ _ ____ _ _ | \/ | ___ __| |_ _| | ___ _ / ___|__ _| | ___ _ __ __| | __ _ _ __ | |\/| |/ _ \ / _` | | | | |/ _ (_) | / _` | |/ _ \ '_ \ / _` |/ _` | '__| | | | | (_) | (_| | |_| | | __/_| |__| (_| | | __/ | | | (_| | (_| | | |_| |_|\___/ \__,_|\__,_|_|\___(_)\____\__,_|_|\___|_| |_|\__,_|\__,_|_| Th...") | ||||
| N 15:56 | Module:Strip to numbers/doc diffhist +4,568 Rosie talk contribs (Created page with "{{module rating|beta}} <!-- Categories go at the bottom of this page and interwikis go in Wikidata. --> == Usage == This module extracts very basic numeric data from the input, namely the first match for a contiguous simple number, which may include the negative sign and a decimal, but not (yet) any further complexity, such as exponents, variables, etc. Its primary function is accepting data like: * <code>70%</code> * <code>margin-left: 20px;</code> * <code>75.485&...") | ||||
| N 15:56 | Module:Strip to numbers diffhist +738 Rosie talk contribs (Created page with "local p = {} function p.main(frame) local theString = mw.text.unstrip(frame.args[1]) local onlyNumber onlyNumber = (string.match(theString, "%-?[%d%.]+")) checkedNumber = tonumber(onlyNumber) if checkedNumber == nil then error(" Input did not contain valid numeric data") else return checkedNumber end end function p.halve(frame) local checkedNumber = (p.main(frame)) local halvedNumber halvedNumber = (checkedNumber / 2) return halvedNumber end function p.ma...") | ||||
| N 15:25 | Module:File link/doc diffhist +4,044 Rosie talk contribs (Created page with "{{high-use}} {{Module rating|protected}} {{Lua|Module:Yesno|Module:Arguments}} This module is used to construct wikitext links to files. It is primarily useful for templates and modules that use complicated logic to make file links. Simple file links should be made with wikitext markup directly, as it uses less resources than calling this module. For help with wikitext file markup please refer to the documentation at mediawiki.org. == Usage from wikit...") | ||||
| N 15:25 | Module:File link diffhist +2,544 Rosie talk contribs (Created page with "-- 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...") | ||||
| N 15:22 | Module:Category handler/blacklist/doc diffhist +513 Rosie talk contribs (Created page with "{{Module rating |<!-- Values: pre-alpha • alpha • beta • release • protected -- If a rating not needed/relevant, delete this template call -->}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see Wikipedia:Wikidata) --> == Usage == <code><nowiki>{{</nowiki>#invoke:{{BASEPAGENAME}}|''function_name''}}</code> <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | | <!-- Categories below this line, please; interw...") | ||||
| N 15:22 | Module:Category handler/blacklist diffhist +254 Rosie talk contribs (Created page with "-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '/[aA]rchive' -- Don't categorise archives. }") | ||||
| N 15:22 | Module:Category handler/config/doc diffhist +437 Rosie talk contribs (Created page with "{{module rating|p}} <pre> -------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- </pre>") | ||||
| N 15:21 | Module:Category handler/config diffhist +5,755 Rosie talk contribs (Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------...") | ||||
| N 00:40 | Module:Namespace detect/config/doc diffhist +195 Rosie talk contribs (Created page with "{{module rating|protected}} {{used in system}} This module provides configuration data for Module:Namespace detect. To change the data, please follow the instructions in the module comments.") | ||||
| N 00:40 | Module:Namespace detect/config diffhist +3,545 Rosie talk contribs (Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...") | ||||
| N 00:40 | Module:Namespace detect/data/doc diffhist +332 Rosie talk contribs (Created page with "{{Module rating|protected}} {{used in system}} {{Lua|Module:Namespace detect/config}} This is a data page for Module:Namespace detect and Module:Category handler/shared. It is loaded by the main module using <code>mw.loadData</code>, which means it is only processed once per page, rather than once per <code>#invoke</code>.") | ||||
| N 00:39 | Module:Namespace detect/data diffhist +2,569 Rosie talk contribs (Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function...") | ||||