Added the navigation box (see email).
[cocanwiki.git] / scripts / edit_host_settings_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: edit_host_settings_form.ml,v 1.5 2004/10/10 16:14:43 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_template
29
30 let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ =
31   let template = get_template dbh hostid "edit_host_settings_form.html" in
32
33   (* List of themes. *)
34   let sth = dbh#prepare_cached "select theme_css, name, description
35                                   from themes order by 2, 1" in
36   sth#execute [];
37
38   let themes =
39     sth#map (function [`String theme_css; `String name; `String description] ->
40                theme_css, (name, description)
41                | _ -> assert false) in
42
43   (* Get lots of host-specific stuff from the database. *)
44   let sth =
45     dbh#prepare_cached
46       "select canonical_hostname, edit_anon, create_account_anon, theme_css,
47               feedback_email, mailing_list, search_box, navigation, view_anon
48          from hosts where id = ?" in
49   sth#execute [`Int hostid];
50
51   let canonical_hostname, edit_anon, create_account_anon, theme_css,
52       feedback_email, mailing_list, search_box, navigation, view_anon =
53     match sth#fetch1 () with
54         [ `String canonical_hostname;
55           `Bool edit_anon; `Bool create_account_anon;
56           (`String _ | `Null) as theme_css;
57           (`String _ | `Null) as feedback_email;
58           `Bool mailing_list; `Bool search_box; `Bool navigation;
59           `Bool view_anon ] ->
60           let theme_css =
61             match theme_css with `String s -> s | `Null -> "" in
62           let feedback_email =
63             match feedback_email with `String s -> s | `Null -> "" in
64           canonical_hostname, edit_anon, create_account_anon, theme_css,
65           feedback_email, mailing_list, search_box, navigation, view_anon
66       | _ -> assert false in
67
68   template#set "canonical_hostname" canonical_hostname;
69   template#conditional "edit_anon" edit_anon;
70   template#conditional "create_account_anon" create_account_anon;
71   template#set "feedback_email" feedback_email;
72   template#conditional "mailing_list" mailing_list;
73   template#conditional "search_box" search_box;
74   template#conditional "navigation" navigation;
75   template#conditional "view_anon" view_anon;
76
77   (* Themes table. *)
78   let table =
79     List.map (fun (css, (name, description)) ->
80                 let selected = css = theme_css in
81                 [ "theme_css", Template.VarString css;
82                   "name", Template.VarString name;
83                   "description", Template.VarString description;
84                   "selected", Template.VarConditional selected ]) themes in
85   template#table "themes" table;
86
87   q#template template
88
89 let () =
90   register_script ~restrict:[CanManageSite] run