metanorma-iso 3.0.2 → 3.0.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.
@@ -3229,11 +3229,11 @@
3229
3229
 
3230
3230
  <xsl:if test="count(*) = 1 and *[local-name() = 'title']"> <!-- if there isn't user ToC -->
3231
3231
 
3232
- <!-- <xsl:if test="$debug = 'true'">
3232
+ <xsl:if test="$debug = 'true'">
3233
3233
  <redirect:write file="contents_.xml">
3234
3234
  <xsl:copy-of select="$contents"/>
3235
3235
  </redirect:write>
3236
- </xsl:if> -->
3236
+ </xsl:if>
3237
3237
 
3238
3238
  <xsl:variable name="margin-left">12</xsl:variable>
3239
3239
 
@@ -9226,6 +9226,8 @@
9226
9226
 
9227
9227
  <xsl:template name="setTableRowAttributes">
9228
9228
 
9229
+ <xsl:call-template name="setColors"/>
9230
+
9229
9231
  </xsl:template> <!-- setTableRowAttributes -->
9230
9232
  <!-- ===================== -->
9231
9233
  <!-- END Table's row processing -->
@@ -9277,6 +9279,7 @@
9277
9279
  </xsl:attribute>
9278
9280
  </xsl:if>
9279
9281
  <xsl:call-template name="display-align"/>
9282
+ <xsl:call-template name="setColors"/>
9280
9283
  </xsl:template>
9281
9284
 
9282
9285
  <xsl:template name="display-align">
@@ -9292,6 +9295,29 @@
9292
9295
  </xsl:if>
9293
9296
  </xsl:template>
9294
9297
 
9298
+ <xsl:template name="setColors">
9299
+ <xsl:variable name="styles__">
9300
+ <xsl:call-template name="split">
9301
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
9302
+ <xsl:with-param name="sep" select="';'"/>
9303
+ </xsl:call-template>
9304
+ </xsl:variable>
9305
+ <xsl:variable name="quot">"</xsl:variable>
9306
+ <xsl:variable name="styles_">
9307
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
9308
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
9309
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
9310
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
9311
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
9312
+ </xsl:if>
9313
+ </xsl:for-each>
9314
+ </xsl:variable>
9315
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
9316
+ <xsl:for-each select="$styles/style">
9317
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
9318
+ </xsl:for-each>
9319
+ </xsl:template>
9320
+
9295
9321
  <!-- cell in table body, footer -->
9296
9322
  <xsl:template match="*[local-name()='td']" name="td">
9297
9323
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -9303,12 +9329,12 @@
9303
9329
 
9304
9330
  <xsl:call-template name="refine_table-cell-style"/>
9305
9331
 
9332
+ <xsl:call-template name="setTableCellAttributes"/>
9333
+
9306
9334
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
9307
9335
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
9308
9336
  </xsl:if>
9309
9337
 
9310
- <xsl:call-template name="setTableCellAttributes"/>
9311
-
9312
9338
  <xsl:if test="$isGenerateTableIF = 'true'">
9313
9339
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
9314
9340
  <xsl:attribute name="text-align">left</xsl:attribute>
@@ -11206,7 +11232,7 @@
11206
11232
  <xsl:choose>
11207
11233
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
11208
11234
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
11209
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
11235
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
11210
11236
  </xsl:when>
11211
11237
  <xsl:otherwise>
11212
11238
  <xsl:apply-templates/>
@@ -11214,7 +11240,7 @@
11214
11240
  </xsl:choose>
11215
11241
  </xsl:template>
11216
11242
  <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">
11217
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
11243
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
11218
11244
  </xsl:template>
11219
11245
 
11220
11246
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -12254,24 +12280,26 @@
12254
12280
  <xsl:apply-templates select="." mode="mathml"/>
12255
12281
  </xsl:variable>
12256
12282
 
12257
- <fo:instream-foreign-object fox:alt-text="Math">
12283
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
12258
12284
 
12259
12285
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
12260
12286
 
