6b559271c9e392a772e4ec9cf6727c7a1fb859f2
[cocanwiki.git] / scripts / admin / create_host_form.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: create_host_form.ml,v 1.5 2004/09/25 11:45:59 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  * NB. Because there might not be any hosts existing when this Wiki
22  * is created, this is not a normal Cocanwiki.register_script script.
23  * Instead, we're using the standard mod_caml Registry.
24  *)
25
26 open Apache
27 open Registry
28 open Cgi
29 open Printf
30
31 let template = Cocanwiki_template._get_template "admin/create_host_form.html"
32
33 let run r =
34   let q = new cgi r in
35   let dbh = Cocanwiki._get_dbh r in
36
37   (* Get the template hosts. *)
38   let sth = dbh#prepare_cached "select id, canonical_hostname from hosts
39                                  where is_template order by 2" in
40   sth#execute [];
41
42   let table = sth#map (function [`Int id; `String canonical_hostname] ->
43                          [ "id", Template.VarString (string_of_int id);
44                            "canonical_hostname",
45                              Template.VarString canonical_hostname ]
46                          | _ -> assert false) in
47   template#table "templates" table;
48
49   q#template template
50
51 let () =
52   register_script run