common/tools/brag/bragForDiamonds.xsl
author Dario Sestito <darios@symbian.org>
Wed, 10 Feb 2010 16:22:25 +0000
changeset 886 fc600bbaa15c
parent 587 97d29037659e
child 902 6df3172848e9
permissions -rw-r--r--
Fix BRAG status is different as viewed from Diamonds and from the _BRAG.xml page

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

<!-- Main template -->
<xsl:template match="/buildStatus">
	<xsl:variable name="criticalCount" select="count(phase/step/failures[@level='critical']/failure)+sum(phase/step/failures[@level='critical']/@count)"/>
	<xsl:variable name="majorCount" select="count(phase/step/failures[@level='major']/failure)+sum(phase/step/failures[@level='major']/@count)"/>
	<xsl:variable name="minorCount" select="count(phase/step/failures[@level='minor']/failure)+sum(phase/step/failures[@level='minor']/@count)"/>
	<xsl:variable name="unknownCount" select="count(phase/step/failures[@level!='critical' and @level!='major' and @level!='minor']/failure)+sum(phase/step/failures[@level!='critical' and @level!='major' and @level!='minor']/@count)"/>

	<diamonds-build>
	<schema>13</schema>
	<build>
	<status>
	<xsl:choose>
		<xsl:when test="$criticalCount != 0">Black</xsl:when>
		<xsl:when test="$majorCount != 0">Red</xsl:when>
		<xsl:when test="$minorCount != 0">Amber</xsl:when>
		<xsl:when test="$unknownCount != 0">Green</xsl:when>
		<xsl:otherwise>Gold</xsl:otherwise>
	</xsl:choose>
	</status>
	</build>
	</diamonds-build>
</xsl:template>

</xsl:stylesheet>