Merge from waqas
[prosody.git] / util / datetime.lua
1 -- Prosody IM v0.2
2 -- Copyright (C) 2008 Matthew Wild
3 -- Copyright (C) 2008 Waqas Hussain
4 -- 
5 -- This program is free software; you can redistribute it and/or
6 -- modify it under the terms of the GNU General Public License
7 -- as published by the Free Software Foundation; either version 2
8 -- of the License, or (at your option) any later version.
9 -- 
10 -- This program is distributed in the hope that it will be useful,
11 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
12 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 -- GNU General Public License for more details.
14 -- 
15 -- You should have received a copy of the GNU General Public License
16 -- along with this program; if not, write to the Free Software
17 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 --
19
20
21 -- XEP-0082: XMPP Date and Time Profiles\r
22 \r
23 local os_date = os.date;\r
24 local error = error;\r
25 \r
26 module "datetime"\r
27 \r
28 function date()\r
29         return os_date("!%Y-%m-%d");\r
30 end\r
31 \r
32 function datetime()\r
33         return os_date("!%Y-%m-%dT%H:%M:%SZ");\r
34 end\r
35 \r
36 function time()\r
37         return os_date("!%H:%M:%S");\r
38 end\r
39 \r
40 function legacy()\r
41         return os_date("!%Y%m%dT%H:%M:%S");\r
42 end\r
43 \r
44 function parse(s)\r
45         error("datetime.parse: Not implemented"); -- TODO\r
46 end\r
47 \r
48 return _M;\r