metanorma-ogc 2.7.2 → 2.7.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: 9b1dfc6f11f459d61bfd26e3db558792df9df504a9848618d2f9d26c4cfebf17
4
- data.tar.gz: b7d289f8bbc5a793bddfc2513ad358a90e9838e5bba96b87296ae15f00e69b12
3
+ metadata.gz: 5a2d87dc687554fc027a583d7268c2d1452c197f545c199aec88be336a27a6d4
4
+ data.tar.gz: 34a2174e0c2d832c1adc77af934ebd8a5ce2c6ec54c4d8d2783831d7693c436f
5
5
  SHA512:
6
- metadata.gz: ebbe9dd3a3efb1d6c2474e0d5f5bcac9b273b9e03277233ac9f539a74290a9d45cbadc36c4f407d0ca1ab91feceea5543823d2d2e52c11fd35bdda71b84df800
7
- data.tar.gz: c9a5fc850fabf6109fe286fc15e6257470951c843b24216095842d77bb91349630d5ece8f86c1bead37307ebcf462f21643b20be03f82a5163c6fb124f408e05
6
+ metadata.gz: 60b2ed504bfd14bbee2a58c71ff944672a785e0c945f2c385088b8c03770970fcbe214e14a444799893a36f7d51bf4c55d599008fdeb1f3a570e60adf48d015e
7
+ data.tar.gz: d6c61850584ee882601901e541ebf292063d8d02b46c94a622fb72237175e3c08ef99c099ecb66499d1f4c33796ecf076341504aef1bb9d5e1089f8ccf504d7d
@@ -90,7 +90,7 @@ module IsoDoc
90
90
  if cell.at("./ancestor::xmlns:table[@class = 'recommendation'] | " \
91
91
  "./ancestor::xmlns:table[@class = 'requirement'] | " \
92
92
  "./ancestor::xmlns:table[@class = 'permission']")
93
- ret[:style] = "vertical-align:top;"
93
+ ret[:style] = "vertical-align:top;#{ret["style"]}"
94
94
  ret[:class] = "recommend"
95
95
  end
96
96
  ret
@@ -311,6 +311,13 @@ h6:hover > a.anchor,
311
311
  padding: 0;
312
312
  }
313
313
 
314
+ svg {
315
+ width: 100%;
316
+ padding-bottom: 92%;
317
+ height: 1px;
318
+ overflow: visible;
319
+ }
320
+
314
321
  #standard-band {
315
322
  background-color: #0AC442;
316
323
  }
@@ -154,8 +154,10 @@ module IsoDoc
154
154
  end
155
155
 
156
156
  def collapsible(html)
157
- html.xpath("//*[@class = 'sourcecode' or @class = 'figure']")
158
- .each do |d|
157
+ x = html.xpath("//*[@class = 'sourcecode' or @class = 'figure']") -
158
+ html.xpath("//*[@class = 'sourcecode' or @class = 'figure']" \
159
+ "//*[@class = 'sourcecode' or @class = 'figure']")
160
+ x.each do |d|
159
161
  d["class"] += " hidable"
160
162
  d.previous = "<p class='collapsible active'>&#xa0;</p>"
161
163
  end
@@ -5349,6 +5349,8 @@
5349
5349
 
5350
5350
  <xsl:template name="setTableRowAttributes">
5351
5351
 
5352
+ <xsl:call-template name="setColors"/>
5353
+
5352
5354
  </xsl:template> <!-- setTableRowAttributes -->
5353
5355
  <!-- ===================== -->
5354
5356
  <!-- END Table's row processing -->
@@ -5400,6 +5402,7 @@
5400
5402
  </xsl:attribute>
5401
5403
  </xsl:if>
5402
5404
  <xsl:call-template name="display-align"/>
5405
+ <xsl:call-template name="setColors"/>
5403
5406
  </xsl:template>
5404
5407
 
5405
5408
  <xsl:template name="display-align">
@@ -5415,6 +5418,29 @@
5415
5418
  </xsl:if>
5416
5419
  </xsl:template>
5417
5420
 
5421
+ <xsl:template name="setColors">
5422
+ <xsl:variable name="styles__">
5423
+ <xsl:call-template name="split">
5424
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
5425
+ <xsl:with-param name="sep" select="';'"/>
5426
+ </xsl:call-template>
5427
+ </xsl:variable>
5428
+ <xsl:variable name="quot">"</xsl:variable>
5429
+ <xsl:variable name="styles_">
5430
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
5431
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
5432
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
5433
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
5434
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
5435
+ </xsl:if>
5436
+ </xsl:for-each>
5437
+ </xsl:variable>
5438
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
5439
+ <xsl:for-each select="$styles/style">
5440
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
5441
+ </xsl:for-each>
5442
+ </xsl:template>
5443
+
5418
5444
  <!-- cell in table body, footer -->
