Support for users, roles, restrictions.
[cocanwiki.git] / scripts / delete_file_form.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: delete_file_form.ml,v 1.2 2004/09/07 13:40:10 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 open Merjisforwiki
16
17 let template = get_template "delete_file_form.html"
18
19 let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
20   let id = int_of_string (q#param "id") in
21
22   let sth = dbh#prepare_cached "select name from files
23                                  where hostid = ? and id = ?" in
24   sth#execute [`Int hostid; `Int id];
25
26   let name = sth#fetch1string () in
27
28   template#set "id" (string_of_int id);
29   template#set "name" name;
30
31   q#template template
32
33 let () =
34   register_script run