X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2FmatitaTypes.ml;h=e295b9c0f7b80c9f74dddeef107e71b8310bbfff;hb=d46411c038cccb932638fd9d131c5d858c80ac5e;hp=30e64892cc2ede541a3313994e52325c170a4fbf;hpb=c0700c9d9cf3aa044b2f2945a832a6c2eebd5409;p=helm.git diff --git a/matita/matita/matitaTypes.ml b/matita/matita/matitaTypes.ml index 30e64892c..e295b9c0f 100644 --- a/matita/matita/matitaTypes.ml +++ b/matita/matita/matitaTypes.ml @@ -48,11 +48,8 @@ type mathViewer_entry = | `Cic of Cic.term * Cic.metasenv | `NCic of NCic.term * NCic.context * NCic.metasenv * NCic.substitution | `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 *) | `NRef of NReference.reference (* cic object uri *) - | `Whelp of string * UriManager.uri list (* query and results *) | `Univs of UriManager.uri ] @@ -69,20 +66,8 @@ let string_of_entry = function | `Cic (_, _) -> "term:" | `NCic (_, _, _, _) -> "nterm:" | `Dir uri -> uri - | `HBugs `Tutors -> "hbugs:/tutors/" - | `Metadata meta -> - "metadata:/" ^ - (match meta with - | `Deps (dir, uri) -> - "deps/" ^ - let suri = - let suri = UriManager.string_of_uri uri in - let len = String.length suri in - String.sub suri 4 (len - 4) in (* strip "cic:" prefix *) - (match dir with | `Fwd -> "forward" | `Back -> "backward") ^ suri) | `Uri uri -> UriManager.string_of_uri uri | `NRef nref -> NReference.string_of_reference nref - | `Whelp (query, _) -> query | `Univs uri -> "univs:" ^ UriManager.string_of_uri uri let entry_of_string = function