5419
5445
  <xsl:template match="*[local-name()='td']" name="td">
5420
5446
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -5426,12 +5452,12 @@
5426
5452
 
5427
5453
  <xsl:call-template name="refine_table-cell-style"/>
5428
5454
 
5455
+ <xsl:call-template name="setTableCellAttributes"/>
5456
+
5429
5457
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
5430
5458
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
5431
5459
  </xsl:if>
5432
5460
 
5433
- <xsl:call-template name="setTableCellAttributes"/>
5434
-
5435
5461
  <xsl:if test="$isGenerateTableIF = 'true'">
5436
5462
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
5437
5463
  <xsl:attribute name="text-align">left</xsl:attribute>
@@ -7225,7 +7251,7 @@
7225
7251
  <xsl:choose>
7226
7252
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
7227
7253
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
7228
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
7254
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
7229
7255
  </xsl:when>
7230
7256
  <xsl:otherwise>
7231
7257
  <xsl:apply-templates/>
@@ -7233,7 +7259,7 @@
7233
7259
  </xsl:choose>
7234
7260
  </xsl:template>
7235
7261
  <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">
7236
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
7262
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
7237
7263
  </xsl:template>
7238
7264
 
7239
7265
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -8273,24 +8299,26 @@
8273
8299
  <xsl:apply-templates select="." mode="mathml"/>
8274
8300
  </xsl:variable>
8275
8301
 
8276
- <fo:instream-foreign-object fox:alt-text="Math">
8302
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
8277
8303
 
8278
8304
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
8279
8305
 
8280
- <!-- put MathML in Actual Text -->
8281
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
8282
- <xsl:attribute name="fox:actual-text">
8283
- <xsl:value-of select="$mathml_content"/>
8284
- </xsl:attribute>
8285
-
8286
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
8287
- <xsl:if test="normalize-space($asciimath_text_) != ''">
8288
- <!-- put Mathin Alternate Text -->
8289
- <xsl:attribute name="fox:alt-text">
8290
- <xsl:value-of select="$asciimath_text_"/>
8306
+ <xsl:if test="$isGenerateTableIF = 'false'">
8307
+ <!-- put MathML in Actual Text -->
8308
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
8309
+ <xsl:attribute name="fox:actual-text">
8310
+ <xsl:value-of select="$mathml_content"/>
8291
8311
  </xsl:attribute>
8312
+
8313
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
8314
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
8315
+ <!-- put Mathin Alternate Text -->
8316
+ <xsl:attribute name="fox:alt-text">
8317
+ <xsl:value-of select="$asciimath_text_"/>
8318
+ </xsl:attribute>
8319
+ </xsl:if>
8320
+ <!-- </xsl:if> -->
8292
8321
  </xsl:if>
8293
- <!-- </xsl:if> -->
8294
8322
 
8295
8323
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
8296
8324
 
@@ -10052,6 +10080,8 @@
10052
10080
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
10053
10081
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
10054
10082
 
10083
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
10084
+
10055
10085
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
10056
10086
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
10057
10087
  <xsl:apply-templates mode="bookmarks"/>
@@ -10073,6 +10103,8 @@
10073
10103
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
10074
10104
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
10075
10105
 
10106
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
10107
+
10076
10108
  <!-- Bookmarks -->
10077
10109
  <xsl:template name="addBookmarks">
10078
10110
  <xsl:param name="contents"/>
@@ -11948,21 +11980,32 @@
11948
11980
  <!-- ========== -->
11949
11981
 
11950
11982
  <xsl:variable name="reviews_">
11951
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
11983
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
11952
11984
  <xsl:copy>
11953
11985
  <xsl:copy-of select="@from"/>
11954
11986
  <xsl:copy-of select="@id"/>
11955
11987
  </xsl:copy>
11956
11988
  </xsl:for-each>
11989
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
11990
+ <xsl:copy>
11991
+ <xsl:copy-of select="@source"/>
11992
+ <xsl:copy-of select="@id"/>
11993
+ </xsl:copy>
11994
+ </xsl:for-each>
11957
11995
  </xsl:variable>
11958
11996
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
11959
11997
 
11960
11998
  <xsl:template name="addReviewHelper">
11961
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
11962
- <xsl:variable name="curr_id" select="@id"/>
11963
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
11964
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
11965
- <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>
11999
+ <xsl:if test="$isGenerateTableIF = 'false'">
12000
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
12001
+ <xsl:variable name="curr_id" select="@id"/>
12002
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
12003
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
12004
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
12005
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
12006
+ <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>
12007
+ </xsl:if>
12008
+ </xsl:for-each>
11966
12009
  </xsl:if>
