aboutsummaryrefslogtreecommitdiffstats
path: root/main/dnssec-root/anchors2ds.xsl
blob: 3df47e20759d66bc0541ebf7a2cccfc736c1aec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="text"/>

  <xsl:template match="/">
     <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="/TrustAnchor">
     <xsl:apply-templates select="Zone"/>
     <xsl:apply-templates select="KeyDigest"/>
     <xsl:text>
</xsl:text>
  </xsl:template>

  <xsl:template match="KeyDigest">
     <xsl:apply-templates select="KeyTag"/>
     <xsl:apply-templates select="Algorithm"/>
     <xsl:apply-templates select="DigestType"/>
     <xsl:apply-templates select="Digest"/>
  </xsl:template>

  <xsl:template match="Zone">
     <xsl:value-of select="text()"/><xsl:text> IN DS </xsl:text>
  </xsl:template>

  <xsl:template match="*">
     <xsl:value-of select="text()"/><xsl:text> </xsl:text>
  </xsl:template>

</xsl:stylesheet>