CVS WWW/International/multilingualweb/lt/drafts/its20/tools/xslt

Update of /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt
In directory gil:/tmp/cvs-serv28135/tools/xslt

Modified Files:
	disco-for-its20.xsl 
Log Message:
disco update

--- /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/disco-for-its20.xsl	2013/04/08 16:56:22	1.26
+++ /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/disco-for-its20.xsl	2013/05/04 07:09:06	1.27
@@ -66,22 +66,23 @@
                     select="$comments[contains(substring-after(notes/note[contains(description,'RESOLUTION:')][last()]/description,'RESOLUTION:'),'accepted')]"/>
                 <xsl:variable name="rejectedIssues"
                     select="$comments[contains(substring-after(notes/note[contains(description,'RESOLUTION:')][last()]/description,'RESOLUTION:'),'rejected')]"/>
-                <xsl:variable name="resolutionUnknown"
-                    select="$comments[contains(substring-after(notes/note[contains(description,'RESOLUTION:')][last()]/description,'RESOLUTION:'),'unknown')]"/>
+<!--                 <xsl:variable name="resolutionUnknown"
+                    select="$comments[contains(substring-after(notes/note[contains(description,'RESOLUTION:')][last()]/description,'RESOLUTION:'),'unknown')]"/>  -->
                 <xsl:variable name="wgDecisionUnknown"
-                    select="$comments except ($acceptedIssues union $duplicate union $rejectedIssues union $duplicate) union $resolutionUnknown"/>
+                    select="$comments except ($acceptedIssues union $duplicate union $rejectedIssues union $duplicate)"/>
                 <xsl:variable name="reviewerSatisfied"
                     select="$comments[contains(substring-after(notes/note[contains(description,'COMMENTER-RESPONSE:')][last()]/description,'COMMENTER-RESPONSE:'),'&#x20;satisfied')]"/>
                 <xsl:variable name="reviewerNotSatisfied"
                     select="$comments[contains(substring-after(notes/note[contains(description,'COMMENTER-RESPONSE:')][last()]/description,'COMMENTER-RESPONSE:'),'unsatisfied')]"/>
-                <xsl:variable name="responseUnknown" select="$comments except ($reviewerSatisfied union $reviewerNotSatisfied union $duplicate)"></xsl:variable>
+                <xsl:variable name="acceptedResponseUnknown" select="$acceptedIssues except ($reviewerSatisfied union $reviewerNotSatisfied union $duplicate)"/>
+                <xsl:variable name="rejectedResponseUnknown" select="$rejectedIssues except ($reviewerSatisfied union $reviewerNotSatisfied union $duplicate)"/>
                 <table width="100%" class="overview">
                     <tr>
                         <td>-</td>
                         <td align="center">Reviewer satisfied</td>
                         <td align="center">Reviewer not satisfied</td>
-                        <td align="center">No resolution yet</td>
                         <td align="center">No reply from reviewer</td>
+                        <td align="center">No resolution yet</td>
                     </tr>
                     <tr>
                         <td>WG accepted comment</td>
@@ -93,11 +94,11 @@
                             <xsl:value-of
                                 select="count($acceptedIssues intersect $reviewerNotSatisfied)"/>
                         </td>
-                        <td rowspan="2" align="center">
-                            <xsl:value-of select="count($wgDecisionUnknown)"/>
+                        <td align="center">
+                            <xsl:value-of select="count($acceptedResponseUnknown)"/>
                         </td>
                         <td rowspan="2" align="center">
-                            <xsl:value-of select="count($responseUnknown)"/>
+                            <xsl:value-of select="count($wgDecisionUnknown)"/>
                         </td>
                     </tr>
                     <tr>
@@ -110,6 +111,9 @@
                             <xsl:value-of
                                 select="count($rejectedIssues intersect $reviewerNotSatisfied)"/>
                         </td>
+                        <td align="center">
+                            <xsl:value-of select="count($rejectedResponseUnknown)"/>
+                        </td>
                     </tr>
                 </table>
                 <h2>Issues list</h2>
@@ -158,8 +162,15 @@
                             <xsl:text> </xsl:text></xsl:for-each>
                     </li>
                     <li id="no-response">
-                        <xsl:text>No reponse from reviewer yet: </xsl:text>
-                        <xsl:for-each select="$responseUnknown"> <a href="{concat('#issue-',id)}">
+                        <xsl:text>No reponse from reviewer yet on accepted issues: </xsl:text>
+                        <xsl:for-each select="$acceptedResponseUnknown"> <a href="{concat('#issue-',id)}">
+                            <xsl:value-of select="concat('issue-',id)"/>
+                        </a>
+                            <xsl:text> </xsl:text></xsl:for-each>
+                    </li>
+                    <li id="no-response">
+                        <xsl:text>No reponse from reviewer yet on rejected issues: </xsl:text>
+                        <xsl:for-each select="$rejectedResponseUnknown"> <a href="{concat('#issue-',id)}">
                             <xsl:value-of select="concat('issue-',id)"/>
                         </a>
                             <xsl:text> </xsl:text></xsl:for-each>

Received on Saturday, 4 May 2013 07:09:07 UTC