Skip to content

Commit 81b7e46

Browse files
committed
number formatting
1 parent a4164d0 commit 81b7e46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

curation-app/src/main/resources/xslt/AllLinkcheckerReport2HTML.xsl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</a>
3535
</td>
3636
<td class='text-right'>
37-
<xsl:value-of select="@count"></xsl:value-of>
37+
<xsl:value-of select="format-number(@count, '###,##0')"></xsl:value-of>
3838
</td>
3939
<td class='text-right'>
4040
<xsl:choose>
@@ -62,7 +62,7 @@
6262
<tr>
6363
<td colspan="5">
6464
Total number with response:
65-
<xsl:value-of select="overall/@totNumOfLinksWithDuration"></xsl:value-of>
65+
<xsl:value-of select="format-number(overall/@totNumOfLinksWithDuration, '###,##0')"></xsl:value-of>
6666
&#0183;
6767
Average Response Duration(ms):
6868
<xsl:choose>
@@ -117,7 +117,7 @@
117117
</a>
118118
</td>
119119
<td class='text-right'>
120-
<xsl:value-of select="@count"></xsl:value-of>
120+
<xsl:value-of select="format-number(@count, '###,##0')"></xsl:value-of>
121121
</td>
122122
<td class='text-right'>
123123
<xsl:choose>
@@ -148,7 +148,7 @@
148148
<tr>
149149
<td colspan="5">
150150
Total number with response:
151-
<xsl:value-of select="@totNumOfLinksWithDuration"></xsl:value-of>
151+
<xsl:value-of select="format-number(@totNumOfLinksWithDuration, '###,##0')"></xsl:value-of>
152152
&#0183;
153153
Average Response Duration(ms):
154154
<xsl:choose>

0 commit comments

Comments
 (0)