metanorma-ogc 2.5.1 → 2.5.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -2152,6 +2152,10 @@
2152
2152
 
2153
2153
  </xsl:attribute-set>
2154
2154
 
2155
+ <xsl:template name="refine_termexample-style">
2156
+
2157
+ </xsl:template>
2158
+
2155
2159
  <xsl:attribute-set name="example-style">
2156
2160
 
2157
2161
  <xsl:attribute name="margin-top">10pt</xsl:attribute>
@@ -3331,6 +3335,36 @@
3331
3335
  </xsl:for-each>
3332
3336
  </xsl:template>
3333
3337
 
3338
+ <xsl:template name="processMainSectionsDefault_flatxml">
3339
+ <xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true']">
3340
+ <xsl:sort select="@displayorder" data-type="number"/>
3341
+ <xsl:variable name="flatxml">
3342
+ <xsl:apply-templates select="." mode="flatxml"/>
3343
+ </xsl:variable>
3344
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3345
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3346
+
3347
+ </xsl:for-each>
3348
+
3349
+ <xsl:for-each select="/*/*[local-name()='annex']">
3350
+ <xsl:sort select="@displayorder" data-type="number"/>
3351
+ <xsl:variable name="flatxml">
3352
+ <xsl:apply-templates select="." mode="flatxml"/>
3353
+ </xsl:variable>
3354
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3355
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3356
+ </xsl:for-each>
3357
+
3358
+ <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
3359
+ <xsl:sort select="@displayorder" data-type="number"/>
3360
+ <xsl:variable name="flatxml">
3361
+ <xsl:apply-templates select="." mode="flatxml"/>
3362
+ </xsl:variable>
3363
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3364
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3365
+ </xsl:for-each>
3366
+ </xsl:template>
3367
+
3334
3368
  <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
3335
3369
  <xsl:variable name="tag_fo_inline_keep-together_within-line_open">###fo:inline keep-together_within-line###</xsl:variable>
3336
3370
  <xsl:variable name="tag_fo_inline_keep-together_within-line_close">###/fo:inline keep-together_within-line###</xsl:variable>
@@ -5437,13 +5471,13 @@
5437
5471
  <tr>
5438
5472
  <td>
5439
5473
  <xsl:attribute name="id">
5440
- <xsl:value-of select="concat($id,'_',$row_number,'_1')"/>
5474
+ <xsl:value-of select="concat($id,'@',$row_number,'_1')"/>
5441
5475
  </xsl:attribute>
5442
5476
  <xsl:apply-templates/>
5443
5477
  </td>
5444
5478
  <td>
5445
5479
  <xsl:attribute name="id">
5446
- <xsl:value-of select="concat($id,'_',$row_number,'_2')"/>
5480
+ <xsl:value-of select="concat($id,'@',$row_number,'_2')"/>
5447
5481
  </xsl:attribute>
5448
5482
 
5449
5483
  <xsl:apply-templates select="following-sibling::*[local-name()='dd'][1]">
@@ -6064,6 +6098,10 @@
6064
6098
  <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6065
6099
  </xsl:template>
6066
6100
 
6101
+ <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
6102
+ <xsl:value-of select="."/>
6103
+ </xsl:template>
6104
+
6067
6105
  <!-- ========================= -->
6068
6106
  <!-- END Rich text formatting -->
6069
6107
  <!-- ========================= -->
@@ -6694,7 +6732,7 @@
6694
6732
  </xsl:choose>
6695
6733
  </xsl:variable>
6696
6734
  <xsl:attribute name="id">
6697
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_',$divide)"/>
6735
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_',$divide)"/>
6698
6736
  </xsl:attribute>
6699
6737
 
6700
6738
  <xsl:for-each select="*[local-name() = 'p']">
@@ -6702,7 +6740,7 @@
6702
6740
  <xsl:copy-of select="@*"/>
6703
6741
  <xsl:variable name="p_num" select="count(preceding-sibling::*[local-name() = 'p']) + 1"/>
6704
6742
  <xsl:attribute name="id">
6705
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6743
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6706
6744
  </xsl:attribute>
6707
6745
 
6708
6746
  <!-- <xsl:copy-of select="node()" /> -->
@@ -6766,7 +6804,7 @@
6766
6804
  <xsl:variable name="num" select="count(preceding-sibling::word) + 1"/>
6767
6805
  <xsl:copy>
6768
6806
  <xsl:attribute name="id">
