Re: [xsl] selecting specific elements from a second file

Subject: Re: [xsl] selecting specific elements from a second file
From: "Mark Wilson mark@xxxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 17 Dec 2016 15:37:32 -0000
Thank you, Martin,
Made one small change:
<xsl:template match="Stamp">
<xsl:copy>
<xsl:apply-templates select="@*, node(), key('flaws', CatNumbers/@pofis-number, doc('../work/flaws3.xml'))/node()"/>
</xsl:copy>
</xsl:template>


On 12/17/2016 8:27 AM, Martin Honnen martin.honnen@xxxxxx wrote:
<xsl:template match="Stamp">
<xsl:copy>
<xsl:apply-templates select="@*, node(), key('flaws', @pofis-number, doc('file2.xml'))/node()"/>
</xsl:copy>
</xsl:template>

Current Thread