]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/matita.ml
1) grafiteWalker removed
[helm.git] / helm / software / matita / matita.ml
index fb7ad27bf6244c2a914dfc418957e760feae75ce..cc46c76492e43218f24ed1779beb4b720711f78f 100644 (file)
@@ -81,10 +81,17 @@ let _ =
   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
   sequents_viewer#load_logo;
   cic_math_view#set_href_callback
-    (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
-      (`Uri (UriManager.uri_of_string uri))));
-  let browser_observer _ _ = MatitaMathView.refresh_all_browsers () in
-  let sequents_observer _ grafite_status =
+    (Some (fun uri ->
+      let uri =
+       try
+        `Uri (UriManager.uri_of_string uri)
+       with
+        UriManager.IllFormedUri _ ->
+         `NRef (NReference.reference_of_string uri)
+      in
+      (MatitaMathView.cicBrowser ())#load uri));
+  let browser_observer _ = MatitaMathView.refresh_all_browsers () in
+  let sequents_observer grafite_status =
     sequents_viewer#reset;
     match grafite_status.proof_status with
     | Incomplete_proof ({ stack = stack } as incomplete_proof) ->
@@ -133,7 +140,7 @@ let _ =
       ignore (GMenu.separator_item ~packing:gui#main#debugMenu_menu#append ())
     in
     addDebugItem "dump aliases" (fun _ ->
-      let status = script#lexicon_status in
+      let status = GrafiteTypes.get_estatus script#grafite_status in
       LexiconEngine.dump_aliases HLog.debug "" status);
 (* FG: DEBUGGING   
     addDebugItem "dump interpretations" (fun _ ->
@@ -206,7 +213,7 @@ let _ =
      addDebugItem "Print current proof (natural language) to stderr" 
        (fun _ -> 
         prerr_endline 
-          (ApplyTransformation.txt_of_cic_object 120 GrafiteAst.Declarative "" 
+          (ApplyTransformation.txt_of_cic_object 120 [] 
             ~map_unicode_to_tex:(Helm_registry.get_bool
               "matita.paste_unicode_as_tex")
             (match 
@@ -294,7 +301,7 @@ let _ =
                    "(" ^ string_of_int saturations ^ ")")
                 ul)) ^ ":"
              ^ CoercDb.string_of_carr s ^ " -> " ^ CoercDb.string_of_carr t))
-        (CoercDb.to_list ()));
+        (CoercDb.to_list (CoercDb.dump ())));
     addDebugSeparator ();
     let mview () = (MatitaMathView.sequentsViewer_instance ())#cicMathView in
 (*     addDebugItem "save (sequent) MathML to matita.xml"