Support for users, roles, restrictions.
[cocanwiki.git] / scripts / upload_file_form.ml
1 (* COCANWIKI scripts.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: upload_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 Merjisforwiki
13
14 open Cocanwiki
15 open Cocanwiki_template
16
17 let template = get_template "upload_file_form.html"
18
19 let run r (q : cgi) (dbh : Dbi.connection) _ _ =
20   q#template template
21
22 let () =
23   register_script run