You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 24, 2026. It is now read-only.
It would be nice to have support for saxon 9 b, for two reasons:
it is open source
it supports some second order functions, most importantly saxon:evaluate (with which xspec code would also be simpler)
As a workaround I have figured out that the following script as "saxon" works, with sacrifying coverage support (it just forgets the first three parameters, and I have saxon 9 b at ~/lib/saxon9.jar):
$ cat bin/saxon
#!/bin/bash
echo "this saxon script is specially crafted to make xpspec able to use saxon 9 b"
shift
shift
shift
java -cp /usr/share/java/tagsoup-1.2.1.jar -jar ~/lib/saxon9.jar ${*} targetdir=$PWD