]> matita.cs.unibo.it Git - helm.git/commitdiff
- helmns -> helm_ns
authorStefano Zacchiroli <zack@upsilon.cc>
Thu, 20 Jan 2005 10:26:58 +0000 (10:26 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Thu, 20 Jan 2005 10:26:58 +0000 (10:26 +0000)
- added xlink_ns

helm/ocaml/cic_transformations/misc.ml
helm/ocaml/cic_transformations/misc.mli

index e42a0c5f7d1117c8ced9e0e7f2fc30f94e27cb03..98f680d8dbdf12060531239def535d6bc3aca656 100644 (file)
@@ -33,8 +33,9 @@
 (*                                                                            *)
 (******************************************************************************)
 
-let domImpl = Gdome.domImplementation ();;
-let helmns = Gdome.domString "http://www.cs.unibo.it/helm";;
+let domImpl = Gdome.domImplementation ()
+let helm_ns = Gdome.domString "http://www.cs.unibo.it/helm"
+let xlink_ns = Gdome.domString "http://www.w3.org/1999/xlink"
 
   (* TODO BRRRRR .... *)
   (** strip first 4 line of a string, used to strip xml declaration and doctype
@@ -43,5 +44,4 @@ let strip_xml_headings =
   let xml_headings_RE = Pcre.regexp "^.*\n.*\n.*\n.*\n" in
   fun s ->
     Pcre.replace ~rex:xml_headings_RE s
-;;
 
index 946447c43f158dc0150364201961e01a4e58a244..27d55fa2b4f7785bb036f90e5acee8313927c8a6 100644 (file)
@@ -36,7 +36,8 @@
 (* TODO rename this module into at least something like CicMisc *)
 
 val domImpl : Gdome.domImplementation
-val helmns : Gdome.domString
+val helm_ns : Gdome.domString   (** HELM namespace *)
+val xlink_ns : Gdome.domString  (** XLink namespace *)
 
 val strip_xml_headings: string -> string