summaryrefslogtreecommitdiff
path: root/thirdparty/checkstyle/contrib/checkstyle-csv.xsl
blob: e6aa2ce41c84937ffb2227a5f8cda4f80e32ba9e (plain)
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" />
<xsl:strip-space elements="*"/>
<xsl:template match="error"> 
<xsl:value-of select="../@name"/>, <xsl:value-of select="@line"/>, <xsl:value-of select="@column"/>, <xsl:value-of select="@severity"/>, <xsl:value-of select="@message"/>, <xsl:value-of select="@source"/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>