50a4c41d191c57e321333ff40270f7c91fc39a85
[cocanwiki.git] / scripts / 00-TEMPLATE.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: 00-TEMPLATE.ml,v 1.1 2004/09/08 17:07:24 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 run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
16   let template = get_template dbh hostid "00-TEMPLATE.html" in
17
18
19
20
21
22   q#template template
23
24 let () =
25   register_script ~restrict:[CanManageUsers] run