blob: 7c71307f95b73abaf6b20508440344e3ad68646e (
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
|
<?xml version="1.0" encoding="us-ascii"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:output
method="text"
encoding="us-ascii"
media-type="text/plain" />
<xsl:template match="news">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="version">
<xsl:value-of select="concat(@version,' (',@date,')
')"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="ni">
<xsl:text> - </xsl:text>
<xsl:apply-templates mode="text"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="*|text()"/>
</xsl:stylesheet>
|