Mercurial > prosody-hg
view util/datetime.lua @ 453:a1efb2cb4f9c
Quickfix for dns.lua to not crash on failed connection to name servers
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Fri, 28 Nov 2008 22:47:22 +0500 |
| parents | 8ce9559d501a |
| children | cccd610a0ef9 |
line wrap: on
line source
-- 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;