6769
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6807
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6770
6808
  </xsl:attribute>
6771
6809
  <xsl:copy-of select="node()"/>
6772
6810
  </xsl:copy>
@@ -9626,7 +9664,7 @@
9626
9664
  <!-- ====== -->
9627
9665
  <xsl:template match="*[local-name() = 'termexample']">
9628
9666
  <fo:block id="{@id}" xsl:use-attribute-sets="termexample-style">
9629
-
9667
+ <xsl:call-template name="refine_termexample-style"/>
9630
9668
  <xsl:call-template name="setBlockSpanAll"/>
9631
9669
 
9632
9670
  <xsl:apply-templates select="*[local-name()='name']"/>
@@ -2152,6 +2152,10 @@
2152
2152
 
2153
2153
  </xsl:attribute-set>
2154
2154
 
2155
+ <xsl:template name="refine_termexample-style">
2156
+
2157
+ </xsl:template>
2158
+
2155
2159
  <xsl:attribute-set name="example-style">
2156
2160
 
2157
2161
  <xsl:attribute name="margin-top">10pt</xsl:attribute>
@@ -3331,6 +3335,36 @@
3331
3335
  </xsl:for-each>
3332
3336
  </xsl:template>
3333
3337
 
3338
+ <xsl:template name="processMainSectionsDefault_flatxml">
3339
+ <xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true']">
3340
+ <xsl:sort select="@displayorder" data-type="number"/>
3341
+ <xsl:variable name="flatxml">
3342
+ <xsl:apply-templates select="." mode="flatxml"/>
3343
+ </xsl:variable>
3344
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3345
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3346
+
3347
+ </xsl:for-each>
3348
+
3349
+ <xsl:for-each select="/*/*[local-name()='annex']">
3350
+ <xsl:sort select="@displayorder" data-type="number"/>
3351
+ <xsl:variable name="flatxml">
3352
+ <xsl:apply-templates select="." mode="flatxml"/>
3353
+ </xsl:variable>
3354
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3355
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3356
+ </xsl:for-each>
3357
+
3358
+ <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
3359
+ <xsl:sort select="@displayorder" data-type="number"/>
3360
+ <xsl:variable name="flatxml">
3361
+ <xsl:apply-templates select="." mode="flatxml"/>
3362
+ </xsl:variable>
3363
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3364
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3365
+ </xsl:for-each>
3366
+ </xsl:template>
3367
+
3334
3368
  <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
3335
3369
  <xsl:variable name="tag_fo_inline_keep-together_within-line_open">###fo:inline keep-together_within-line###</xsl:variable>
3336
3370
  <xsl:variable name="tag_fo_inline_keep-together_within-line_close">###/fo:inline keep-together_within-line###</xsl:variable>
@@ -5437,13 +5471,13 @@
5437
5471
  <tr>
5438
5472
  <td>
5439
5473
  <xsl:attribute name="id">
5440
- <xsl:value-of select="concat($id,'_',$row_number,'_1')"/>
5474
+ <xsl:value-of select="concat($id,'@',$row_number,'_1')"/>
5441
5475
  </xsl:attribute>
5442
5476
  <xsl:apply-templates/>
5443
5477
  </td>
5444
5478
  <td>
5445
5479
  <xsl:attribute name="id">
5446
- <xsl:value-of select="concat($id,'_',$row_number,'_2')"/>
5480
+ <xsl:value-of select="concat($id,'@',$row_number,'_2')"/>
5447
5481
  </xsl:attribute>
5448
5482
 
5449
5483
  <xsl:apply-templates select="following-sibling::*[local-name()='dd'][1]">
@@ -6064,6 +6098,10 @@
6064
6098
  <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6065
6099
  </xsl:template>
6066
6100
 
6101
+ <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
6102
+ <xsl:value-of select="."/>
6103
+ </xsl:template>
6104
+
6067
6105
  <!-- ========================= -->
6068
6106
  <!-- END Rich text formatting -->
6069
6107
  <!-- ========================= -->
@@ -6694,7 +6732,7 @@
6694
6732
  </xsl:choose>
6695
6733
  </xsl:variable>
6696
6734
  <xsl:attribute name="id">
6697
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_',$divide)"/>
6735
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_',$divide)"/>
6698
6736
  </xsl:attribute>
6699
6737
 
6700
6738
  <xsl:for-each select="*[local-name() = 'p']">
