X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbin%2Froles%2Froles.ml;h=14c0decc31599fbf9dbae139ef69cce12920d3b5;hb=4d3256c98f816a2d2dc7b97557b61364e18d0806;hp=c3dce2b8d32d9087bc310a4f3bbd7c841d38a274;hpb=2c9f4fddc259b09b6e71b18eef78f0bed38eeb14;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/bin/roles/roles.ml b/matita/matita/contribs/lambdadelta/bin/roles/roles.ml index c3dce2b8d..14c0decc3 100644 --- a/matita/matita/contribs/lambdadelta/bin/roles/roles.ml +++ b/matita/matita/contribs/lambdadelta/bin/roles/roles.ml @@ -16,19 +16,24 @@ module EU = RolesUtils module WE = WebEngine let help_B = " Set this base url (default: http://helm.cs.unibo.it/lambdadelta/)" -let help_C = " Set this working directory (default: current directory)" +let help_C = " Set this relative working directory (default: invocation directory)" let help_L = " Debug osn lexer" let help_W = " Run as an LWS application" let help_X = " Reset all options to defaults" let help_a = " Add selected names to a role" +let help_d = " Remove selected names from roles" let help_m = " Add roles relating matching names" -let help_o = " Add top objects for this stage" +let help_n = " Start a stage with this version" let help_p = " Print current status on standard output" let help_r = " Load current status" -let help_s = " Start a stage with this version" -let help_t = " Toggle the selection of this pointed entry" +let help_s = " Toggle the selection of this pointed entry" +let help_t = " Add top objects for this stage" let help_w = " Save current status" -let help = "Usage: roles [ -LWXamprw | -B | -C | -os | -t | ]*" +let help_x = " Toggle the expansion of this pointed entry" +let help = "Usage: roles [ -LWXadmprw | -B | -C | -nt | -sx | ]*" + +let change_cwd s = + EG.cwd := Filename.concat !EG.cwd s let add_tops s = EE.add_tops (EU.version_of_string s) @@ -36,8 +41,11 @@ let add_tops s = let new_stage s = EE.new_stage (EU.version_of_string s) -let toggle_entry s = - EE.toggle_entry (EU.pointer_of_string s) +let select_entry s = + EE.select_entry (EU.pointer_of_string s) + +let expand_entry s = + EE.expand_entry (EU.pointer_of_string s) let process s = match Filename.extension s with @@ -47,17 +55,19 @@ let process s = let _main = try Arg.parse [ "-B", Arg.String ((:=) EG.base_url), help_B; - "-C", Arg.String ((:=) EG.wd), help_C; + "-C", Arg.String change_cwd, help_C; "-L", Arg.Set EG.debug_lexer, help_L; "-W", Arg.Unit WE.init, help_W; "-X", Arg.Unit EG.clear, help_X; "-a", Arg.Unit EE.add_role, help_a; + "-d", Arg.Unit EE.remove_roles, help_d; "-m", Arg.Unit EE.add_matching, help_m; - "-o", Arg.String add_tops, help_o; + "-n", Arg.String new_stage, help_n; "-p", Arg.Unit EE.print_status, help_p; "-r", Arg.Unit EE.read_status, help_r; - "-s", Arg.String new_stage, help_s; - "-t", Arg.String toggle_entry, help_t; + "-s", Arg.String select_entry, help_s; + "-t", Arg.String add_tops, help_t; "-w", Arg.Unit EE.write_status, help_w; + "-x", Arg.String expand_entry, help_x; ] process help with ET.Error e -> Printf.eprintf "roles: %s\n%!" (EU.string_of_error e)