12261
- <!-- put MathML in Actual Text -->
12262
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
12263
- <xsl:attribute name="fox:actual-text">
12264
- <xsl:value-of select="$mathml_content"/>
12265
- </xsl:attribute>
12266
-
12267
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
12268
- <xsl:if test="normalize-space($asciimath_text_) != ''">
12269
- <!-- put Mathin Alternate Text -->
12270
- <xsl:attribute name="fox:alt-text">
12271
- <xsl:value-of select="$asciimath_text_"/>
12287
+ <xsl:if test="$isGenerateTableIF = 'false'">
12288
+ <!-- put MathML in Actual Text -->
12289
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
12290
+ <xsl:attribute name="fox:actual-text">
12291
+ <xsl:value-of select="$mathml_content"/>
12272
12292
  </xsl:attribute>
12293
+
12294
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
12295
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
12296
+ <!-- put Mathin Alternate Text -->
12297
+ <xsl:attribute name="fox:alt-text">
12298
+ <xsl:value-of select="$asciimath_text_"/>
12299
+ </xsl:attribute>
12300
+ </xsl:if>
12301
+ <!-- </xsl:if> -->
12273
12302
  </xsl:if>
12274
- <!-- </xsl:if> -->
12275
12303
 
12276
12304
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
12277
12305
 
@@ -14065,6 +14093,8 @@
14065
14093
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
14066
14094
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
14067
14095
 
14096
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
14097
+
14068
14098
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
14069
14099
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
14070
14100
  <xsl:apply-templates mode="bookmarks"/>
@@ -14086,6 +14116,8 @@
14086
14116
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
14087
14117
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
14088
14118
 
14119
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
14120
+
14089
14121
  <!-- Bookmarks -->
14090
14122
  <xsl:template name="addBookmarks">
14091
14123
  <xsl:param name="contents"/>
@@ -15979,21 +16011,32 @@
15979
16011
  <!-- ========== -->
15980
16012
 
15981
16013
  <xsl:variable name="reviews_">
15982
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
16014
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
15983
16015
  <xsl:copy>
15984
16016
  <xsl:copy-of select="@from"/>
15985
16017
  <xsl:copy-of select="@id"/>
15986
16018
  </xsl:copy>
15987
16019
  </xsl:for-each>
16020
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
16021
+ <xsl:copy>
16022
+ <xsl:copy-of select="@source"/>
16023
+ <xsl:copy-of select="@id"/>
16024
+ </xsl:copy>
16025
+ </xsl:for-each>
15988
16026
  </xsl:variable>
15989
16027
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
15990
16028
 
15991
16029
  <xsl:template name="addReviewHelper">
15992
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
15993
- <xsl:variable name="curr_id" select="@id"/>
15994
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
15995
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
15996
- <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>
16030
+ <xsl:if test="$isGenerateTableIF = 'false'">
16031
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
16032
+ <xsl:variable name="curr_id" select="@id"/>
16033
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
16034
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
16035
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
16036
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
16037
+ <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>
16038
+ </xsl:if>
16039
+ </xsl:for-each>
15997
16040
  </xsl:if>
15998
16041
  <!-- <fo:block>
15999
16042
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -16141,14 +16184,61 @@
16141
16184
 
16142
16185
  </xsl:template>
16143
16186
 
16144
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
16187
+ <!-- document text (not figures, or tables) footnotes -->
16188
+ <xsl:variable name="reviews_container_">
16189
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
16190
+ <xsl:variable name="update_xml_step1">
16191
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
16192
+ </xsl:variable>
16193
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
16194
+ </xsl:for-each>
16195
+ </xsl:variable>
16196
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
16197
+
16198
+ <xsl:template match="*[local-name() = 'review-container']"/>
16199
+
16200
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
16201
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
16202
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
16203
+ <xsl:if test="$isGenerateTableIF = 'false'">
16204
+ <xsl:choose>
16205
+ <!-- if there isn't the attribute '@from', then -->
16206
+ <xsl:when test="$id_from = ''">
16207
+ <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>
16208
+ </xsl:when>
16209
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
16210
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
16211
+ <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>
16212
+ </xsl:when>
16213
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
16214
+ <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>
16215
+ </xsl:when>
16216
+ </xsl:choose>
16217
+ </xsl:if>
16218
+ </xsl:template>
16219
+
16220
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
16221
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
16145
16222
  <!-- comment 2019-11-29 -->
16146
16223
  <!-- <fo:block font-weight="bold">Review:</fo:block>
