Bug 6906: Tests - Do not assume CPL exists
[koha.git] / t / db_dependent / XSLT_Handler / test04.xsl
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"
4 >
5   <xsl:output method="xml" encoding="UTF-8" version="1.0" indent="yes"/>
6   <xsl:param name="injected_variable" />
7
8   <xsl:template match="/">
9       <xsl:apply-templates/>
10   </xsl:template>
11
12   <xsl:template match="node()">
13     <xsl:copy>
14    <xsl:value-of select="$injected_variable"/>
15     </xsl:copy>
16   </xsl:template>
17
18 </xsl:stylesheet>