metanorma-bipm 2.8.2 → 2.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df9e2b04bd0a1ad71e2b9040ed090f45cc03b33766ca1b7cbb4f40769e36ddbe
4
- data.tar.gz: c7f43a242d288a8a0ccc2de19c7213ba4c690f51fa8a30f4085bc37a670b1e5f
3
+ metadata.gz: b9822043ab6e1f16bc05e81fe275e2819d81551111d8c54499c45ee753a14a41
4
+ data.tar.gz: a4b26f29aa66dd9fdaec1ff87a29b67a6a11fa57b6ade9b38ea219cee7fece4f
5
5
  SHA512:
6
- metadata.gz: b3a7803fbcddb7397f65635d865a517313235908e916670945b068029cbc5739d4ac204e9010200869ae438e2511d38e7f586bc68c03dc3c687acec915ed96c7
7
- data.tar.gz: b6395263ecf0c791cbe61816ce0813ed3abc1eeaf5604cec6835c0622c2fd284420e737655c7bce98d849b414b2025bf113285d5c87d8a3d782805aa740df44d
6
+ metadata.gz: afc778fc661361a78396eb88e102fcefb27261675dab5f273a4717b65afc7cf6f5d78c73b1c76623e345c594c81b6d24dc1028b3dc3b83b0a96b54d57763d404
7
+ data.tar.gz: 6d5fba58e14930f7729369d1f7ed499fb6dbfcb1a6f59b9bc434d974e440e26c168d8ec341bf3a2534fd2918c408015b283aac3966c59df8809a112d63fc7375
@@ -2152,6 +2152,9 @@
2152
2152
  <xsl:variable name="title">
2153
2153
  <xsl:call-template name="getName"/>
2154
2154
  </xsl:variable>
2155
+ <xsl:variable name="variant_title">
2156
+ <xsl:copy-of select="mn:variant-title[@type = 'toc']/node()"/>
2157
+ </xsl:variable>
2155
2158
 
2156
2159
  <xsl:variable name="type">
2157
2160
  <xsl:choose>
@@ -2166,7 +2169,14 @@
2166
2169
  <xsl:attribute name="parent">annex</xsl:attribute>
2167
2170
  </xsl:if>
2168
2171
  <mnx:title>
2169
- <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2172
+ <xsl:choose>
2173
+ <xsl:when test="normalize-space($variant_title) != ''">
2174
+ <xsl:apply-templates select="xalan:nodeset($variant_title)" mode="contents_item"/>
2175
+ </xsl:when>
2176
+ <xsl:otherwise>
2177
+ <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2178
+ </xsl:otherwise>
2179
+ </xsl:choose>
2170
2180
  </mnx:title>
2171
2181
  <xsl:if test="$type != 'index'">
2172
2182
  <xsl:apply-templates mode="contents"/>
@@ -4361,7 +4371,24 @@
4361
4371
  <xsl:template match="mn:metanorma-extension/*[local-name() = 'UnitsML']" mode="update_xml_step1"/>
4362
4372
 
4363
4373
  <!-- remove image/emf -->
4364
- <xsl:template match="mn:image/mn:emf" mode="update_xml_step1"/>
4374
+ <xsl:template match="mn:image//mn:emf" mode="update_xml_step1"/>
4375
+
4376
+ <!-- https://github.com/metanorma/metanorma/issues/540 -->
4377
+ <xsl:template match="mn:image[mn:altsource]" priority="3" mode="update_xml_step1">
4378
+ <xsl:copy>
4379
+ <xsl:apply-templates select="@*" mode="update_xml_step1"/>
4380
+ <xsl:choose>
4381
+ <xsl:when test="mn:altsource[contains(@tag, 'pdf')]">
4382
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/@*" mode="update_xml_step1"/>
4383
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/node()" mode="update_xml_step1"/>
4384
+ </xsl:when>
4385
+ <xsl:otherwise>
4386
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/@*" mode="update_xml_step1"/>
4387
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/node()" mode="update_xml_step1"/>
4388
+ </xsl:otherwise>
4389
+ </xsl:choose>
4390
+ </xsl:copy>
4391
+ </xsl:template>
4365
4392
 
4366
4393
  <!-- remove preprocess-xslt -->
4367
4394
  <xsl:template match="mn:preprocess-xslt" mode="update_xml_step1"/>
@@ -4589,6 +4616,15 @@
4589
4616
  </xsl:choose>
4590
4617
  </xsl:template>
4591
4618
 
4619
+ <!-- https://github.com/metanorma/metanorma-iso/issues/1535 -->
4620
+ <xsl:template match="mn:ol[mn:fmt-ol]" mode="update_xml_step1">
4621
+ <xsl:apply-templates select="mn:fmt-ol" mode="update_xml_step1"/>
4622
+ </xsl:template>
4623
+
4624
+ <xsl:template match="mn:ul[mn:fmt-ul]" mode="update_xml_step1">
4625
+ <xsl:apply-templates select="mn:fmt-ul" mode="update_xml_step1"/>
4626
+ </xsl:template>
4627
+
4592
4628
  <!-- li/fmt-name -->
4593
4629
  <xsl:template match="mn:li/mn:fmt-name" priority="2" mode="update_xml_step1">
4594
4630
  <xsl:attribute name="label"><xsl:value-of select="."/></xsl:attribute>
@@ -7850,6 +7886,8 @@
7850
7886
  </xsl:if>
7851
7887
 
7852
7888
  <xsl:call-template name="setBordersTableArray"/>
7889
+
7890
+ <xsl:call-template name="setNoBordersForTableList"/>
7853
7891
  </xsl:template> <!-- refine_table-style -->
7854
7892
 
7855
7893
  <xsl:attribute-set name="table-number-style">
@@ -7887,12 +7925,16 @@
7887
7925
  <xsl:template name="refine_table-header-row-style">
