metanorma-ieee 1.4.2 → 1.4.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: 73ff655fb70a6a805da2433119419252df0e7ca32aeda8ca600c7a8fc519f4a5
4
- data.tar.gz: 6c50a899daadf772956a69eff869cb2382c96424b16489651f58bb203791cc76
3
+ metadata.gz: 84f89392ffbb51084bb77406a1816434743815a156fad52d967b22f2c2fe2636
4
+ data.tar.gz: 2511288d92f9830064ff48ade3a15e525d33152bf62b4f09f9f8ac1be2c81489
5
5
  SHA512:
6
- metadata.gz: 506e086e3a9d634fb640ca8826c157cf72b8b9205668371956144c6026d08bc71f132e3187d166979b1484e019ae46ccf01e8ebe1351b1d93c6d68a709e95fa2
7
- data.tar.gz: 7d249c67a3bc6679cc0cbcbe2f937090c65f59284a7a980c740f5e1682146f967c11efecccf99daa0cde69137135f0b2cd1a22c15be2a1651b92af5ce1641a27
6
+ metadata.gz: 2c6d09554d432784c98a3093ba3bf7c127c137a794fb0c9903913777f68c7527b60f1b526acccaa173acf81fa9f538cf77e98ee361d00fb30be1a4dcfba557ba
7
+ data.tar.gz: 96229ab2555cb20ce7167667edd7eb8dee63072af649251c25e92c1a491ddca70595b14bf6e94b034ea40bb45ced96bf1a6dbb5f5601477aeac6aed29c864cd4
@@ -1,16 +1,18 @@
1
1
  class Html2Doc
2
2
  class Ieee < ::Html2Doc
3
- def process_footnote_texts(docxml, footnotes)
3
+ def process_footnote_texts(docxml, footnotes, indexes)
4
4
  body = docxml.at("//body")
5
5
  list = body.add_child("<div style='mso-element:footnote-list'/>")
6
6
  footnotes.each_with_index do |f, i|
7
7
  if i.zero?
8
- fn = list.first.add_child(footnote_container_nofn(docxml, i + 1))
8
+ fn = list.first.add_child(footnote_container_nofn(docxml, indexes[f["id"]]))
9
9
  f.parent = fn.first
10
+ f["id"] = ""
10
11
  footnote_div_to_p_unstyled(f)
11
12
  else
12
- fn = list.first.add_child(footnote_container(docxml, i + 1))
13
+ fn = list.first.add_child(footnote_container(docxml, indexes[f["id"]]))
13
14
  f.parent = fn.first
15
+ f["id"] = ""
14
16
  footnote_div_to_p(f)
15
17
  end
16
18
  end
@@ -36,7 +38,6 @@ class Html2Doc
36
38
  end
37
39
 
38
40
  def transform_footnote_text(note)
39
- note["id"] = ""
40
41
  note.xpath(".//div").each { |div| div.replace(div.children) }
41
42
  note.xpath(".//aside | .//p").each do |p|
42
43
  p.name = "p"
@@ -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
  }
@@ -7126,6 +7126,8 @@
7126
7126
 
7127
7127
  <xsl:template name="setTableRowAttributes">
7128
7128
 
7129
+ <xsl:call-template name="setColors"/>
7130
+
7129
7131
  </xsl:template> <!-- setTableRowAttributes -->
7130
7132
  <!-- ===================== -->
7131
7133
  <!-- END Table's row processing -->
@@ -7177,6 +7179,7 @@
7177
7179
  </xsl:attribute>
7178
7180
  </xsl:if>
7179
7181
  <xsl:call-template name="display-align"/>
7182
+ <xsl:call-template name="setColors"/>
7180
7183
  </xsl:template>
7181
7184
 
7182
7185
  <xsl:template name="display-align">
@@ -7192,6 +7195,29 @@
7192
7195
  </xsl:if>
7193
7196
  </xsl:template>
7194
7197
 
7198
+ <xsl:template name="setColors">
7199
+ <xsl:variable name="styles__">
7200
+ <xsl:call-template name="split">
7201
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
7202
+ <xsl:with-param name="sep" select="';'"/>
7203
+ </xsl:call-template>
7204
+ </xsl:variable>
7205
+ <xsl:variable name="quot">"</xsl:variable>
7206
+ <xsl:variable name="styles_">
7207
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
7208
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
7209
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
7210
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
7211
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
7212
+ </xsl:if>
7213
+ </xsl:for-each>
7214
+ </xsl:variable>
7215
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
7216
+ <xsl:for-each select="$styles/style">
7217
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
7218
+ </xsl:for-each>
7219
+ </xsl:template>
7220
+
7195
7221
  <!-- cell in table body, footer -->
