File: info2all.xsl

package info (click to toggle)
debian-reference 2.24
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 20,088 kB
  • ctags: 35
  • sloc: xml: 70,510; sh: 616; makefile: 352; perl: 221; sed: 3
file content (35 lines) | stat: -rw-r--r-- 700 bytes parent folder | download
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
33
34
35
<?xml version="1.0" encoding="utf-8" ?>
<!--
Extract wiki history revisions
-->

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

<xsl:output method="text"/>

<!-- uncomment the following to ignore whitespace-only text nodes -->
<!-- xsl:strip-space elements="*"/ -->

<xsl:template match="id">
  <xsl:value-of select="."/>
  <xsl:value-of select="'&#10;'"/>
</xsl:template>

<xsl:template match="date">
</xsl:template>

<xsl:template match="name">
</xsl:template>

<xsl:template match="comment">
</xsl:template>

<xsl:template match="hush">
</xsl:template>

<xsl:template match="node()">
    <xsl:apply-templates select="node()"/>
</xsl:template>

</xsl:stylesheet>