7888
7926
 
7889
7927
  <xsl:call-template name="setBordersTableArray"/>
7928
+
7929
+ <xsl:call-template name="setNoBordersForTableList"/>
7890
7930
  </xsl:template> <!-- refine_table-header-row-style -->
7891
7931
 
7892
7932
  <xsl:attribute-set name="table-footer-row-style" use-attribute-sets="table-row-style">
7893
7933
  </xsl:attribute-set>
7894
7934
 
7895
7935
  <xsl:template name="refine_table-footer-row-style">
7936
+
7937
+ <xsl:call-template name="setNoBordersForTableList"/>
7896
7938
  </xsl:template> <!-- refine_table-footer-row-style -->
7897
7939
 
7898
7940
  <xsl:attribute-set name="table-body-row-style" use-attribute-sets="table-row-style">
@@ -7902,6 +7944,8 @@
7902
7944
  <xsl:template name="refine_table-body-row-style">
7903
7945
 
7904
7946
  <xsl:call-template name="setBordersTableArray"/>
7947
+
7948
+ <xsl:call-template name="setNoBordersForTableList"/>
7905
7949
  </xsl:template> <!-- refine_table-body-row-style -->
7906
7950
 
7907
7951
  <xsl:attribute-set name="table-header-cell-style">
@@ -7935,6 +7979,16 @@
7935
7979
  </xsl:if>
7936
7980
 
7937
7981
  <xsl:call-template name="setTableCellAttributes"/>
7982
+
7983
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
7984
+ <xsl:attribute name="display-align">before</xsl:attribute>
7985
+ <xsl:attribute name="text-align">left</xsl:attribute>
7986
+ <xsl:if test="following-sibling::*">
7987
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
7988
+ </xsl:if>
7989
+ <xsl:call-template name="setNoBordersForTableList"/>
7990
+ </xsl:if>
7991
+
7938
7992
  </xsl:template> <!-- refine_table-header-cell-style -->
7939
7993
 
7940
7994
  <xsl:attribute-set name="table-cell-style">
@@ -7965,6 +8019,15 @@
7965
8019
 
7966
8020
  <xsl:call-template name="setBordersTableArray"/>
7967
8021
 
8022
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8023
+ <xsl:attribute name="display-align">before</xsl:attribute>
8024
+ <xsl:attribute name="text-align">left</xsl:attribute>
8025
+ <xsl:if test="following-sibling::*">
8026
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
8027
+ </xsl:if>
8028
+ <xsl:call-template name="setNoBordersForTableList"/>
8029
+ </xsl:if>
8030
+
7968
8031
  </xsl:template> <!-- refine_table-cell-style -->
7969
8032
 
7970
8033
  <xsl:attribute-set name="table-footer-cell-style">
@@ -7976,6 +8039,8 @@
7976
8039
  </xsl:attribute-set> <!-- table-footer-cell-style -->
7977
8040
 
7978
8041
  <xsl:template name="refine_table-footer-cell-style">
8042
+
8043
+ <xsl:call-template name="setNoBordersForTableList"/>
7979
8044
  </xsl:template> <!-- refine_table-footer-cell-style -->
7980
8045
 
7981
8046
  <xsl:attribute-set name="table-note-style">
@@ -8025,6 +8090,16 @@
8025
8090
  <xsl:template name="refine_table-fn-body-style">
8026
8091
  </xsl:template>
8027
8092
 
8093
+ <xsl:template name="setNoBordersForTableList">
8094
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8095
+ <xsl:attribute name="border">none</xsl:attribute>
8096
+ <xsl:attribute name="border-top">none</xsl:attribute>
8097
+ <xsl:attribute name="border-bottom">none</xsl:attribute>
8098
+ <xsl:attribute name="border-left">none</xsl:attribute>
8099
+ <xsl:attribute name="border-right">none</xsl:attribute>
8100
+ </xsl:if>
8101
+ </xsl:template>
8102
+
8028
8103
  <!-- ========================== -->
8029
8104
  <!-- END Table styles -->
8030
8105
  <!-- ========================== -->
@@ -13645,6 +13720,10 @@
13645
13720
  </fo:list-item>
13646
13721
  </xsl:template>
13647
13722
 
13723
+ <xsl:template match="mn:fmt-ol | mn:fmt-ul">
13724
+ <xsl:apply-templates/>
13725
+ </xsl:template>
13726
+
13648
13727
  <!-- ===================================== -->
13649
13728
  <!-- END Lists processing -->
13650
13729
  <!-- ===================================== -->
@@ -2152,6 +2152,9 @@
2152
2152
  <xsl:variable name="title">
2153
2153
  <xsl:call-template name="getName"/>
2154
2154
  </xsl:variable>
2155
+ <xsl:variable name="variant_title">
2156
+ <xsl:copy-of select="mn:variant-title[@type = 'toc']/node()"/>
2157
+ </xsl:variable>
2155
2158
 
2156
2159
  <xsl:variable name="type">
2157
2160
  <xsl:choose>
@@ -2166,7 +2169,14 @@
2166
2169
  <xsl:attribute name="parent">annex</xsl:attribute>
2167
2170
  </xsl:if>
2168
2171
  <mnx:title>
2169
- <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2172
+ <xsl:choose>
2173
+ <xsl:when test="normalize-space($variant_title) != ''">
2174
+ <xsl:apply-templates select="xalan:nodeset($variant_title)" mode="contents_item"/>
2175
+ </xsl:when>
2176
+ <xsl:otherwise>
2177
+ <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2178
+ </xsl:otherwise>
2179
+ </xsl:choose>
2170
2180
  </mnx:title>
2171
2181
  <xsl:if test="$type != 'index'">
2172
2182
  <xsl:apply-templates mode="contents"/>
