Merge remote-tracking branch 'origin/new/bug_6291'
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / xslt / identity.xsl
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>