X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fxpath%2Fast.ml;h=9a0d4d72811b489c697be0aa7adb1357b4f4ef7b;hp=a90a41bd48420156b6059115f45fbf19e9f79f7c;hb=fa7e819743a4a6d008ec086dfdeb2e30df2da701;hpb=974dacbf4f625bfd8ea83db69d6b346050141fea diff --git a/src/xpath/ast.ml b/src/xpath/ast.ml index a90a41b..9a0d4d7 100644 --- a/src/xpath/ast.ml +++ b/src/xpath/ast.ml @@ -13,11 +13,6 @@ (* *) (***********************************************************************) -(* - Time-stamp: -*) - - type path = single_path list and single_path = Absolute of step list | Relative of step list and step = axis * test * expr list @@ -133,14 +128,14 @@ and print_test fmt (ts,kind) = | Element | Attribute -> pp fmt "%s" begin if ts == star then "*" - else QName.to_string (QNameSet.choose ts) + else QName.to_string (QName.remove_prefix (QNameSet.choose ts)) end | Comment -> pp fmt "%s" "comment()" | ProcessingInstruction -> pp fmt "processing-instruction(%s)" begin if ts == star then "" - else "'" ^ (QName.to_string (QNameSet.choose ts)) ^ "'" + else "\"" ^ (QName.to_string (QName.remove_prefix (QNameSet.choose ts))) ^ "\"" end | Node -> pp fmt "%s" "node()" | Document -> pp fmt "%s" ""