@@ -6702,7 +6740,7 @@
6702
6740
  <xsl:copy-of select="@*"/>
6703
6741
  <xsl:variable name="p_num" select="count(preceding-sibling::*[local-name() = 'p']) + 1"/>
6704
6742
  <xsl:attribute name="id">
6705
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6743
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6706
6744
  </xsl:attribute>
6707
6745
 
6708
6746
  <!-- <xsl:copy-of select="node()" /> -->
@@ -6766,7 +6804,7 @@
6766
6804
  <xsl:variable name="num" select="count(preceding-sibling::word) + 1"/>
6767
6805
  <xsl:copy>
6768
6806
  <xsl:attribute name="id">
6769
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6807
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6770
6808
  </xsl:attribute>
6771
6809
  <xsl:copy-of select="node()"/>
6772
6810
  </xsl:copy>
@@ -9626,7 +9664,7 @@
9626
9664
  <!-- ====== -->
9627
9665
  <xsl:template match="*[local-name() = 'termexample']">
9628
9666
  <fo:block id="{@id}" xsl:use-attribute-sets="termexample-style">
9629
-
9667
+ <xsl:call-template name="refine_termexample-style"/>
9630
9668
  <xsl:call-template name="setBlockSpanAll"/>
9631
9669
 
9632
9670
  <xsl:apply-templates select="*[local-name()='name']"/>
@@ -2152,6 +2152,10 @@
2152
2152
 
2153
2153
  </xsl:attribute-set>
2154
2154
 
2155
+ <xsl:template name="refine_termexample-style">
2156
+
2157
+ </xsl:template>
2158
+
2155
2159
  <xsl:attribute-set name="example-style">
2156
2160
 
2157
2161
  <xsl:attribute name="margin-top">10pt</xsl:attribute>
@@ -3331,6 +3335,36 @@
3331
3335
  </xsl:for-each>
3332
3336
  </xsl:template>
3333
3337
 
3338
+ <xsl:template name="processMainSectionsDefault_flatxml">
3339
+ <xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true']">
3340
+ <xsl:sort select="@displayorder" data-type="number"/>
3341
+ <xsl:variable name="flatxml">
3342
+ <xsl:apply-templates select="." mode="flatxml"/>
3343
+ </xsl:variable>
3344
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3345
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3346
+
3347
+ </xsl:for-each>
3348
+
3349
+ <xsl:for-each select="/*/*[local-name()='annex']">
3350
+ <xsl:sort select="@displayorder" data-type="number"/>
3351
+ <xsl:variable name="flatxml">
3352
+ <xsl:apply-templates select="." mode="flatxml"/>
3353
+ </xsl:variable>
3354
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3355
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3356
+ </xsl:for-each>
3357
+
3358
+ <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
3359
+ <xsl:sort select="@displayorder" data-type="number"/>
3360
+ <xsl:variable name="flatxml">
3361
+ <xsl:apply-templates select="." mode="flatxml"/>
3362
+ </xsl:variable>
3363
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3364
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3365
+ </xsl:for-each>
3366
+ </xsl:template>
3367
+
3334
3368
  <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
3335
3369
  <xsl:variable name="tag_fo_inline_keep-together_within-line_open">###fo:inline keep-together_within-line###</xsl:variable>
3336
3370
  <xsl:variable name="tag_fo_inline_keep-together_within-line_close">###/fo:inline keep-together_within-line###</xsl:variable>
@@ -5437,13 +5471,13 @@
5437
5471
  <tr>
5438
5472
  <td>
5439
5473
  <xsl:attribute name="id">
5440
- <xsl:value-of select="concat($id,'_',$row_number,'_1')"/>
5474
+ <xsl:value-of select="concat($id,'@',$row_number,'_1')"/>
5441
5475
  </xsl:attribute>
5442
5476
  <xsl:apply-templates/>
5443
5477
  </td>
5444
5478
  <td>
5445
5479
  <xsl:attribute name="id">
5446
- <xsl:value-of select="concat($id,'_',$row_number,'_2')"/>
5480
+ <xsl:value-of select="concat($id,'@',$row_number,'_2')"/>
5447
5481
  </xsl:attribute>
5448
5482
 
5449
5483
  <xsl:apply-templates select="following-sibling::*[local-name()='dd'][1]">
@@ -6064,6 +6098,10 @@
6064
6098
  <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6065
6099
  </xsl:template>
