Sanitize header files and add a timestamp mark in each source file.
[tatoo.git] / src / test.ml
index b8f2be8..0aaea6b 100644 (file)
@@ -13,6 +13,9 @@
 (*                                                                     *)
 (***********************************************************************)
 
+(*
+  Time-stamp: <Last modified on 2013-01-30 19:06:57 CET by Kim Nguyen>
+*)
 
 (** use: xml_file "XPath querie"
     or : xml_file -f XPath_querie_file
@@ -30,19 +33,14 @@ let doc =
   close_in fd; d
 
 
-
 let query = 
   let arg2 = Sys.argv.(2) in
-  if arg2 = "-f"
-  then  let fq = open_in Sys.argv.(3) in
-       let q = XPath.parse_file fq in
-       close_in fq; q
-  else XPath.parse_string arg2
+  Uparser.xpath Ulexer.token (Ulexing.from_latin1_string arg2)
 
 open Format
 
 let () =
-  fprintf err_formatter "Query: %a\n%!" XPath.Ast.print query;
+  fprintf err_formatter "Query: %a\n%!" XPath.Ast.print_path query;
   fprintf err_formatter "Document:\n%!";
   Tree.print_xml stderr doc (Tree.root doc);
   exit 0