16147
16224
  <xsl:apply-templates /> -->
16148
16225
 
16149
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
16226
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
16150
16227
 
16151
- <xsl:if test="1 = 1">
16228
+ <xsl:variable name="source" select="normalize-space(@source)"/>
16229
+
16230
+ <xsl:if test="$isGenerateTableIF = 'false'">
16231
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
16232
+
16233
+ <!-- <xsl:if test="@source = @end"> -->
16234
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
16235
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
16236
+ <!-- <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> -->
16237
+ <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>
16238
+ <!-- </xsl:if> -->
16239
+ </xsl:if>
16240
+
16241
+ <xsl:if test="1 = 2">
16152
16242
  <xsl:choose>
16153
16243
  <!-- if there isn't the attribute '@from', then -->
16154
16244
  <xsl:when test="$id_from = ''">
@@ -16156,10 +16246,10 @@
16156
16246
  </xsl:when>
16157
16247
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
16158
16248
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
16159
- <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>
16249
+ <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>
16160
16250
  </xsl:when>
16161
16251
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
16162
- <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>
16252
+ <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>
16163
16253
  </xsl:when>
16164
16254
  </xsl:choose>
16165
16255
  </xsl:if>
@@ -16215,16 +16305,21 @@
16215
16305
  <xsl:variable name="list_level">
16216
16306
  <xsl:choose>
16217
16307
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
16218
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
16308
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
16309
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
16310
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
16219
16311
  </xsl:choose>
16220
16312
  </xsl:variable>
16221
16313
  <xsl:choose>
16222
16314
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
16223
16315
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
16224
16316
  </xsl:when>
16225
- <xsl:when test="$list_level mod 3 = 0">
16317
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
16226
16318
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
16227
16319
  </xsl:when>
16320
+ <xsl:when test="$list_level mod 3 = 0">
16321
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
16322
+ </xsl:when>
16228
16323
  <xsl:when test="$list_level mod 2 = 0">
16229
16324
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
16230
16325
  </xsl:when>
@@ -16804,10 +16899,22 @@
16804
16899
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
16805
16900
 
16806
16901
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
16807
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
16808
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
16809
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
16810
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
16902
+ <xsl:variable name="bookmark_id" select="@id"/>
16903
+ <xsl:choose>
16904
+ <!-- Example:
16905
+ <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"/>
16906
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
16907
+ <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"/> -->
16908
+ <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]">
16909
+ <!-- skip here, see the template 'fmt-review-start' -->
16910
+ </xsl:when>
16911
+ <xsl:otherwise>
16912
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
16913
+ <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>
16914
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
16915
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
16916
+ </xsl:otherwise>
16917
+ </xsl:choose>
16811
16918
  </xsl:template>
16812
16919
  <!-- =================== -->
16813
16920
  <!-- End of Index processing -->
@@ -18166,6 +18273,9 @@
18166
18273
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
18167
18274
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
18168
18275
 
18276
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
18277
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
18278
+
18169
18279
  <!-- END: update new Presentation XML -->
18170
18280
 
18171
18281
  <!-- =========================================================================== -->
@@ -69,8 +69,16 @@ module IsoDoc
69
69
  i18n.get.dig("stage_dict", stage.text).is_a?(Hash) or
70
70
  return hash_translate(bib, i18n.get["stage_dict"],
71
71
  "./status/stage", lang)
72
- stagetype = i18n.get.dig("stage_dict", stage.text, type&.text) and
73
- tag_translate(stage, lang, stagetype)
72
+ bibdata_i18n_stage1(stage, type, lang, i18n)
73
+ end
74
+
75
+ def bibdata_i18n_stage1(stage, type, lang, i18n)
76
+ stagetype = i18n.get.dig("stage_dict", stage.text, type&.text) or return
77
+ h = i18n.get.dig("stage_draft_variants", stagetype) and h.each do |k, v|
78
+ tag_translate(stage, lang, v)
79
+ stage.next["type"] = k
80
+ end
81
+ tag_translate(stage, lang, stagetype)
74
82
  end
75
83
  end
76
84
  end
