blob: 431f7b92905935d55f3e84afe2462038281d9f6a [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
version="1.0">
<xsl:template match="/build">
<html>
<title>Ant Build</title>
<style>
pre { margin: 0 }
.debug { color: green }
.verbose { color: blue }
.info { color: black }
.warn { color: yellow }
.error { color: red }
</style>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="message">
<pre class="{@priority}"><xsl:value-of select="."/></pre>
</xsl:template>
<xsl:template match="target">
<div>
<h3><xsl:value-of select="@name"/></h3>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="task">
<div>
<h4><xsl:value-of select="@name"/></h4>
<xsl:apply-templates/>
</div>
</xsl:template>
</xsl:stylesheet>