6066
6100
 
6101
+ <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
6102
+ <xsl:value-of select="."/>
6103
+ </xsl:template>
6104
+
6067
6105
  <!-- ========================= -->
6068
6106
  <!-- END Rich text formatting -->
6069
6107
  <!-- ========================= -->
@@ -6694,7 +6732,7 @@
6694
6732
  </xsl:choose>
6695
6733
  </xsl:variable>
6696
6734
  <xsl:attribute name="id">
6697
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_',$divide)"/>
6735
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_',$divide)"/>
6698
6736
  </xsl:attribute>
6699
6737
 
6700
6738
  <xsl:for-each select="*[local-name() = 'p']">
@@ -6702,7 +6740,7 @@
6702
6740
  <xsl:copy-of select="@*"/>
6703
6741
  <xsl:variable name="p_num" select="count(preceding-sibling::*[local-name() = 'p']) + 1"/>
6704
6742
  <xsl:attribute name="id">
6705
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6743
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6706
6744
  </xsl:attribute>
6707
6745
 
6708
6746
  <!-- <xsl:copy-of select="node()" /> -->
@@ -6766,7 +6804,7 @@
6766
6804
  <xsl:variable name="num" select="count(preceding-sibling::word) + 1"/>
6767
6805
  <xsl:copy>
6768
6806
  <xsl:attribute name="id">
6769
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6807
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6770
6808
  </xsl:attribute>
6771
6809
  <xsl:copy-of select="node()"/>
6772
6810
  </xsl:copy>
@@ -9626,7 +9664,7 @@
9626
9664
  <!-- ====== -->
9627
9665
  <xsl:template match="*[local-name() = 'termexample']">
9628
9666
  <fo:block id="{@id}" xsl:use-attribute-sets="termexample-style">
9629
-
9667
+ <xsl:call-template name="refine_termexample-style"/>
9630
9668
  <xsl:call-template name="setBlockSpanAll"/>
9631
9669
 
9632
9670
  <xsl:apply-templates select="*[local-name()='name']"/>
@@ -2152,6 +2152,10 @@
2152
2152
 
2153
2153
  </xsl:attribute-set>
2154
2154
 
2155
+ <xsl:template name="refine_termexample-style">
2156
+
2157
+ </xsl:template>
2158
+
2155
2159
  <xsl:attribute-set name="example-style">
2156
2160
 
2157
2161
  <xsl:attribute name="margin-top">10pt</xsl:attribute>
@@ -3331,6 +3335,36 @@
3331
3335
  </xsl:for-each>
3332
3336
  </xsl:template>
3333
3337
 
3338
+ <xsl:template name="processMainSectionsDefault_flatxml">
3339
+ <xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true']">
3340
+ <xsl:sort select="@displayorder" data-type="number"/>
3341
+ <xsl:variable name="flatxml">
3342
+ <xsl:apply-templates select="." mode="flatxml"/>
3343
+ </xsl:variable>
3344
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3345
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3346
+
3347
+ </xsl:for-each>
3348
+
3349
+ <xsl:for-each select="/*/*[local-name()='annex']">
3350
+ <xsl:sort select="@displayorder" data-type="number"/>
3351
+ <xsl:variable name="flatxml">
3352
+ <xsl:apply-templates select="." mode="flatxml"/>
3353
+ </xsl:variable>
3354
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3355
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3356
+ </xsl:for-each>
3357
+
3358
+ <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
3359
+ <xsl:sort select="@displayorder" data-type="number"/>
3360
+ <xsl:variable name="flatxml">
3361
+ <xsl:apply-templates select="." mode="flatxml"/>
3362
+ </xsl:variable>
3363
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3364
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3365
+ </xsl:for-each>
3366
+ </xsl:template>
3367
+
3334
3368
  <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
3335
3369
  <xsl:variable name="tag_fo_inline_keep-together_within-line_open">###fo:inline keep-together_within-line###</xsl:variable>
3336
3370
  <xsl:variable name="tag_fo_inline_keep-together_within-line_close">###/fo:inline keep-together_within-line###</xsl:variable>
@@ -5437,13 +5471,13 @@
5437
5471
  <tr>
5438
5472
  <td>
5439
5473
  <xsl:attribute name="id">
5440
- <xsl:value-of select="concat($id,'_',$row_number,'_1')"/>
5474
+ <xsl:value-of select="concat($id,'@',$row_number,'_1')"/>
5441
5475
  </xsl:attribute>
