- From: CVS User fsasaki <cvsmail@w3.org>
- Date: Mon, 17 Dec 2012 17:33:31 +0000
- To: public-multilingualweb-lt-commits@w3.org
Update of /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt
In directory gil:/tmp/cvs-serv11690/tools/xslt
Modified Files:
disco-for-its20.xsl
Log Message:
update to LC overview generation
--- /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/disco-for-its20.xsl 2012/12/12 08:25:18 1.9
+++ /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/disco-for-its20.xsl 2012/12/17 17:33:31 1.10
@@ -123,9 +123,9 @@
<td>
<xsl:choose>
<xsl:when
- test="contains($resolution,'accepted') or contains($resolution,'rejected')">
- <xsl:value-of select="$resolution"/>
- </xsl:when>
+ test="contains($resolution,'accepted')">accepted</xsl:when>
+ <xsl:when
+ test="contains($resolution,'rejected')">rejected</xsl:when>
<xsl:otherwise>
<span class="unknown">unknown</span>
</xsl:otherwise>
@@ -134,9 +134,9 @@
<td>
<xsl:choose>
<xsl:when
- test="contains($commentors-response,'satisfied') or contains($commentors-response,'unsatisfied')">
- <xsl:value-of select="$commentors-response"/>
- </xsl:when>
+ test="contains($commentors-response,'unsatisfied')">unsatisfied</xsl:when>
+ <xsl:when
+ test="contains($commentors-response,'satisfied')">satisfied</xsl:when>
<xsl:otherwise>
<span class="unknown">unknown</span>
</xsl:otherwise>
@@ -145,9 +145,11 @@
<td>
<xsl:choose>
<xsl:when
- test="contains($change-type,'editorial') or contains($change-type,'substantive') or contains($change-type,'none')">
- <xsl:value-of select="$change-type"/>
- </xsl:when>
+ test="contains($change-type,'editorial')">editorial</xsl:when>
+ <xsl:when
+ test="contains($change-type,'substantive')">substantive</xsl:when>
+ <xsl:when
+ test="contains($change-type,'none')">none</xsl:when>
<xsl:otherwise>
<span class="unknown">unknown</span>
</xsl:otherwise>
Received on Monday, 17 December 2012 17:33:33 UTC