X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2FmatitaTypes.ml;h=0c8952e89777016f954536df2f416895c5d0a6fc;hb=5591e27a010ba6eb06cbd61b5b22358f2d572871;hp=239ec6c823af485c91925fdf1d3aca5694e7ef4d;hpb=ef08e2dc4458a7db58575e1694e580c1a8e39a9b;p=helm.git diff --git a/helm/software/matita/matitaTypes.ml b/helm/software/matita/matitaTypes.ml index 239ec6c82..0c8952e89 100644 --- a/helm/software/matita/matitaTypes.ml +++ b/helm/software/matita/matitaTypes.ml @@ -36,14 +36,15 @@ type abouts = | `Current_proof | `Us | `Coercions + | `CoercionsFull ] type mathViewer_entry = [ `About of abouts (* current proof *) - | `Check of string (* term *) + | `Check of string (* term *) | `Cic of Cic.term * Cic.metasenv - | `Development of string - | `Dir of string (* "directory" in cic uris namespace *) + | `Dir of string (* "directory" in cic uris namespace *) + | `HBugs of [ `Tutors ] (* list of available HBugs tutors *) | `Metadata of [ `Deps of [`Fwd | `Back] * UriManager.uri ] | `Uri of UriManager.uri (* cic object uri *) | `Whelp of string * UriManager.uri list (* query and results *) @@ -53,11 +54,12 @@ let string_of_entry = function | `About `Blank -> "about:blank" | `About `Current_proof -> "about:proof" | `About `Us -> "about:us" - | `About `Coercions -> "about:coercions" + | `About `Coercions -> "about:coercions?tred=true" + | `About `CoercionsFull -> "about:coercions" | `Check _ -> "check:" | `Cic (_, _) -> "term:" - | `Development d -> "devel:/" ^ d | `Dir uri -> uri + | `HBugs `Tutors -> "hbugs:/tutors/" | `Metadata meta -> "metadata:/" ^ (match meta with @@ -75,7 +77,8 @@ let entry_of_string = function | "about:blank" -> `About `Blank | "about:proof" -> `About `Current_proof | "about:us" -> `About `Us - | "about:coercions" -> `About `Coercions + | "about:coercions?tred=true" -> `About `Coercions + | "about:coercions" -> `About `CoercionsFull | _ -> (* only about entries supported ATM *) raise (Invalid_argument "entry_of_string")