(* COCANWIKI scripts. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. * $Id: delete_file_form.ml,v 1.3 2004/09/07 14:58:34 rich Exp $ *) open Apache open Registry open Cgi open Printf open Cocanwiki open Cocanwiki_template let template = get_template "delete_file_form.html" let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ = let id = int_of_string (q#param "id") in let sth = dbh#prepare_cached "select name from files where hostid = ? and id = ?" in sth#execute [`Int hostid; `Int id]; let name = sth#fetch1string () in template#set "id" (string_of_int id); template#set "name" name; q#template template let () = register_script run