@@ -0,0 +1,138 @@
1
+ module IsoDoc
2
+ module Iso
3
+ class PresentationXMLConvert < IsoDoc::PresentationXMLConvert
4
+ def comments(docxml)
5
+ warning_for_missing_metadata(docxml)
6
+ super
7
+ end
8
+
9
+ def warning_for_missing_metadata(docxml)
10
+ @meta.get[:unpublished] or return
11
+ ret = warning_for_missing_metadata_create(docxml)
12
+ ret.empty? and return
13
+ warning_for_missing_metadata_post(docxml, ret)
14
+ end
15
+
16
+ def warning_for_missing_metadata_create(docxml)
17
+ ret = ""
18
+ docxml.at(ns("//bibdata/ext//secretariat")) or
19
+ ret += "<p>Secretariat is missing.</p>"
20
+ docxml.at(ns("//bibdata/ext//editorialgroup")) or
21
+ ret += "<p>Editorial groups are missing.</p>"
22
+ docxml.at(ns("//bibdata/date[@type = 'published' or @type = 'issued' " \
23
+ "or @type = 'created']")) ||
24
+ docxml.at(ns("//bibdata/version/revision-date")) or
25
+ ret += "<p>Document date is missing.</p>"
26
+ ret
27
+ end
28
+
29
+ def warning_for_missing_metadata_post(docxml, ret)
30
+ from = docxml.at(ns("//sections/*/@id"))&.text or return
31
+ id = UUIDTools::UUID.random_create
32
+ ret = <<~REVIEW
33
+ <review date='#{Date.today}' reviewer='Metanorma' id='_#{id}' from='#{from}' to='#{from}'>
34
+ <p><strong>Metadata warnings:</strong></p> #{ret}
35
+ </review>
36
+ REVIEW
37
+ unless ins = docxml.at(ns("//review-container"))
38
+ docxml.root << "<review-container></review-container>"
39
+ ins = docxml.at(ns("//review-container"))
40
+ end
41
+ ins.add_first_child ret
42
+ end
43
+
44
+ # Redo Amendment annex titles as numbered
45
+ def annex(isoxml)
46
+ amd?(isoxml) and @suppressheadingnumbers = @oldsuppressheadingnumbers
47
+ super
48
+ amd?(isoxml) and @suppressheadingnumbers = true
49
+ end
50
+
51
+ # Redo Amendment annex subclause titles as numbered
52
+ def clause(docxml)
53
+ super
54
+ docxml.xpath(ns("//annex//appendix")).each { |f| clause1(f) }
55
+ amd?(docxml) or return
56
+ @suppressheadingnumbers = @oldsuppressheadingnumbers
57
+ docxml.xpath(ns("//annex//clause | //annex//appendix")).each do |f|
58
+ f.xpath(ns("./fmt-title | ./fmt-xref-label")).each(&:remove)
59
+ clause1(f)
60
+ end
61
+ @suppressheadingnumbers = true
62
+ end
63
+
64
+ def clause1(node)
65
+ !node.at(ns("./title")) &&
66
+ !%w(sections preface bibliography).include?(node.parent.name) and
67
+ node["inline-header"] = "true"
68
+ super
69
+ clause1_section_prefix(node)
70
+ end
71
+
72
+ def clause1_section_prefix(node)
73
+ if node["type"] == "section" &&
74
+ c = node.at(ns("./fmt-title//span[@class = 'fmt-caption-delim']"))
75
+ c.add_first_child(":")
76
+ t = node.at(ns("./fmt-title"))
77
+ # French l10n needs tab to be treated as space
78
+ t.replace @i18n.l10n(to_xml(t).gsub("<tab/>", "<tab> </tab>"))
79
+ .gsub(%r{<tab>[^<]+</tab>}, "<tab/>")
80
+ end
81
+ end
82
+
83
+ def toc_title(docxml)
84
+ %w(amendment technical-corrigendum).include?(@doctype) and return
85
+ super
86
+ end
87
+
88
+ def middle_title(docxml)
89
+ @meta.get[:doctitlemain].nil? || @meta.get[:doctitlemain].empty? and
90
+ return
91
+ s = docxml.at(ns("//sections")) or return
92
+ ret = "#{middle_title_main}#{middle_title_amd}"
93
+ s.add_first_child ret
94
+ end
95
+
96
+ def middle_title_main
97
+ ret = "<span class='boldtitle'>#{@meta.get[:doctitleintro]}"
98
+ @meta.get[:doctitleintro] && @meta.get[:doctitlemain] and
99
+ ret += " &#x2014; "
100
+ ret += @meta.get[:doctitlemain]
101
+ @meta.get[:doctitlemain] && @meta.get[:doctitlepart] and
102
+ ret += " &#x2014; "
103
+ ret += "</span>#{middle_title_part}"
104
+ "<p class='zzSTDTitle1'>#{ret}</p>"
105
+ end
106
+
107
+ def middle_title_part
108
+ ret = ""
109
+ if a = @meta.get[:doctitlepart]
110
+ b = @meta.get[:doctitlepartlabel] and
111
+ ret += "<span class='nonboldtitle'>#{b}:</span> "
112
+ ret += "<span class='boldtitle'>#{a}</span>"
113
+ end
114
+ ret
115
+ end
116
+
117
+ def middle_title_amd
118
+ ret = ""
119
+ if a = @meta.get[:doctitleamdlabel]
120
+ ret += "<p class='zzSTDTitle2'>#{a}"
121
+ a = @meta.get[:doctitleamd] and ret += ": #{a}"
122
+ ret += "</p>"
123
+ end
124
+ a = @meta.get[:doctitlecorrlabel] and
125
+ ret += "<p class='zzSTDTitle2'>#{a}</p>"
126
+ ret
127
+ end
128
+
129
+ def move_norm_ref_to_sections(docxml)
130
+ amd?(docxml) or super
131
+ end
132
+
133
+ def enable_indexsect
134
+ true
135
+ end
136
+ end
137
+ end
138
+ end
@@ -2,6 +2,7 @@ require_relative "init"
2
2
  require "isodoc"
