source: other-projects/nightly-tasks/diffcol/trunk/xsl/passed-or-not.xsl@ 27977

Last change on this file since 27977 was 21711, checked in by oranfry, 14 years ago

bringing across the diffcol project

File size: 473 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
4
5
6 <!-- specify output -->
7 <xsl:output method="text"/>
8
9 <!-- this is needed so that whitespace nodes
10 in page/*.xml are not seen as text-keys -->
11 <xsl:strip-space elements="*"/>
12
13 <xsl:template match="/"><xsl:choose><xsl:when test="//*[@succeeded='no']">no</xsl:when><xsl:otherwise>yes</xsl:otherwise></xsl:choose></xsl:template>
14
15</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.