Added xsltproc test, 10x faster. Need to check output.
[treecutter.git] / src / tree-cutter.py
index 782f58ade4d185e699faab0608ec65d7f15812a0..c07820d802f7aec11d1bb4a09f57d43f6806bccb 100755 (executable)
@@ -108,7 +108,8 @@ def xsltConvert(doc):
   tfi = open(infile,'w')
   tfi.write(doc.xml_encode())
   tfi.close()
-  cmd = ["saxon-xslt-xinclude","-o",outfile,infile,style_xslt]
+#  cmd = ["saxon-xslt-xinclude","-o",outfile,infile,style_xslt]
+  cmd = ["xsltproc","--xinclude","--output",outfile,style_xslt,infile]
   retcode = subprocess.call(cmd)
   if retcode:
     print 'Error: '+' '.join(cmd)+' Returncode ['+str(retcode)+']'