Skip to content

Commit

Permalink
Backport PR to fix attribute checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelte Jansen committed Oct 17, 2018
1 parent 4bccfdf commit 40516b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/convert_xsl/iso_schematron_skeleton_for_saxon.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,10 @@ which require a preprocess.
which I find a bit surprising but anyway I'll use the longr faster version.
-->
<xsl:variable name="context-xpath">
<!--
<xsl:if test="$attributes='true' and parent::node() ">@*|</xsl:if>
-->
<xsl:if test="$attributes='true'">@*|</xsl:if>
<xsl:choose>
<xsl:when test="$only-child-elements='true'">*</xsl:when>
<xsl:when test="$visit-text='true'">node()</xsl:when>
Expand Down

0 comments on commit 40516b6

Please sign in to comment.