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.
@@ -4116,6 +4116,8 @@
4116
4116
 
4117
4117
  <xsl:template name="setTableRowAttributes">
4118
4118
 
4119
+ <xsl:call-template name="setColors"/>
4120
+
4119
4121
  </xsl:template> <!-- setTableRowAttributes -->
4120
4122
  <!-- ===================== -->
4121
4123
  <!-- END Table's row processing -->
@@ -4167,6 +4169,7 @@
4167
4169
  </xsl:attribute>
4168
4170
  </xsl:if>
4169
4171
  <xsl:call-template name="display-align"/>
4172
+ <xsl:call-template name="setColors"/>
4170
4173
  </xsl:template>
4171
4174
 
4172
4175
  <xsl:template name="display-align">
@@ -4182,6 +4185,29 @@
4182
4185
  </xsl:if>
4183
4186
  </xsl:template>
4184
4187
 
4188
+ <xsl:template name="setColors">
4189
+ <xsl:variable name="styles__">
4190
+ <xsl:call-template name="split">
4191
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
4192
+ <xsl:with-param name="sep" select="';'"/>
4193
+ </xsl:call-template>
4194
+ </xsl:variable>
4195
+ <xsl:variable name="quot">"</xsl:variable>
4196
+ <xsl:variable name="styles_">
4197
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
4198
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
4199
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
4200
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
4201
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
4202
+ </xsl:if>
4203
+ </xsl:for-each>
4204
+ </xsl:variable>
4205
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
4206
+ <xsl:for-each select="$styles/style">
4207
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
4208
+ </xsl:for-each>
4209
+ </xsl:template>
4210
+
4185
4211
  <!-- cell in table body, footer -->
4186
4212
  <xsl:template match="*[local-name()='td']" name="td">
4187
4213
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -4193,12 +4219,12 @@
4193
4219
 
4194
4220
  <xsl:call-template name="refine_table-cell-style"/>
4195
4221
 
4222
+ <xsl:call-template name="setTableCellAttributes"/>
4223
+
4196
4224
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
4197
4225
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
4198
4226
  </xsl:if>
4199
4227
 
4200
- <xsl:call-template name="setTableCellAttributes"/>
4201
-
4202
4228
  <xsl:if test="$isGenerateTableIF = 'true'">
4203
4229
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
4204
4230
  <xsl:attribute name="text-align">left</xsl:attribute>
@@ -5985,7 +6011,7 @@
5985
6011
  <xsl:choose>
5986
6012
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
5987
6013
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
5988
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
6014
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
5989
6015
  </xsl:when>
5990
6016
  <xsl:otherwise>
5991
6017
  <xsl:apply-templates/>
@@ -5993,7 +6019,7 @@
5993
6019
  </xsl:choose>
5994
6020
  </xsl:template>
5995
6021
  <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">
5996
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6022
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
5997
6023
  </xsl:template>
5998
6024
 
5999
6025
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -7033,24 +7059,26 @@
7033
7059
  <xsl:apply-templates select="." mode="mathml"/>
7034
7060
  </xsl:variable>
7035
7061
 
7036
- <fo:instream-foreign-object fox:alt-text="Math">
7062
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
7037
7063
 
7038
7064
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
7039
7065
 
7040
- <!-- put MathML in Actual Text -->
7041
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
7042
- <xsl:attribute name="fox:actual-text">
7043
- <xsl:value-of select="$mathml_content"/>
7044
- </xsl:attribute>
7045
-
7046
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
7047
- <xsl:if test="normalize-space($asciimath_text_) != ''">
7048
- <!-- put Mathin Alternate Text -->
7049
- <xsl:attribute name="fox:alt-text">
7050
- <xsl:value-of select="$asciimath_text_"/>
7066
+ <xsl:if test="$isGenerateTableIF = 'false'">
7067
+ <!-- put MathML in Actual Text -->
7068
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
7069
+ <xsl:attribute name="fox:actual-text">
7070
+ <xsl:value-of select="$mathml_content"/>
7051
7071
  </xsl:attribute>
