summaryrefslogtreecommitdiff
path: root/tools/xml-notes-dump.xsl
blob: 79b960679fdf4332ca5e00633efeeba99d5bb5d4 (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
<?xml version="1.0" encoding="UTF-8"?>

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

  <xsl:template match="note">
    <xsl:variable name="docPath">
      <xsl:text>../src/</xsl:text>
      <xsl:value-of select="@src" />
    </xsl:variable>
    <xsl:variable name="doc" select="document($docPath)" />
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:copy-of select="$doc" />
    </xsl:copy>
  </xsl:template>

  <xsl:template match="node()" priority="0">
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:apply-templates />
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>