7196
7222
  <xsl:template match="*[local-name()='td']" name="td">
7197
7223
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -7203,12 +7229,12 @@
7203
7229
 
7204
7230
  <xsl:call-template name="refine_table-cell-style"/>
7205
7231
 
7232
+ <xsl:call-template name="setTableCellAttributes"/>
7233
+
7206
7234
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
7207
7235
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
7208
7236
  </xsl:if>
7209
7237
 
7210
- <xsl:call-template name="setTableCellAttributes"/>
7211
-
7212
7238
  <xsl:if test="$isGenerateTableIF = 'true'">
7213
7239
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
7214
7240
  <xsl:attribute name="text-align">left</xsl:attribute>
@@ -8990,7 +9016,7 @@
8990
9016
  <xsl:choose>
8991
9017
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
8992
9018
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
8993
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
9019
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
8994
9020
  </xsl:when>
8995
9021
  <xsl:otherwise>
8996
9022
  <xsl:apply-templates/>
@@ -8998,7 +9024,7 @@
8998
9024
  </xsl:choose>
8999
9025
  </xsl:template>
9000
9026
  <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">
9001
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
9027
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
9002
9028
  </xsl:template>
9003
9029
 
9004
9030
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -10040,24 +10066,26 @@
10040
10066
  <xsl:apply-templates select="." mode="mathml"/>
10041
10067
  </xsl:variable>
10042
10068
 
10043
- <fo:instream-foreign-object fox:alt-text="Math">
10069
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
10044
10070
 
10045
10071
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
10046
10072
 
10047
- <!-- put MathML in Actual Text -->
10048
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
10049
- <xsl:attribute name="fox:actual-text">
10050
- <xsl:value-of select="$mathml_content"/>
10051
- </xsl:attribute>
10052
-
10053
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
10054
- <xsl:if test="normalize-space($asciimath_text_) != ''">
10055
- <!-- put Mathin Alternate Text -->
10056
- <xsl:attribute name="fox:alt-text">
10057
- <xsl:value-of select="$asciimath_text_"/>
10073
+ <xsl:if test="$isGenerateTableIF = 'false'">
10074
+ <!-- put MathML in Actual Text -->
10075
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
10076
+ <xsl:attribute name="fox:actual-text">
10077
+ <xsl:value-of select="$mathml_content"/>
10058
10078
  </xsl:attribute>
10079
+
10080
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
10081
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
10082
+ <!-- put Mathin Alternate Text -->
10083
+ <xsl:attribute name="fox:alt-text">
10084
+ <xsl:value-of select="$asciimath_text_"/>
10085
+ </xsl:attribute>
10086
+ </xsl:if>
10087
+ <!-- </xsl:if> -->
10059
10088
  </xsl:if>
10060
- <!-- </xsl:if> -->
10061
10089
 
10062
10090
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
10063
10091
 
@@ -11813,6 +11841,8 @@
11813
11841
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
11814
11842
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
11815
11843
 
11844
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
11845
+
11816
11846
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
11817
11847
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
11818
11848
  <xsl:apply-templates mode="bookmarks"/>
@@ -11834,6 +11864,8 @@
11834
11864
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
11835
11865
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
11836
11866
 
11867
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
11868
+
11837
11869
  <!-- Bookmarks -->
11838
11870
  <xsl:template name="addBookmarks">
11839
11871
  <xsl:param name="contents"/>
@@ -13707,21 +13739,32 @@
13707
13739
  <!-- ========== -->
13708
13740
 
13709
13741
  <xsl:variable name="reviews_">
13710
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
13742
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
13711
13743
  <xsl:copy>
13712
13744
  <xsl:copy-of select="@from"/>
13713
13745
  <xsl:copy-of select="@id"/>
13714
13746
  </xsl:copy>
13715
13747
  </xsl:for-each>
13748
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
13749
+ <xsl:copy>
13750
+ <xsl:copy-of select="@source"/>
13751
+ <xsl:copy-of select="@id"/>
13752
+ </xsl:copy>
13753
+ </xsl:for-each>
13716
13754
  </xsl:variable>
