Added the framework to allow us to populate standards parts of the
[cocanwiki.git] / scripts / admin / edit_host_css_form.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: edit_host_css_form.ml,v 1.3 2004/09/08 15:46:53 rich Exp $
5  *)
6
7 open Apache
8 open Registry
9 open Cgi
10 open Printf
11
12 open Cocanwiki
13 open Cocanwiki_template
14
15 let template = _get_template "admin/edit_host_css_form.html"
16
17 let run r (q : cgi) (dbh : Dbi.connection) _ _ =
18   let hostid = int_of_string (q#param "hostid") in
19   template#set "id" (string_of_int hostid);
20
21   let sth = dbh#prepare_cached "select css from hosts where id = ?" in
22   sth#execute [`Int hostid];
23
24   let css =
25     match sth#fetch1 () with
26       | [ `Null ] -> ""
27       | [ `String css ] -> css
28       | _ -> assert false in
29
30   template#set "css" css;
31
32   q#template template
33
34 let () =
35   register_script run