7072
+
7073
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
7074
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
7075
+ <!-- put Mathin Alternate Text -->
7076
+ <xsl:attribute name="fox:alt-text">
7077
+ <xsl:value-of select="$asciimath_text_"/>
7078
+ </xsl:attribute>
7079
+ </xsl:if>
7080
+ <!-- </xsl:if> -->
7052
7081
  </xsl:if>
7053
- <!-- </xsl:if> -->
7054
7082
 
7055
7083
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
7056
7084
 
@@ -8806,6 +8834,8 @@
8806
8834
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
8807
8835
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
8808
8836
 
8837
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
8838
+
8809
8839
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
8810
8840
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
8811
8841
  <xsl:apply-templates mode="bookmarks"/>
@@ -8827,6 +8857,8 @@
8827
8857
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
8828
8858
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
8829
8859
 
8860
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
8861
+
8830
8862
  <!-- Bookmarks -->
8831
8863
  <xsl:template name="addBookmarks">
8832
8864
  <xsl:param name="contents"/>
@@ -10706,21 +10738,32 @@
10706
10738
  <!-- ========== -->
10707
10739
 
10708
10740
  <xsl:variable name="reviews_">
10709
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
10741
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
10710
10742
  <xsl:copy>
10711
10743
  <xsl:copy-of select="@from"/>
10712
10744
  <xsl:copy-of select="@id"/>
10713
10745
  </xsl:copy>
10714
10746
  </xsl:for-each>
10747
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
10748
+ <xsl:copy>
10749
+ <xsl:copy-of select="@source"/>
10750
+ <xsl:copy-of select="@id"/>
10751
+ </xsl:copy>
10752
+ </xsl:for-each>
10715
10753
  </xsl:variable>
10716
10754
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
10717
10755
 
10718
10756
  <xsl:template name="addReviewHelper">
10719
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
10720
- <xsl:variable name="curr_id" select="@id"/>
10721
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
10722
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
10723
- <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>
10757
+ <xsl:if test="$isGenerateTableIF = 'false'">
10758
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
10759
+ <xsl:variable name="curr_id" select="@id"/>
10760
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
10761
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
10762
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
10763
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
10764
+ <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>
10765
+ </xsl:if>
10766
+ </xsl:for-each>
10724
10767
  </xsl:if>
10725
10768
  <!-- <fo:block>
10726
10769
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -10862,14 +10905,61 @@
10862
10905
 
10863
10906
  </xsl:template>
10864
10907
 
10865
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10908
+ <!-- document text (not figures, or tables) footnotes -->
10909
+ <xsl:variable name="reviews_container_">
10910
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
10911
+ <xsl:variable name="update_xml_step1">
10912
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
10913
+ </xsl:variable>
10914
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
10915
+ </xsl:for-each>
10916
+ </xsl:variable>
10917
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
10918
+
10919
+ <xsl:template match="*[local-name() = 'review-container']"/>
10920
+
10921
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
10922
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10923
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
10924
+ <xsl:if test="$isGenerateTableIF = 'false'">
10925
+ <xsl:choose>
10926
+ <!-- if there isn't the attribute '@from', then -->
10927
+ <xsl:when test="$id_from = ''">
10928
+ <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>
10929
+ </xsl:when>
10930
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
10931
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
10932
+ <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>
10933
+ </xsl:when>
10934
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
10935
+ <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>
10936
+ </xsl:when>
10937
+ </xsl:choose>
10938
+ </xsl:if>
10939
+ </xsl:template>
10940
+
10941
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
10942
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10866
10943
  <!-- comment 2019-11-29 -->
10867
10944
  <!-- <fo:block font-weight="bold">Review:</fo:block>
10868
10945
  <xsl:apply-templates /> -->
10869
10946
 
10870
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
10947
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
10871
10948
 
10872
- <xsl:if test="1 = 1">
10949
+ <xsl:variable name="source" select="normalize-space(@source)"/>
10950
+
10951
+ <xsl:if test="$isGenerateTableIF = 'false'">
10952
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
10953
+
10954
+ <!-- <xsl:if test="@source = @end"> -->
10955
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
10956
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
10957
+ <!-- <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> -->
10958
+ <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>
10959
+ <!-- </xsl:if> -->
10960
+ </xsl:if>
10961
+
10962
+ <xsl:if test="1 = 2">
10873
10963
  <xsl:choose>