13717
13755
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
13718
13756
 
13719
13757
  <xsl:template name="addReviewHelper">
13720
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
13721
- <xsl:variable name="curr_id" select="@id"/>
13722
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
13723
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
13724
- <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>
13758
+ <xsl:if test="$isGenerateTableIF = 'false'">
13759
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
13760
+ <xsl:variable name="curr_id" select="@id"/>
13761
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
13762
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
13763
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
13764
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
13765
+ <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>
13766
+ </xsl:if>
13767
+ </xsl:for-each>
13725
13768
  </xsl:if>
13726
13769
  <!-- <fo:block>
13727
13770
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -13858,14 +13901,61 @@
13858
13901
 
13859
13902
  </xsl:template>
13860
13903
 
13861
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
13904
+ <!-- document text (not figures, or tables) footnotes -->
13905
+ <xsl:variable name="reviews_container_">
13906
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
13907
+ <xsl:variable name="update_xml_step1">
13908
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
13909
+ </xsl:variable>
13910
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
13911
+ </xsl:for-each>
13912
+ </xsl:variable>
13913
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
13914
+
13915
+ <xsl:template match="*[local-name() = 'review-container']"/>
13916
+
13917
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
13918
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
13919
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
13920
+ <xsl:if test="$isGenerateTableIF = 'false'">
13921
+ <xsl:choose>
13922
+ <!-- if there isn't the attribute '@from', then -->
13923
+ <xsl:when test="$id_from = ''">
13924
+ <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>
13925
+ </xsl:when>
13926
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
13927
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
13928
+ <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>
13929
+ </xsl:when>
13930
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
13931
+ <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>
13932
+ </xsl:when>
13933
+ </xsl:choose>
13934
+ </xsl:if>
13935
+ </xsl:template>
13936
+
13937
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
13938
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
13862
13939
  <!-- comment 2019-11-29 -->
13863
13940
  <!-- <fo:block font-weight="bold">Review:</fo:block>
13864
13941
  <xsl:apply-templates /> -->
13865
13942
 
13866
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
13943
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
13867
13944
 
13868
- <xsl:if test="1 = 1">
13945
+ <xsl:variable name="source" select="normalize-space(@source)"/>
13946
+
13947
+ <xsl:if test="$isGenerateTableIF = 'false'">
13948
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
13949
+
13950
+ <!-- <xsl:if test="@source = @end"> -->
13951
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
13952
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
13953
+ <!-- <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> -->
13954
+ <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>
13955
+ <!-- </xsl:if> -->
13956
+ </xsl:if>
13957
+
13958
+ <xsl:if test="1 = 2">
13869
13959
  <xsl:choose>
13870
13960
  <!-- if there isn't the attribute '@from', then -->
13871
13961
  <xsl:when test="$id_from = ''">
@@ -13873,10 +13963,10 @@
13873
13963
  </xsl:when>
13874
13964
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
13875
13965
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
13876
- <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>
13966
+ <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>
13877
13967
  </xsl:when>
13878
13968
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
13879
- <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>
13969
+ <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>
13880
13970
  </xsl:when>
13881
13971
  </xsl:choose>
13882
13972
  </xsl:if>
@@ -13936,16 +14026,21 @@
13936
14026
  <xsl:variable name="list_level">
13937
14027
  <xsl:choose>
13938
14028
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
13939
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
14029
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
14030
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
14031
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
13940
14032
  </xsl:choose>
13941
14033
  </xsl:variable>
13942
14034
  <xsl:choose>
13943
14035
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
13944
14036
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
13945
14037
  </xsl:when>
13946
- <xsl:when test="$list_level mod 3 = 0">
14038
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
13947
14039
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
13948
14040
  </xsl:when>
14041
+ <xsl:when test="$list_level mod 3 = 0">
14042
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
14043
+ </xsl:when>
13949
14044
  <xsl:when test="$list_level mod 2 = 0">
13950
14045
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
13951
14046
  </xsl:when>
@@ -14488,10 +14583,22 @@
14488
14583
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
14489
14584
 
