X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_transformations%2Fxml2Gdome.ml;h=3d07bf21cc37aaa97b9e86b1fe44d313a6ffe36c;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=3c77c91b70ad3bd9d4804e5e67b3e358976f3ef0;hpb=9ab5ca8acba80b19a939eea2cd87761507e7128b;p=helm.git diff --git a/helm/ocaml/cic_transformations/xml2Gdome.ml b/helm/ocaml/cic_transformations/xml2Gdome.ml index 3c77c91b7..3d07bf21c 100644 --- a/helm/ocaml/cic_transformations/xml2Gdome.ml +++ b/helm/ocaml/cic_transformations/xml2Gdome.ml @@ -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 ;;