3
3
  require_relative "presentation_xref"
4
4
  require_relative "presentation_bibdata"
5
+ require_relative "presentation_section"
5
6
  require_relative "presentation_terms"
6
7
  require_relative "../../relaton/render/general"
7
8
 
@@ -22,39 +23,6 @@ module IsoDoc
22
23
  super
23
24
  end
24
25
 
25
- def section(docxml)
26
- super
27
- warning_for_missing_metadata(docxml)
28
- end
29
-
30
- def warning_for_missing_metadata(docxml)
31
- @meta.get[:unpublished] or return
32
- ret = warning_for_missing_metadata_create(docxml)
33
- ret.empty? and return
34
- warning_for_missing_metadata_post(docxml, ret)
35
- end
36
-
37
- def warning_for_missing_metadata_create(docxml)
38
- ret = ""
39
- docxml.at(ns("//bibdata/ext//secretariat")) or
40
- ret += "<p>Secretariat is missing.</p>"
41
- docxml.at(ns("//bibdata/ext//editorialgroup")) or
42
- ret += "<p>Editorial groups are missing.</p>"
43
- docxml.at(ns("//bibdata/date[@type = 'published' or @type = 'issued' " \
44
- "or @type = 'created']")) ||
45
- docxml.at(ns("//bibdata/version/revision-date")) or
46
- ret += "<p>Document date is missing.</p>"
47
- ret
48
- end
49
-
50
- def warning_for_missing_metadata_post(docxml, ret)
51
- id = UUIDTools::UUID.random_create
52
- ret = "<review date='#{Date.today}' reviewer='Metanorma' id='_#{id}'>" \
53
- "<p><strong>Metadata warnings:<strong></p> #{ret}</review>"
54
- ins = docxml.at(ns("//sections//fmt-title")) or return
55
- ins.add_first_child ret
56
- end
57
-
58
26
  def block(docxml)
59
27
  amend docxml
60
28
  figure docxml
@@ -79,26 +47,6 @@ module IsoDoc
79
47
  note docxml
80
48
  end
81
49
 
