metanorma-bipm 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/bipm/base_convert.rb +4 -0
- data/lib/isodoc/bipm/bipm.brochure.xsl +158 -89
- data/lib/isodoc/bipm/bipm.guide.xsl +158 -89
- data/lib/isodoc/bipm/bipm.mise-en-pratique.xsl +158 -89
- data/lib/isodoc/bipm/bipm.rapport.xsl +158 -89
- data/lib/isodoc/bipm/html/htmlstyle.css +7 -0
- data/lib/isodoc/bipm/jcgm.standard.xsl +144 -34
- data/lib/isodoc/bipm/presentation_xml_convert.rb +66 -20
- data/lib/metanorma/bipm/basicdoc.rng +34 -27
- data/lib/metanorma/bipm/isodoc.rng +28 -1
- data/lib/metanorma/bipm/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: 205fd9f76c51e56ca1a9ad226a3826c6d1d53223e67f2c4eb2328b845c8f6c7f
|
4
|
+
data.tar.gz: 240426d2487d51cdb00864a1d47e73d2265eab2d921aad53ce30f2cb9510de61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ef9e81c0c40b06723046ccbebfc660f7154811a487e365bc1993d8ee350c1c67390b07aa0b595d125fdd2a82db25bb5d51e7644fadbec5960ead34cf829dab2
|
7
|
+
data.tar.gz: 4d456540b3e439e459456151d7053874a6b94dd352cbc9d19bf2370cfddbd824e88b292835a71c2b7a90a1bb04caf10ed463d89c81f3dcf434bf8ef1f00cd85c
|
@@ -617,6 +617,8 @@
|
|
617
617
|
</xsl:element>
|
618
618
|
</xsl:template>
|
619
619
|
|
620
|
+
<xsl:template match="*[local-name() = 'clause']/*[local-name() = 'fmt-footnote-container']" priority="3" mode="update_xml_pres"/>
|
621
|
+
|
620
622
|
<!-- ================================= -->
|
621
623
|
<!-- Flattening xml for fit notes at page sides (margins) -->
|
622
624
|
<!-- ================================= -->
|
@@ -714,6 +716,8 @@
|
|
714
716
|
<xsl:if test="local-name() = 'title' and @depth = 3 and ../bipm:clause/bipm:title/@depth = 4 and count(following-sibling::*[1][local-name() = 'note']) > 0">
|
715
717
|
<!-- then move here footnotes from clause level 4 -->
|
716
718
|
<xsl:for-each select="../bipm:clause//bipm:fn[ancestor::bipm:quote or not(ancestor::bipm:table)]">
|
719
|
+
<!-- <debug><xsl:for-each select="ancestor::*"><xsl:value-of select="local-name()"/>@<xsl:value-of select="@id"/><xsl:text>/</xsl:text></xsl:for-each>
|
720
|
+
</debug> -->
|
717
721
|
<xsl:call-template name="fn_to_note_side"/>
|
718
722
|
</xsl:for-each>
|
719
723
|
</xsl:if>
|
@@ -798,51 +802,17 @@
|
|
798
802
|
<xsl:template match="bipm:fn" mode="fn_to_xref">
|
799
803
|
<xsl:element name="xref" namespace="https://www.metanorma.org/ns/standoc">
|
800
804
|
|
801
|
-
<xsl:
|
802
|
-
<xsl:call-template name="fn_reference_to_xref_target"/>
|
803
|
-
</xsl:attribute>
|
804
|
-
<!-- <xsl:copy-of select="@target"/> -->
|
805
|
-
|
806
|
-
<xsl:variable name="curr_clause_id" select="normalize-space(ancestor::bipm:clause[1]/@id)"/>
|
807
|
-
<xsl:variable name="curr_annex_id" select="normalize-space(ancestor::bipm:annex[1]/@id)"/>
|
808
|
-
|
809
|
-
<xsl:variable name="number">
|
810
|
-
<xsl:choose>
|
811
|
-
<xsl:when test="$curr_clause_id != ''">
|
812
|
-
<xsl:number count="bipm:fn[ancestor::bipm:clause[1]/@id = $curr_clause_id][ancestor::bipm:quote or not(ancestor::bipm:table)]" level="any"/>
|
813
|
-
</xsl:when>
|
814
|
-
<xsl:otherwise>
|
815
|
-
<xsl:number count="bipm:fn[ancestor::bipm:annex[1]/@id = $curr_annex_id]"/>
|
816
|
-
</xsl:otherwise>
|
817
|
-
</xsl:choose>
|
818
|
-
</xsl:variable>
|
805
|
+
<xsl:copy-of select="@target"/>
|
819
806
|
|
820
807
|
<xsl:element name="sup_fn" namespace="https://www.metanorma.org/ns/standoc">
|
821
|
-
<xsl:value-of select="concat('(',$number,')')"/>
|
822
|
-
<!-- <xsl:value-of select="concat('(',normalize-space(./*[local-name() = 'fmt-fn-label']),')')"/> -->
|
808
|
+
<!-- <xsl:value-of select="concat('(',$number,')')"/> -->
|
823
809
|
<!-- https://github.com/metanorma/isodoc/issues/658#issuecomment-2726450824 -->
|
824
|
-
|
810
|
+
<xsl:apply-templates select="*[local-name() = 'fmt-fn-label']/node()" mode="flatxml"/>
|
825
811
|
</xsl:element>
|
826
812
|
|
827
813
|
</xsl:element>
|
828
814
|
</xsl:template>
|
829
815
|
|
830
|
-
<!-- <xsl:template match="*[local-name() = 'fmt-fn-label']//*[local-name() = 'sup']" mode="flatxml">
|
831
|
-
<xsl:element name="sup_fn" namespace="https://www.metanorma.org/ns/standoc">
|
832
|
-
<xsl:apply-templates mode="flatxml"/>
|
833
|
-
</xsl:element>
|
834
|
-
</xsl:template> -->
|
835
|
-
|
836
|
-
<xsl:template name="fn_reference_to_xref_target">
|
837
|
-
<xsl:variable name="lang" select="ancestor::bipm:metanorma/*[local-name()='bibdata']//*[local-name()='language'][@current = 'true']"/>
|
838
|
-
<xsl:variable name="gen_id" select="generate-id()"/>
|
839
|
-
<xsl:variable name="curr_clause_id" select="ancestor::bipm:clause[1]/@id"/>
|
840
|
-
<xsl:variable name="number">
|
841
|
-
<xsl:number count="bipm:fn[ancestor::bipm:clause[1]/@id = $curr_clause_id][ancestor::bipm:quote or not(ancestor::bipm:table)]" level="any"/>
|
842
|
-
</xsl:variable>
|
843
|
-
<xsl:value-of select="concat($lang, '_footnote_', @reference, '_', $number, '_', $gen_id)"/>
|
844
|
-
</xsl:template>
|
845
|
-
|
846
816
|
<xsl:template match="bipm:preface/bipm:clause[not(@type = 'toc')][position() > 1]" mode="flatxml">
|
847
817
|
<xsl:copy-of select="."/>
|
848
818
|
</xsl:template>
|
@@ -943,30 +913,15 @@
|
|
943
913
|
<xsl:element name="note_side" namespace="https://www.metanorma.org/ns/standoc">
|
944
914
|
|
945
915
|
<xsl:attribute name="id">
|
946
|
-
<xsl:
|
947
|
-
<!-- <xsl:value-of select="@target"/> -->
|
916
|
+
<xsl:value-of select="@target"/>
|
948
917
|
</xsl:attribute>
|
949
918
|
|
950
919
|
<xsl:variable name="curr_id" select="@target"/>
|
951
920
|
|
952
|
-
<xsl:variable name="curr_clause_id" select="normalize-space(ancestor::bipm:clause[1]/@id)"/>
|
953
|
-
<xsl:variable name="curr_annex_id" select="normalize-space(ancestor::bipm:annex[1]/@id)"/>
|
954
|
-
|
955
|
-
<xsl:variable name="number">
|
956
|
-
<xsl:choose>
|
957
|
-
<xsl:when test="$curr_clause_id != ''">
|
958
|
-
<xsl:number count="bipm:fn[ancestor::bipm:clause[1]/@id = $curr_clause_id][ancestor::bipm:quote or not(ancestor::bipm:table)]" level="any"/>
|
959
|
-
</xsl:when>
|
960
|
-
<xsl:otherwise>
|
961
|
-
<xsl:number count="bipm:fn[ancestor::bipm:annex[1]/@id = $curr_annex_id]"/>
|
962
|
-
</xsl:otherwise>
|
963
|
-
</xsl:choose>
|
964
|
-
</xsl:variable>
|
965
|
-
|
966
921
|
<xsl:element name="sup_fn" namespace="https://www.metanorma.org/ns/standoc">
|
967
|
-
<xsl:value-of select="concat('(',$number,')')"/>
|
922
|
+
<!-- <xsl:value-of select="concat('(',$number,')')"/> -->
|
968
923
|
<!-- https://github.com/metanorma/isodoc/issues/658#issuecomment-2726450824 -->
|
969
|
-
|
924
|
+
<xsl:apply-templates select="*[local-name() = 'fmt-fn-label']/node()" mode="flatxml"/>
|
970
925
|
</xsl:element>
|
971
926
|
<xsl:text> </xsl:text>
|
972
927
|
|
@@ -1000,6 +955,10 @@
|
|
1000
955
|
</xsl:if>
|
1001
956
|
</xsl:template>
|
1002
957
|
|
958
|
+
<xsl:template match="*[local-name() = 'fn']/*[local-name() = 'fmt-fn-label']/*[local-name() = 'sup']" priority="5" mode="flatxml">
|
959
|
+
<xsl:apply-templates mode="flatxml"/>
|
960
|
+
</xsl:template>
|
961
|
+
|
1003
962
|
<!-- ================================= -->
|
1004
963
|
<!-- END: Flattening xml for fit notes at page sides (margins) -->
|
1005
964
|
<!-- ================================= -->
|
@@ -7342,6 +7301,8 @@
|
|
7342
7301
|
<xsl:attribute name="min-height">5mm</xsl:attribute>
|
7343
7302
|
</xsl:if>
|
7344
7303
|
|
7304
|
+
<xsl:call-template name="setColors"/>
|
7305
|
+
|
7345
7306
|
</xsl:template> <!-- setTableRowAttributes -->
|
7346
7307
|
<!-- ===================== -->
|
7347
7308
|
<!-- END Table's row processing -->
|
@@ -7393,6 +7354,7 @@
|
|
7393
7354
|
</xsl:attribute>
|
7394
7355
|
</xsl:if>
|
7395
7356
|
<xsl:call-template name="display-align"/>
|
7357
|
+
<xsl:call-template name="setColors"/>
|
7396
7358
|
</xsl:template>
|
7397
7359
|
|
7398
7360
|
<xsl:template name="display-align">
|
@@ -7408,6 +7370,29 @@
|
|
7408
7370
|
</xsl:if>
|
7409
7371
|
</xsl:template>
|
7410
7372
|
|
7373
|
+
<xsl:template name="setColors">
|
7374
|
+
<xsl:variable name="styles__">
|
7375
|
+
<xsl:call-template name="split">
|
7376
|
+
<xsl:with-param name="pText" select="concat(@style,';')"/>
|
7377
|
+
<xsl:with-param name="sep" select="';'"/>
|
7378
|
+
</xsl:call-template>
|
7379
|
+
</xsl:variable>
|
7380
|
+
<xsl:variable name="quot">"</xsl:variable>
|
7381
|
+
<xsl:variable name="styles_">
|
7382
|
+
<xsl:for-each select="xalan:nodeset($styles__)/item">
|
7383
|
+
<xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
|
7384
|
+
<xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
|
7385
|
+
<xsl:if test="$key = 'color' or $key = 'background-color'">
|
7386
|
+
<style name="{$key}"><xsl:value-of select="$value"/></style>
|
7387
|
+
</xsl:if>
|
7388
|
+
</xsl:for-each>
|
7389
|
+
</xsl:variable>
|
7390
|
+
<xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
|
7391
|
+
<xsl:for-each select="$styles/style">
|
7392
|
+
<xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
|
7393
|
+
</xsl:for-each>
|
7394
|
+
</xsl:template>
|
7395
|
+
|
7411
7396
|
<!-- cell in table body, footer -->
|
7412
7397
|
<xsl:template match="*[local-name()='td']" name="td">
|
7413
7398
|
<fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
|
@@ -7419,12 +7404,12 @@
|
|
7419
7404
|
|
7420
7405
|
<xsl:call-template name="refine_table-cell-style"/>
|
7421
7406
|
|
7407
|
+
<xsl:call-template name="setTableCellAttributes"/>
|
7408
|
+
|
7422
7409
|
<xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
|
7423
7410
|
<xsl:attribute name="padding-right">1mm</xsl:attribute>
|
7424
7411
|
</xsl:if>
|
7425
7412
|
|
7426
|
-
<xsl:call-template name="setTableCellAttributes"/>
|
7427
|
-
|
7428
7413
|
<xsl:if test="$isGenerateTableIF = 'true'">
|
7429
7414
|
<xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
|
7430
7415
|
<xsl:attribute name="text-align">left</xsl:attribute>
|
@@ -9225,7 +9210,7 @@
|
|
9225
9210
|
<xsl:choose>
|
9226
9211
|
<xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
|
9227
9212
|
<xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
|
9228
|
-
<fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
|
9213
|
+
<fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
|
9229
9214
|
</xsl:when>
|
9230
9215
|
<xsl:otherwise>
|
9231
9216
|
<xsl:apply-templates/>
|
@@ -9233,7 +9218,7 @@
|
|
9233
9218
|
</xsl:choose>
|
9234
9219
|
</xsl:template>
|
9235
9220
|
<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">
|
9236
|
-
<fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
|
9221
|
+
<fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
|
9237
9222
|
</xsl:template>
|
9238
9223
|
|
9239
9224
|
<xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
|
@@ -10298,24 +10283,26 @@
|
|
10298
10283
|
<xsl:apply-templates select="." mode="mathml"/>
|
10299
10284
|
</xsl:variable>
|
10300
10285
|
|
10301
|
-
<fo:instream-foreign-object fox:alt-text="Math">
|
10286
|
+
<fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
|
10302
10287
|
|
10303
10288
|
<xsl:call-template name="refine_mathml_insteam_object_style"/>
|
10304
10289
|
|
10305
|
-
|
10306
|
-
|
10307
|
-
|
10308
|
-
<xsl:
|
10309
|
-
|
10310
|
-
|
10311
|
-
<!-- <xsl:if test="$add_math_as_text = 'true'"> -->
|
10312
|
-
<xsl:if test="normalize-space($asciimath_text_) != ''">
|
10313
|
-
<!-- put Mathin Alternate Text -->
|
10314
|
-
<xsl:attribute name="fox:alt-text">
|
10315
|
-
<xsl:value-of select="$asciimath_text_"/>
|
10290
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
10291
|
+
<!-- put MathML in Actual Text -->
|
10292
|
+
<!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
|
10293
|
+
<xsl:attribute name="fox:actual-text">
|
10294
|
+
<xsl:value-of select="$mathml_content"/>
|
10316
10295
|
</xsl:attribute>
|
10296
|
+
|
10297
|
+
<!-- <xsl:if test="$add_math_as_text = 'true'"> -->
|
10298
|
+
<xsl:if test="normalize-space($asciimath_text_) != ''">
|
10299
|
+
<!-- put Mathin Alternate Text -->
|
10300
|
+
<xsl:attribute name="fox:alt-text">
|
10301
|
+
<xsl:value-of select="$asciimath_text_"/>
|
10302
|
+
</xsl:attribute>
|
10303
|
+
</xsl:if>
|
10304
|
+
<!-- </xsl:if> -->
|
10317
10305
|
</xsl:if>
|
10318
|
-
<!-- </xsl:if> -->
|
10319
10306
|
|
10320
10307
|
<xsl:copy-of select="xalan:nodeset($mathml)"/>
|
10321
10308
|
|
@@ -12099,6 +12086,8 @@
|
|
12099
12086
|
<xsl:template match="*[local-name() = 'origin']" mode="contents"/>
|
12100
12087
|
<xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
|
12101
12088
|
|
12089
|
+
<xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
|
12090
|
+
|
12102
12091
|
<xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
|
12103
12092
|
<xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
|
12104
12093
|
<xsl:apply-templates mode="bookmarks"/>
|
@@ -12120,6 +12109,8 @@
|
|
12120
12109
|
<xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
|
12121
12110
|
<xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
|
12122
12111
|
|
12112
|
+
<xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
|
12113
|
+
|
12123
12114
|
<!-- Bookmarks -->
|
12124
12115
|
<xsl:template name="addBookmarks">
|
12125
12116
|
<xsl:param name="contents"/>
|
@@ -14014,21 +14005,32 @@
|
|
14014
14005
|
<!-- ========== -->
|
14015
14006
|
|
14016
14007
|
<xsl:variable name="reviews_">
|
14017
|
-
<xsl:for-each select="//*[local-name() = 'review'][@from]">
|
14008
|
+
<xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
|
14018
14009
|
<xsl:copy>
|
14019
14010
|
<xsl:copy-of select="@from"/>
|
14020
14011
|
<xsl:copy-of select="@id"/>
|
14021
14012
|
</xsl:copy>
|
14022
14013
|
</xsl:for-each>
|
14014
|
+
<xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
|
14015
|
+
<xsl:copy>
|
14016
|
+
<xsl:copy-of select="@source"/>
|
14017
|
+
<xsl:copy-of select="@id"/>
|
14018
|
+
</xsl:copy>
|
14019
|
+
</xsl:for-each>
|
14023
14020
|
</xsl:variable>
|
14024
14021
|
<xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
|
14025
14022
|
|
14026
14023
|
<xsl:template name="addReviewHelper">
|
14027
|
-
|
14028
|
-
|
14029
|
-
|
14030
|
-
|
14031
|
-
<
|
14024
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
14025
|
+
<!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
|
14026
|
+
<xsl:variable name="curr_id" select="@id"/>
|
14027
|
+
<!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
|
14028
|
+
<xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
|
14029
|
+
<xsl:variable name="review_id" select="normalize-space(@id)"/>
|
14030
|
+
<xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
|
14031
|
+
<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>
|
14032
|
+
</xsl:if>
|
14033
|
+
</xsl:for-each>
|
14032
14034
|
</xsl:if>
|
14033
14035
|
<!-- <fo:block>
|
14034
14036
|
<curr_id><xsl:value-of select="$curr_id"/></curr_id>
|
@@ -14167,14 +14169,61 @@
|
|
14167
14169
|
|
14168
14170
|
</xsl:template>
|
14169
14171
|
|
14170
|
-
|
14172
|
+
<!-- document text (not figures, or tables) footnotes -->
|
14173
|
+
<xsl:variable name="reviews_container_">
|
14174
|
+
<xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
|
14175
|
+
<xsl:variable name="update_xml_step1">
|
14176
|
+
<xsl:apply-templates select="." mode="update_xml_step1"/>
|
14177
|
+
</xsl:variable>
|
14178
|
+
<xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
|
14179
|
+
</xsl:for-each>
|
14180
|
+
</xsl:variable>
|
14181
|
+
<xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
|
14182
|
+
|
14183
|
+
<xsl:template match="*[local-name() = 'review-container']"/>
|
14184
|
+
|
14185
|
+
<!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
|
14186
|
+
<xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
|
14187
|
+
<xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
|
14188
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
14189
|
+
<xsl:choose>
|
14190
|
+
<!-- if there isn't the attribute '@from', then -->
|
14191
|
+
<xsl:when test="$id_from = ''">
|
14192
|
+
<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>
|
14193
|
+
</xsl:when>
|
14194
|
+
<!-- if there isn't element with id 'from', then create 'bookmark' here -->
|
14195
|
+
<xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
|
14196
|
+
<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>
|
14197
|
+
</xsl:when>
|
14198
|
+
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
14199
|
+
<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>
|
14200
|
+
</xsl:when>
|
14201
|
+
</xsl:choose>
|
14202
|
+
</xsl:if>
|
14203
|
+
</xsl:template>
|
14204
|
+
|
14205
|
+
<!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
|
14206
|
+
<xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
|
14171
14207
|
<!-- comment 2019-11-29 -->
|
14172
14208
|
<!-- <fo:block font-weight="bold">Review:</fo:block>
|
14173
14209
|
<xsl:apply-templates /> -->
|
14174
14210
|
|
14175
|
-
<xsl:variable name="id_from" select="normalize-space(current()/@
|
14211
|
+
<xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
|
14176
14212
|
|
14177
|
-
<xsl:
|
14213
|
+
<xsl:variable name="source" select="normalize-space(@source)"/>
|
14214
|
+
|
14215
|
+
<xsl:if test="$isGenerateTableIF = 'false'">
|
14216
|
+
<!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
|
14217
|
+
|
14218
|
+
<!-- <xsl:if test="@source = @end"> -->
|
14219
|
+
<!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
|
14220
|
+
following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
|
14221
|
+
<!-- <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> -->
|
14222
|
+
<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>
|
14223
|
+
<!-- </xsl:if> -->
|
14224
|
+
</xsl:if>
|
14225
|
+
|
14226
|
+
<xsl:if test="1 = 2">
|
14178
14227
|
<xsl:choose>
|
14179
14228
|
<!-- if there isn't the attribute '@from', then -->
|
14180
14229
|
<xsl:when test="$id_from = ''">
|
@@ -14182,10 +14231,10 @@
|
|
14182
14231
|
</xsl:when>
|
14183
14232
|
<!-- if there isn't element with id 'from', then create 'bookmark' here -->
|
14184
14233
|
<xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
|
14185
|
-
<fo:block id="{
|
14234
|
+
<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>
|
14186
14235
|
</xsl:when>
|
14187
14236
|
<xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
|
14188
|
-
<fo:block id="{
|
14237
|
+
<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>
|
14189
14238
|
</xsl:when>
|
14190
14239
|
</xsl:choose>
|
14191
14240
|
</xsl:if>
|
@@ -14236,16 +14285,21 @@
|
|
14236
14285
|
<xsl:variable name="list_level">
|
14237
14286
|
<xsl:choose>
|
14238
14287
|
<xsl:when test="$list_level_ <= 3"><xsl:value-of select="$list_level_"/></xsl:when>
|
14239
|
-
<xsl:
|
14288
|
+
<xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
|
14289
|
+
<xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
|
14290
|
+
<xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
|
14240
14291
|
</xsl:choose>
|
14241
14292
|
</xsl:variable>
|
14242
14293
|
<xsl:choose>
|
14243
14294
|
<xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
|
14244
14295
|
<xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
|
14245
14296
|
</xsl:when>
|
14246
|
-
<xsl:when test="$list_level mod 3 = 0">
|
14297
|
+
<xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
|
14247
14298
|
<xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
|
14248
14299
|
</xsl:when>
|
14300
|
+
<xsl:when test="$list_level mod 3 = 0">
|
14301
|
+
<xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
|
14302
|
+
</xsl:when>
|
14249
14303
|
<xsl:when test="$list_level mod 2 = 0">
|
14250
14304
|
<xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
|
14251
14305
|
</xsl:when>
|
@@ -14790,10 +14844,22 @@
|
|
14790
14844
|
<xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
|
14791
14845
|
|
14792
14846
|
<xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
|
14793
|
-
|
14794
|
-
<
|
14795
|
-
|
14796
|
-
|
14847
|
+
<xsl:variable name="bookmark_id" select="@id"/>
|
14848
|
+
<xsl:choose>
|
14849
|
+
<!-- Example:
|
14850
|
+
<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"/>
|
14851
|
+
<bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
|
14852
|
+
<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"/> -->
|
14853
|
+
<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]">
|
14854
|
+
<!-- skip here, see the template 'fmt-review-start' -->
|
14855
|
+
</xsl:when>
|
14856
|
+
<xsl:otherwise>
|
14857
|
+
<!-- <fo:inline id="{@id}" font-size="1pt"/> -->
|
14858
|
+
<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>
|
14859
|
+
<!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
|
14860
|
+
<xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
|
14861
|
+
</xsl:otherwise>
|
14862
|
+
</xsl:choose>
|
14797
14863
|
</xsl:template>
|
14798
14864
|
<!-- =================== -->
|
14799
14865
|
<!-- End of Index processing -->
|
@@ -16139,6 +16205,9 @@
|
|
16139
16205
|
<xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
|
16140
16206
|
<xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
|
16141
16207
|
|
16208
|
+
<xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
|
16209
|
+
<xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
|
16210
|
+
|
16142
16211
|
<!-- END: update new Presentation XML -->
|
16143
16212
|
|
16144
16213
|
<!-- =========================================================================== -->
|