<xsl:choose>
<xsl:when test="count(//xhtml:body/text()[contains(., 'already in the')]) =
1">
- <xsl:text>duplicate</xsl:text>
+ <xsl:text>DUPLICATE</xsl:text>
</xsl:when>
<xsl:when test="count(//xhtml:body/text()[contains(., 'conflicts with a
recording')]) =
1">
- <xsl:text>conflict</xsl:text>
+ <xsl:text>CONFLICT</xsl:text>
</xsl:when>
<xsl:otherwise>
- error
+ <xsl:text>ERROR</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
- <xsl:text>ok</xsl:text>
+ <xsl:text>OK</xsl:text>
</xsl:otherwise>
</xsl:choose>