Bug 20434: Update UNIMARC framework - authorised values
[koha.git] / t / db_dependent / XSLT_Handler / test04.xsl
blob7b20ed71fc27854c2a197af3d0c68112641f9819
1 <xsl:stylesheet version="1.0"
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:marc="http://www.loc.gov/MARC21/slim"
5 <xsl:output method="xml" encoding="UTF-8" version="1.0" indent="yes"/>
6 <xsl:param name="injected_variable" />
8 <xsl:template match="/">
9 <xsl:apply-templates/>
10 </xsl:template>
12 <xsl:template match="node()">
13 <xsl:copy>
14 <xsl:value-of select="$injected_variable"/>
15 </xsl:copy>
16 </xsl:template>
18 </xsl:stylesheet>