Software /
code /
prosody
File
util/datetime.lua @ 523:c0f15538f358
config and data directories taken from path, and quoted to allow spaces in path
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 03 Dec 2008 19:57:08 +0500 |
parent | 248:8ce9559d501a |
child | 519: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;