]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_transformations/xml2Gdome.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / cic_transformations / xml2Gdome.ml
index 3c77c91b70ad3bd9d4804e5e67b3e358976f3ef0..3d07bf21cc37aaa97b9e86b1fe44d313a6ffe36c 100644 (file)
@@ -24,7 +24,6 @@
  *)
 
 let document_of_xml (domImplementation : Gdome.domImplementation) strm =
-prerr_endline "LUCA: entro nella document_of_xml" ;
  let module G = Gdome in
  let module X = Xml in
   let rec update_namespaces ((defaultns,bindings) as namespaces) =
@@ -58,7 +57,6 @@ prerr_endline "LUCA: entro nella document_of_xml" ;
     | X.NEmpty(p,n,l,c) -> p,n,l,c
     | _ -> assert false
   in
-prerr_endline "LUCA: entro nella document_of_xml interna" ;
    let namespaces = update_namespaces (None,[]) root_attributes in
    let namespaceURI = namespace_of_prefix namespaces root_prefix in
    let document =
@@ -130,8 +128,6 @@ prerr_endline "LUCA: entro nella document_of_xml interna" ;
            ~qualifiedName:(get_qualified_name p n)
            ~value:(Gdome.domString v)
       ) root_attributes ;
-prerr_endline "LUCA: prima di aux" ;
      aux namespaces (root : Gdome.element :> Gdome.node) root_content ;
-prerr_endline "LUCA: dopo di aux" ;
      document
 ;;