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.

Recent changes optionsShow last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide my edits | Show bots | Hide minor edits
Show new changes starting from 05:15, 14 September 2026
 
Page name:
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

10 September 2026

N    10:01  Module:DateTime/doc diffhist +507 0x99 talk contribs (Created page with "__NOTOC__ A utility module for dealing with datetime. = Usage = == format == Format the datetime. Either only date: <nowiki>{{#invoke:DateTime|format|2026-09-10}}</nowiki> {{#invoke:DateTime|format|2026-09-10}} or date with time: <nowiki>{{#invoke:DateTime|format|2026-09-10T14:00:00}}</nowiki> {{#invoke:DateTime|format|2026-09-10T14:00:00}} or date with time and timezone: <nowiki>{{#invoke:DateTime|format|2026-09-10T14:00:00+0900}}</nowiki> {{#invoke:DateTime|f...")
N    09:57  Module:DateTime diffhist +497 0x99 talk contribs (Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.format(frame) local args = getArgs(frame) local dt = args[1] or "" if dt == "" then return "" end local fmt = "Y-m-d" if string.find(dt, "T") or string.find(dt, ":") then fmt ="Y-m-d H:i:s" end local success, result = pcall(function() return mw.getContentLanguage():formatDate(fmt, dt) end) if success then return result end r...")