14490
14585
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
14491
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
14492
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
14493
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
14494
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
14586
+ <xsl:variable name="bookmark_id" select="@id"/>
14587
+ <xsl:choose>
14588
+ <!-- Example:
14589
+ <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"/>
14590
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
14591
+ <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"/> -->
14592
+ <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]">
14593
+ <!-- skip here, see the template 'fmt-review-start' -->
14594
+ </xsl:when>
14595
+ <xsl:otherwise>
14596
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
14597
+ <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>
14598
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
14599
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
14600
+ </xsl:otherwise>
14601
+ </xsl:choose>
14495
14602
  </xsl:template>
14496
14603
  <!-- =================== -->
14497
14604
  <!-- End of Index processing -->
@@ -15888,6 +15995,9 @@
15888
15995
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
15889
15996
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
15890
15997
 
15998
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
15999
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
16000
+
15891
16001
  <!-- END: update new Presentation XML -->
15892
16002
 
15893
16003
  <!-- =========================================================================== -->
@@ -7126,6 +7126,8 @@
7126
7126
 
7127
7127
  <xsl:template name="setTableRowAttributes">
7128
7128
 
7129
+ <xsl:call-template name="setColors"/>
7130
+
7129
7131
  </xsl:template> <!-- setTableRowAttributes -->
7130
7132
  <!-- ===================== -->
7131
7133
  <!-- END Table's row processing -->
@@ -7177,6 +7179,7 @@
7177
7179
  </xsl:attribute>
7178
7180
  </xsl:if>
7179
7181
  <xsl:call-template name="display-align"/>
7182
+ <xsl:call-template name="setColors"/>
7180
7183
  </xsl:template>
7181
7184
 
7182
7185
  <xsl:template name="display-align">
@@ -7192,6 +7195,29 @@
7192
7195
  </xsl:if>
7193
7196
  </xsl:template>
7194
7197
 
7198
+ <xsl:template name="setColors">
7199
+ <xsl:variable name="styles__">
7200
+ <xsl:call-template name="split">
7201
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
7202
+ <xsl:with-param name="sep" select="';'"/>
7203
+ </xsl:call-template>
7204
+ </xsl:variable>
7205
+ <xsl:variable name="quot">"</xsl:variable>
7206
+ <xsl:variable name="styles_">
7207
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
7208
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
7209
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
7210
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
7211
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
7212
+ </xsl:if>
7213
+ </xsl:for-each>
7214
+ </xsl:variable>
7215
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
7216
+ <xsl:for-each select="$styles/style">
7217
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
7218
+ </xsl:for-each>
7219
+ </xsl:template>
7220
+
7195
7221
  <!-- cell in table body, footer -->
7196
7222
  <xsl:template match="*[local-name()='td']" name="td">
7197
7223
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -7203,12 +7229,12 @@
7203
7229
 
7204
7230
  <xsl:call-template name="refine_table-cell-style"/>
7205
7231
 
7232
+ <xsl:call-template name="setTableCellAttributes"/>
7233
+
7206
7234
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
7207
7235
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
7208
7236
  </xsl:if>
7209
7237
 
7210
- <xsl:call-template name="setTableCellAttributes"/>
7211
-
7212
7238
  <xsl:if test="$isGenerateTableIF = 'true'">
7213
7239
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
7214
7240
  <xsl:attribute name="text-align">left</xsl:attribute>
@@ -8990,7 +9016,7 @@
8990
9016
  <xsl:choose>
8991
9017
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
8992
9018
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
8993
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
9019
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
8994
9020
  </xsl:when>
8995
9021
  <xsl:otherwise>
8996
9022
  <xsl:apply-templates/>
@@ -8998,7 +9024,7 @@
8998
9024
  </xsl:choose>
8999
9025
  </xsl:template>
9000
9026
  <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">
9001
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
9027
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
9002
9028
  </xsl:template>
9003
9029
 
9004
9030
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -10040,24 +10066,26 @@
10040
10066
  <xsl:apply-templates select="." mode="mathml"/>
10041
10067
  </xsl:variable>
10042
10068
 
10043
- <fo:instream-foreign-object fox:alt-text="Math">
10069
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
10044
10070
 
10045
10071
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
10046
10072
 
