cvs -> git
[irspy-moved-to-github.git] / zebra / zeerex2noauth.xsl
1 <?xml version="1.0"?>
2 <!--
3    $Id: zeerex2noauth.xsl,v 1.2 2007-06-25 12:32:13 sondberg Exp $
4 -->
5 <xsl:stylesheet
6     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7     xmlns:ex="http://explain.z3950.org/dtd/2.0/"
8     version="1.0">
9
10   <xsl:output indent="yes"
11         method="xml"
12         version="1.0"
13         encoding="UTF-8"/>
14
15   <xsl:template match="node() | @*">
16     <xsl:copy>
17       <xsl:apply-templates select="@* | node()"/> 
18     </xsl:copy>
19   </xsl:template>
20
21   <!-- Suppress authentication info -->
22   <xsl:template match="/ex:explain/ex:serverInfo/ex:authentication"/>
23
24 </xsl:stylesheet>