More actions
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
15 August 2025
| 17:45 | Move log PJSans talk contribs moved page Trackmania to TrackMania (series) (Changing name to disambiguate TrackMania the game and TrackMania the series. Also, why was this not spelt with a capital M when all the titles in the series are?) | ||||
14 August 2025
|
|
14:22 | (Import log) [Skycrafter (12×)] | |||
|
|
14:22 Skycrafter talk contribs imported Module:Category handler/shared by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Category handler/config by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Category handler/data by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Category handler/blacklist by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Category handler by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Message box/configuration by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Namespace detect/data by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Arguments by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Yesno by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Namespace detect/config by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Unsubst by file upload (1 revision) | ||||
|
|
14:22 Skycrafter talk contribs imported Module:Message box by file upload (1 revision) | ||||
| m 09:49 | Drift diffhist +27 PJSans talk contribs (Fixed redlink to TMNF) | ||||
13 August 2025
|
|
N 20:39 | Donut 3 changes history +674 [Mufattmf (3×)] | |||
|
|
20:39 (cur | prev) −1 Mufattmf talk contribs | ||||
|
|
20:07 (cur | prev) 0 Mufattmf talk contribs | ||||
| N |
|
20:06 (cur | prev) +675 Mufattmf talk contribs (Created page with "right|thumb|500px In Stadium, a '''Donut''' (or ''Doughtnut'') refers to the car doing tight circular spins, leaving skid marks that resemble a donut. A donut is done by holding bugslide inputs at low speeds (<100), after a neoslide (<191), or after a drift (>191). No countersteering is required, unlike the [https://en.wikipedia.org/wiki/Doughnut%20(driving) donuts] in real life. Even when the correct inputs...") | |||
|
|
17:17 | Bugslide 3 changes history +4 [Skycrafter (3×)] | |||
| m |
|
17:17 (cur | prev) 0 Skycrafter talk contribs | |||
|
|
17:16 (cur | prev) +10 Skycrafter talk contribs | ||||
|
|
17:05 (cur | prev) −6 Skycrafter talk contribs | ||||
| 10:00 | Template:Missing information diffhist −4 Skycrafter talk contribs | ||||
| N 09:56 | Module:Message box/ambox.css diffhist +2,163 Skycrafter talk contribs (Created page with "→{{pp|small=y}}: .ambox { border: 1px solid #a2a9b1; →@noflip: border-left: 10px solid #36c; →Default "notice" blue: background-color: #fbfbfb; box-sizing: border-box; } →Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed: .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: rais...") | ||||
| N 09:11 | Module:Namespace detect/config diffhist +3,545 Skycrafter 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 09:11 | Module:Namespace detect/data diffhist +2,569 Skycrafter 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...") | ||||
| N 09:10 | Module:Category handler/blacklist diffhist +761 Skycrafter 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 { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbo...") | ||||
| N 09:10 | Module:Category handler/shared diffhist +888 Skycrafter talk contribs (Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return...") | ||||
| N 09:09 | Module:Category handler/config diffhist +5,755 Skycrafter 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 09:09 | Module:Category handler/data diffhist +631 Skycrafter talk contribs (Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(...") | ||||
| N 09:08 | Module:Category handler diffhist +7,871 Skycrafter talk contribs (Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia...") | ||||
| N 09:08 | Module:Message box/configuration diffhist +6,546 Skycrafter 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 09:07 | Module:Arguments diffhist +10,054 Skycrafter talk contribs (Created page with "-- 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'...") | ||||
| N 09:06 | Module:Yesno diffhist +745 Skycrafter 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 09:06 | Module:Message box diffhist +18,961 Skycrafter 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 ---------------------------------------------------------------------------...") | ||||
| N 09:05 | Template:Ambox diffhist +146 Skycrafter talk contribs (Created page with "{{#invoke:Message box|ambox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>") | ||||
| N 09:04 | Module:Unsubst diffhist +3,948 Skycrafter talk contribs (Created page with "local checkType = require('libraryUtil').checkType local p = {} local BODY_PARAM = '$B' local specialParams = { ['$params'] = 'parameter list', ['$aliases'] = 'parameter aliases', ['$flags'] = 'flags', ['$B'] = 'template content', ['$template-name'] = 'template invocation name override', } function p.main(frame, body) -- If we are substing, this function returns a template invocation, and if -- not, it returns the template body. The template body can be specif...") | ||||