Proper identity XSL
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 13 Dec 2007 17:41:50 +0000 (17:41 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 13 Dec 2007 17:41:50 +0000 (17:41 +0000)
examples/marcxml/identity.xsl

index dc77b8c..21d6d6b 100644 (file)
@@ -1,37 +1,16 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- 
-$Id: identity.xsl,v 1.2 2006-06-09 20:46:38 marc Exp $
-   Copyright (C) 1995-2006
-   Index Data ApS
-
-This file is part of the Zebra server.
-
-Zebra is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free
-Software Foundation; either version 2, or (at your option) any later
-version.
-
-Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILITY or
-FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-for more details.
-
-You should have received a copy of the GNU General Public License
-along with Zebra; see the file LICENSE.zebra.  If not, write to the
-Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-02111-1307, USA.
--->
-
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-  version="1.0">
-
-  <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
-
-  <!-- match on any record -->
-  <xsl:template match="/">
-      <xsl:copy-of select="/"/>
-  </xsl:template>
-
+ version="1.0">
+<!-- Identity transform stylesheet -->
+
+<xsl:output indent="yes"
+      method="xml"
+      version="1.0"
+      encoding="UTF-8"/>
+
+ <xsl:template match="node()|@*">
+   <xsl:copy>
+     <xsl:apply-templates select="@*|node()"/>
+   </xsl:copy>
+ </xsl:template>
 
 </xsl:stylesheet>