1 (* Copyright (C) 2000, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
28 val eq : uri -> uri -> bool
30 val uri_of_string : string -> uri
32 val string_of_uri : uri -> string (* complete uri *)
33 val name_of_uri : uri -> string (* name only (without extension)*)
34 val buri_of_uri : uri -> string (* base uri only *)
35 val depth_of_uri : uri -> int (* length of the path *)
37 (* relative_depth curi uri cookingsno *)
38 (* is the number of times to cook uri to use it when the current uri is curi *)
39 (* cooked cookingsno times *)
40 val relative_depth : uri -> uri -> int -> int
42 (* given an uri, returns the uri of the corresponding cic file, *)
43 (* i.e. removes the [.types][.ann] suffix *)
44 val cicuri_of_uri : uri -> uri
46 (* given an uri, returns the uri of the corresponding annotation file, *)
47 (* i.e. adds the .ann suffix if not already present *)
48 val annuri_of_uri : uri -> uri
50 (* given an uri, tells if it refers to an annotation *)
51 val uri_is_annuri : uri -> bool