metanorma-ribose 2.6.2 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/isodoc/ribose/html/htmlstyle.css +7 -0
- data/lib/isodoc/ribose/ribose.standard.xsl +144 -34
- data/lib/metanorma/ribose/basicdoc.rng +34 -27
- data/lib/metanorma/ribose/isodoc.rng +28 -1
- data/lib/metanorma/ribose/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dec51b79eabad6f38f30059a1782e359ea7d06158e12bb506e171afa362efea2
|
4
|
+
data.tar.gz: a10217655459ee2eff1d2b27ef8792dd766626717abd5ae05d939378b7c9f826
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b043d8bac99c3f9c1c4a708174379f9cd27937877ecfe08e9824d3238a1cb2743bfb549792af4bb48370e3e20220fea6642566048d51b4201df5a6f6159f529
|
7
|
+
data.tar.gz: 97ee59d042f06d344ff0dbb3b579fbbc058b64b90098f32aa94768d77b475ec798c2eba57e6b4c798bd2b2f3e77549dc81dc4af676baa736ccc41cd053e4facc
|
@@ -4645,6 +4645,8 @@
|
|
4645
4645
|
|
4646
4646
|
<xsl:template name="setTableRowAttributes">
|
4647
4647
|
|
4648
|
+
<xsl:call-template name="setColors"/>
|
4649
|
+
|
4648
4650
|
</xsl:template> <!-- setTableRowAttributes -->
|
4649
4651
|
<!-- ===================== -->
|
4650
4652
|
<!-- END Table's row processing -->
|
@@ -4696,6 +4698,7 @@
|
|
4696
4698
|
</xsl:attribute>
|
4697
4699
|
</xsl:if>
|
4698
4700
|
<xsl:call-template name="display-align"/>
|
4701
|
+
<xsl:call-template name="setColors"/>
|
4699
4702
|
</xsl:template>
|
4700
4703
|
|
4701
4704
|
<xsl:template name="display-align">
|
@@ -4711,6 +4714,29 @@
|
|
4711
4714
|
</xsl:if>
|
4712
4715
|
</xsl:template>
|
4713
4716
|
|
4717
|
+
<xsl:template name="setColors">
|
4718
|
+
<xsl:variable name="styles__">
|
4719
|
+
<xsl:call-template name="split">
|
4720
|
+
<xsl:with-param name="pText" select="concat(@style,';')"/>
|
4721
|
+
<xsl:with-param name="sep" select="';'"/>
|
4722
|
+
</xsl:call-template>
|
4723
|
+
</xsl:variable>
|
4724
|
+
<xsl:variable name="quot">"</xsl:variable>
|
4725
|
+
<xsl:variable name="styles_">
|
4726
|
+
<xsl:for-each select="xalan:nodeset($styles__)/item">
|
4727
|
+
<xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
|
4728
|
+
<xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
|
4729
|
+
<xsl:if test="$key = 'color' or $key = 'background-color'">
|
4730
|
+
<style name="{$key}"><xsl:value-of select="$value"/></style>
|
4731
|
+
</xsl:if>
|
4732
|
+
</xsl:for-each>
|
4733
|
+
</xsl:variable>
|
4734
|
+
<xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
|
4735
|
+
<xsl:for-each select="$styles/style">
|
4736
|
+
<xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
|
4737
|
+
</xsl:for-each>
|
4738
|
+
</xsl:template>
|
4739
|
+
|
4714
4740
|
<!-- cell in table body, footer -->
|
4715
4741
|
<xsl:template match="*[local-name()='td']" name="td">
|
4716
4742
|
<fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
|
@@ -4722,12 +4748,12 @@
|
|
4722
4748
|
|
4723
4749
|
<xsl:call-template name="refine_table-cell-style"/>
|
4724
4750
|
|
4751
|
+
<xsl:call-template name="setTableCellAttributes"/>
|
4752
|
+
|
4725
4753
|
<xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
|
4726
4754
|
<xsl:attribute name="padding-right">1mm</xsl:attribute>
|
4727
4755
|
</xsl:if>
|
4728
4756
|
|
4729
|
-
<xsl:call-template name="setTableCellAttributes"/>
|
4730
|
-
|
4731
4757
|
<xsl:if test="$isGenerateTableIF = 'true'">
|
4732
4758
|
<xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
|
4733
4759
|
<xsl:attribute name="text-align">left</xsl:attribute>
|
@@ -6522,7 +6548,7 @@
|
|
6522
6548
|
<xsl:choose>
|
6523
6549
|
<xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
|
6524
6550
|
<xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
|
6525
|
-
<fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
|
6551
|
+
<fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
|
6526
6552
|
</xsl:when>
|
6527
6553
|
<xsl:otherwise>
|
6528
6554
|
<xsl:apply-templates/>
|
@@ -6530,7 +6556,7 @@
|
|
6530
6556
|
</xsl:choose>
|
6531
6557
|
</xsl:template>
|
6532
6558
|
<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">
|
6533
|
-
<fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
|
6559
|
+
<fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
|
6534
6560
|
</xsl:template>
|
6535
6561
|
|
6536
6562
|
<xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
|
@@ -7570,24 +7596,26 @@
|
|
7570
7596
|
<xsl:apply-templates select="." mode="mathml"/>
|
7571
7597
|
</xsl:variable>
|
7572
7598
|
|
7573
|
-
<fo:instream-foreign-object fox:alt-text="Math">
|
7599
|
+
<fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
|
7574
7600
|
|
7575
7601
|
<xsl:call-template name="refine_mathml_insteam_object_style"/>
|
7576
7602
|
|
7577
|
-
|
7578
|
-
|
7579
|
-
|
7580
|
-
<xsl:
|
7581
|
-
|
7582
|
-
|
7583
|
-
<!-- <xsl:if test="$add_math_as_text = 'true'"> -->
|
7584
|
-
<xsl:if test="normalize-space($asciimath_text_) != ''">
|
7585
|
-
<!-- put Mathin Alternate Text -->
|
7586
|
-
<xsl:attribute name="fox:alt-text">
|
7587
|
-
<xsl:value-of select="$asciimath_text_"/>
|
7603
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
7604
|
+
<!-- put MathML in Actual Text -->
|
7605
|
+
<!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
|
7606
|
+
<xsl:attribute name="fox:actual-text">
|
7607
|
+
<xsl:value-of select="$mathml_content"/>
|
7588
7608
|
</xsl:attribute>
|
7609
|
+
|
7610
|
+
<!-- <xsl:if test="$add_math_as_text = 'true'"> -->
|
7611
|
+
<xsl:if test="normalize-space($asciimath_text_) != ''">
|
7612
|
+
<!-- put Mathin Alternate Text -->
|
7613
|
+
<xsl:attribute name="fox:alt-text">
|
7614
|
+
<xsl:value-of select="$asciimath_text_"/>
|
7615
|
+
</xsl:attribute>
|
7616
|
+
</xsl:if>
|
7617
|
+
<!-- </xsl:if> -->
|
7589
7618
|
</xsl:if>
|
7590
|
-
<!-- </xsl:if> -->
|
7591
7619
|
|
7592
7620
|
<xsl:copy-of select="xalan:nodeset($mathml)"/>
|
7593
7621
|
|
@@ -9344,6 +9372,8 @@
|
|
9344
9372
|
<xsl:template match="*[local-name() = 'origin']" mode="contents"/>
|
9345
9373
|
<xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
|
9346
9374
|
|
9375
|
+
<xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
|
9376
|
+
|
9347
9377
|
<xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
|
9348
9378
|
<xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
|
9349
9379
|
<xsl:apply-templates mode="bookmarks"/>
|
@@ -9365,6 +9395,8 @@
|
|
9365
9395
|
<xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
|
9366
9396
|
<xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
|
9367
9397
|
|
9398
|
+
<xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
|
9399
|
+
|
9368
9400
|
<!-- Bookmarks -->
|
9369
9401
|
<xsl:template name="addBookmarks">
|
9370
9402
|
<xsl:param name="contents"/>
|
@@ -11245,21 +11277,32 @@
|
|
11245
11277
|
<!-- ========== -->
|
11246
11278
|
|
11247
11279
|
<xsl:variable name="reviews_">
|
11248
|
-
<xsl:for-each select="//*[local-name() = 'review'][@from]">
|
11280
|
+
<xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
|
11249
11281
|
<xsl:copy>
|
11250
11282
|
<xsl:copy-of select="@from"/>
|
11251
11283
|
<xsl:copy-of select="@id"/>
|
11252
11284
|
</xsl:copy>
|
11253
11285
|
</xsl:for-each>
|
11286
|
+
<xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
|
11287
|
+
<xsl:copy>
|
11288
|
+
<xsl:copy-of select="@source"/>
|
11289
|
+
<xsl:copy-of select="@id"/>
|
11290
|
+
</xsl:copy>
|
11291
|
+
</xsl:for-each>
|
11254
11292
|
</xsl:variable>
|
11255
11293
|
<xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
|
11256
11294
|
|
11257
11295
|
<xsl:template name="addReviewHelper">
|
11258
|
-
|
11259
|
-
|
11260
|
-
|
11261
|
-
|
11262
|
-
<
|
11296
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
11297
|
+
<!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
|
11298
|
+
<xsl:variable name="curr_id" select="@id"/>
|
11299
|
+
<!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
|
11300
|
+
<xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
|
11301
|
+
<xsl:variable name="review_id" select="normalize-space(@id)"/>
|
11302
|
+
<xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
|
11303
|
+
<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>
|
11304
|
+
</xsl:if>
|
11305
|
+
</xsl:for-each>
|
11263
11306
|
</xsl:if>
|
11264
11307
|
<!-- <fo:block>
|
11265
11308
|
<curr_id><xsl:value-of select="$curr_id"/></curr_id>
|
@@ -11401,14 +11444,61 @@
|
|
11401
11444
|
|
11402
11445
|
</xsl:template>
|
11403
11446
|
|
11404
|
-
|
11447
|
+
<!-- document text (not figures, or tables) footnotes -->
|
11448
|
+
<xsl:variable name="reviews_container_">
|
11449
|
+
<xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
|
11450
|
+
<xsl:variable name="update_xml_step1">
|
11451
|
+
<xsl:apply-templates select="." mode="update_xml_step1"/>
|
11452
|
+
</xsl:variable>
|
11453
|
+
<xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
|
11454
|
+
</xsl:for-each>
|
11455
|
+
</xsl:variable>
|
11456
|
+
<xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
|
11457
|
+
|
11458
|
+
<xsl:template match="*[local-name() = 'review-container']"/>
|
11459
|
+
|
11460
|
+
<!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
|
11461
|
+
<xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
|
11462
|
+
<xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
|
11463
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
11464
|
+
<xsl:choose>
|
11465
|
+
<!-- if there isn't the attribute '@from', then -->
|
11466
|
+
<xsl:when test="$id_from = ''">
|
11467
|
+
<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>
|
11468
|
+
</xsl:when>
|
11469
|
+
<!-- if there isn't element with id 'from', then create 'bookmark' here -->
|
11470
|
+
<xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
|
11471
|
+
<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>
|
11472
|
+
</xsl:when>
|
11473
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
11474
|
+
<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>
|
11475
|
+
</xsl:when>
|
11476
|
+
</xsl:choose>
|
11477
|
+
</xsl:if>
|
11478
|
+
</xsl:template>
|
11479
|
+
|
11480
|
+
<!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
|
11481
|
+
<xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
|
11405
11482
|
<!-- comment 2019-11-29 -->
|
11406
11483
|
<!-- <fo:block font-weight="bold">Review:</fo:block>
|
11407
11484
|
<xsl:apply-templates /> -->
|
11408
11485
|
|
11409
|
-
<xsl:variable name="id_from" select="normalize-space(current()/@
|
11486
|
+
<xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
|
11410
11487
|
|
11411
|
-
<xsl:
|
11488
|
+
<xsl:variable name="source" select="normalize-space(@source)"/>
|
11489
|
+
|
11490
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
11491
|
+
<!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
|
11492
|
+
|
11493
|
+
<!-- <xsl:if test="@source = @end"> -->
|
11494
|
+
<!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
|
11495
|
+
following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
|
11496
|
+
<!-- <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> -->
|
11497
|
+
<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>
|
11498
|
+
<!-- </xsl:if> -->
|
11499
|
+
</xsl:if>
|
11500
|
+
|
11501
|
+
<xsl:if test="1 = 2">
|
11412
11502
|
<xsl:choose>
|
11413
11503
|
<!-- if there isn't the attribute '@from', then -->
|
11414
11504
|
<xsl:when test="$id_from = ''">
|
@@ -11416,10 +11506,10 @@
|
|
11416
11506
|
</xsl:when>
|
11417
11507
|
<!-- if there isn't element with id 'from', then create 'bookmark' here -->
|
11418
11508
|
<xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
|
11419
|
-
<fo:block id="{
|
11509
|
+
<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>
|
11420
11510
|
</xsl:when>
|
11421
11511
|
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
11422
|
-
<fo:block id="{
|
11512
|
+
<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>
|
11423
11513
|
</xsl:when>
|
11424
11514
|
</xsl:choose>
|
11425
11515
|
</xsl:if>
|
@@ -11470,16 +11560,21 @@
|
|
11470
11560
|
<xsl:variable name="list_level">
|
11471
11561
|
<xsl:choose>
|
11472
11562
|
<xsl:when test="$list_level_ <= 3"><xsl:value-of select="$list_level_"/></xsl:when>
|
11473
|
-
<xsl:
|
11563
|
+
<xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
|
11564
|
+
<xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
|
11565
|
+
<xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
|
11474
11566
|
</xsl:choose>
|
11475
11567
|
</xsl:variable>
|
11476
11568
|
<xsl:choose>
|
11477
11569
|
<xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
|
11478
11570
|
<xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
|
11479
11571
|
</xsl:when>
|
11480
|
-
<xsl:when test="$list_level mod 3 = 0">
|
11572
|
+
<xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
|
11481
11573
|
<xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
|
11482
11574
|
</xsl:when>
|
11575
|
+
<xsl:when test="$list_level mod 3 = 0">
|
11576
|
+
<xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
|
11577
|
+
</xsl:when>
|
11483
11578
|
<xsl:when test="$list_level mod 2 = 0">
|
11484
11579
|
<xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
|
11485
11580
|
</xsl:when>
|
@@ -12022,10 +12117,22 @@
|
|
12022
12117
|
<xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
|
12023
12118
|
|
12024
12119
|
<xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
|
12025
|
-
|
12026
|
-
<
|
12027
|
-
|
12028
|
-
|
12120
|
+
<xsl:variable name="bookmark_id" select="@id"/>
|
12121
|
+
<xsl:choose>
|
12122
|
+
<!-- Example:
|
12123
|
+
<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"/>
|
12124
|
+
<bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
|
12125
|
+
<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"/> -->
|
12126
|
+
<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]">
|
12127
|
+
<!-- skip here, see the template 'fmt-review-start' -->
|
12128
|
+
</xsl:when>
|
12129
|
+
<xsl:otherwise>
|
12130
|
+
<!-- <fo:inline id="{@id}" font-size="1pt"/> -->
|
12131
|
+
<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>
|
12132
|
+
<!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
|
12133
|
+
<xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
|
12134
|
+
</xsl:otherwise>
|
12135
|
+
</xsl:choose>
|
12029
12136
|
</xsl:template>
|
12030
12137
|
<!-- =================== -->
|
12031
12138
|
<!-- End of Index processing -->
|
@@ -13369,6 +13476,9 @@
|
|
13369
13476
|
<xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
|
13370
13477
|
<xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
|
13371
13478
|
|
13479
|
+
<xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
|
13480
|
+
<xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
|
13481
|
+
|
13372
13482
|
<!-- END: update new Presentation XML -->
|
13373
13483
|
|
13374
13484
|
<!-- =========================================================================== -->
|
@@ -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
|
-
<
|
386
|
-
<a:documentation>The party who has offered the comment</a:documentation>
|
387
|
-
</attribute>
|
388
|
-
<optional>
|
389
|
-
<attribute name="type">
|
390
|
-
<a:documentation>The type of reviewer comment</a:documentation>
|
391
|
-
</attribute>
|
392
|
-
</optional>
|
393
|
-
<optional>
|
394
|
-
<attribute name="date">
|
395
|
-
<a:documentation>The date when the comment was made</a:documentation>
|
396
|
-
<data type="dateTime"/>
|
397
|
-
</attribute>
|
398
|
-
</optional>
|
399
|
-
<optional>
|
400
|
-
<attribute name="from">
|
401
|
-
<a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
|
402
|
-
If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
|
403
|
-
<data type="IDREF"/>
|
404
|
-
</attribute>
|
405
|
-
</optional>
|
406
|
-
<optional>
|
407
|
-
<attribute name="to">
|
408
|
-
<a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
|
409
|
-
<data type="IDREF"/>
|
410
|
-
</attribute>
|
411
|
-
</optional>
|
385
|
+
<ref name="ReviewAttributes"/>
|
412
386
|
<oneOrMore>
|
413
387
|
<ref name="paragraph">
|
414
388
|
<a:documentation>Reviewer comments content</a:documentation>
|
@@ -416,6 +390,35 @@ If not provided, the comment applies in the vicinity of the place it has been in
|
|
416
390
|
</oneOrMore>
|
417
391
|
</element>
|
418
392
|
</define>
|
393
|
+
<define name="ReviewAttributes">
|
394
|
+
<attribute name="reviewer">
|
395
|
+
<a:documentation>The party who has offered the comment</a:documentation>
|
396
|
+
</attribute>
|
397
|
+
<optional>
|
398
|
+
<attribute name="type">
|
399
|
+
<a:documentation>The type of reviewer comment</a:documentation>
|
400
|
+
</attribute>
|
401
|
+
</optional>
|
402
|
+
<optional>
|
403
|
+
<attribute name="date">
|
404
|
+
<a:documentation>The date when the comment was made</a:documentation>
|
405
|
+
<data type="dateTime"/>
|
406
|
+
</attribute>
|
407
|
+
</optional>
|
408
|
+
<optional>
|
409
|
+
<attribute name="from">
|
410
|
+
<a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
|
411
|
+
If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
|
412
|
+
<data type="IDREF"/>
|
413
|
+
</attribute>
|
414
|
+
</optional>
|
415
|
+
<optional>
|
416
|
+
<attribute name="to">
|
417
|
+
<a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
|
418
|
+
<data type="IDREF"/>
|
419
|
+
</attribute>
|
420
|
+
</optional>
|
421
|
+
</define>
|
419
422
|
<define name="NumberingAttributes">
|
420
423
|
<optional>
|
421
424
|
<attribute name="unnumbered">
|
@@ -857,6 +860,7 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
|
|
857
860
|
<define name="tr">
|
858
861
|
<a:documentation>Sequence of cells to be displayed as a row in a table</a:documentation>
|
859
862
|
<element name="tr">
|
863
|
+
<ref name="TrAttributes"/>
|
860
864
|
<oneOrMore>
|
861
865
|
<choice>
|
862
866
|
<ref name="td">
|
@@ -869,6 +873,9 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
|
|
869
873
|
</oneOrMore>
|
870
874
|
</element>
|
871
875
|
</define>
|
876
|
+
<define name="TrAttributes">
|
877
|
+
<empty/>
|
878
|
+
</define>
|
872
879
|
<define name="tr-no-id">
|
873
880
|
<a:documentation>Sequence of cells to be displayed as a row in a table: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
874
881
|
<element name="tr">
|
@@ -17,7 +17,7 @@
|
|
17
17
|
these elements; we just want one namespace for any child grammars
|
18
18
|
of this.
|
19
19
|
-->
|
20
|
-
<!-- VERSION v2.0.
|
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>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-ribose
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: metanorma-generic
|