X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2FmatitaTypes.ml;h=adbc7d3b342bc7c335787d4f405215f3ebd93245;hb=6bd0d331d096d862754b42f9a7fb8af1b823685d;hp=0c8952e89777016f954536df2f416895c5d0a6fc;hpb=5c1b44dfefa085fbb56e23047652d3650be9d855;p=helm.git diff --git a/helm/software/matita/matitaTypes.ml b/helm/software/matita/matitaTypes.ml index 0c8952e89..adbc7d3b3 100644 --- a/helm/software/matita/matitaTypes.ml +++ b/helm/software/matita/matitaTypes.ml @@ -37,6 +37,8 @@ type abouts = | `Us | `Coercions | `CoercionsFull + | `TeX + | `Grammar ] type mathViewer_entry = @@ -48,6 +50,7 @@ type mathViewer_entry = | `Metadata of [ `Deps of [`Fwd | `Back] * UriManager.uri ] | `Uri of UriManager.uri (* cic object uri *) | `Whelp of string * UriManager.uri list (* query and results *) + | `Univs of UriManager.uri ] let string_of_entry = function @@ -56,6 +59,8 @@ let string_of_entry = function | `About `Us -> "about:us" | `About `Coercions -> "about:coercions?tred=true" | `About `CoercionsFull -> "about:coercions" + | `About `TeX -> "about:tex" + | `About `Grammar -> "about:grammar" | `Check _ -> "check:" | `Cic (_, _) -> "term:" | `Dir uri -> uri @@ -72,6 +77,7 @@ let string_of_entry = function (match dir with | `Fwd -> "forward" | `Back -> "backward") ^ suri) | `Uri uri -> UriManager.string_of_uri uri | `Whelp (query, _) -> query + | `Univs uri -> "univs:" ^ UriManager.string_of_uri uri let entry_of_string = function | "about:blank" -> `About `Blank @@ -79,6 +85,8 @@ let entry_of_string = function | "about:us" -> `About `Us | "about:coercions?tred=true" -> `About `Coercions | "about:coercions" -> `About `CoercionsFull + | "about:tex" -> `About `TeX + | "about:grammar" -> `About `Grammar | _ -> (* only about entries supported ATM *) raise (Invalid_argument "entry_of_string")