X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fedit_user_form.ml;fp=scripts%2Fedit_user_form.ml;h=26e0a2f30e36a3ad069eb21b519f580140fdcc7f;hb=0d88075fa62c0a801ea1e9246d85389f9161a4e1;hp=95740818ca25ce7a646d934e8416d889b0b059f3;hpb=b091ef41a9d3740edf7cf76a26524786f89be6b0;p=cocanwiki.git diff --git a/scripts/edit_user_form.ml b/scripts/edit_user_form.ml index 9574081..26e0a2f 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.5 2004/09/17 15:24:54 rich Exp $ + * $Id: edit_user_form.ml,v 1.6 2004/09/22 10:19:26 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 @@ -37,6 +37,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ = 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, (select count(*) from pages where logged_user = u.id), (select count(*) from pages where logged_user = u.id and url_deleted is null) @@ -44,14 +45,17 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ = sth#execute [`Int hostid; `Int userid]; let name, email, registration_date, can_edit, can_manage_users, - can_manage_contacts, nr_edits, nr_edits_live = + can_manage_contacts, can_manage_site, can_edit_global_css, + nr_edits, nr_edits_live = match sth#fetch1 () with [`String name; (`Null | `String _) 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; `Int nr_edits; `Int nr_edits_live] -> name, email, registration_date, can_edit, can_manage_users, - can_manage_contacts, nr_edits, nr_edits_live + can_manage_contacts, can_manage_site, can_edit_global_css, + nr_edits, nr_edits_live | _ -> assert false in template#set "userid" (string_of_int userid); @@ -61,6 +65,8 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ = template#conditional "can_edit" can_edit; template#conditional "can_manage_users" can_manage_users; template#conditional "can_manage_contacts" can_manage_contacts; + template#conditional "can_manage_site" can_manage_site; + template#conditional "can_edit_global_css" can_edit_global_css; template#set "nr_edits" (string_of_int nr_edits); template#set "nr_edits_live" (string_of_int nr_edits_live);