Logging in and logging out.
[cocanwiki.git] / scripts / undelete_image_form.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: undelete_image_form.ml,v 1.3 2004/09/07 14:58:34 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 template = get_template "undelete_image_form.html"
16
17 let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
18   let id = int_of_string (q#param "id") in
19
20   let sth = dbh#prepare_cached "select name, name_deleted, width, height, alt
21                                   from images
22                                  where hostid = ? and id = ?" in
23   sth#execute [`Int hostid; `Int id];
24
25   let name, width, height, alt =
26     match sth#fetch1 () with
27         [ `String name; `Null; `Int width; `Int height; `String alt]
28       | [ `Null; `String name; `Int width; `Int height; `String alt] ->
29           name, width, height, alt
30       | _ -> assert false in
31
32   template#set "id" (string_of_int id);
33   template#set "name" name;
34   template#set "width" (string_of_int width);
35   template#set "height" (string_of_int height);
36   template#set "alt" alt;
37
38   q#template template
39
40 let () =
41   register_script run