815fe9ce9e486a448ebcd3c11b2437f949a82850
[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.1 2004/09/07 10:14:10 rich Exp $
5  *)
6
7 open Apache
8 open Registry
9 open Cgi
10 open Printf
11
12 open Cocanwiki
13
14 let template = get_template "admin/edit_host_css_form.html"
15
16 let run r (q : cgi) (dbh : Dbi.connection) _ _ =
17   let hostid = int_of_string (q#param "hostid") in
18   template#set "id" (string_of_int hostid);
19
20   let sth = dbh#prepare_cached "select css from hosts where id = ?" in
21   sth#execute [`Int hostid];
22
23   let css =
24     match sth#fetch1 () with
25       | [ `Null ] -> ""
26       | [ `String css ] -> css
27       | _ -> assert false in
28
29   template#set "css" css;
30
31   q#template template
32
33 let () =
34   register_script run