Fixed some problems found in testing. Now appears to be working fully.
[cocanwiki.git] / scripts / 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.6 2006/03/27 18:09:46 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 hostid _ _ =
32   let css = q#param "css" in
33
34   let css = if string_is_whitespace css then None else Some css in
35
36   (* XXX We should version the global stylesheet.  However this requires
37    * some fairly non-trivial coding.
38    *)
39   PGSQL(dbh) "update hosts set css = $?css where id = $hostid";
40
41   PGOCaml.commit dbh;
42
43   let buttons = [
44     ok_button "/_bin/host_menu.cmo";
45     { Template.StdPages.label = "Edit stylesheet again";
46       Template.StdPages.link = "/_bin/edit_host_css_form.cmo";
47       Template.StdPages.method_ = None;
48       Template.StdPages.params = [] }
49   ] in
50
51   ok ~title:"Global stylesheet changed" ~buttons
52     dbh hostid q
53     ("The stylesheet was changed successfully.  " ^
54      "Note: You must RELOAD the page to see changes to stylesheets.")
55
56 let () =
57   register_script ~restrict:[CanEditGlobalCSS] run