@@ -4361,7 +4371,24 @@
4361
4371
  <xsl:template match="mn:metanorma-extension/*[local-name() = 'UnitsML']" mode="update_xml_step1"/>
4362
4372
 
4363
4373
  <!-- remove image/emf -->
4364
- <xsl:template match="mn:image/mn:emf" mode="update_xml_step1"/>
4374
+ <xsl:template match="mn:image//mn:emf" mode="update_xml_step1"/>
4375
+
4376
+ <!-- https://github.com/metanorma/metanorma/issues/540 -->
4377
+ <xsl:template match="mn:image[mn:altsource]" priority="3" mode="update_xml_step1">
4378
+ <xsl:copy>
4379
+ <xsl:apply-templates select="@*" mode="update_xml_step1"/>
4380
+ <xsl:choose>
4381
+ <xsl:when test="mn:altsource[contains(@tag, 'pdf')]">
4382
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/@*" mode="update_xml_step1"/>
4383
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/node()" mode="update_xml_step1"/>
4384
+ </xsl:when>
4385
+ <xsl:otherwise>
4386
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/@*" mode="update_xml_step1"/>
4387
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/node()" mode="update_xml_step1"/>
4388
+ </xsl:otherwise>
4389
+ </xsl:choose>
4390
+ </xsl:copy>
4391
+ </xsl:template>
4365
4392
 
4366
4393
  <!-- remove preprocess-xslt -->
4367
4394
  <xsl:template match="mn:preprocess-xslt" mode="update_xml_step1"/>
@@ -4589,6 +4616,15 @@
4589
4616
  </xsl:choose>
4590
4617
  </xsl:template>
4591
4618
 
4619
+ <!-- https://github.com/metanorma/metanorma-iso/issues/1535 -->
4620
+ <xsl:template match="mn:ol[mn:fmt-ol]" mode="update_xml_step1">
4621
+ <xsl:apply-templates select="mn:fmt-ol" mode="update_xml_step1"/>
4622
+ </xsl:template>
4623
+
4624
+ <xsl:template match="mn:ul[mn:fmt-ul]" mode="update_xml_step1">
4625
+ <xsl:apply-templates select="mn:fmt-ul" mode="update_xml_step1"/>
4626
+ </xsl:template>
4627
+
4592
4628
  <!-- li/fmt-name -->
4593
4629
  <xsl:template match="mn:li/mn:fmt-name" priority="2" mode="update_xml_step1">
4594
4630
  <xsl:attribute name="label"><xsl:value-of select="."/></xsl:attribute>
@@ -7850,6 +7886,8 @@
7850
7886
  </xsl:if>
7851
7887
 
7852
7888
  <xsl:call-template name="setBordersTableArray"/>
7889
+
7890
+ <xsl:call-template name="setNoBordersForTableList"/>
7853
7891
  </xsl:template> <!-- refine_table-style -->
7854
7892
 
7855
7893
  <xsl:attribute-set name="table-number-style">
@@ -7887,12 +7925,16 @@
7887
7925
  <xsl:template name="refine_table-header-row-style">
7888
7926
 
7889
7927
  <xsl:call-template name="setBordersTableArray"/>
7928
+
7929
+ <xsl:call-template name="setNoBordersForTableList"/>
7890
7930
  </xsl:template> <!-- refine_table-header-row-style -->
7891
7931
 
7892
7932
  <xsl:attribute-set name="table-footer-row-style" use-attribute-sets="table-row-style">
7893
7933
  </xsl:attribute-set>
7894
7934
 
7895
7935
  <xsl:template name="refine_table-footer-row-style">
7936
+
7937
+ <xsl:call-template name="setNoBordersForTableList"/>
7896
7938
  </xsl:template> <!-- refine_table-footer-row-style -->
7897
7939
 
7898
7940
  <xsl:attribute-set name="table-body-row-style" use-attribute-sets="table-row-style">
@@ -7902,6 +7944,8 @@
7902
7944
  <xsl:template name="refine_table-body-row-style">
7903
7945
 
7904
7946
  <xsl:call-template name="setBordersTableArray"/>
7947
+
7948
+ <xsl:call-template name="setNoBordersForTableList"/>
7905
7949
  </xsl:template> <!-- refine_table-body-row-style -->
7906
7950
 
7907
7951
  <xsl:attribute-set name="table-header-cell-style">
@@ -7935,6 +7979,16 @@
7935
7979
  </xsl:if>
7936
7980
 
7937
7981
  <xsl:call-template name="setTableCellAttributes"/>
7982
+
7983
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
7984
+ <xsl:attribute name="display-align">before</xsl:attribute>
7985
+ <xsl:attribute name="text-align">left</xsl:attribute>
7986
+ <xsl:if test="following-sibling::*">
7987
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
7988
+ </xsl:if>
7989
+ <xsl:call-template name="setNoBordersForTableList"/>
7990
+ </xsl:if>
7991
+
7938
7992
  </xsl:template> <!-- refine_table-header-cell-style -->
7939
7993
 
7940
7994
  <xsl:attribute-set name="table-cell-style">
@@ -7965,6 +8019,15 @@
7965
8019
 
7966
8020
  <xsl:call-template name="setBordersTableArray"/>
7967
8021
 
8022
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8023
+ <xsl:attribute name="display-align">before</xsl:attribute>
8024
+ <xsl:attribute name="text-align">left</xsl:attribute>
8025
+ <xsl:if test="following-sibling::*">
8026
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
8027
+ </xsl:if>
8028
+ <xsl:call-template name="setNoBordersForTableList"/>
8029
+ </xsl:if>
8030
+
7968
8031
  </xsl:template> <!-- refine_table-cell-style -->
7969
8032
 
7970
8033
  <xsl:attribute-set name="table-footer-cell-style">
@@ -7976,6 +8039,8 @@
7976
8039
  </xsl:attribute-set> <!-- table-footer-cell-style -->
