This module is rated as beta, and is ready for widespread use. It is still new and should be used with some caution to ensure the results are as expected.
This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing.
This module depends on the following other modules:
This module implements {{unsigned}}. It has a few functions:
main called by {{unsigned}}; not intended for broader use
getTimestamp find a timestamp from a string. If only a date is found, it returns the date. If only a time is found, it returns the empty string. If a time and a date are both found, it appends (UTC).
getUsername gets the username from a string containing a timestamp. It currently assumes that everything besides a timestamp is part of the username.
localp={}-- There's probably a way to use strptime or some other more sophisticated way, but you're not supposed to be using a non-timestamp as input anyway.localfunctionendswith(String,End)returnEnd==''orstring.sub(String,-string.len(End))==Endendlocalfunctiontrim(s)returns:gsub("^%s+",""):gsub("%s+$",""):gsub("\226\128\142","")endlocalfunctionaddUtcToStringIfItDoesNotEndWithUtc(s)ifs==""orendswith(s,"~~~~")thenreturnsendifnotendswith(s,"(UTC)")thenreturns.." (UTC)"endreturnsendlocalfunction_main(args)localhopefullyTimestamp=args[1]oros.date('%H:%M, %d %B %Y (%Z)')returnaddUtcToStringIfItDoesNotEndWithUtc(trim(hopefullyTimestamp))endfunctionp.main(frame)localargsiftype(frame.args)=='table'then-- We're being called via #invoke. The args are passed through to the module-- from the template page, so use the args that were passed into the template.args=frame.argselse-- We're being called from another module or from the debug console, so assume-- the args are passed in directly.args=frameendreturn_main(args)endreturnp