11967
12010
  <!-- <fo:block>
11968
12011
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -12104,14 +12147,61 @@
12104
12147
 
12105
12148
  </xsl:template>
12106
12149
 
12107
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
12150
+ <!-- document text (not figures, or tables) footnotes -->
12151
+ <xsl:variable name="reviews_container_">
12152
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
12153
+ <xsl:variable name="update_xml_step1">
12154
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
12155
+ </xsl:variable>
12156
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
12157
+ </xsl:for-each>
12158
+ </xsl:variable>
12159
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
12160
+
12161
+ <xsl:template match="*[local-name() = 'review-container']"/>
12162
+
12163
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
12164
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
12165
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
12166
+ <xsl:if test="$isGenerateTableIF = 'false'">
12167
+ <xsl:choose>
12168
+ <!-- if there isn't the attribute '@from', then -->
12169
+ <xsl:when test="$id_from = ''">
12170
+ <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>
12171
+ </xsl:when>
12172
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
12173
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
12174
+ <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>
12175
+ </xsl:when>
12176
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
12177
+ <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>
12178
+ </xsl:when>
12179
+ </xsl:choose>
12180
+ </xsl:if>
12181
+ </xsl:template>
12182
+
12183
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
12184
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
12108
12185
  <!-- comment 2019-11-29 -->
12109
12186
  <!-- <fo:block font-weight="bold">Review:</fo:block>
12110
12187
  <xsl:apply-templates /> -->
12111
12188
 
12112
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
12189
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
12113
12190
 
12114
- <xsl:if test="1 = 1">
12191
+ <xsl:variable name="source" select="normalize-space(@source)"/>
12192
+
12193
+ <xsl:if test="$isGenerateTableIF = 'false'">
12194
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
12195
+
12196
+ <!-- <xsl:if test="@source = @end"> -->
12197
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
12198
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
12199
+ <!-- <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> -->
12200
+ <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>
12201
+ <!-- </xsl:if> -->
12202
+ </xsl:if>
12203
+
12204
+ <xsl:if test="1 = 2">
12115
12205
  <xsl:choose>
12116
12206
  <!-- if there isn't the attribute '@from', then -->
12117
12207
  <xsl:when test="$id_from = ''">
@@ -12119,10 +12209,10 @@
12119
12209
  </xsl:when>
12120
12210
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
12121
12211
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
12122
- <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>
12212
+ <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>
12123
12213
  </xsl:when>
12124
12214
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
12125
- <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>
12215
+ <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>
12126
12216
  </xsl:when>
12127
12217
  </xsl:choose>
12128
12218
  </xsl:if>
@@ -12171,16 +12261,21 @@
12171
12261
  <xsl:variable name="list_level">
12172
12262
  <xsl:choose>
12173
12263
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
12174
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
12264
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
12265
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
12266
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
12175
12267
  </xsl:choose>
12176
12268
  </xsl:variable>
12177
12269
  <xsl:choose>
12178
12270
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
12179
12271
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
12180
12272
  </xsl:when>
12181
- <xsl:when test="$list_level mod 3 = 0">
12273
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
12182
12274
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
12183
12275
  </xsl:when>
12276
+ <xsl:when test="$list_level mod 3 = 0">
12277
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
12278
+ </xsl:when>
12184
12279
  <xsl:when test="$list_level mod 2 = 0">
12185
12280
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
12186
12281
  </xsl:when>
@@ -12723,10 +12818,22 @@
12723
12818
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
12724
12819
 
12725
12820
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
12726
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
12727
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
12728
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
12729
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
12821
+ <xsl:variable name="bookmark_id" select="@id"/>
12822
+ <xsl:choose>
12823
+ <!-- Example:
12824
+ <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"/>
12825
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
12826
+ <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"/> -->
12827
+ <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]">
12828
+ <!-- skip here, see the template 'fmt-review-start' -->
12829
+ </xsl:when>
12830
+ <xsl:otherwise>
12831
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
12832
+ <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>
12833
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
12834
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
12835
+ </xsl:otherwise>
12836
+ </xsl:choose>
12730
12837
  </xsl:template>
12731
12838
  <!-- =================== -->
12732
12839
  <!-- End of Index processing -->
@@ -14080,6 +14187,9 @@
14080
14187
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
14081
14188
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
14082
14189
 
14190
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
14191
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
14192
+
14083
14193
  <!-- END: update new Presentation XML -->
14084
14194
 
14085
14195
  <!-- =========================================================================== -->