5442
5476
  <xsl:apply-templates/>
5443
5477
  </td>
5444
5478
  <td>
5445
5479
  <xsl:attribute name="id">
5446
- <xsl:value-of select="concat($id,'_',$row_number,'_2')"/>
5480
+ <xsl:value-of select="concat($id,'@',$row_number,'_2')"/>
5447
5481
  </xsl:attribute>
5448
5482
 
5449
5483
  <xsl:apply-templates select="following-sibling::*[local-name()='dd'][1]">
@@ -6064,6 +6098,10 @@
6064
6098
  <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6065
6099
  </xsl:template>
6066
6100
 
6101
+ <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
6102
+ <xsl:value-of select="."/>
6103
+ </xsl:template>
6104
+
6067
6105
  <!-- ========================= -->
6068
6106
  <!-- END Rich text formatting -->
6069
6107
  <!-- ========================= -->
@@ -6694,7 +6732,7 @@
6694
6732
  </xsl:choose>
6695
6733
  </xsl:variable>
6696
6734
  <xsl:attribute name="id">
6697
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_',$divide)"/>
6735
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_',$divide)"/>
6698
6736
  </xsl:attribute>
6699
6737
 
6700
6738
  <xsl:for-each select="*[local-name() = 'p']">
@@ -6702,7 +6740,7 @@
6702
6740
  <xsl:copy-of select="@*"/>
6703
6741
  <xsl:variable name="p_num" select="count(preceding-sibling::*[local-name() = 'p']) + 1"/>
6704
6742
  <xsl:attribute name="id">
6705
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6743
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6706
6744
  </xsl:attribute>
6707
6745
 
6708
6746
  <!-- <xsl:copy-of select="node()" /> -->
@@ -6766,7 +6804,7 @@
6766
6804
  <xsl:variable name="num" select="count(preceding-sibling::word) + 1"/>
6767
6805
  <xsl:copy>
6768
6806
  <xsl:attribute name="id">
6769
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6807
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6770
6808
  </xsl:attribute>
6771
6809
  <xsl:copy-of select="node()"/>
6772
6810
  </xsl:copy>
@@ -9626,7 +9664,7 @@
9626
9664
  <!-- ====== -->
9627
9665
  <xsl:template match="*[local-name() = 'termexample']">
9628
9666
  <fo:block id="{@id}" xsl:use-attribute-sets="termexample-style">
9629
-
9667
+ <xsl:call-template name="refine_termexample-style"/>
9630
9668
  <xsl:call-template name="setBlockSpanAll"/>
9631
9669
 
9632
9670
  <xsl:apply-templates select="*[local-name()='name']"/>
@@ -2152,6 +2152,10 @@
2152
2152
 
2153
2153
  </xsl:attribute-set>
2154
2154
 
2155
+ <xsl:template name="refine_termexample-style">
2156
+
2157
+ </xsl:template>
2158
+
2155
2159
  <xsl:attribute-set name="example-style">
2156
2160
 
2157
2161
  <xsl:attribute name="margin-top">10pt</xsl:attribute>
@@ -3331,6 +3335,36 @@
3331
3335
  </xsl:for-each>
3332
3336
  </xsl:template>
3333
3337
 
3338
+ <xsl:template name="processMainSectionsDefault_flatxml">
3339
+ <xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true']">
3340
+ <xsl:sort select="@displayorder" data-type="number"/>
3341
+ <xsl:variable name="flatxml">
3342
+ <xsl:apply-templates select="." mode="flatxml"/>
3343
+ </xsl:variable>
3344
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3345
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3346
+
3347
+ </xsl:for-each>
3348
+
3349
+ <xsl:for-each select="/*/*[local-name()='annex']">
3350
+ <xsl:sort select="@displayorder" data-type="number"/>
3351
+ <xsl:variable name="flatxml">
3352
+ <xsl:apply-templates select="." mode="flatxml"/>
3353
+ </xsl:variable>
3354
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3355
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3356
+ </xsl:for-each>
3357
+
3358
+ <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
3359
+ <xsl:sort select="@displayorder" data-type="number"/>
3360
+ <xsl:variable name="flatxml">
3361
+ <xsl:apply-templates select="." mode="flatxml"/>
3362
+ </xsl:variable>
3363
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3364
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3365
+ </xsl:for-each>
3366
+ </xsl:template>
3367
+
3334
3368
  <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
