summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorGian Domenico Ceccarini <gdceccarini@gmail.com>2017-01-13 08:54:26 +0100
committerjan iversen <jani@documentfoundation.org>2017-01-27 07:26:06 +0000
commit78f5923e7cec0f6a0b3dbcbe29bad1980593454c (patch)
treed30262d99bbbf6ff165510c97874444bb93a8e63 /filter
parent4142e0a0c05c29a203799cc96630b17133ca2b40 (diff)
use . as decimal separator in exported number format
Change-Id: I951995a028274c93e0c0b7226e6d2dceec5a916d Reviewed-on: https://gerrit.libreoffice.org/33022 Tested-by: Jenkins <ci@libreoffice.org> Tested-by: jan iversen <jani@documentfoundation.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl5
1 files changed, 3 insertions, 2 deletions
diff --git a/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl b/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl
index 5c9b624120ed..d8d5b0e6a846 100644
--- a/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl
+++ b/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl
@@ -333,6 +333,7 @@
- 0.0133cm for solid style
- 0.0399cm for double style
as there are three border lines painted -->
+ <xsl:decimal-format name = "unifiedFormat" decimal-separator = "." />
<xsl:template name="round-up-border-width">
<xsl:param name="borderWidth"/>
<xsl:param name="multiplier"/>
@@ -345,11 +346,11 @@
<xsl:variable name="minimalBorderWidth" select="0.0133 * $multiplier"/>
<xsl:choose>
<xsl:when test="number($borderWidthByCentimeter) &lt; $minimalBorderWidth">
- <xsl:value-of select="$minimalBorderWidth"/>
+ <xsl:value-of select="format-number($minimalBorderWidth,'0.######','unifiedFormat')"/>
<xsl:text>cm</xsl:text>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="borderWidthByCentimeter"/>
+ <xsl:value-of select="format-number($borderWidthByCentimeter,'0.######','unifiedFormat')"/>
<xsl:text>cm</xsl:text>
</xsl:otherwise>
</xsl:choose>