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.
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
12 September 2026
| N 18:28 | Template:Cite/Web diffhist +1,727 0x99 talk contribs (Created page with "<includeonly>[{{{url|}}} {{#if:{{{title|}}}|{{{title|}}}|{{#invoke:Url|hostname|{{{url|}}}}}}}]{{#if:{{{archive|}}}|<nowiki> </nowiki>([{{{archive|}}} Archive])|}}{{#if:{{{text|}}}|<nowiki>:</nowiki> {{{text|}}}|}}{{#if:{{{timestamp|}}}|<nowiki> </nowiki>(retrieved {{#invoke:DateTime|format|{{{timestamp|}}}}})|}}</includeonly><noinclude> Used when citing sources from website. ;url :URL of the website ;title :Title of the article ;text :The text description ;archive :Lin...") | ||||
| N 18:21 | Module:Url diffhist +232 0x99 talk contribs (Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.hostname(...) local args = getArgs(...) local orig = args.url or args[1] local uri = mw.uri.new(orig) return uri and uri.host or '' end return p") | ||||
10 September 2026
| 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...") | ||||