Added util.datetime: Utility methods to support XEP-0082: XMPP Date and Time Profiles

This commit is contained in:
Waqas Hussain 2008-11-13 12:12:19 +05:00
parent 6c0003661a
commit 5358129300

28
util/datetime.lua Normal file
View 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;