File: error-plaintext.xsl

package info (click to toggle)
icecast2 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,560 kB
  • sloc: ansic: 34,522; sh: 5,187; makefile: 376; xml: 106; javascript: 88
file content (15 lines) | stat: -rw-r--r-- 713 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0">
    <xsl:output omit-xml-declaration="yes" media-type="text/plain" method="text" indent="no" encoding="UTF-8" />
    <xsl:template name="content" match="/report">
        <xsl:for-each select="/report/incident">
            <xsl:text>Report:&#xa;</xsl:text>
            <xsl:value-of select="state/text" />
            <xsl:text>&#xa;</xsl:text>
            <xsl:if test="state/@definition">
                <xsl:text>Error code: </xsl:text>
                <xsl:value-of select="state/@definition" />
                <xsl:text>&#xa;</xsl:text>
            </xsl:if>
        </xsl:for-each>
    </xsl:template>
</xsl:stylesheet>