User add/remove scripts
[hcoop/domtool2.git] / src / main.sig
CommitLineData
234b917a
AC
1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
dac62e84 17 *)
234b917a
AC
18
19(* Main interface *)
20
21signature MAIN = sig
22
aa56e112 23 val init : unit -> unit
234b917a 24
d189ec0e
AC
25 val check : string -> Env.env * Ast.exp option
26 val check' : Env.env -> string -> Env.env
1824f573 27 val checkDir : string -> unit
d189ec0e
AC
28
29 val basis : unit -> Env.env
30
31 val reduce : string -> Ast.exp option
a3698041 32 val eval : string -> unit
234b917a 33
559e89e9 34 val request : string -> unit
c53e82e4
AC
35 val requestDir : string -> unit
36
5ee41dd0 37 val requestGrant : Acl.acl -> unit
411a85f2 38 val requestRevoke : Acl.acl -> unit
08a04eb4 39 val requestListPerms : string -> (string * string list) list option
094877b1 40 val requestWhoHas : {class : string, value : string} -> string list option
e69e60cc 41 val requestRmdom : string list -> unit
1824f573 42 val requestRegen : unit -> unit
e69e60cc 43 val requestRmuser : string -> unit
5ee41dd0 44
3b267643 45 val service : unit -> unit
36e42cb8 46 val slave : unit -> unit
559e89e9 47
3196000d
AC
48 val autodocBasis : string -> unit
49
234b917a 50end