X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fedit_user_form.ml;h=76ff9bd51a2008abccab31269e23871373d9b5ca;hb=bfa88724ee152ba00c2b2fca881dd78a6599820a;hp=d8eb82afabf56bda4d75aa7aaad69755ba6f0bb4;hpb=6eacefcb7258db7b56fe796af84961cafac90eac;p=cocanwiki.git diff --git a/scripts/edit_user_form.ml b/scripts/edit_user_form.ml index d8eb82a..76ff9bd 100644 --- a/scripts/edit_user_form.ml +++ b/scripts/edit_user_form.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: edit_user_form.ml,v 1.7 2004/10/11 14:13:04 rich Exp $ + * $Id: edit_user_form.ml,v 1.9 2006/03/27 18:09:46 rich Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,40 +28,40 @@ open Cocanwiki open Cocanwiki_template open Cocanwiki_date -let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ = +let run r (q : cgi) dbh hostid _ _ = let template = get_template dbh hostid "edit_user_form.html" in - let userid = int_of_string (q#param "userid") in + let userid = Int32.of_string (q#param "userid") in let sth = dbh#prepare_cached "select u.name, u.email, u.registration_date, u.can_edit, u.can_manage_users, u.can_manage_contacts, u.can_manage_site, u.can_edit_global_css, u.can_import_mail, - (select count(*) from pages where logged_user = u.id), + (select count(*) from pages where logged_user = u.id)::int4, (select count(*) from pages - where logged_user = u.id and url_deleted is null) + where logged_user = u.id and url_deleted is null)::int4 from users u where u.hostid = ? and u.id = ?" in - sth#execute [`Int hostid; `Int userid]; + sth#execute [Some hostid; Some userid]; let name, email, registration_date, can_edit, can_manage_users, can_manage_contacts, can_manage_site, can_edit_global_css, can_import_mail, nr_edits, nr_edits_live = match sth#fetch1 () with - [`String name; (`Null | `String _) as email; + [Some name; (None | Some _) as email; `Date registration_date; `Bool can_edit; `Bool can_manage_users; `Bool can_manage_contacts; `Bool can_manage_site; `Bool can_edit_global_css; `Bool can_import_mail; - `Int nr_edits; `Int nr_edits_live] -> + Some nr_edits; Some nr_edits_live] -> name, email, registration_date, can_edit, can_manage_users, can_manage_contacts, can_manage_site, can_edit_global_css, can_import_mail, nr_edits, nr_edits_live | _ -> assert false in - template#set "userid" (string_of_int userid); + template#set "userid" (Int32.to_string userid); template#set "name" name; - template#set "email" (match email with `Null -> "" | `String s -> s); + template#set "email" (match email with None -> "" | Some s -> s); template#set "registration_date" (printable_date' registration_date); template#conditional "can_edit" can_edit; template#conditional "can_manage_users" can_manage_users; @@ -69,8 +69,8 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ = template#conditional "can_manage_site" can_manage_site; template#conditional "can_edit_global_css" can_edit_global_css; template#conditional "can_import_mail" can_import_mail; - template#set "nr_edits" (string_of_int nr_edits); - template#set "nr_edits_live" (string_of_int nr_edits_live); + template#set "nr_edits" (Int32.to_string nr_edits); + template#set "nr_edits_live" (Int32.to_string nr_edits_live); q#template template