Refuse to serve deleted files or images to other sites. Stops bandwidth
[cocanwiki.git] / scripts / 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.5 2004/10/07 16:54:24 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   | 0 -> "Sun" | 1 -> "Mon" | 2 -> "Tue" | 3 -> "Wed"
29   | 4 -> "Thu" | 5 -> "Fri" | 6 -> "Sat" | 7 -> "Sun"
30   | _ -> invalid_arg "short_weekday"
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