124f3f7d28b50ce1418c3726eb51907e7ba7b747
[cocanwiki.git] / scripts / lib / cocanwiki_date.ml
1 (* COCANWIKI - a wiki written in Objective CAML.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: cocanwiki_date.ml,v 1.3 2005/11/23 11:32:38 rich Exp $
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; see the file COPYING.  If not, write to
18  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *)
21
22 open Apache
23 open Registry
24 open Cgi
25 open Printf
26
27 let short_weekday = function
28   | Date.Sun -> "Sun" | Date.Mon -> "Mon" | Date.Tue -> "Tue"
29   | Date.Wed -> "Wed" | Date.Thu -> "Thu" | Date.Fri -> "Fri"
30   | Date.Sat -> "Sat"
31
32 let short_month = function
33   | 1 -> "Jan" | 2 -> "Feb" | 3 -> "Mar" | 4 -> "Apr"
34   | 5 -> "May" | 6 -> "Jun" | 7 -> "Jul" | 8 -> "Aug"
35   | 9 -> "Sep" | 10 -> "Oct" | 11 -> "Nov" | 12 -> "Dec"
36   | _ -> invalid_arg "short_month"
37
38 let long_month = function
39   | 1 -> "January" | 2 -> "February" | 3 -> "March" | 4 -> "April"
40   | 5 -> "May" | 6 -> "June" | 7 -> "July" | 8 -> "August"
41   | 9 -> "September" | 10 -> "October" | 11 -> "November" | 12 -> "December"
42   | _ -> invalid_arg "short_month"
43
44 (* Generate a printable datestamp for pages. *)
45 let printable_date' date =
46   sprintf "%d %s %04d" date.Dbi.day (short_month date.Dbi.month) date.Dbi.year
47
48 let printable_date (date, _) = printable_date' date
49
50 let printable_date_time (date, time) =
51   sprintf "%d %s %04d %02d:%02d" date.Dbi.day (short_month date.Dbi.month)
52     date.Dbi.year time.Dbi.hour time.Dbi.min
53
54 (* ISO 8601 timestamp. *)
55 let iso_8601_date_time (date, time) =
56   sprintf "%04d-%02d-%02dT%02d:%02d:%02d"
57     date.Dbi.year date.Dbi.month date.Dbi.day
58     time.Dbi.hour time.Dbi.min time.Dbi.sec ^
59   match time.Dbi.timezone with
60   | None -> "Z"
61   | Some t -> sprintf "+%02d:00" t