7977
8040
 
7978
8041
  <xsl:template name="refine_table-footer-cell-style">
8042
+
8043
+ <xsl:call-template name="setNoBordersForTableList"/>
7979
8044
  </xsl:template> <!-- refine_table-footer-cell-style -->
7980
8045
 
7981
8046
  <xsl:attribute-set name="table-note-style">
@@ -8025,6 +8090,16 @@
8025
8090
  <xsl:template name="refine_table-fn-body-style">
8026
8091
  </xsl:template>
8027
8092
 
8093
+ <xsl:template name="setNoBordersForTableList">
8094
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8095
+ <xsl:attribute name="border">none</xsl:attribute>
8096
+ <xsl:attribute name="border-top">none</xsl:attribute>
8097
+ <xsl:attribute name="border-bottom">none</xsl:attribute>
8098
+ <xsl:attribute name="border-left">none</xsl:attribute>
8099
+ <xsl:attribute name="border-right">none</xsl:attribute>
8100
+ </xsl:if>
8101
+ </xsl:template>
8102
+
8028
8103
  <!-- ========================== -->
8029
8104
  <!-- END Table styles -->
8030
8105
  <!-- ========================== -->
@@ -13645,6 +13720,10 @@
13645
13720
  </fo:list-item>
13646
13721
  </xsl:template>
13647
13722
 
13723
+ <xsl:template match="mn:fmt-ol | mn:fmt-ul">
13724
+ <xsl:apply-templates/>
13725
+ </xsl:template>
13726
+
13648
13727
  <!-- ===================================== -->
13649
13728
  <!-- END Lists processing -->
13650
13729
  <!-- ===================================== -->
@@ -2152,6 +2152,9 @@
2152
2152
  <xsl:variable name="title">
2153
2153
  <xsl:call-template name="getName"/>
2154
2154
  </xsl:variable>
2155
+ <xsl:variable name="variant_title">
2156
+ <xsl:copy-of select="mn:variant-title[@type = 'toc']/node()"/>
2157
+ </xsl:variable>
2155
2158
 
2156
2159
  <xsl:variable name="type">
2157
2160
  <xsl:choose>
@@ -2166,7 +2169,14 @@
2166
2169
  <xsl:attribute name="parent">annex</xsl:attribute>
2167
2170
  </xsl:if>
2168
2171
  <mnx:title>
2169
- <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2172
+ <xsl:choose>
2173
+ <xsl:when test="normalize-space($variant_title) != ''">
2174
+ <xsl:apply-templates select="xalan:nodeset($variant_title)" mode="contents_item"/>
2175
+ </xsl:when>
2176
+ <xsl:otherwise>
2177
+ <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2178
+ </xsl:otherwise>
2179
+ </xsl:choose>
2170
2180
  </mnx:title>
2171
2181
  <xsl:if test="$type != 'index'">
2172
2182
  <xsl:apply-templates mode="contents"/>
@@ -4361,7 +4371,24 @@
4361
4371
  <xsl:template match="mn:metanorma-extension/*[local-name() = 'UnitsML']" mode="update_xml_step1"/>
4362
4372
 
4363
4373
  <!-- remove image/emf -->
4364
- <xsl:template match="mn:image/mn:emf" mode="update_xml_step1"/>
4374
+ <xsl:template match="mn:image//mn:emf" mode="update_xml_step1"/>
4375
+
4376
+ <!-- https://github.com/metanorma/metanorma/issues/540 -->
4377
+ <xsl:template match="mn:image[mn:altsource]" priority="3" mode="update_xml_step1">
4378
+ <xsl:copy>
4379
+ <xsl:apply-templates select="@*" mode="update_xml_step1"/>
4380
+ <xsl:choose>
4381
+ <xsl:when test="mn:altsource[contains(@tag, 'pdf')]">
4382
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/@*" mode="update_xml_step1"/>
4383
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/node()" mode="update_xml_step1"/>
4384
+ </xsl:when>
4385
+ <xsl:otherwise>
4386
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/@*" mode="update_xml_step1"/>
4387
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/node()" mode="update_xml_step1"/>
4388
+ </xsl:otherwise>
4389
+ </xsl:choose>
4390
+ </xsl:copy>
4391
+ </xsl:template>
4365
4392
 
4366
4393
  <!-- remove preprocess-xslt -->
4367
4394
  <xsl:template match="mn:preprocess-xslt" mode="update_xml_step1"/>
@@ -4589,6 +4616,15 @@
4589
4616
  </xsl:choose>
4590
4617
  </xsl:template>
4591
4618
 
4619
+ <!-- https://github.com/metanorma/metanorma-iso/issues/1535 -->
4620
+ <xsl:template match="mn:ol[mn:fmt-ol]" mode="update_xml_step1">
4621
+ <xsl:apply-templates select="mn:fmt-ol" mode="update_xml_step1"/>
4622
+ </xsl:template>
4623
+
4624
+ <xsl:template match="mn:ul[mn:fmt-ul]" mode="update_xml_step1">
4625
+ <xsl:apply-templates select="mn:fmt-ul" mode="update_xml_step1"/>
4626
+ </xsl:template>
4627
+
4592
4628
  <!-- li/fmt-name -->
4593
4629
  <xsl:template match="mn:li/mn:fmt-name" priority="2" mode="update_xml_step1">
4594
4630
  <xsl:attribute name="label"><xsl:value-of select="."/></xsl:attribute>
@@ -7850,6 +7886,8 @@
7850
7886
  </xsl:if>
7851
7887
 
7852
7888
  <xsl:call-template name="setBordersTableArray"/>
7889
+
7890
+ <xsl:call-template name="setNoBordersForTableList"/>
7853
7891
  </xsl:template> <!-- refine_table-style -->
7854
7892
 
7855
7893
  <xsl:attribute-set name="table-number-style">