3335
3369
  <xsl:variable name="tag_fo_inline_keep-together_within-line_open">###fo:inline keep-together_within-line###</xsl:variable>
3336
3370
  <xsl:variable name="tag_fo_inline_keep-together_within-line_close">###/fo:inline keep-together_within-line###</xsl:variable>
@@ -5437,13 +5471,13 @@
5437
5471
  <tr>
5438
5472
  <td>
5439
5473
  <xsl:attribute name="id">
5440
- <xsl:value-of select="concat($id,'_',$row_number,'_1')"/>
5474
+ <xsl:value-of select="concat($id,'@',$row_number,'_1')"/>
5441
5475
  </xsl:attribute>
5442
5476
  <xsl:apply-templates/>
5443
5477
  </td>
5444
5478
  <td>
5445
5479
  <xsl:attribute name="id">
5446
- <xsl:value-of select="concat($id,'_',$row_number,'_2')"/>
5480
+ <xsl:value-of select="concat($id,'@',$row_number,'_2')"/>
5447
5481
  </xsl:attribute>
5448
5482
 
5449
5483
  <xsl:apply-templates select="following-sibling::*[local-name()='dd'][1]">
@@ -6064,6 +6098,10 @@
6064
6098
  <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6065
6099
  </xsl:template>
6066
6100
 
6101
+ <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
6102
+ <xsl:value-of select="."/>
6103
+ </xsl:template>
6104
+
6067
6105
  <!-- ========================= -->
6068
6106
  <!-- END Rich text formatting -->
6069
6107
  <!-- ========================= -->
@@ -6694,7 +6732,7 @@
6694
6732
  </xsl:choose>
6695
6733
  </xsl:variable>
6696
6734
  <xsl:attribute name="id">
6697
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_',$divide)"/>
6735
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_',$divide)"/>
6698
6736
  </xsl:attribute>
6699
6737
 
6700
6738
  <xsl:for-each select="*[local-name() = 'p']">
@@ -6702,7 +6740,7 @@
6702
6740
  <xsl:copy-of select="@*"/>
6703
6741
  <xsl:variable name="p_num" select="count(preceding-sibling::*[local-name() = 'p']) + 1"/>
6704
6742
  <xsl:attribute name="id">
6705
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6743
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6706
6744
  </xsl:attribute>
6707
6745
 
6708
6746
  <!-- <xsl:copy-of select="node()" /> -->
@@ -6766,7 +6804,7 @@
6766
6804
  <xsl:variable name="num" select="count(preceding-sibling::word) + 1"/>
6767
6805
  <xsl:copy>
6768
6806
  <xsl:attribute name="id">
6769
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6807
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6770
6808
  </xsl:attribute>
6771
6809
  <xsl:copy-of select="node()"/>
6772
6810
  </xsl:copy>
@@ -9626,7 +9664,7 @@
9626
9664
  <!-- ====== -->
9627
9665
  <xsl:template match="*[local-name() = 'termexample']">
9628
9666
  <fo:block id="{@id}" xsl:use-attribute-sets="termexample-style">
9629
-
9667
+ <xsl:call-template name="refine_termexample-style"/>
9630
9668
  <xsl:call-template name="setBlockSpanAll"/>
9631
9669
 
9632
9670
  <xsl:apply-templates select="*[local-name()='name']"/>
@@ -2152,6 +2152,10 @@
2152
2152
 
2153
2153
  </xsl:attribute-set>
2154
2154
 
2155
+ <xsl:template name="refine_termexample-style">
2156
+
2157
+ </xsl:template>
2158
+
2155
2159
  <xsl:attribute-set name="example-style">
2156
2160
 
2157
2161
  <xsl:attribute name="margin-top">10pt</xsl:attribute>
@@ -3331,6 +3335,36 @@
3331
3335
  </xsl:for-each>
3332
3336
  </xsl:template>
3333
3337
 