10047
- <!-- put MathML in Actual Text -->
10048
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
10049
- <xsl:attribute name="fox:actual-text">
10050
- <xsl:value-of select="$mathml_content"/>
10051
- </xsl:attribute>
10052
-
10053
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
10054
- <xsl:if test="normalize-space($asciimath_text_) != ''">
10055
- <!-- put Mathin Alternate Text -->
10056
- <xsl:attribute name="fox:alt-text">
10057
- <xsl:value-of select="$asciimath_text_"/>
10073
+ <xsl:if test="$isGenerateTableIF = 'false'">
10074
+ <!-- put MathML in Actual Text -->
10075
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
10076
+ <xsl:attribute name="fox:actual-text">
10077
+ <xsl:value-of select="$mathml_content"/>
10058
10078
  </xsl:attribute>
10079
+
10080
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
10081
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
10082
+ <!-- put Mathin Alternate Text -->
10083
+ <xsl:attribute name="fox:alt-text">
10084
+ <xsl:value-of select="$asciimath_text_"/>
10085
+ </xsl:attribute>
10086
+ </xsl:if>
10087
+ <!-- </xsl:if> -->
10059
10088
  </xsl:if>
10060
- <!-- </xsl:if> -->
10061
10089
 
10062
10090
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
10063
10091
 
@@ -11813,6 +11841,8 @@
11813
11841
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
11814
11842
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
11815
11843
 
11844
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
11845
+
11816
11846
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
11817
11847
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
11818
11848
  <xsl:apply-templates mode="bookmarks"/>
@@ -11834,6 +11864,8 @@
11834
11864
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
11835
11865
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
11836
11866
 
11867
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
11868
+
11837
11869
  <!-- Bookmarks -->
11838
11870
  <xsl:template name="addBookmarks">
11839
11871
  <xsl:param name="contents"/>
@@ -13707,21 +13739,32 @@
13707
13739
  <!-- ========== -->
13708
13740
 
13709
13741
  <xsl:variable name="reviews_">
13710
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
13742
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
13711
13743
  <xsl:copy>
13712
13744
  <xsl:copy-of select="@from"/>
13713
13745
  <xsl:copy-of select="@id"/>
13714
13746
  </xsl:copy>
13715
13747
  </xsl:for-each>
13748
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
13749
+ <xsl:copy>
13750
+ <xsl:copy-of select="@source"/>
13751
+ <xsl:copy-of select="@id"/>
13752
+ </xsl:copy>
13753
+ </xsl:for-each>
13716
13754
  </xsl:variable>
13717
13755
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
13718
13756
 
13719
13757
  <xsl:template name="addReviewHelper">
13720
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
13721
- <xsl:variable name="curr_id" select="@id"/>
13722
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
13723
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
13724
- <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>
13758
+ <xsl:if test="$isGenerateTableIF = 'false'">
13759
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
13760
+ <xsl:variable name="curr_id" select="@id"/>
13761
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
13762
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
13763
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
13764
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
13765
+ <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>
13766
+ </xsl:if>
13767
+ </xsl:for-each>
13725
13768
  </xsl:if>
13726
13769
  <!-- <fo:block>
13727
13770
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -13858,14 +13901,61 @@
13858
13901
 
13859
13902
  </xsl:template>
13860
13903
 
13861
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
13904
+ <!-- document text (not figures, or tables) footnotes -->
13905
+ <xsl:variable name="reviews_container_">
13906
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
13907
+ <xsl:variable name="update_xml_step1">
13908
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
13909
+ </xsl:variable>
13910
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
13911
+ </xsl:for-each>
13912
+ </xsl:variable>
13913
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
13914
+
13915
+ <xsl:template match="*[local-name() = 'review-container']"/>
13916
+
13917
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
13918
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
13919
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
13920
+ <xsl:if test="$isGenerateTableIF = 'false'">
13921
+ <xsl:choose>
13922
+ <!-- if there isn't the attribute '@from', then -->
13923
+ <xsl:when test="$id_from = ''">
13924
+ <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>
13925
+ </xsl:when>
13926
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
13927
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
13928
+ <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>
13929
+ </xsl:when>
13930
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
13931
+ <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>
13932
+ </xsl:when>
13933
+ </xsl:choose>
13934
+ </xsl:if>
13935
+ </xsl:template>
13936
+
13937
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
13938
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
13862
13939
  <!-- comment 2019-11-29 -->
13863
13940
  <!-- <fo:block font-weight="bold">Review:</fo:block>
13864
13941
  <xsl:apply-templates /> -->
13865
13942
 
13866
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
13943
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
13867
13944
 
