785b0ff38577003c81f4d573aa1faf75a4b2cea2
[cocanwiki.git] / scripts / admin / edit_host_css.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: edit_host_css.ml,v 1.8 2006/03/27 18:09:47 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 open Cocanwiki
28 open Cocanwiki_ok
29 open Cocanwiki_strings
30
31 let run r (q : cgi) dbh _ _ _ =
32   let hostid = int_of_string (q#param "hostid") in
33
34   let css = q#param "css" in
35
36   let css = if string_is_whitespace css then `Null else `String css in
37
38   (* XXX We should version the global stylesheet.  However this requires
39    * some fairly non-trivial coding.
40    *)
41   let sth = dbh#prepare_cached "update hosts set css = ? where id = ?" in
42   sth#execute [css; `Int hostid];
43
44   PGOCaml.commit dbh;
45
46   let buttons = [
47     { Template.StdPages.label = "OK";
48       Template.StdPages.link = "/_bin/admin/host.cmo";
49       Template.StdPages.method_ = None;
50       Template.StdPages.params = [ "hostid", string_of_int hostid ] };
51     { Template.StdPages.label = "Edit stylesheet again";
52       Template.StdPages.link = "/_bin/admin/edit_host_css_form.cmo";
53       Template.StdPages.method_ = None;
54       Template.StdPages.params = [ "hostid", string_of_int hostid ] }
55   ] in
56
57   ok ~title:"Stylesheet changed" ~buttons
58     dbh (-1) q
59     ("The stylesheet was changed successfully.  " ^
60      "Note: You must RELOAD the page to see changes to stylesheets.")
61
62 let () =
63   register_script run