X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbin%2Froles%2Froles.ml;h=95be729607cd89f6701a9c53ea1edca8f71fde05;hb=277fc8ff21ce3dbd6893b1994c55cf5c06a98355;hp=bcb66d86481d699042a0f2ff076c7ac0b887b825;hpb=3be6630ba2a592488502b320e85e45b55a099580;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/bin/roles/roles.ml b/matita/matita/contribs/lambdadelta/bin/roles/roles.ml index bcb66d864..95be72960 100644 --- a/matita/matita/contribs/lambdadelta/bin/roles/roles.ml +++ b/matita/matita/contribs/lambdadelta/bin/roles/roles.ml @@ -21,27 +21,33 @@ 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_n = " Start a stage with this version" +let help_o = " Turn waiting names into top objects" let help_p = " Print current status on standard output" let help_r = " Load current status" 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 | -nt | -s | ]*" +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) + EE.add_tops (EU.stage_of_string s) let new_stage s = - EE.new_stage (EU.version_of_string s) + EE.new_stage (EU.stage_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 | ".txt" -> EE.read_waiting s @@ -55,12 +61,15 @@ let _main = try "-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; "-n", Arg.String new_stage, help_n; + "-o", Arg.Unit EE.make_tops, help_o; "-p", Arg.Unit EE.print_status, help_p; "-r", Arg.Unit EE.read_status, help_r; "-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)