10874
10964
  <!-- if there isn't the attribute '@from', then -->
10875
10965
  <xsl:when test="$id_from = ''">
@@ -10877,10 +10967,10 @@
10877
10967
  </xsl:when>
10878
10968
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
10879
10969
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
10880
- <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>
10970
+ <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>
10881
10971
  </xsl:when>
10882
10972
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
10883
- <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>
10973
+ <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>
10884
10974
  </xsl:when>
10885
10975
  </xsl:choose>
10886
10976
  </xsl:if>
@@ -10929,16 +11019,21 @@
10929
11019
  <xsl:variable name="list_level">
10930
11020
  <xsl:choose>
10931
11021
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
10932
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
11022
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
11023
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
11024
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
10933
11025
  </xsl:choose>
10934
11026
  </xsl:variable>
10935
11027
  <xsl:choose>
10936
11028
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
10937
11029
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
10938
11030
  </xsl:when>
10939
- <xsl:when test="$list_level mod 3 = 0">
11031
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
10940
11032
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
10941
11033
  </xsl:when>
11034
+ <xsl:when test="$list_level mod 3 = 0">
11035
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
11036
+ </xsl:when>
10942
11037
  <xsl:when test="$list_level mod 2 = 0">
10943
11038
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
10944
11039
  </xsl:when>
@@ -11481,10 +11576,22 @@
11481
11576
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
11482
11577
 
11483
11578
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
11484
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
11485
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
11486
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
11487
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
11579
+ <xsl:variable name="bookmark_id" select="@id"/>
11580
+ <xsl:choose>
11581
+ <!-- Example:
11582
+ <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"/>
11583
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
11584
+ <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"/> -->
11585
+ <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]">
11586
+ <!-- skip here, see the template 'fmt-review-start' -->
11587
+ </xsl:when>
11588
+ <xsl:otherwise>
11589
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
11590
+ <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>
11591
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
11592
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
11593
+ </xsl:otherwise>
11594
+ </xsl:choose>
11488
11595
  </xsl:template>
11489
11596
  <!-- =================== -->
11490
11597
  <!-- End of Index processing -->
@@ -12838,6 +12945,9 @@
12838
12945
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
12839
12946
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
12840
12947
 
12948
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
12949
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
12950
+
12841
12951
  <!-- END: update new Presentation XML -->
12842
12952
 
12843
12953
  <!-- =========================================================================== -->
@@ -382,33 +382,7 @@ in a document (e.g. sourcecode annotations)</a:documentation>
382
382
  <a:documentation>Block intended to capture reviewer comments about some text in the document</a:documentation>
383
383
  <element name="review">
384
384
  <ref name="RequiredId"/>
385
- <attribute name="reviewer">
386
- <a:documentation>The party who has offered the comment</a:documentation>
387
- </attribute>
388
- <optional>
389
- <attribute name="type">
390
- <a:documentation>The type of reviewer comment</a:documentation>
391
- </attribute>
392
- </optional>
393
- <optional>
394
- <attribute name="date">
395
- <a:documentation>The date when the comment was made</a:documentation>
396
- <data type="dateTime"/>
397
- </attribute>
398
- </optional>
399
- <optional>
400
- <attribute name="from">
401
- <a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
402
- If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
403
- <data type="IDREF"/>
404
- </attribute>
405
- </optional>
406
- <optional>
407
- <attribute name="to">
408
- <a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
409
- <data type="IDREF"/>
410
- </attribute>
411
- </optional>
385
+ <ref name="ReviewAttributes"/>
412
386
  <oneOrMore>
413
387
  <ref name="paragraph">
414
388
  <a:documentation>Reviewer comments content</a:documentation>
@@ -416,6 +390,35 @@ If not provided, the comment applies in the vicinity of the place it has been in
416
390
  </oneOrMore>
417
391
  </element>
418
392
  </define>