13868
- <xsl:if test="1 = 1">
13945
+ <xsl:variable name="source" select="normalize-space(@source)"/>
13946
+
13947
+ <xsl:if test="$isGenerateTableIF = 'false'">
13948
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
13949
+
13950
+ <!-- <xsl:if test="@source = @end"> -->
13951
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
13952
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
13953
+ <!-- <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> -->
13954
+ <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>
13955
+ <!-- </xsl:if> -->
13956
+ </xsl:if>
13957
+
13958
+ <xsl:if test="1 = 2">
13869
13959
  <xsl:choose>
13870
13960
  <!-- if there isn't the attribute '@from', then -->
13871
13961
  <xsl:when test="$id_from = ''">
@@ -13873,10 +13963,10 @@
13873
13963
  </xsl:when>
13874
13964
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
13875
13965
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
13876
- <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>
13966
+ <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>
13877
13967
  </xsl:when>
13878
13968
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
13879
- <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>
13969
+ <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>
13880
13970
  </xsl:when>
13881
13971
  </xsl:choose>
13882
13972
  </xsl:if>
@@ -13936,16 +14026,21 @@
13936
14026
  <xsl:variable name="list_level">
13937
14027
  <xsl:choose>
13938
14028
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
13939
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
14029
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
14030
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
14031
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
13940
14032
  </xsl:choose>
13941
14033
  </xsl:variable>
13942
14034
  <xsl:choose>
13943
14035
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
13944
14036
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
13945
14037
  </xsl:when>
13946
- <xsl:when test="$list_level mod 3 = 0">
14038
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
13947
14039
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
13948
14040
  </xsl:when>
14041
+ <xsl:when test="$list_level mod 3 = 0">
14042
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
14043
+ </xsl:when>
13949
14044
  <xsl:when test="$list_level mod 2 = 0">
13950
14045
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
13951
14046
  </xsl:when>
@@ -14488,10 +14583,22 @@
14488
14583
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
14489
14584
 
14490
14585
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
14491
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
14492
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
14493
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
14494
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
14586
+ <xsl:variable name="bookmark_id" select="@id"/>
14587
+ <xsl:choose>
14588
+ <!-- Example:
14589
+ <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"/>
14590
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
14591
+ <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"/> -->
14592
+ <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]">
14593
+ <!-- skip here, see the template 'fmt-review-start' -->
14594
+ </xsl:when>
14595
+ <xsl:otherwise>
14596
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
14597
+ <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>
14598
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
14599
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
14600
+ </xsl:otherwise>
14601
+ </xsl:choose>
14495
14602
  </xsl:template>
14496
14603
  <!-- =================== -->
14497
14604
  <!-- End of Index processing -->
@@ -15888,6 +15995,9 @@
15888
15995
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
15889
15996
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
15890
15997
 
15998
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
15999
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
16000
+
15891
16001
  <!-- END: update new Presentation XML -->
15892
16002
 
15893
16003
  <!-- =========================================================================== -->
@@ -87,7 +87,7 @@ module IsoDoc
87
87
  body.div class: "WordSectionMain" do |div3|
88
88
  content(div3, docxml, ns(self.class::MAIN_ELEMENTS))
89
89
  footnotes docxml, div3
90
- comments div3
90
+ comments docxml, div3
91
91
  end
92
92
  end
93
93
 
@@ -46,7 +46,7 @@ module IsoDoc
46
46
  body.div class: "WordSection4" do |div3|
47
47
  backcover div3
48
48
  footnotes docxml, div3
49
- comments div3
49
+ comments docxml, div3
50
50
  end
51
51
  end
52
52
 
@@ -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">
@@ -20,8 +20,9 @@ module Metanorma
20
20
  @hierarchical_assets = node.attr("hierarchical-object-numbering")
21
21
  end
22
22
 
23
- PREFACE_CLAUSE_NAMES = %w(abstract foreword introduction
24
- acknowledgements participants).freeze
23
+ PREFACE_CLAUSE_NAMES =
24
+ %w(abstract foreword introduction acknowledgements participants
25
+ metanorma-extension misc-container).freeze
25
26
 
26
27
  def sectiontype_streamline(ret)
27
28
  case ret
@@ -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 Ieee
3
- VERSION = "1.4.2".freeze
3
+ VERSION = "1.4.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-ieee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.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-standoc