Skip to content

Commit

Permalink
Fix order of compile-time and run-time attributes
Browse files Browse the repository at this point in the history
Follow up of #65
  • Loading branch information
dmj committed Jul 29, 2019
1 parent 6606741 commit 1f2798b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/xslt/2.0/compile-for-svrl.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
<xsl:template name="schxslt-api:active-pattern">
<xsl:param name="pattern" as="element(sch:pattern)" required="yes"/>
<svrl:active-pattern>
<xsl:sequence select="($pattern/@id, $pattern/@role)"/>
<xsl:if test="exists(base-uri(.))">
<attribute name="documents" select="base-uri(.)"/>
</xsl:if>
<xsl:sequence select="($pattern/@id, $pattern/@role)"/>
</svrl:active-pattern>
</xsl:template>

Expand Down

0 comments on commit 1f2798b

Please sign in to comment.