@@ -7887,12 +7925,16 @@
7887
7925
  <xsl:template name="refine_table-header-row-style">
7888
7926
 
7889
7927
  <xsl:call-template name="setBordersTableArray"/>
7928
+
7929
+ <xsl:call-template name="setNoBordersForTableList"/>
7890
7930
  </xsl:template> <!-- refine_table-header-row-style -->
7891
7931
 
7892
7932
  <xsl:attribute-set name="table-footer-row-style" use-attribute-sets="table-row-style">
7893
7933
  </xsl:attribute-set>
7894
7934
 
7895
7935
  <xsl:template name="refine_table-footer-row-style">
7936
+
7937
+ <xsl:call-template name="setNoBordersForTableList"/>
7896
7938
  </xsl:template> <!-- refine_table-footer-row-style -->
7897
7939
 
7898
7940
  <xsl:attribute-set name="table-body-row-style" use-attribute-sets="table-row-style">
@@ -7902,6 +7944,8 @@
7902
7944
  <xsl:template name="refine_table-body-row-style">
7903
7945
 
7904
7946
  <xsl:call-template name="setBordersTableArray"/>
7947
+
7948
+ <xsl:call-template name="setNoBordersForTableList"/>
7905
7949
  </xsl:template> <!-- refine_table-body-row-style -->
7906
7950
 
7907
7951
  <xsl:attribute-set name="table-header-cell-style">
@@ -7935,6 +7979,16 @@
7935
7979
  </xsl:if>
7936
7980
 
7937
7981
  <xsl:call-template name="setTableCellAttributes"/>
7982
+
7983
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
7984
+ <xsl:attribute name="display-align">before</xsl:attribute>
7985
+ <xsl:attribute name="text-align">left</xsl:attribute>
7986
+ <xsl:if test="following-sibling::*">
7987
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
7988
+ </xsl:if>
7989
+ <xsl:call-template name="setNoBordersForTableList"/>
7990
+ </xsl:if>
7991
+
7938
7992
  </xsl:template> <!-- refine_table-header-cell-style -->
7939
7993
 
7940
7994
  <xsl:attribute-set name="table-cell-style">
@@ -7965,6 +8019,15 @@
7965
8019
 
7966
8020
  <xsl:call-template name="setBordersTableArray"/>
7967
8021
 
8022
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8023
+ <xsl:attribute name="display-align">before</xsl:attribute>
8024
+ <xsl:attribute name="text-align">left</xsl:attribute>
8025
+ <xsl:if test="following-sibling::*">
8026
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
8027
+ </xsl:if>
8028
+ <xsl:call-template name="setNoBordersForTableList"/>
8029
+ </xsl:if>
8030
+
7968
8031
  </xsl:template> <!-- refine_table-cell-style -->
7969
8032
 
7970
8033
  <xsl:attribute-set name="table-footer-cell-style">
@@ -7976,6 +8039,8 @@
7976
8039
  </xsl:attribute-set> <!-- table-footer-cell-style -->
7977
8040
 
7978
8041
  <xsl:template name="refine_table-footer-cell-style">
8042
+
8043
+ <xsl:call-template name="setNoBordersForTableList"/>
7979
8044
  </xsl:template> <!-- refine_table-footer-cell-style -->
7980
8045
 
7981
8046
  <xsl:attribute-set name="table-note-style">
@@ -8025,6 +8090,16 @@
8025
8090
  <xsl:template name="refine_table-fn-body-style">
8026
8091
  </xsl:template>
8027
8092
 
8093
+ <xsl:template name="setNoBordersForTableList">
8094
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8095
+ <xsl:attribute name="border">none</xsl:attribute>
8096
+ <xsl:attribute name="border-top">none</xsl:attribute>
8097
+ <xsl:attribute name="border-bottom">none</xsl:attribute>
8098
+ <xsl:attribute name="border-left">none</xsl:attribute>
8099
+ <xsl:attribute name="border-right">none</xsl:attribute>
8100
+ </xsl:if>
8101
+ </xsl:template>
8102
+
8028
8103
  <!-- ========================== -->
8029
8104
  <!-- END Table styles -->
8030
8105
  <!-- ========================== -->
@@ -13645,6 +13720,10 @@
13645
13720
  </fo:list-item>
13646
13721
  </xsl:template>
13647
13722
 
13723
+ <xsl:template match="mn:fmt-ol | mn:fmt-ul">
13724
+ <xsl:apply-templates/>
13725
+ </xsl:template>
13726
+
13648
13727
  <!-- ===================================== -->
13649
13728
  <!-- END Lists processing -->
13650
13729
  <!-- ===================================== -->
@@ -2152,6 +2152,9 @@
2152
2152
  <xsl:variable name="title">
2153
2153
  <xsl:call-template name="getName"/>
2154
2154
  </xsl:variable>
2155
+ <xsl:variable name="variant_title">
2156
+ <xsl:copy-of select="mn:variant-title[@type = 'toc']/node()"/>
2157
+ </xsl:variable>
2155
2158
 
2156
2159
  <xsl:variable name="type">
2157
2160
  <xsl:choose>
@@ -2166,7 +2169,14 @@
2166
2169
  <xsl:attribute name="parent">annex</xsl:attribute>
2167
2170
  </xsl:if>
2168
2171
  <mnx:title>
2169
- <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2172
+ <xsl:choose>
2173
+ <xsl:when test="normalize-space($variant_title) != ''">
2174
+ <xsl:apply-templates select="xalan:nodeset($variant_title)" mode="contents_item"/>
2175
+ </xsl:when>
2176
+ <xsl:otherwise>
2177
+ <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
2178
+ </xsl:otherwise>
2179
+ </xsl:choose>
2170
2180
  </mnx:title>
2171
2181
  <xsl:if test="$type != 'index'">
2172
2182
  <xsl:apply-templates mode="contents"/>
@@ -4361,7 +4371,24 @@
4361
4371
  <xsl:template match="mn:metanorma-extension/*[local-name() = 'UnitsML']" mode="update_xml_step1"/>
4362
4372
 
4363
4373
  <!-- remove image/emf -->
4364
- <xsl:template match="mn:image/mn:emf" mode="update_xml_step1"/>
4374
+ <xsl:template match="mn:image//mn:emf" mode="update_xml_step1"/>
4375
+
4376
+ <!-- https://github.com/metanorma/metanorma/issues/540 -->
4377
+ <xsl:template match="mn:image[mn:altsource]" priority="3" mode="update_xml_step1">
4378
+ <xsl:copy>
4379
+ <xsl:apply-templates select="@*" mode="update_xml_step1"/>
4380
+ <xsl:choose>
4381
+ <xsl:when test="mn:altsource[contains(@tag, 'pdf')]">
4382
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/@*" mode="update_xml_step1"/>
4383
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/node()" mode="update_xml_step1"/>
4384
+ </xsl:when>
4385
+ <xsl:otherwise>
4386
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/@*" mode="update_xml_step1"/>
4387
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/node()" mode="update_xml_step1"/>
4388
+ </xsl:otherwise>
4389
+ </xsl:choose>
4390
+ </xsl:copy>
4391
+ </xsl:template>
4365
4392
 
4366
4393
  <!-- remove preprocess-xslt -->
4367
4394
  <xsl:template match="mn:preprocess-xslt" mode="update_xml_step1"/>
@@ -4589,6 +4616,15 @@
4589
4616
  </xsl:choose>
4590
4617
  </xsl:template>
4591
4618
 
4619
+ <!-- https://github.com/metanorma/metanorma-iso/issues/1535 -->
4620
+ <xsl:template match="mn:ol[mn:fmt-ol]" mode="update_xml_step1">
4621
+ <xsl:apply-templates select="mn:fmt-ol" mode="update_xml_step1"/>
4622
+ </xsl:template>
4623
+
4624
+ <xsl:template match="mn:ul[mn:fmt-ul]" mode="update_xml_step1">
4625
+ <xsl:apply-templates select="mn:fmt-ul" mode="update_xml_step1"/>
4626
+ </xsl:template>
4627
+
4592
4628
  <!-- li/fmt-name -->
4593
4629
  <xsl:template match="mn:li/mn:fmt-name" priority="2" mode="update_xml_step1">
4594
4630
  <xsl:attribute name="label"><xsl:value-of select="."/></xsl:attribute>
@@ -7850,6 +7886,8 @@
7850
7886
  </xsl:if>
7851
7887
 
7852
7888
  <xsl:call-template name="setBordersTableArray"/>
7889
+
7890
+ <xsl:call-template name="setNoBordersForTableList"/>
7853
7891
  </xsl:template> <!-- refine_table-style -->
7854
7892
 
7855
7893
  <xsl:attribute-set name="table-number-style">
@@ -7887,12 +7925,16 @@
7887
7925
  <xsl:template name="refine_table-header-row-style">
7888
7926
 
7889
7927
  <xsl:call-template name="setBordersTableArray"/>
7928
+
7929
+ <xsl:call-template name="setNoBordersForTableList"/>
7890
7930
  </xsl:template> <!-- refine_table-header-row-style -->
7891
7931
 
7892
7932
  <xsl:attribute-set name="table-footer-row-style" use-attribute-sets="table-row-style">
7893
7933
  </xsl:attribute-set>
7894
7934
 
7895
7935
  <xsl:template name="refine_table-footer-row-style">
7936
+
7937
+ <xsl:call-template name="setNoBordersForTableList"/>
7896
7938
  </xsl:template> <!-- refine_table-footer-row-style -->
7897
7939
 
7898
7940
  <xsl:attribute-set name="table-body-row-style" use-attribute-sets="table-row-style">
@@ -7902,6 +7944,8 @@
7902
7944
  <xsl:template name="refine_table-body-row-style">
7903
7945
 
7904
7946
  <xsl:call-template name="setBordersTableArray"/>
7947
+
7948
+ <xsl:call-template name="setNoBordersForTableList"/>
7905
7949
  </xsl:template> <!-- refine_table-body-row-style -->
7906
7950
 
7907
7951
  <xsl:attribute-set name="table-header-cell-style">
@@ -7935,6 +7979,16 @@
7935
7979
  </xsl:if>
7936
7980
 
7937
7981
  <xsl:call-template name="setTableCellAttributes"/>
7982
+
7983
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
7984
+ <xsl:attribute name="display-align">before</xsl:attribute>
7985
+ <xsl:attribute name="text-align">left</xsl:attribute>
7986
+ <xsl:if test="following-sibling::*">
7987
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
7988
+ </xsl:if>
7989
+ <xsl:call-template name="setNoBordersForTableList"/>
7990
+ </xsl:if>
7991
+
7938
7992
  </xsl:template> <!-- refine_table-header-cell-style -->
7939
7993
 
7940
7994
  <xsl:attribute-set name="table-cell-style">
@@ -7965,6 +8019,15 @@
7965
8019
 
7966
8020
  <xsl:call-template name="setBordersTableArray"/>
7967
8021
 
8022
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8023
+ <xsl:attribute name="display-align">before</xsl:attribute>
8024
+ <xsl:attribute name="text-align">left</xsl:attribute>
8025
+ <xsl:if test="following-sibling::*">
8026
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
8027
+ </xsl:if>
8028
+ <xsl:call-template name="setNoBordersForTableList"/>
8029
+ </xsl:if>
8030
+
7968
8031
  </xsl:template> <!-- refine_table-cell-style -->
7969
8032
 
7970
8033
  <xsl:attribute-set name="table-footer-cell-style">
@@ -7976,6 +8039,8 @@
7976
8039
  </xsl:attribute-set> <!-- table-footer-cell-style -->
7977
8040
 
7978
8041
  <xsl:template name="refine_table-footer-cell-style">
8042
+
8043
+ <xsl:call-template name="setNoBordersForTableList"/>
7979
8044
  </xsl:template> <!-- refine_table-footer-cell-style -->
7980
8045
 
7981
8046
  <xsl:attribute-set name="table-note-style">
@@ -8025,6 +8090,16 @@
8025
8090
  <xsl:template name="refine_table-fn-body-style">
8026
8091
  </xsl:template>
8027
8092
 
8093
+ <xsl:template name="setNoBordersForTableList">
8094
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
8095
+ <xsl:attribute name="border">none</xsl:attribute>
8096
+ <xsl:attribute name="border-top">none</xsl:attribute>
8097
+ <xsl:attribute name="border-bottom">none</xsl:attribute>
8098
+ <xsl:attribute name="border-left">none</xsl:attribute>
8099
+ <xsl:attribute name="border-right">none</xsl:attribute>
8100
+ </xsl:if>
8101
+ </xsl:template>
8102
+
8028
8103
  <!-- ========================== -->
8029
8104
  <!-- END Table styles -->
8030
8105
  <!-- ========================== -->
@@ -13645,6 +13720,10 @@
13645
13720
  </fo:list-item>
13646
13721
  </xsl:template>
13647
13722
 
13723
+ <xsl:template match="mn:fmt-ol | mn:fmt-ul">
13724
+ <xsl:apply-templates/>
13725
+ </xsl:template>
13726
+
13648
13727
  <!-- ===================================== -->
13649
13728
  <!-- END Lists processing -->
13650
13729
  <!-- ===================================== -->
@@ -741,6 +741,9 @@
741
741
  <xsl:variable name="title">
742
742
  <xsl:call-template name="getName"/>
743
743
  </xsl:variable>
744
+ <xsl:variable name="variant_title">
745
+ <xsl:copy-of select="mn:variant-title[@type = 'toc']/node()"/>
746
+ </xsl:variable>
744
747
 
745
748
  <xsl:variable name="root">
746
749
  <xsl:if test="ancestor-or-self::mn:preface">preface</xsl:if>
@@ -752,7 +755,14 @@
752
755
  <xsl:attribute name="level">1</xsl:attribute>
753
756
  </xsl:if>
754
757
  <mnx:title>
755
- <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
758
+ <xsl:choose>
759
+ <xsl:when test="normalize-space($variant_title) != ''">
760
+ <xsl:apply-templates select="xalan:nodeset($variant_title)" mode="contents_item"/>
761
+ </xsl:when>
762
+ <xsl:otherwise>
763
+ <xsl:apply-templates select="xalan:nodeset($title)" mode="contents_item"/>
764
+ </xsl:otherwise>
765
+ </xsl:choose>
756
766
  </mnx:title>
757
767
  <xsl:if test="$type != 'index'">
758
768
  <xsl:apply-templates mode="contents"/>
@@ -2536,7 +2546,24 @@
2536
2546
  <xsl:template match="mn:metanorma-extension/*[local-name() = 'UnitsML']" mode="update_xml_step1"/>
2537
2547
 
2538
2548
  <!-- remove image/emf -->
2539
- <xsl:template match="mn:image/mn:emf" mode="update_xml_step1"/>
2549
+ <xsl:template match="mn:image//mn:emf" mode="update_xml_step1"/>
2550
+
2551
+ <!-- https://github.com/metanorma/metanorma/issues/540 -->
2552
+ <xsl:template match="mn:image[mn:altsource]" priority="3" mode="update_xml_step1">
2553
+ <xsl:copy>
2554
+ <xsl:apply-templates select="@*" mode="update_xml_step1"/>
2555
+ <xsl:choose>
2556
+ <xsl:when test="mn:altsource[contains(@tag, 'pdf')]">
2557
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/@*" mode="update_xml_step1"/>
2558
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'pdf')]/node()" mode="update_xml_step1"/>
2559
+ </xsl:when>
2560
+ <xsl:otherwise>
2561
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/@*" mode="update_xml_step1"/>
2562
+ <xsl:apply-templates select="mn:altsource[contains(@tag, 'default')]/node()" mode="update_xml_step1"/>
2563
+ </xsl:otherwise>
2564
+ </xsl:choose>
2565
+ </xsl:copy>
2566
+ </xsl:template>
2540
2567
 
2541
2568
  <!-- remove preprocess-xslt -->
2542
2569
  <xsl:template match="mn:preprocess-xslt" mode="update_xml_step1"/>
@@ -2764,6 +2791,15 @@
2764
2791
  </xsl:choose>
2765
2792
  </xsl:template>
2766
2793
 
2794
+ <!-- https://github.com/metanorma/metanorma-iso/issues/1535 -->
2795
+ <xsl:template match="mn:ol[mn:fmt-ol]" mode="update_xml_step1">
2796
+ <xsl:apply-templates select="mn:fmt-ol" mode="update_xml_step1"/>
2797
+ </xsl:template>
2798
+
2799
+ <xsl:template match="mn:ul[mn:fmt-ul]" mode="update_xml_step1">
2800
+ <xsl:apply-templates select="mn:fmt-ul" mode="update_xml_step1"/>
2801
+ </xsl:template>
2802
+
2767
2803
  <!-- li/fmt-name -->
2768
2804
  <xsl:template match="mn:li/mn:fmt-name" priority="2" mode="update_xml_step1">
2769
2805
  <xsl:attribute name="label"><xsl:value-of select="."/></xsl:attribute>
@@ -6020,6 +6056,8 @@
6020
6056
  <xsl:if test="*[local-name()='thead']">
6021
6057
  <xsl:attribute name="border-top">1pt solid black</xsl:attribute>