82
- # Redo Amendment annex titles as numbered
83
- def annex(isoxml)
84
- amd?(isoxml) and @suppressheadingnumbers = @oldsuppressheadingnumbers
85
- super
86
- amd?(isoxml) and @suppressheadingnumbers = true
87
- end
88
-
89
- # Redo Amendment annex subclause titles as numbered
90
- def clause(docxml)
91
- super
92
- docxml.xpath(ns("//annex//appendix")).each { |f| clause1(f) }
93
- amd?(docxml) or return
94
- @suppressheadingnumbers = @oldsuppressheadingnumbers
95
- docxml.xpath(ns("//annex//clause | //annex//appendix")).each do |f|
96
- f.xpath(ns("./fmt-title | ./fmt-xref-label")).each(&:remove)
97
- clause1(f)
98
- end
99
- @suppressheadingnumbers = true
100
- end
101
-
102
50
  def subfigure_delim
103
51
  "<span class='fmt-label-delim'>)</span>"
104
52
  end
@@ -123,25 +71,6 @@ module IsoDoc
123
71
  end
124
72
  end
125
73
 
126
- def clause1(node)
127
- !node.at(ns("./title")) &&
128
- !%w(sections preface bibliography).include?(node.parent.name) and
129
- node["inline-header"] = "true"
130
- super
131
- clause1_section_prefix(node)
132
- end
133
-
134
- def clause1_section_prefix(node)
135
- if node["type"] == "section" &&
136
- c = node.at(ns("./fmt-title//span[@class = 'fmt-caption-delim']"))
137
- c.add_first_child(":")
138
- t = node.at(ns("./fmt-title"))
139
- # French l10n needs tab to be treated as space
140
- t.replace @i18n.l10n(to_xml(t).gsub("<tab/>", "<tab> </tab>"))
141
- .gsub(%r{<tab>[^<]+</tab>}, "<tab/>")
142
- end
143
- end
144
-
145
74
  def admonition1(elem)
146
75
  super
147
76
  admonition_outside_clauses(elem)
@@ -231,56 +160,6 @@ module IsoDoc
231
160
  super
232
161
  end
233
162
 
234
- def toc_title(docxml)
235
- %w(amendment technical-corrigendum).include?(@doctype) and return
236
- super
237
- end
238
-
239
- def middle_title(docxml)
240
- @meta.get[:doctitlemain].nil? || @meta.get[:doctitlemain].empty? and
241
- return
242
- s = docxml.at(ns("//sections")) or return
243
- ret = "#{middle_title_main}#{middle_title_amd}"
244
- s.add_first_child ret
245
- end
246
-
247
- def middle_title_main
248
- ret = "<span class='boldtitle'>#{@meta.get[:doctitleintro]}"
249
- @meta.get[:doctitleintro] && @meta.get[:doctitlemain] and
250
- ret += " &#x2014; "
251
- ret += @meta.get[:doctitlemain]
252
- @meta.get[:doctitlemain] && @meta.get[:doctitlepart] and
253
- ret += " &#x2014; "
254
- ret += "</span>#{middle_title_part}"
255
- "<p class='zzSTDTitle1'>#{ret}</p>"
256
- end
257
-
258
- def middle_title_part
259
- ret = ""
260
- if a = @meta.get[:doctitlepart]
261
- b = @meta.get[:doctitlepartlabel] and
262
- ret += "<span class='nonboldtitle'>#{b}:</span> "
263
- ret += "<span class='boldtitle'>#{a}</span>"
264
- end
265
- ret
266
- end
267
-
268
- def middle_title_amd
269
- ret = ""
270
- if a = @meta.get[:doctitleamdlabel]
271
- ret += "<p class='zzSTDTitle2'>#{a}"
272
- a = @meta.get[:doctitleamd] and ret += ": #{a}"
273
- ret += "</p>"
274
- end
275
- a = @meta.get[:doctitlecorrlabel] and
276
- ret += "<p class='zzSTDTitle2'>#{a}</p>"
277
- ret
278
- end
279
-
280
- def move_norm_ref_to_sections(docxml)
281
- amd?(docxml) or super
282
- end
283
-
284
163
  def twitter_cldr_localiser_symbols
285
164
  { group: "&#xA0;", fraction_group: "&#xA0;",
286
165
  fraction_group_digits: 3 }
@@ -305,10 +184,6 @@ module IsoDoc
305
184
  end
306
185
  end
307
186
 
308
- def enable_indexsect
309
- true
310
- end
311
-
312
187
  def fn_ref_label(fnote)
313
188
  if fnote.ancestors("table, figure").empty? ||
314
189
  !fnote.ancestors("name, fmt-name").empty?