Skip to content

Commit

Permalink
test availability of fallback expressions for listing error values
Browse files Browse the repository at this point in the history
  • Loading branch information
dericed committed Jun 21, 2017
1 parent 8dbc17b commit 8442da9
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -1952,10 +1952,16 @@
<xsl:when test="mmt:d">
<xsl:value-of select="mmt:d"/>
</xsl:when>
<xsl:otherwise>
<xsl:when test="@s">
<xsl:text>[</xsl:text>
<xsl:value-of select="@s"/>
<xsl:text> bytes]</xsl:text>
</xsl:when>
<xsl:when test=".">
<xsl:value-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:text>no info</xsl:text>
</xsl:otherwise>
</xsl:choose>
</value>
Expand Down

0 comments on commit 8442da9

Please sign in to comment.