We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of using use-when to differentiate between server- and client-side execution on function calls like this:
use-when
<xsl:value-of use-when="system-property('xsl:product-name') eq 'Saxon-JS'" select="resolve-uri(concat('/', ixsl:call(ixsl:window(), 'generateUUID', [])), $ac:uri)"/> <xsl:value-of use-when="system-property('xsl:product-name') = 'SAXON'" select="resolve-uri(concat('/', ac:uuid()), $ac:uri)"/>
we could abstract the differences away by hiding the differences within functions.
This should also help address issues of SEF compilation on Saxon-EE: https://saxonica.plan.io/issues/4961
The text was updated successfully, but these errors were encountered:
namedgraph
No branches or pull requests
Instead of using
use-when
to differentiate between server- and client-side execution on function calls like this:we could abstract the differences away by hiding the differences within functions.
This should also help address issues of SEF compilation on Saxon-EE: https://saxonica.plan.io/issues/4961
The text was updated successfully, but these errors were encountered: