metanorma-csa 2.6.2 → 2.6.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: a5c2f957ab832578172d28571a1c318828151a4f8c51e501fb0246c99e04a757
4
- data.tar.gz: c152ae7c4121b308c5e807393216a8caae83dc6d956ecabe4eb4f14208f66364
3
+ metadata.gz: 3051d51663fc4eb056871c78a05eb2a8621b850a4c9fd019a63cd9ec547d168b
4
+ data.tar.gz: 125b3e6d9384c7ca74322a1674d88c0a06c528d1e9aabfdcc6ea7ca28a7e550a
5
5
  SHA512:
6
- metadata.gz: 5a85298115a808b480a11d35ac39f437db60c73c0f972ba4c6473b03a3111a537b8c922feb743c2b9b491beb8c3af3eb386239ed5ba9e1c319789f0b3edf90ad
7
- data.tar.gz: 501dc639b9d6e3d199e94c05e0fc1eb17d01a04a19dc459ce120c631eb4da4f67e4b1822d29295d2da7e56eab5142e6aae07b6458a1b2754a1ca2c0a60ccddae
6
+ metadata.gz: e1f5a05f969be74e5c999b0a980b58f6146c8812096b1830e89f8b0f2f5874ad7101d36ff6d25d3a4bf0630c5c6b61e55b3482fb7c4885fe47db088fe8926e49
7
+ data.tar.gz: 625d249c63edd9aa185a243496f5b1a080eabfa77291b55d633a84d926a3ab5d028aa29ff4d18ced7304e18670ba4b915a1b298df2da567745d373d40bd2b446
@@ -3863,6 +3863,8 @@
3863
3863
 
3864
3864
  <xsl:template name="setTableRowAttributes">
3865
3865
 
3866
+ <xsl:call-template name="setColors"/>
3867
+
3866
3868
  </xsl:template> <!-- setTableRowAttributes -->
3867
3869
  <!-- ===================== -->
3868
3870
  <!-- END Table's row processing -->
@@ -3914,6 +3916,7 @@
3914
3916
  </xsl:attribute>
3915
3917
  </xsl:if>
3916
3918
  <xsl:call-template name="display-align"/>
3919
+ <xsl:call-template name="setColors"/>
3917
3920
  </xsl:template>
3918
3921
 
3919
3922
  <xsl:template name="display-align">
@@ -3929,6 +3932,29 @@
3929
3932
  </xsl:if>
3930
3933
  </xsl:template>
3931
3934
 
3935
+ <xsl:template name="setColors">
3936
+ <xsl:variable name="styles__">
3937
+ <xsl:call-template name="split">
3938
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
3939
+ <xsl:with-param name="sep" select="';'"/>
3940
+ </xsl:call-template>
3941
+ </xsl:variable>
3942
+ <xsl:variable name="quot">"</xsl:variable>
3943
+ <xsl:variable name="styles_">
3944
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
3945
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
3946
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
3947
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
3948
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
3949
+ </xsl:if>
3950
+ </xsl:for-each>
3951
+ </xsl:variable>
3952
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
3953
+ <xsl:for-each select="$styles/style">
3954
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
3955
+ </xsl:for-each>
3956
+ </xsl:template>
3957
+
3932
3958
  <!-- cell in table body, footer -->
3933
3959
  <xsl:template match="*[local-name()='td']" name="td">
3934
3960
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -3940,12 +3966,12 @@
3940
3966
 
3941
3967
  <xsl:call-template name="refine_table-cell-style"/>
3942
3968
 
3969
+ <xsl:call-template name="setTableCellAttributes"/>
3970
+
3943
3971
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
3944
3972
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
3945
3973
  </xsl:if>
3946
3974
 
3947
- <xsl:call-template name="setTableCellAttributes"/>
3948
-
3949
3975
  <xsl:if test="$isGenerateTableIF = 'true'">
3950
3976
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
3951
3977
  <xsl:attribute name="text-align">left</xsl:attribute>
@@ -5729,7 +5755,7 @@
5729
5755
  <xsl:choose>
5730
5756
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
5731
5757
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
5732
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
5758
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
5733
5759
  </xsl:when>
5734
5760
  <xsl:otherwise>
5735
5761
  <xsl:apply-templates/>
@@ -5737,7 +5763,7 @@
5737
5763
  </xsl:choose>
5738
5764
  </xsl:template>
5739
5765
  <xsl:template match="text()[not(ancestor::*[local-name() = 'table']) and preceding-sibling::*[1][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear'] and following-sibling::*[1][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']]" priority="2">
5740
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
5766
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
5741
5767
  </xsl:template>
5742
5768
 
5743
5769
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -6777,24 +6803,26 @@
6777
6803
  <xsl:apply-templates select="." mode="mathml"/>
6778
6804
  </xsl:variable>
6779
6805
 
6780
- <fo:instream-foreign-object fox:alt-text="Math">
6806
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
6781
6807
 
6782
6808
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
6783
6809
 
6784
- <!-- put MathML in Actual Text -->
6785
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
6786
- <xsl:attribute name="fox:actual-text">
6787
- <xsl:value-of select="$mathml_content"/>
6788
- </xsl:attribute>
6789
-
6790
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
6791
- <xsl:if test="normalize-space($asciimath_text_) != ''">
6792
- <!-- put Mathin Alternate Text -->
6793
- <xsl:attribute name="fox:alt-text">
6794
- <xsl:value-of select="$asciimath_text_"/>
6810
+ <xsl:if test="$isGenerateTableIF = 'false'">
6811
+ <!-- put MathML in Actual Text -->
6812
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
6813
+ <xsl:attribute name="fox:actual-text">
6814
+ <xsl:value-of select="$mathml_content"/>
6795
6815
  </xsl:attribute>
6816
+
6817
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
6818
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
6819
+ <!-- put Mathin Alternate Text -->
6820
+ <xsl:attribute name="fox:alt-text">
6821
+ <xsl:value-of select="$asciimath_text_"/>
6822
+ </xsl:attribute>
6823
+ </xsl:if>
6824
+ <!-- </xsl:if> -->
6796
6825
  </xsl:if>
6797
- <!-- </xsl:if> -->
6798
6826
 
6799
6827
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
6800
6828
 
@@ -8554,6 +8582,8 @@
8554
8582
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
8555
8583
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
8556
8584
 
8585
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
8586
+
8557
8587
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
8558
8588
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
8559
8589
  <xsl:apply-templates mode="bookmarks"/>
@@ -8575,6 +8605,8 @@
8575
8605
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
8576
8606
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
8577
8607
 
8608
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
8609
+
8578
8610
  <!-- Bookmarks -->
8579
8611
  <xsl:template name="addBookmarks">
8580
8612
  <xsl:param name="contents"/>
@@ -10452,21 +10484,32 @@
10452
10484
  <!-- ========== -->
10453
10485
 
10454
10486
  <xsl:variable name="reviews_">
10455
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
10487
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
10456
10488
  <xsl:copy>
10457
10489
  <xsl:copy-of select="@from"/>
10458
10490
  <xsl:copy-of select="@id"/>
10459
10491
  </xsl:copy>
10460
10492
  </xsl:for-each>
10493
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
10494
+ <xsl:copy>
10495
+ <xsl:copy-of select="@source"/>
10496
+ <xsl:copy-of select="@id"/>
10497
+ </xsl:copy>
10498
+ </xsl:for-each>
10461
10499
  </xsl:variable>
10462
10500
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
10463
10501
 
10464
10502
  <xsl:template name="addReviewHelper">
10465
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
10466
- <xsl:variable name="curr_id" select="@id"/>
10467
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
10468
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
10469
- <fo:block keep-with-next="always" line-height="0.1" id="{$review_id}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$review_id}" fox:alt-text="Annot___{$review_id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10503
+ <xsl:if test="$isGenerateTableIF = 'false'">
10504
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
10505
+ <xsl:variable name="curr_id" select="@id"/>
10506
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
10507
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
10508
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
10509
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
10510
+ <fo:block keep-with-next="always" line-height="0.1" id="{$review_id}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$review_id}" fox:alt-text="Annot___{$review_id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10511
+ </xsl:if>
10512
+ </xsl:for-each>
10470
10513
  </xsl:if>
10471
10514
  <!-- <fo:block>
10472
10515
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -10608,14 +10651,61 @@
10608
10651
 
10609
10652
  </xsl:template>
10610
10653
 
10611
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10654
+ <!-- document text (not figures, or tables) footnotes -->
10655
+ <xsl:variable name="reviews_container_">
10656
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
10657
+ <xsl:variable name="update_xml_step1">
10658
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
10659
+ </xsl:variable>
10660
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
10661
+ </xsl:for-each>
10662
+ </xsl:variable>
10663
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
10664
+
10665
+ <xsl:template match="*[local-name() = 'review-container']"/>
10666
+
10667
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
10668
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10669
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
10670
+ <xsl:if test="$isGenerateTableIF = 'false'">
10671
+ <xsl:choose>
10672
+ <!-- if there isn't the attribute '@from', then -->
10673
+ <xsl:when test="$id_from = ''">
10674
+ <fo:block id="{@id}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@id}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10675
+ </xsl:when>
10676
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
10677
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
10678
+ <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10679
+ </xsl:when>
10680
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
10681
+ <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10682
+ </xsl:when>
10683
+ </xsl:choose>
10684
+ </xsl:if>
10685
+ </xsl:template>
10686
+
10687
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
10688
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10612
10689
  <!-- comment 2019-11-29 -->
10613
10690
  <!-- <fo:block font-weight="bold">Review:</fo:block>
10614
10691
  <xsl:apply-templates /> -->
10615
10692
 
10616
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
10693
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
10617
10694
 
10618
- <xsl:if test="1 = 1">
10695
+ <xsl:variable name="source" select="normalize-space(@source)"/>
10696
+
10697
+ <xsl:if test="$isGenerateTableIF = 'false'">
10698
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
10699
+
10700
+ <!-- <xsl:if test="@source = @end"> -->
10701
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
10702
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
10703
+ <!-- <fo:block id="{$source}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$source}" fox:alt-text="Annot___{$source}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block> -->
10704
+ <fo:block id="{@id}" font-size="1pt" role="SKIP" keep-with-next="always" line-height="0.1"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@id}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10705
+ <!-- </xsl:if> -->
10706
+ </xsl:if>
10707
+
10708
+ <xsl:if test="1 = 2">
10619
10709
  <xsl:choose>
10620
10710
  <!-- if there isn't the attribute '@from', then -->
10621
10711
  <xsl:when test="$id_from = ''">
@@ -10623,10 +10713,10 @@
10623
10713
  </xsl:when>
10624
10714
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
10625
10715
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
10626
- <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10716
+ <fo:block id="{$id_from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$id_from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10627
10717
  </xsl:when>
10628
10718
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
10629
- <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10719
+ <fo:block id="{$id_from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$id_from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10630
10720
  </xsl:when>
10631
10721
  </xsl:choose>
10632
10722
  </xsl:if>
@@ -10677,16 +10767,21 @@
10677
10767
  <xsl:variable name="list_level">
10678
10768
  <xsl:choose>
10679
10769
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
10680
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
10770
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
10771
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
10772
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
10681
10773
  </xsl:choose>
10682
10774
  </xsl:variable>
10683
10775
  <xsl:choose>
10684
10776
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
10685
10777
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
10686
10778
  </xsl:when>
10687
- <xsl:when test="$list_level mod 3 = 0">
10779
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
10688
10780
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
10689
10781
  </xsl:when>
10782
+ <xsl:when test="$list_level mod 3 = 0">
10783
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
10784
+ </xsl:when>
10690
10785
  <xsl:when test="$list_level mod 2 = 0">
10691
10786
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
10692
10787
  </xsl:when>
@@ -11229,10 +11324,22 @@
11229
11324
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
11230
11325
 
11231
11326
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
11232
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
11233
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
11234
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
11235
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
11327
+ <xsl:variable name="bookmark_id" select="@id"/>
11328
+ <xsl:choose>
11329
+ <!-- Example:
11330
+ <fmt-review-start id="_7ef81cf7-3f6c-4ed4-9c1f-1ba092052bbd" source="_dda23915-8574-ef1e-29a1-822d465a5b97" target="_ecfb2210-3b1b-46a2-b63a-8b8505be6686" end="_dda23915-8574-ef1e-29a1-822d465a5b97" author="" date="2025-03-24T00:00:00Z"/>
11331
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
11332
+ <fmt-review-end id="_f336a8d0-08a8-4b7f-a1aa-b04688ed40c1" source="_dda23915-8574-ef1e-29a1-822d465a5b97" target="_ecfb2210-3b1b-46a2-b63a-8b8505be6686" start="_dda23915-8574-ef1e-29a1-822d465a5b97" author="" date="2025-03-24T00:00:00Z"/> -->
11333
+ <xsl:when test="1 = 2 and preceding-sibling::node()[local-name() = 'fmt-review-start'][@source = $bookmark_id] and following-sibling::node()[local-name() = 'fmt-review-end'][@source = $bookmark_id]">
11334
+ <!-- skip here, see the template 'fmt-review-start' -->
11335
+ </xsl:when>
11336
+ <xsl:otherwise>
11337
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
11338
+ <fo:inline id="{@id}" font-size="1pt"><xsl:if test="preceding-sibling::node()[local-name() = 'fmt-review-start'][@source = $bookmark_id] and following-sibling::node()[local-name() = 'fmt-review-end'][@source = $bookmark_id]"><xsl:attribute name="line-height">0.1</xsl:attribute></xsl:if><xsl:value-of select="$hair_space"/></fo:inline>
11339
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
11340
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
11341
+ </xsl:otherwise>
11342
+ </xsl:choose>
11236
11343
  </xsl:template>
11237
11344
  <!-- =================== -->
11238
11345
  <!-- End of Index processing -->
@@ -12558,6 +12665,9 @@
12558
12665
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
12559
12666
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
12560
12667
 
12668
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
12669
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
12670
+
12561
12671
  <!-- END: update new Presentation XML -->
12562
12672
 
12563
12673
  <!-- =========================================================================== -->
@@ -318,6 +318,13 @@ h6:hover > a.anchor,
318
318
  padding: 0;
319
319
  }
320
320
 
321
+ svg {
322
+ width: 100%;
323
+ padding-bottom: 92%;
324
+ height: 1px;
325
+ overflow: visible;
326
+ }
327
+
321
328
  #standard-band {
322
329
  background-color: #0AC442;
323
330
  }
@@ -382,33 +382,7 @@ in a document (e.g. sourcecode annotations)</a:documentation>
382
382
  <a:documentation>Block intended to capture reviewer comments about some text in the document</a:documentation>
383
383
  <element name="review">
384
384
  <ref name="RequiredId"/>
385
- <attribute name="reviewer">
386
- <a:documentation>The party who has offered the comment</a:documentation>
387
- </attribute>
388
- <optional>
389
- <attribute name="type">
390
- <a:documentation>The type of reviewer comment</a:documentation>
391
- </attribute>
392
- </optional>
393
- <optional>
394
- <attribute name="date">
395
- <a:documentation>The date when the comment was made</a:documentation>
396
- <data type="dateTime"/>
397
- </attribute>
398
- </optional>
399
- <optional>
400
- <attribute name="from">
401
- <a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
402
- If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
403
- <data type="IDREF"/>
404
- </attribute>
405
- </optional>
406
- <optional>
407
- <attribute name="to">
408
- <a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
409
- <data type="IDREF"/>
410
- </attribute>
411
- </optional>
385
+ <ref name="ReviewAttributes"/>
412
386
  <oneOrMore>
413
387
  <ref name="paragraph">
414
388
  <a:documentation>Reviewer comments content</a:documentation>
@@ -416,6 +390,35 @@ If not provided, the comment applies in the vicinity of the place it has been in
416
390
  </oneOrMore>
417
391
  </element>
418
392
  </define>
393
+ <define name="ReviewAttributes">
394
+ <attribute name="reviewer">
395
+ <a:documentation>The party who has offered the comment</a:documentation>
396
+ </attribute>
397
+ <optional>
398
+ <attribute name="type">
399
+ <a:documentation>The type of reviewer comment</a:documentation>
400
+ </attribute>
401
+ </optional>
402
+ <optional>
403
+ <attribute name="date">
404
+ <a:documentation>The date when the comment was made</a:documentation>
405
+ <data type="dateTime"/>
406
+ </attribute>
407
+ </optional>
408
+ <optional>
409
+ <attribute name="from">
410
+ <a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
411
+ If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
412
+ <data type="IDREF"/>
413
+ </attribute>
414
+ </optional>
415
+ <optional>
416
+ <attribute name="to">
417
+ <a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
418
+ <data type="IDREF"/>
419
+ </attribute>
420
+ </optional>
421
+ </define>
419
422
  <define name="NumberingAttributes">
420
423
  <optional>
421
424
  <attribute name="unnumbered">
@@ -857,6 +860,7 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
857
860
  <define name="tr">
858
861
  <a:documentation>Sequence of cells to be displayed as a row in a table</a:documentation>
859
862
  <element name="tr">
863
+ <ref name="TrAttributes"/>
860
864
  <oneOrMore>
861
865
  <choice>
862
866
  <ref name="td">
@@ -869,6 +873,9 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
869
873
  </oneOrMore>
870
874
  </element>
871
875
  </define>
876
+ <define name="TrAttributes">
877
+ <empty/>
878
+ </define>
872
879
  <define name="tr-no-id">
873
880
  <a:documentation>Sequence of cells to be displayed as a row in a table: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
874
881
  <element name="tr">
@@ -17,7 +17,7 @@
17
17
  these elements; we just want one namespace for any child grammars
18
18
  of this.
19
19
  -->
20
- <!-- VERSION v2.0.0 -->
20
+ <!-- VERSION v2.0.2 -->
21
21
  <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
22
22
  <include href="reqt.rng"/>
23
23
  <include href="basicdoc.rng">
@@ -423,6 +423,21 @@ normative or informative references, some split references into sections organiz
423
423
  </oneOrMore>
424
424
  </choice>
425
425
  </define>
426
+ <define name="TdAttributes" combine="interleave">
427
+ <attribute name="style">
428
+ <a:documentation>CSS style: only background-color supported</a:documentation>
429
+ </attribute>
430
+ </define>
431
+ <define name="ThAttributes" combine="interleave">
432
+ <attribute name="style">
433
+ <a:documentation>CSS style: only background-color supported</a:documentation>
434
+ </attribute>
435
+ </define>
436
+ <define name="TrAttributes">
437
+ <attribute name="style">
438
+ <a:documentation>CSS style: only background-color supported</a:documentation>
439
+ </attribute>
440
+ </define>
426
441
  <define name="table-note">
427
442
  <element name="note">
428
443
  <ref name="OptionalId"/>
@@ -1272,6 +1287,11 @@ numbers</a:documentation>
1272
1287
  <a:documentation>Colophon or postface material</a:documentation>
1273
1288
  </ref>
1274
1289
  </optional>
1290
+ <optional>
1291
+ <ref name="review-container">
1292
+ <a:documentation>Annotations to the document</a:documentation>
1293
+ </ref>
1294
+ </optional>
1275
1295
  </element>
1276
1296
  </define>
1277
1297
  <define name="misccontainer">
@@ -1282,6 +1302,13 @@ numbers</a:documentation>
1282
1302
  </oneOrMore>
1283
1303
  </element>
1284
1304
  </define>
1305
+ <define name="review-container">
1306
+ <element name="review-container">
1307
+ <oneOrMore>
1308
+ <ref name="review"/>
1309
+ </oneOrMore>
1310
+ </element>
1311
+ </define>
1285
1312
  <define name="preface">
1286
1313
  <element name="preface">
1287
1314
  <oneOrMore>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Csa
3
- VERSION = "2.6.2".freeze
3
+ VERSION = "2.6.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-csa
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.2
4
+ version: 2.6.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: 2025-03-17 00:00:00.000000000 Z
11
+ date: 2025-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-generic