mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Added util.datetime: Utility methods to support XEP-0082: XMPP Date and Time Profiles
This commit is contained in:
parent
6c0003661a
commit
5358129300
1 changed files with 28 additions and 0 deletions
28
util/datetime.lua
Normal file
28
util/datetime.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
-- XEP-0082: XMPP Date and Time Profiles
|
||||
|
||||
local os_date = os.date;
|
||||
local error = error;
|
||||
|
||||
module "datetime"
|
||||
|
||||
function date()
|
||||
return os_date("!%Y-%m-%d");
|
||||
end
|
||||
|
||||
function datetime()
|
||||
return os_date("!%Y-%m-%dT%H:%M:%SZ");
|
||||
end
|
||||
|
||||
function time()
|
||||
return os_date("!%H:%M:%S");
|
||||
end
|
||||
|
||||
function legacy()
|
||||
return os_date("!%Y%m%dT%H:%M:%S");
|
||||
end
|
||||
|
||||
function parse(s)
|
||||
error("datetime.parse: Not implemented"); -- TODO
|
||||
end
|
||||
|
||||
return _M;
|
Loading…
Add table
Add a link
Reference in a new issue