Bug 26922: Regression tests
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / xslt / identity.xsl
blob2e0743ea22806c7e29c7a660490960ed7a631efb
1 <!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3 <!-- identity transformation -->
4 <!-- Whenever you match any node or any attribute -->
5 <xsl:template match="node()|@*">
6 <!-- Copy the current node -->
7 <xsl:copy>
8 <!-- Including any attributes it has and any child nodes -->
9 <xsl:apply-templates select="@*|node()"/>
10 </xsl:copy>
11 </xsl:template>
12 </xsl:stylesheet>