3338
+ <xsl:template name="processMainSectionsDefault_flatxml">
3339
+ <xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true']">
3340
+ <xsl:sort select="@displayorder" data-type="number"/>
3341
+ <xsl:variable name="flatxml">
3342
+ <xsl:apply-templates select="." mode="flatxml"/>
3343
+ </xsl:variable>
3344
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3345
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3346
+
3347
+ </xsl:for-each>
3348
+
3349
+ <xsl:for-each select="/*/*[local-name()='annex']">
3350
+ <xsl:sort select="@displayorder" data-type="number"/>
3351
+ <xsl:variable name="flatxml">
3352
+ <xsl:apply-templates select="." mode="flatxml"/>
3353
+ </xsl:variable>
3354
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3355
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3356
+ </xsl:for-each>
3357
+
3358
+ <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
3359
+ <xsl:sort select="@displayorder" data-type="number"/>
3360
+ <xsl:variable name="flatxml">
3361
+ <xsl:apply-templates select="." mode="flatxml"/>
3362
+ </xsl:variable>
3363
+ <!-- debug_flatxml='<xsl:copy-of select="$flatxml"/>' -->
3364
+ <xsl:apply-templates select="xalan:nodeset($flatxml)/*"/>
3365
+ </xsl:for-each>
3366
+ </xsl:template>
3367
+
3334
3368
  <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
3335
3369
  <xsl:variable name="tag_fo_inline_keep-together_within-line_open">###fo:inline keep-together_within-line###</xsl:variable>
3336
3370
  <xsl:variable name="tag_fo_inline_keep-together_within-line_close">###/fo:inline keep-together_within-line###</xsl:variable>
@@ -5437,13 +5471,13 @@
5437
5471
  <tr>
5438
5472
  <td>
5439
5473
  <xsl:attribute name="id">
5440
- <xsl:value-of select="concat($id,'_',$row_number,'_1')"/>
5474
+ <xsl:value-of select="concat($id,'@',$row_number,'_1')"/>
5441
5475
  </xsl:attribute>
5442
5476
  <xsl:apply-templates/>
5443
5477
  </td>
5444
5478
  <td>
5445
5479
  <xsl:attribute name="id">
5446
- <xsl:value-of select="concat($id,'_',$row_number,'_2')"/>
5480
+ <xsl:value-of select="concat($id,'@',$row_number,'_2')"/>
5447
5481
  </xsl:attribute>
5448
5482
 
5449
5483
  <xsl:apply-templates select="following-sibling::*[local-name()='dd'][1]">
@@ -6064,6 +6098,10 @@
6064
6098
  <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
6065
6099
  </xsl:template>
6066
6100
 
6101
+ <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
6102
+ <xsl:value-of select="."/>
6103
+ </xsl:template>
6104
+
6067
6105
  <!-- ========================= -->
6068
6106
  <!-- END Rich text formatting -->
6069
6107
  <!-- ========================= -->
@@ -6694,7 +6732,7 @@
6694
6732
  </xsl:choose>
6695
6733
  </xsl:variable>
6696
6734
  <xsl:attribute name="id">
6697
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_',$divide)"/>
6735
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_',$divide)"/>
6698
6736
  </xsl:attribute>
6699
6737
 
6700
6738
  <xsl:for-each select="*[local-name() = 'p']">
@@ -6702,7 +6740,7 @@
6702
6740
  <xsl:copy-of select="@*"/>
6703
6741
  <xsl:variable name="p_num" select="count(preceding-sibling::*[local-name() = 'p']) + 1"/>
6704
6742
  <xsl:attribute name="id">
6705
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6743
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_p_',$p_num,'_',$divide)"/>
6706
6744
  </xsl:attribute>
6707
6745
 
6708
6746
  <!-- <xsl:copy-of select="node()" /> -->
@@ -6766,7 +6804,7 @@
6766
6804
  <xsl:variable name="num" select="count(preceding-sibling::word) + 1"/>
6767
6805
  <xsl:copy>
6768
6806
  <xsl:attribute name="id">
6769
- <xsl:value-of select="concat($id,'_',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6807
+ <xsl:value-of select="concat($id,'@',$row_number,'_',$col_number,'_word_',$num,'_',$divide)"/>
6770
6808
  </xsl:attribute>
6771
6809
  <xsl:copy-of select="node()"/>
6772
6810
  </xsl:copy>
@@ -9626,7 +9664,7 @@
9626
9664
  <!-- ====== -->
9627
9665
  <xsl:template match="*[local-name() = 'termexample']">
9628
9666
  <fo:block id="{@id}" xsl:use-attribute-sets="termexample-style">
9629
-
9667
+ <xsl:call-template name="refine_termexample-style"/>
9630
9668
  <xsl:call-template name="setBlockSpanAll"/>
9631
9669
 
9632
9670
  <xsl:apply-templates select="*[local-name()='name']"/>