393
+ <define name="ReviewAttributes">
394
+ <attribute name="reviewer">
395
+ <a:documentation>The party who has offered the comment</a:documentation>
396
+ </attribute>
397
+ <optional>
398
+ <attribute name="type">
399
+ <a:documentation>The type of reviewer comment</a:documentation>
400
+ </attribute>
401
+ </optional>
402
+ <optional>
403
+ <attribute name="date">
404
+ <a:documentation>The date when the comment was made</a:documentation>
405
+ <data type="dateTime"/>
406
+ </attribute>
407
+ </optional>
408
+ <optional>
409
+ <attribute name="from">
410
+ <a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
411
+ If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
412
+ <data type="IDREF"/>
413
+ </attribute>
414
+ </optional>
415
+ <optional>
416
+ <attribute name="to">
417
+ <a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
418
+ <data type="IDREF"/>
419
+ </attribute>
420
+ </optional>
421
+ </define>
419
422
  <define name="NumberingAttributes">
420
423
  <optional>
421
424
  <attribute name="unnumbered">
@@ -857,6 +860,7 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
857
860
  <define name="tr">
858
861
  <a:documentation>Sequence of cells to be displayed as a row in a table</a:documentation>
859
862
  <element name="tr">
863
+ <ref name="TrAttributes"/>
860
864
  <oneOrMore>
861
865
  <choice>
862
866
  <ref name="td">
@@ -869,6 +873,9 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
869
873
  </oneOrMore>
870
874
  </element>
871
875
  </define>
876
+ <define name="TrAttributes">
877
+ <empty/>
878
+ </define>
872
879
  <define name="tr-no-id">
873
880
  <a:documentation>Sequence of cells to be displayed as a row in a table: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
874
881
  <element name="tr">
@@ -17,7 +17,7 @@
17
17
  these elements; we just want one namespace for any child grammars
18
18
  of this.
19
19
  -->
20
- <!-- VERSION v2.0.0 -->
20
+ <!-- VERSION v2.0.2 -->
21
21
  <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
22
22
  <include href="reqt.rng"/>
23
23
  <include href="basicdoc.rng">
@@ -423,6 +423,21 @@ normative or informative references, some split references into sections organiz
423
423
  </oneOrMore>
424
424
  </choice>
425
425
  </define>
426
+ <define name="TdAttributes" combine="interleave">
427
+ <attribute name="style">
428
+ <a:documentation>CSS style: only background-color supported</a:documentation>
429
+ </attribute>
430
+ </define>
431
+ <define name="ThAttributes" combine="interleave">
432
+ <attribute name="style">
433
+ <a:documentation>CSS style: only background-color supported</a:documentation>
434
+ </attribute>
435
+ </define>
436
+ <define name="TrAttributes">
437
+ <attribute name="style">
438
+ <a:documentation>CSS style: only background-color supported</a:documentation>
439
+ </attribute>
440
+ </define>
426
441
  <define name="table-note">
427
442
  <element name="note">
428
443
  <ref name="OptionalId"/>
@@ -1272,6 +1287,11 @@ numbers</a:documentation>
1272
1287
  <a:documentation>Colophon or postface material</a:documentation>
1273
1288
  </ref>
1274
1289
  </optional>
1290
+ <optional>
1291
+ <ref name="review-container">
1292
+ <a:documentation>Annotations to the document</a:documentation>
1293
+ </ref>
1294
+ </optional>
1275
1295
  </element>
1276
1296
  </define>
1277
1297
  <define name="misccontainer">
@@ -1282,6 +1302,13 @@ numbers</a:documentation>
1282
1302
  </oneOrMore>
1283
1303
  </element>
1284
1304
  </define>
1305
+ <define name="review-container">
1306
+ <element name="review-container">
1307
+ <oneOrMore>
1308
+ <ref name="review"/>
1309
+ </oneOrMore>
1310
+ </element>
1311
+ </define>
1285
1312
  <define name="preface">
1286
1313
  <element name="preface">
1287
1314
  <oneOrMore>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Ogc
3
- VERSION = "2.7.2".freeze
3
+ VERSION = "2.7.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-ogc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.2
4
+ version: 2.7.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: iso-639