metanorma-ogc 2.5.3 → 2.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +65 -7
- data/lib/isodoc/ogc/ogc.best-practice.xsl +65 -7
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +65 -7
- data/lib/isodoc/ogc/ogc.community-practice.xsl +65 -7
- data/lib/isodoc/ogc/ogc.community-standard.xsl +65 -7
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +65 -7
- data/lib/isodoc/ogc/ogc.draft-standard.xsl +65 -7
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +65 -7
- data/lib/isodoc/ogc/ogc.other.xsl +65 -7
- data/lib/isodoc/ogc/ogc.policy.xsl +65 -7
- data/lib/isodoc/ogc/ogc.reference-model.xsl +65 -7
- data/lib/isodoc/ogc/ogc.release-notes.xsl +65 -7
- data/lib/isodoc/ogc/ogc.standard.xsl +65 -7
- data/lib/isodoc/ogc/ogc.test-suite.xsl +65 -7
- data/lib/isodoc/ogc/ogc.user-guide.xsl +65 -7
- data/lib/isodoc/ogc/ogc.white-paper.xsl +65 -7
- data/lib/metanorma/ogc/version.rb +1 -1
- data/lib/relaton/render/date.rb +6 -3
- data/lib/relaton/render/fields.rb +0 -2
- data/lib/relaton/render/general.rb +3 -5
- metadata +2 -2
@@ -6000,7 +6000,8 @@
|
|
6000
6000
|
</xsl:template>
|
6001
6001
|
|
6002
6002
|
<xsl:template match="text()[ancestor::*[local-name()='smallcap']]">
|
6003
|
-
<xsl:variable name="text" select="normalize-space(.)"/>
|
6003
|
+
<!-- <xsl:variable name="text" select="normalize-space(.)"/> --> <!-- https://github.com/metanorma/metanorma-iso/issues/1115 -->
|
6004
|
+
<xsl:variable name="text" select="."/>
|
6004
6005
|
<fo:inline font-size="75%" role="SKIP">
|
6005
6006
|
<xsl:if test="string-length($text) > 0">
|
6006
6007
|
<xsl:variable name="smallCapsText">
|
@@ -8143,16 +8144,44 @@
|
|
8143
8144
|
</xsl:choose>
|
8144
8145
|
|
8145
8146
|
<xsl:attribute name="content-width">scale-down-to-fit</xsl:attribute>
|
8146
|
-
<xsl:variable name="
|
8147
|
-
<xsl:variable name="
|
8147
|
+
<xsl:variable name="svg_width_" select="xalan:nodeset($svg_content)/*/@width"/>
|
8148
|
+
<xsl:variable name="svg_width" select="number(translate($svg_width_, 'px', ''))"/>
|
8149
|
+
<xsl:variable name="svg_height_" select="xalan:nodeset($svg_content)/*/@height"/>
|
8150
|
+
<xsl:variable name="svg_height" select="number(translate($svg_height_, 'px', ''))"/>
|
8151
|
+
|
8152
|
+
<!-- Example: -->
|
8148
8153
|
<!-- effective height 297 - 27.4 - 13 = 256.6 -->
|
8149
8154
|
<!-- effective width 210 - 12.5 - 25 = 172.5 -->
|
8150
8155
|
<!-- effective height / width = 1.48, 1.4 - with title -->
|
8151
|
-
|
8156
|
+
|
8157
|
+
<xsl:variable name="scale_x">
|
8158
|
+
<xsl:choose>
|
8159
|
+
<xsl:when test="$svg_width > $width_effective_px">
|
8160
|
+
<xsl:value-of select="$width_effective_px div $svg_width"/>
|
8161
|
+
</xsl:when>
|
8162
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8163
|
+
</xsl:choose>
|
8164
|
+
</xsl:variable>
|
8165
|
+
<xsl:variable name="scale_y">
|
8166
|
+
<xsl:choose>
|
8167
|
+
<xsl:when test="$svg_height * $scale_x > $height_effective_px">
|
8168
|
+
<xsl:value-of select="$height_effective_px div ($svg_height * $scale_x)"/>
|
8169
|
+
</xsl:when>
|
8170
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8171
|
+
</xsl:choose>
|
8172
|
+
</xsl:variable>
|
8173
|
+
|
8174
|
+
<!-- for images with big height -->
|
8175
|
+
<!-- <xsl:if test="$svg_height > ($svg_width * 1.4)">
|
8152
8176
|
<xsl:variable name="width" select="(($svg_width * 1.4) div $svg_height) * 100"/>
|
8153
8177
|
<xsl:attribute name="width"><xsl:value-of select="$width"/>%</xsl:attribute>
|
8154
|
-
</xsl:if>
|
8178
|
+
</xsl:if> -->
|
8155
8179
|
<xsl:attribute name="scaling">uniform</xsl:attribute>
|
8180
|
+
|
8181
|
+
<xsl:if test="$scale_y != 1">
|
8182
|
+
<xsl:attribute name="content-height"><xsl:value-of select="round($scale_x * $scale_y * 100)"/>%</xsl:attribute>
|
8183
|
+
</xsl:if>
|
8184
|
+
|
8156
8185
|
<xsl:copy-of select="$svg_content"/>
|
8157
8186
|
</fo:instream-foreign-object>
|
8158
8187
|
<!-- </fo:block> -->
|
@@ -8190,8 +8219,12 @@
|
|
8190
8219
|
<xsl:variable name="width" select="normalize-space($viewbox//item[3])"/>
|
8191
8220
|
<xsl:variable name="height" select="normalize-space($viewbox//item[4])"/>
|
8192
8221
|
|
8222
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[1][local-name() = 'image']/@width)"/>
|
8223
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[1][local-name() = 'image']/@height)"/>
|
8224
|
+
|
8193
8225
|
<xsl:attribute name="width">
|
8194
8226
|
<xsl:choose>
|
8227
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8195
8228
|
<xsl:when test="$width != ''">
|
8196
8229
|
<xsl:value-of select="round($width)"/>
|
8197
8230
|
</xsl:when>
|
@@ -8200,6 +8233,7 @@
|
|
8200
8233
|
</xsl:attribute>
|
8201
8234
|
<xsl:attribute name="height">
|
8202
8235
|
<xsl:choose>
|
8236
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8203
8237
|
<xsl:when test="$height != ''">
|
8204
8238
|
<xsl:value-of select="round($height)"/>
|
8205
8239
|
</xsl:when>
|
@@ -8211,6 +8245,28 @@
|
|
8211
8245
|
</xsl:copy>
|
8212
8246
|
</xsl:template>
|
8213
8247
|
|
8248
|
+
<xsl:template match="*[local-name() = 'svg']/@width" mode="svg_update">
|
8249
|
+
<!-- image[@width]/svg -->
|
8250
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[2][local-name() = 'image']/@width)"/>
|
8251
|
+
<xsl:attribute name="width">
|
8252
|
+
<xsl:choose>
|
8253
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8254
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8255
|
+
</xsl:choose>
|
8256
|
+
</xsl:attribute>
|
8257
|
+
</xsl:template>
|
8258
|
+
|
8259
|
+
<xsl:template match="*[local-name() = 'svg']/@height" mode="svg_update">
|
8260
|
+
<!-- image[@height]/svg -->
|
8261
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[2][local-name() = 'image']/@height)"/>
|
8262
|
+
<xsl:attribute name="height">
|
8263
|
+
<xsl:choose>
|
8264
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8265
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8266
|
+
</xsl:choose>
|
8267
|
+
</xsl:attribute>
|
8268
|
+
</xsl:template>
|
8269
|
+
|
8214
8270
|
<!-- regex for 'display: inline-block;' -->
|
8215
8271
|
<xsl:variable name="regex_svg_style_notsupported">display(\s|\h)*:(\s|\h)*inline-block(\s|\h)*;</xsl:variable>
|
8216
8272
|
<xsl:template match="*[local-name() = 'svg']//*[local-name() = 'style']/text()" mode="svg_update">
|
@@ -10331,7 +10387,9 @@
|
|
10331
10387
|
</xsl:template> <!-- sections_element_style -->
|
10332
10388
|
|
10333
10389
|
<xsl:template match="//*[contains(local-name(), '-standard')]/*[local-name() = 'preface']/*" priority="2"> <!-- /*/*[local-name() = 'preface']/* -->
|
10334
|
-
|
10390
|
+
|
10391
|
+
<fo:block break-after="page"/>
|
10392
|
+
|
10335
10393
|
<fo:block>
|
10336
10394
|
<xsl:call-template name="setId"/>
|
10337
10395
|
<xsl:apply-templates/>
|
@@ -10398,7 +10456,7 @@
|
|
10398
10456
|
<xsl:when test="ancestor::*[contains(local-name(), '-standard')] and not(ancestor::*[contains(local-name(), '-standard')]//*[@id = $id_from])">
|
10399
10457
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10400
10458
|
</xsl:when>
|
10401
|
-
<xsl:when test="not(
|
10459
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
10402
10460
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10403
10461
|
</xsl:when>
|
10404
10462
|
</xsl:choose>
|
@@ -6000,7 +6000,8 @@
|
|
6000
6000
|
</xsl:template>
|
6001
6001
|
|
6002
6002
|
<xsl:template match="text()[ancestor::*[local-name()='smallcap']]">
|
6003
|
-
<xsl:variable name="text" select="normalize-space(.)"/>
|
6003
|
+
<!-- <xsl:variable name="text" select="normalize-space(.)"/> --> <!-- https://github.com/metanorma/metanorma-iso/issues/1115 -->
|
6004
|
+
<xsl:variable name="text" select="."/>
|
6004
6005
|
<fo:inline font-size="75%" role="SKIP">
|
6005
6006
|
<xsl:if test="string-length($text) > 0">
|
6006
6007
|
<xsl:variable name="smallCapsText">
|
@@ -8143,16 +8144,44 @@
|
|
8143
8144
|
</xsl:choose>
|
8144
8145
|
|
8145
8146
|
<xsl:attribute name="content-width">scale-down-to-fit</xsl:attribute>
|
8146
|
-
<xsl:variable name="
|
8147
|
-
<xsl:variable name="
|
8147
|
+
<xsl:variable name="svg_width_" select="xalan:nodeset($svg_content)/*/@width"/>
|
8148
|
+
<xsl:variable name="svg_width" select="number(translate($svg_width_, 'px', ''))"/>
|
8149
|
+
<xsl:variable name="svg_height_" select="xalan:nodeset($svg_content)/*/@height"/>
|
8150
|
+
<xsl:variable name="svg_height" select="number(translate($svg_height_, 'px', ''))"/>
|
8151
|
+
|
8152
|
+
<!-- Example: -->
|
8148
8153
|
<!-- effective height 297 - 27.4 - 13 = 256.6 -->
|
8149
8154
|
<!-- effective width 210 - 12.5 - 25 = 172.5 -->
|
8150
8155
|
<!-- effective height / width = 1.48, 1.4 - with title -->
|
8151
|
-
|
8156
|
+
|
8157
|
+
<xsl:variable name="scale_x">
|
8158
|
+
<xsl:choose>
|
8159
|
+
<xsl:when test="$svg_width > $width_effective_px">
|
8160
|
+
<xsl:value-of select="$width_effective_px div $svg_width"/>
|
8161
|
+
</xsl:when>
|
8162
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8163
|
+
</xsl:choose>
|
8164
|
+
</xsl:variable>
|
8165
|
+
<xsl:variable name="scale_y">
|
8166
|
+
<xsl:choose>
|
8167
|
+
<xsl:when test="$svg_height * $scale_x > $height_effective_px">
|
8168
|
+
<xsl:value-of select="$height_effective_px div ($svg_height * $scale_x)"/>
|
8169
|
+
</xsl:when>
|
8170
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8171
|
+
</xsl:choose>
|
8172
|
+
</xsl:variable>
|
8173
|
+
|
8174
|
+
<!-- for images with big height -->
|
8175
|
+
<!-- <xsl:if test="$svg_height > ($svg_width * 1.4)">
|
8152
8176
|
<xsl:variable name="width" select="(($svg_width * 1.4) div $svg_height) * 100"/>
|
8153
8177
|
<xsl:attribute name="width"><xsl:value-of select="$width"/>%</xsl:attribute>
|
8154
|
-
</xsl:if>
|
8178
|
+
</xsl:if> -->
|
8155
8179
|
<xsl:attribute name="scaling">uniform</xsl:attribute>
|
8180
|
+
|
8181
|
+
<xsl:if test="$scale_y != 1">
|
8182
|
+
<xsl:attribute name="content-height"><xsl:value-of select="round($scale_x * $scale_y * 100)"/>%</xsl:attribute>
|
8183
|
+
</xsl:if>
|
8184
|
+
|
8156
8185
|
<xsl:copy-of select="$svg_content"/>
|
8157
8186
|
</fo:instream-foreign-object>
|
8158
8187
|
<!-- </fo:block> -->
|
@@ -8190,8 +8219,12 @@
|
|
8190
8219
|
<xsl:variable name="width" select="normalize-space($viewbox//item[3])"/>
|
8191
8220
|
<xsl:variable name="height" select="normalize-space($viewbox//item[4])"/>
|
8192
8221
|
|
8222
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[1][local-name() = 'image']/@width)"/>
|
8223
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[1][local-name() = 'image']/@height)"/>
|
8224
|
+
|
8193
8225
|
<xsl:attribute name="width">
|
8194
8226
|
<xsl:choose>
|
8227
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8195
8228
|
<xsl:when test="$width != ''">
|
8196
8229
|
<xsl:value-of select="round($width)"/>
|
8197
8230
|
</xsl:when>
|
@@ -8200,6 +8233,7 @@
|
|
8200
8233
|
</xsl:attribute>
|
8201
8234
|
<xsl:attribute name="height">
|
8202
8235
|
<xsl:choose>
|
8236
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8203
8237
|
<xsl:when test="$height != ''">
|
8204
8238
|
<xsl:value-of select="round($height)"/>
|
8205
8239
|
</xsl:when>
|
@@ -8211,6 +8245,28 @@
|
|
8211
8245
|
</xsl:copy>
|
8212
8246
|
</xsl:template>
|
8213
8247
|
|
8248
|
+
<xsl:template match="*[local-name() = 'svg']/@width" mode="svg_update">
|
8249
|
+
<!-- image[@width]/svg -->
|
8250
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[2][local-name() = 'image']/@width)"/>
|
8251
|
+
<xsl:attribute name="width">
|
8252
|
+
<xsl:choose>
|
8253
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8254
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8255
|
+
</xsl:choose>
|
8256
|
+
</xsl:attribute>
|
8257
|
+
</xsl:template>
|
8258
|
+
|
8259
|
+
<xsl:template match="*[local-name() = 'svg']/@height" mode="svg_update">
|
8260
|
+
<!-- image[@height]/svg -->
|
8261
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[2][local-name() = 'image']/@height)"/>
|
8262
|
+
<xsl:attribute name="height">
|
8263
|
+
<xsl:choose>
|
8264
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8265
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8266
|
+
</xsl:choose>
|
8267
|
+
</xsl:attribute>
|
8268
|
+
</xsl:template>
|
8269
|
+
|
8214
8270
|
<!-- regex for 'display: inline-block;' -->
|
8215
8271
|
<xsl:variable name="regex_svg_style_notsupported">display(\s|\h)*:(\s|\h)*inline-block(\s|\h)*;</xsl:variable>
|
8216
8272
|
<xsl:template match="*[local-name() = 'svg']//*[local-name() = 'style']/text()" mode="svg_update">
|
@@ -10331,7 +10387,9 @@
|
|
10331
10387
|
</xsl:template> <!-- sections_element_style -->
|
10332
10388
|
|
10333
10389
|
<xsl:template match="//*[contains(local-name(), '-standard')]/*[local-name() = 'preface']/*" priority="2"> <!-- /*/*[local-name() = 'preface']/* -->
|
10334
|
-
|
10390
|
+
|
10391
|
+
<fo:block break-after="page"/>
|
10392
|
+
|
10335
10393
|
<fo:block>
|
10336
10394
|
<xsl:call-template name="setId"/>
|
10337
10395
|
<xsl:apply-templates/>
|
@@ -10398,7 +10456,7 @@
|
|
10398
10456
|
<xsl:when test="ancestor::*[contains(local-name(), '-standard')] and not(ancestor::*[contains(local-name(), '-standard')]//*[@id = $id_from])">
|
10399
10457
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10400
10458
|
</xsl:when>
|
10401
|
-
<xsl:when test="not(
|
10459
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
10402
10460
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10403
10461
|
</xsl:when>
|
10404
10462
|
</xsl:choose>
|
@@ -6000,7 +6000,8 @@
|
|
6000
6000
|
</xsl:template>
|
6001
6001
|
|
6002
6002
|
<xsl:template match="text()[ancestor::*[local-name()='smallcap']]">
|
6003
|
-
<xsl:variable name="text" select="normalize-space(.)"/>
|
6003
|
+
<!-- <xsl:variable name="text" select="normalize-space(.)"/> --> <!-- https://github.com/metanorma/metanorma-iso/issues/1115 -->
|
6004
|
+
<xsl:variable name="text" select="."/>
|
6004
6005
|
<fo:inline font-size="75%" role="SKIP">
|
6005
6006
|
<xsl:if test="string-length($text) > 0">
|
6006
6007
|
<xsl:variable name="smallCapsText">
|
@@ -8143,16 +8144,44 @@
|
|
8143
8144
|
</xsl:choose>
|
8144
8145
|
|
8145
8146
|
<xsl:attribute name="content-width">scale-down-to-fit</xsl:attribute>
|
8146
|
-
<xsl:variable name="
|
8147
|
-
<xsl:variable name="
|
8147
|
+
<xsl:variable name="svg_width_" select="xalan:nodeset($svg_content)/*/@width"/>
|
8148
|
+
<xsl:variable name="svg_width" select="number(translate($svg_width_, 'px', ''))"/>
|
8149
|
+
<xsl:variable name="svg_height_" select="xalan:nodeset($svg_content)/*/@height"/>
|
8150
|
+
<xsl:variable name="svg_height" select="number(translate($svg_height_, 'px', ''))"/>
|
8151
|
+
|
8152
|
+
<!-- Example: -->
|
8148
8153
|
<!-- effective height 297 - 27.4 - 13 = 256.6 -->
|
8149
8154
|
<!-- effective width 210 - 12.5 - 25 = 172.5 -->
|
8150
8155
|
<!-- effective height / width = 1.48, 1.4 - with title -->
|
8151
|
-
|
8156
|
+
|
8157
|
+
<xsl:variable name="scale_x">
|
8158
|
+
<xsl:choose>
|
8159
|
+
<xsl:when test="$svg_width > $width_effective_px">
|
8160
|
+
<xsl:value-of select="$width_effective_px div $svg_width"/>
|
8161
|
+
</xsl:when>
|
8162
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8163
|
+
</xsl:choose>
|
8164
|
+
</xsl:variable>
|
8165
|
+
<xsl:variable name="scale_y">
|
8166
|
+
<xsl:choose>
|
8167
|
+
<xsl:when test="$svg_height * $scale_x > $height_effective_px">
|
8168
|
+
<xsl:value-of select="$height_effective_px div ($svg_height * $scale_x)"/>
|
8169
|
+
</xsl:when>
|
8170
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8171
|
+
</xsl:choose>
|
8172
|
+
</xsl:variable>
|
8173
|
+
|
8174
|
+
<!-- for images with big height -->
|
8175
|
+
<!-- <xsl:if test="$svg_height > ($svg_width * 1.4)">
|
8152
8176
|
<xsl:variable name="width" select="(($svg_width * 1.4) div $svg_height) * 100"/>
|
8153
8177
|
<xsl:attribute name="width"><xsl:value-of select="$width"/>%</xsl:attribute>
|
8154
|
-
</xsl:if>
|
8178
|
+
</xsl:if> -->
|
8155
8179
|
<xsl:attribute name="scaling">uniform</xsl:attribute>
|
8180
|
+
|
8181
|
+
<xsl:if test="$scale_y != 1">
|
8182
|
+
<xsl:attribute name="content-height"><xsl:value-of select="round($scale_x * $scale_y * 100)"/>%</xsl:attribute>
|
8183
|
+
</xsl:if>
|
8184
|
+
|
8156
8185
|
<xsl:copy-of select="$svg_content"/>
|
8157
8186
|
</fo:instream-foreign-object>
|
8158
8187
|
<!-- </fo:block> -->
|
@@ -8190,8 +8219,12 @@
|
|
8190
8219
|
<xsl:variable name="width" select="normalize-space($viewbox//item[3])"/>
|
8191
8220
|
<xsl:variable name="height" select="normalize-space($viewbox//item[4])"/>
|
8192
8221
|
|
8222
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[1][local-name() = 'image']/@width)"/>
|
8223
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[1][local-name() = 'image']/@height)"/>
|
8224
|
+
|
8193
8225
|
<xsl:attribute name="width">
|
8194
8226
|
<xsl:choose>
|
8227
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8195
8228
|
<xsl:when test="$width != ''">
|
8196
8229
|
<xsl:value-of select="round($width)"/>
|
8197
8230
|
</xsl:when>
|
@@ -8200,6 +8233,7 @@
|
|
8200
8233
|
</xsl:attribute>
|
8201
8234
|
<xsl:attribute name="height">
|
8202
8235
|
<xsl:choose>
|
8236
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8203
8237
|
<xsl:when test="$height != ''">
|
8204
8238
|
<xsl:value-of select="round($height)"/>
|
8205
8239
|
</xsl:when>
|
@@ -8211,6 +8245,28 @@
|
|
8211
8245
|
</xsl:copy>
|
8212
8246
|
</xsl:template>
|
8213
8247
|
|
8248
|
+
<xsl:template match="*[local-name() = 'svg']/@width" mode="svg_update">
|
8249
|
+
<!-- image[@width]/svg -->
|
8250
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[2][local-name() = 'image']/@width)"/>
|
8251
|
+
<xsl:attribute name="width">
|
8252
|
+
<xsl:choose>
|
8253
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8254
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8255
|
+
</xsl:choose>
|
8256
|
+
</xsl:attribute>
|
8257
|
+
</xsl:template>
|
8258
|
+
|
8259
|
+
<xsl:template match="*[local-name() = 'svg']/@height" mode="svg_update">
|
8260
|
+
<!-- image[@height]/svg -->
|
8261
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[2][local-name() = 'image']/@height)"/>
|
8262
|
+
<xsl:attribute name="height">
|
8263
|
+
<xsl:choose>
|
8264
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8265
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8266
|
+
</xsl:choose>
|
8267
|
+
</xsl:attribute>
|
8268
|
+
</xsl:template>
|
8269
|
+
|
8214
8270
|
<!-- regex for 'display: inline-block;' -->
|
8215
8271
|
<xsl:variable name="regex_svg_style_notsupported">display(\s|\h)*:(\s|\h)*inline-block(\s|\h)*;</xsl:variable>
|
8216
8272
|
<xsl:template match="*[local-name() = 'svg']//*[local-name() = 'style']/text()" mode="svg_update">
|
@@ -10331,7 +10387,9 @@
|
|
10331
10387
|
</xsl:template> <!-- sections_element_style -->
|
10332
10388
|
|
10333
10389
|
<xsl:template match="//*[contains(local-name(), '-standard')]/*[local-name() = 'preface']/*" priority="2"> <!-- /*/*[local-name() = 'preface']/* -->
|
10334
|
-
|
10390
|
+
|
10391
|
+
<fo:block break-after="page"/>
|
10392
|
+
|
10335
10393
|
<fo:block>
|
10336
10394
|
<xsl:call-template name="setId"/>
|
10337
10395
|
<xsl:apply-templates/>
|
@@ -10398,7 +10456,7 @@
|
|
10398
10456
|
<xsl:when test="ancestor::*[contains(local-name(), '-standard')] and not(ancestor::*[contains(local-name(), '-standard')]//*[@id = $id_from])">
|
10399
10457
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10400
10458
|
</xsl:when>
|
10401
|
-
<xsl:when test="not(
|
10459
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
10402
10460
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10403
10461
|
</xsl:when>
|
10404
10462
|
</xsl:choose>
|
@@ -6000,7 +6000,8 @@
|
|
6000
6000
|
</xsl:template>
|
6001
6001
|
|
6002
6002
|
<xsl:template match="text()[ancestor::*[local-name()='smallcap']]">
|
6003
|
-
<xsl:variable name="text" select="normalize-space(.)"/>
|
6003
|
+
<!-- <xsl:variable name="text" select="normalize-space(.)"/> --> <!-- https://github.com/metanorma/metanorma-iso/issues/1115 -->
|
6004
|
+
<xsl:variable name="text" select="."/>
|
6004
6005
|
<fo:inline font-size="75%" role="SKIP">
|
6005
6006
|
<xsl:if test="string-length($text) > 0">
|
6006
6007
|
<xsl:variable name="smallCapsText">
|
@@ -8143,16 +8144,44 @@
|
|
8143
8144
|
</xsl:choose>
|
8144
8145
|
|
8145
8146
|
<xsl:attribute name="content-width">scale-down-to-fit</xsl:attribute>
|
8146
|
-
<xsl:variable name="
|
8147
|
-
<xsl:variable name="
|
8147
|
+
<xsl:variable name="svg_width_" select="xalan:nodeset($svg_content)/*/@width"/>
|
8148
|
+
<xsl:variable name="svg_width" select="number(translate($svg_width_, 'px', ''))"/>
|
8149
|
+
<xsl:variable name="svg_height_" select="xalan:nodeset($svg_content)/*/@height"/>
|
8150
|
+
<xsl:variable name="svg_height" select="number(translate($svg_height_, 'px', ''))"/>
|
8151
|
+
|
8152
|
+
<!-- Example: -->
|
8148
8153
|
<!-- effective height 297 - 27.4 - 13 = 256.6 -->
|
8149
8154
|
<!-- effective width 210 - 12.5 - 25 = 172.5 -->
|
8150
8155
|
<!-- effective height / width = 1.48, 1.4 - with title -->
|
8151
|
-
|
8156
|
+
|
8157
|
+
<xsl:variable name="scale_x">
|
8158
|
+
<xsl:choose>
|
8159
|
+
<xsl:when test="$svg_width > $width_effective_px">
|
8160
|
+
<xsl:value-of select="$width_effective_px div $svg_width"/>
|
8161
|
+
</xsl:when>
|
8162
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8163
|
+
</xsl:choose>
|
8164
|
+
</xsl:variable>
|
8165
|
+
<xsl:variable name="scale_y">
|
8166
|
+
<xsl:choose>
|
8167
|
+
<xsl:when test="$svg_height * $scale_x > $height_effective_px">
|
8168
|
+
<xsl:value-of select="$height_effective_px div ($svg_height * $scale_x)"/>
|
8169
|
+
</xsl:when>
|
8170
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8171
|
+
</xsl:choose>
|
8172
|
+
</xsl:variable>
|
8173
|
+
|
8174
|
+
<!-- for images with big height -->
|
8175
|
+
<!-- <xsl:if test="$svg_height > ($svg_width * 1.4)">
|
8152
8176
|
<xsl:variable name="width" select="(($svg_width * 1.4) div $svg_height) * 100"/>
|
8153
8177
|
<xsl:attribute name="width"><xsl:value-of select="$width"/>%</xsl:attribute>
|
8154
|
-
</xsl:if>
|
8178
|
+
</xsl:if> -->
|
8155
8179
|
<xsl:attribute name="scaling">uniform</xsl:attribute>
|
8180
|
+
|
8181
|
+
<xsl:if test="$scale_y != 1">
|
8182
|
+
<xsl:attribute name="content-height"><xsl:value-of select="round($scale_x * $scale_y * 100)"/>%</xsl:attribute>
|
8183
|
+
</xsl:if>
|
8184
|
+
|
8156
8185
|
<xsl:copy-of select="$svg_content"/>
|
8157
8186
|
</fo:instream-foreign-object>
|
8158
8187
|
<!-- </fo:block> -->
|
@@ -8190,8 +8219,12 @@
|
|
8190
8219
|
<xsl:variable name="width" select="normalize-space($viewbox//item[3])"/>
|
8191
8220
|
<xsl:variable name="height" select="normalize-space($viewbox//item[4])"/>
|
8192
8221
|
|
8222
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[1][local-name() = 'image']/@width)"/>
|
8223
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[1][local-name() = 'image']/@height)"/>
|
8224
|
+
|
8193
8225
|
<xsl:attribute name="width">
|
8194
8226
|
<xsl:choose>
|
8227
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8195
8228
|
<xsl:when test="$width != ''">
|
8196
8229
|
<xsl:value-of select="round($width)"/>
|
8197
8230
|
</xsl:when>
|
@@ -8200,6 +8233,7 @@
|
|
8200
8233
|
</xsl:attribute>
|
8201
8234
|
<xsl:attribute name="height">
|
8202
8235
|
<xsl:choose>
|
8236
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8203
8237
|
<xsl:when test="$height != ''">
|
8204
8238
|
<xsl:value-of select="round($height)"/>
|
8205
8239
|
</xsl:when>
|
@@ -8211,6 +8245,28 @@
|
|
8211
8245
|
</xsl:copy>
|
8212
8246
|
</xsl:template>
|
8213
8247
|
|
8248
|
+
<xsl:template match="*[local-name() = 'svg']/@width" mode="svg_update">
|
8249
|
+
<!-- image[@width]/svg -->
|
8250
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[2][local-name() = 'image']/@width)"/>
|
8251
|
+
<xsl:attribute name="width">
|
8252
|
+
<xsl:choose>
|
8253
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8254
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8255
|
+
</xsl:choose>
|
8256
|
+
</xsl:attribute>
|
8257
|
+
</xsl:template>
|
8258
|
+
|
8259
|
+
<xsl:template match="*[local-name() = 'svg']/@height" mode="svg_update">
|
8260
|
+
<!-- image[@height]/svg -->
|
8261
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[2][local-name() = 'image']/@height)"/>
|
8262
|
+
<xsl:attribute name="height">
|
8263
|
+
<xsl:choose>
|
8264
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8265
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8266
|
+
</xsl:choose>
|
8267
|
+
</xsl:attribute>
|
8268
|
+
</xsl:template>
|
8269
|
+
|
8214
8270
|
<!-- regex for 'display: inline-block;' -->
|
8215
8271
|
<xsl:variable name="regex_svg_style_notsupported">display(\s|\h)*:(\s|\h)*inline-block(\s|\h)*;</xsl:variable>
|
8216
8272
|
<xsl:template match="*[local-name() = 'svg']//*[local-name() = 'style']/text()" mode="svg_update">
|
@@ -10331,7 +10387,9 @@
|
|
10331
10387
|
</xsl:template> <!-- sections_element_style -->
|
10332
10388
|
|
10333
10389
|
<xsl:template match="//*[contains(local-name(), '-standard')]/*[local-name() = 'preface']/*" priority="2"> <!-- /*/*[local-name() = 'preface']/* -->
|
10334
|
-
|
10390
|
+
|
10391
|
+
<fo:block break-after="page"/>
|
10392
|
+
|
10335
10393
|
<fo:block>
|
10336
10394
|
<xsl:call-template name="setId"/>
|
10337
10395
|
<xsl:apply-templates/>
|
@@ -10398,7 +10456,7 @@
|
|
10398
10456
|
<xsl:when test="ancestor::*[contains(local-name(), '-standard')] and not(ancestor::*[contains(local-name(), '-standard')]//*[@id = $id_from])">
|
10399
10457
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10400
10458
|
</xsl:when>
|
10401
|
-
<xsl:when test="not(
|
10459
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
10402
10460
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10403
10461
|
</xsl:when>
|
10404
10462
|
</xsl:choose>
|
@@ -6000,7 +6000,8 @@
|
|
6000
6000
|
</xsl:template>
|
6001
6001
|
|
6002
6002
|
<xsl:template match="text()[ancestor::*[local-name()='smallcap']]">
|
6003
|
-
<xsl:variable name="text" select="normalize-space(.)"/>
|
6003
|
+
<!-- <xsl:variable name="text" select="normalize-space(.)"/> --> <!-- https://github.com/metanorma/metanorma-iso/issues/1115 -->
|
6004
|
+
<xsl:variable name="text" select="."/>
|
6004
6005
|
<fo:inline font-size="75%" role="SKIP">
|
6005
6006
|
<xsl:if test="string-length($text) > 0">
|
6006
6007
|
<xsl:variable name="smallCapsText">
|
@@ -8143,16 +8144,44 @@
|
|
8143
8144
|
</xsl:choose>
|
8144
8145
|
|
8145
8146
|
<xsl:attribute name="content-width">scale-down-to-fit</xsl:attribute>
|
8146
|
-
<xsl:variable name="
|
8147
|
-
<xsl:variable name="
|
8147
|
+
<xsl:variable name="svg_width_" select="xalan:nodeset($svg_content)/*/@width"/>
|
8148
|
+
<xsl:variable name="svg_width" select="number(translate($svg_width_, 'px', ''))"/>
|
8149
|
+
<xsl:variable name="svg_height_" select="xalan:nodeset($svg_content)/*/@height"/>
|
8150
|
+
<xsl:variable name="svg_height" select="number(translate($svg_height_, 'px', ''))"/>
|
8151
|
+
|
8152
|
+
<!-- Example: -->
|
8148
8153
|
<!-- effective height 297 - 27.4 - 13 = 256.6 -->
|
8149
8154
|
<!-- effective width 210 - 12.5 - 25 = 172.5 -->
|
8150
8155
|
<!-- effective height / width = 1.48, 1.4 - with title -->
|
8151
|
-
|
8156
|
+
|
8157
|
+
<xsl:variable name="scale_x">
|
8158
|
+
<xsl:choose>
|
8159
|
+
<xsl:when test="$svg_width > $width_effective_px">
|
8160
|
+
<xsl:value-of select="$width_effective_px div $svg_width"/>
|
8161
|
+
</xsl:when>
|
8162
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8163
|
+
</xsl:choose>
|
8164
|
+
</xsl:variable>
|
8165
|
+
<xsl:variable name="scale_y">
|
8166
|
+
<xsl:choose>
|
8167
|
+
<xsl:when test="$svg_height * $scale_x > $height_effective_px">
|
8168
|
+
<xsl:value-of select="$height_effective_px div ($svg_height * $scale_x)"/>
|
8169
|
+
</xsl:when>
|
8170
|
+
<xsl:otherwise>1</xsl:otherwise>
|
8171
|
+
</xsl:choose>
|
8172
|
+
</xsl:variable>
|
8173
|
+
|
8174
|
+
<!-- for images with big height -->
|
8175
|
+
<!-- <xsl:if test="$svg_height > ($svg_width * 1.4)">
|
8152
8176
|
<xsl:variable name="width" select="(($svg_width * 1.4) div $svg_height) * 100"/>
|
8153
8177
|
<xsl:attribute name="width"><xsl:value-of select="$width"/>%</xsl:attribute>
|
8154
|
-
</xsl:if>
|
8178
|
+
</xsl:if> -->
|
8155
8179
|
<xsl:attribute name="scaling">uniform</xsl:attribute>
|
8180
|
+
|
8181
|
+
<xsl:if test="$scale_y != 1">
|
8182
|
+
<xsl:attribute name="content-height"><xsl:value-of select="round($scale_x * $scale_y * 100)"/>%</xsl:attribute>
|
8183
|
+
</xsl:if>
|
8184
|
+
|
8156
8185
|
<xsl:copy-of select="$svg_content"/>
|
8157
8186
|
</fo:instream-foreign-object>
|
8158
8187
|
<!-- </fo:block> -->
|
@@ -8190,8 +8219,12 @@
|
|
8190
8219
|
<xsl:variable name="width" select="normalize-space($viewbox//item[3])"/>
|
8191
8220
|
<xsl:variable name="height" select="normalize-space($viewbox//item[4])"/>
|
8192
8221
|
|
8222
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[1][local-name() = 'image']/@width)"/>
|
8223
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[1][local-name() = 'image']/@height)"/>
|
8224
|
+
|
8193
8225
|
<xsl:attribute name="width">
|
8194
8226
|
<xsl:choose>
|
8227
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8195
8228
|
<xsl:when test="$width != ''">
|
8196
8229
|
<xsl:value-of select="round($width)"/>
|
8197
8230
|
</xsl:when>
|
@@ -8200,6 +8233,7 @@
|
|
8200
8233
|
</xsl:attribute>
|
8201
8234
|
<xsl:attribute name="height">
|
8202
8235
|
<xsl:choose>
|
8236
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8203
8237
|
<xsl:when test="$height != ''">
|
8204
8238
|
<xsl:value-of select="round($height)"/>
|
8205
8239
|
</xsl:when>
|
@@ -8211,6 +8245,28 @@
|
|
8211
8245
|
</xsl:copy>
|
8212
8246
|
</xsl:template>
|
8213
8247
|
|
8248
|
+
<xsl:template match="*[local-name() = 'svg']/@width" mode="svg_update">
|
8249
|
+
<!-- image[@width]/svg -->
|
8250
|
+
<xsl:variable name="parent_image_width" select="normalize-space(ancestor::*[2][local-name() = 'image']/@width)"/>
|
8251
|
+
<xsl:attribute name="width">
|
8252
|
+
<xsl:choose>
|
8253
|
+
<xsl:when test="$parent_image_width != '' and $parent_image_width != 'auto'"><xsl:value-of select="$parent_image_width"/></xsl:when>
|
8254
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8255
|
+
</xsl:choose>
|
8256
|
+
</xsl:attribute>
|
8257
|
+
</xsl:template>
|
8258
|
+
|
8259
|
+
<xsl:template match="*[local-name() = 'svg']/@height" mode="svg_update">
|
8260
|
+
<!-- image[@height]/svg -->
|
8261
|
+
<xsl:variable name="parent_image_height" select="normalize-space(ancestor::*[2][local-name() = 'image']/@height)"/>
|
8262
|
+
<xsl:attribute name="height">
|
8263
|
+
<xsl:choose>
|
8264
|
+
<xsl:when test="$parent_image_height != '' and $parent_image_height != 'auto'"><xsl:value-of select="$parent_image_height"/></xsl:when>
|
8265
|
+
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
|
8266
|
+
</xsl:choose>
|
8267
|
+
</xsl:attribute>
|
8268
|
+
</xsl:template>
|
8269
|
+
|
8214
8270
|
<!-- regex for 'display: inline-block;' -->
|
8215
8271
|
<xsl:variable name="regex_svg_style_notsupported">display(\s|\h)*:(\s|\h)*inline-block(\s|\h)*;</xsl:variable>
|
8216
8272
|
<xsl:template match="*[local-name() = 'svg']//*[local-name() = 'style']/text()" mode="svg_update">
|
@@ -10331,7 +10387,9 @@
|
|
10331
10387
|
</xsl:template> <!-- sections_element_style -->
|
10332
10388
|
|
10333
10389
|
<xsl:template match="//*[contains(local-name(), '-standard')]/*[local-name() = 'preface']/*" priority="2"> <!-- /*/*[local-name() = 'preface']/* -->
|
10334
|
-
|
10390
|
+
|
10391
|
+
<fo:block break-after="page"/>
|
10392
|
+
|
10335
10393
|
<fo:block>
|
10336
10394
|
<xsl:call-template name="setId"/>
|
10337
10395
|
<xsl:apply-templates/>
|
@@ -10398,7 +10456,7 @@
|
|
10398
10456
|
<xsl:when test="ancestor::*[contains(local-name(), '-standard')] and not(ancestor::*[contains(local-name(), '-standard')]//*[@id = $id_from])">
|
10399
10457
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10400
10458
|
</xsl:when>
|
10401
|
-
<xsl:when test="not(
|
10459
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
10402
10460
|
<fo:block id="{@from}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:block>
|
10403
10461
|
</xsl:when>
|
10404
10462
|
</xsl:choose>
|