xalan-cとxsltprocの次の違いに気づいています。これらのどれが正しいですか?スペックはこれについて何と言っていますか?
ソースxml:-
<a attr="val1">
<b d="5">
</b>
<b d="10">
</b>
</a>
スタイルシート:-
<xsl:template match="@* | text() | comment() | processing-instruction()">
<xsl:copy/>
</xsl:template>
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="a">
<a>
<c>
<xsl:call-template name="gcd">
<xsl:with-param name="nums" select="./b/@d"/>
</xsl:call-template>
</c>
<xsl:apply-templates select="./@*"/>
<a>
</xsl:template>
xsltprocは私に:-
<a attr="val1">
<c>5</c>
</a>
xalan-cが私に与える間:-
<a>
<c>5</c>
</a>