6022
6058
  </xsl:if>
6059
+
6060
+ <xsl:call-template name="setNoBordersForTableList"/>
6023
6061
  </xsl:template> <!-- refine_table-style -->
6024
6062
 
6025
6063
  <xsl:attribute-set name="table-number-style">
@@ -6067,6 +6105,8 @@
6067
6105
  <xsl:attribute name="border-bottom">solid black 1.5pt</xsl:attribute>
6068
6106
  </xsl:when>
6069
6107
  </xsl:choose>
6108
+
6109
+ <xsl:call-template name="setNoBordersForTableList"/>
6070
6110
  </xsl:template> <!-- refine_table-header-row-style -->
6071
6111
 
6072
6112
  <xsl:attribute-set name="table-footer-row-style" use-attribute-sets="table-row-style">
@@ -6076,6 +6116,8 @@
6076
6116
  </xsl:attribute-set>
6077
6117
 
6078
6118
  <xsl:template name="refine_table-footer-row-style">
6119
+
6120
+ <xsl:call-template name="setNoBordersForTableList"/>
6079
6121
  </xsl:template> <!-- refine_table-footer-row-style -->
6080
6122
 
6081
6123
  <xsl:attribute-set name="table-body-row-style" use-attribute-sets="table-row-style">
@@ -6085,6 +6127,8 @@
6085
6127
  <xsl:template name="refine_table-body-row-style">
6086
6128
 
6087
6129
  <xsl:call-template name="setBordersTableArray"/>
6130
+
6131
+ <xsl:call-template name="setNoBordersForTableList"/>
6088
6132
  </xsl:template> <!-- refine_table-body-row-style -->
6089
6133
 
6090
6134
  <xsl:attribute-set name="table-header-cell-style">
@@ -6105,6 +6149,16 @@
6105
6149
  </xsl:if>
6106
6150
 
6107
6151
  <xsl:call-template name="setTableCellAttributes"/>
6152
+
6153
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
6154
+ <xsl:attribute name="display-align">before</xsl:attribute>
6155
+ <xsl:attribute name="text-align">left</xsl:attribute>
6156
+ <xsl:if test="following-sibling::*">
6157
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
6158
+ </xsl:if>
6159
+ <xsl:call-template name="setNoBordersForTableList"/>
6160
+ </xsl:if>
6161
+
6108
6162
  </xsl:template> <!-- refine_table-header-cell-style -->
6109
6163
 
6110
6164
  <xsl:attribute-set name="table-cell-style">
@@ -6129,6 +6183,15 @@
6129
6183
  <xsl:attribute name="border">solid black 0</xsl:attribute>
6130
6184
  </xsl:if>
6131
6185
 
6186
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
6187
+ <xsl:attribute name="display-align">before</xsl:attribute>
6188
+ <xsl:attribute name="text-align">left</xsl:attribute>
6189
+ <xsl:if test="following-sibling::*">
6190
+ <xsl:attribute name="padding-right">4mm</xsl:attribute>
6191
+ </xsl:if>
6192
+ <xsl:call-template name="setNoBordersForTableList"/>
6193
+ </xsl:if>
6194
+
6132
6195
  </xsl:template> <!-- refine_table-cell-style -->
6133
6196
 
6134
6197
  <xsl:attribute-set name="table-footer-cell-style">
@@ -6140,6 +6203,8 @@
6140
6203
  </xsl:attribute-set> <!-- table-footer-cell-style -->
6141
6204
 
6142
6205
  <xsl:template name="refine_table-footer-cell-style">
6206
+
6207
+ <xsl:call-template name="setNoBordersForTableList"/>
6143
6208
  </xsl:template> <!-- refine_table-footer-cell-style -->
6144
6209
 
6145
6210
  <xsl:attribute-set name="table-note-style">
@@ -6182,6 +6247,16 @@
6182
6247
  <xsl:template name="refine_table-fn-body-style">
6183
6248
  </xsl:template>
6184
6249
 
6250
+ <xsl:template name="setNoBordersForTableList">
6251
+ <xsl:if test="ancestor::mn:fmt-ol or ancestor::mn:fmt-ul">
6252
+ <xsl:attribute name="border">none</xsl:attribute>
6253
+ <xsl:attribute name="border-top">none</xsl:attribute>
6254
+ <xsl:attribute name="border-bottom">none</xsl:attribute>
6255
+ <xsl:attribute name="border-left">none</xsl:attribute>
6256
+ <xsl:attribute name="border-right">none</xsl:attribute>
6257
+ </xsl:if>
6258
+ </xsl:template>
6259
+
6185
6260
  <!-- ========================== -->
6186
6261
  <!-- END Table styles -->
6187
6262
  <!-- ========================== -->
@@ -11798,6 +11873,10 @@
11798
11873
  </fo:list-item>
11799
11874
  </xsl:template>
11800
11875
 
11876
+ <xsl:template match="mn:fmt-ol | mn:fmt-ul">
11877
+ <xsl:apply-templates/>
11878
+ </xsl:template>
11879
+
11801
11880
  <!-- ===================================== -->
11802
11881
  <!-- END Lists processing -->
11803
11882
  <!-- ===================================== -->
@@ -81,7 +81,7 @@ module IsoDoc
81
81
  super
82
82
  end
83
83
 
84
- def prefix_name(node, delims, number, elem)
84
+ def prefix_name(node, delims, number, elem, fmt_xref_label: true)
85
85
  if elem == "title" &&
86
86
  n = node.at(ns("./variant-#{elem}[@type = 'quoted']"))
87
87
  quoted_title_render(node, elem, n)
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Bipm
3
- VERSION = "2.8.2".freeze
3
+ VERSION = "2.8.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-bipm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.2
4
+ version: 2.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-03-16 00:00:00.000000000 Z
11
+ date: 2026-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-generic