metanorma-un 0.12.17 → 0.12.19

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5f6b24d93decf498c086763d0941676076dab27298cd20aec18809c43e0280a
4
- data.tar.gz: eccb7feb1829db83f4c029d3f019ecf38c9f23ac16e79f5f165fe4dcfbe5a2d3
3
+ metadata.gz: 1b9b752865cc5717b27cc3d49dbc35a916aee99431b4931622b633e84abc7e1f
4
+ data.tar.gz: 5a587abcc9ca2d464e00756b452ceb2e14940b64e54d9195f1879b390fd985e1
5
5
  SHA512:
6
- metadata.gz: 66791acea79635a043524ccbaa5377efa866fb4297d8f17824a2e0471773bc46918f483bcace73d2e4b6f904d1f60c78ed23808b3735852d8b5c9db5b452f622
7
- data.tar.gz: b371258f4f65c7c8e3aa03de22f77967c1b195c4eceba545014da418b0295f1e4ad56928c3c6c6bf77785bc9b69ae2213d94887ca641dae73e7764a754e5cc4f
6
+ metadata.gz: e30f8961a85d39e0dc9140dee2223eb50feebc3b0c40d3176cac97005368dc3a97cfbe177d6e7a3b731cd3afe8b14bbe423b2600edcac6c7cc16c98d8e237a73
7
+ data.tar.gz: bfca724a1d193de389616fe001ffe4b460d464a967897d29848d2aa8ddbba69b794df928958f6fb5d61c7cab1833358da6de767055746d82fe3d2d6d8a09d012
@@ -82,6 +82,9 @@ p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
82
82
  p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
83
83
  font-size: {{monospacefontsize}}; }
84
84
 
85
+ sub, sup {
86
+ font-size: 0.75em; }
87
+
85
88
  article, aside, details, figcaption, figure,
86
89
  footer, header, hgroup, menu, nav, section {
87
90
  display: block; }
@@ -239,7 +242,7 @@ h6:hover > a.anchor,
239
242
  background-color: #777;
240
243
  color: white;
241
244
  cursor: pointer;
242
- padding: 12px 0;
245
+ padding: 3px 0;
243
246
  margin: 0;
244
247
  width: 100%;
245
248
  border: none;
@@ -4105,6 +4105,7 @@
4105
4105
 
4106
4106
  <fo:block role="SKIP">
4107
4107
  <xsl:apply-templates/>
4108
+ <xsl:if test="$isGenerateTableIF = 'false' and count(node()) = 0"> </xsl:if>
4108
4109
  </fo:block>
4109
4110
  </fo:table-cell>
4110
4111
  </xsl:template> <!-- cell in table header row - 'th' -->
@@ -4168,6 +4169,8 @@
4168
4169
 
4169
4170
  <xsl:if test="$isGenerateTableIF = 'true'"> <fo:inline id="{@id}_end">end</fo:inline></xsl:if> <!-- to determine width of text --> <!-- <xsl:value-of select="$hair_space"/> -->
4170
4171
 
4172
+ <xsl:if test="$isGenerateTableIF = 'false' and count(node()) = 0"> </xsl:if>
4173
+
4171
4174
  </fo:block>
4172
4175
  </fo:table-cell>
4173
4176
  </xsl:template> <!-- td -->
@@ -6951,14 +6954,16 @@
6951
6954
  <xsl:template match="*[local-name()='link']" name="link">
6952
6955
  <xsl:variable name="target_normalized" select="translate(@target, '\', '/')"/>
6953
6956
  <xsl:variable name="target_attachment_name" select="substring-after($target_normalized, '_attachments/')"/>
6957
+ <xsl:variable name="isLinkToEmbeddedFile" select="normalize-space(@attachment = 'true' and $pdfAttachmentsList//attachment[@filename = current()/@target])"/>
6954
6958
  <xsl:variable name="target">
6955
6959
  <xsl:choose>
6956
6960
  <xsl:when test="@updatetype = 'true'">
6957
6961
  <xsl:value-of select="concat(normalize-space(@target), '.pdf')"/>
6958
6962
  </xsl:when>
6959
6963
  <!-- link to the PDF attachment -->
6960
- <xsl:when test="@attachment = 'true' and $pdfAttachmentsList//attachment[@filename = current()/@target]">
6961
- <xsl:value-of select="concat('url(embedded-file:', @target, ')')"/>
6964
+ <xsl:when test="$isLinkToEmbeddedFile = 'true'">
6965
+ <xsl:variable name="target_file" select="java:org.metanorma.fop.Util.getFilenameFromPath(@target)"/>
6966
+ <xsl:value-of select="concat('url(embedded-file:', $target_file, ')')"/>
6962
6967
  </xsl:when>
6963
6968
  <!-- <xsl:when test="starts-with($target_normalized, '_') and contains($target_normalized, '_attachments/') and $pdfAttachmentsList//attachment[@filename = $target_attachment_name]">
6964
6969
  <xsl:value-of select="concat('url(embedded-file:', $target_attachment_name, ')')"/>
@@ -6989,6 +6994,11 @@
6989
6994
  <xsl:attribute name="keep-together.within-line">always</xsl:attribute>
6990
6995
  </xsl:if>
6991
6996
 
6997
+ <xsl:if test="$isLinkToEmbeddedFile = 'true'">
6998
+ <xsl:attribute name="color">inherit</xsl:attribute>
6999
+ <xsl:attribute name="text-decoration">none</xsl:attribute>
7000
+ </xsl:if>
7001
+
6992
7002
  <xsl:call-template name="refine_link-style"/>
6993
7003
 
6994
7004
  <xsl:choose>
@@ -6999,6 +7009,9 @@
6999
7009
  <xsl:call-template name="insert_basic_link">
7000
7010
  <xsl:with-param name="element">
7001
7011
  <fo:basic-link external-destination="{$target}" fox:alt-text="{$target}">
7012
+ <xsl:if test="$isLinkToEmbeddedFile = 'true'">
7013
+ <xsl:attribute name="role">Annot</xsl:attribute>
7014
+ </xsl:if>
7002
7015
  <xsl:choose>
7003
7016
  <xsl:when test="normalize-space(.) = ''">
7004
7017
  <xsl:call-template name="add-zero-spaces-link-java">
@@ -7011,6 +7024,10 @@
7011
7024
  </xsl:otherwise>
7012
7025
  </xsl:choose>
7013
7026
  </fo:basic-link>
7027
+ <xsl:if test="$isLinkToEmbeddedFile = 'true'">
7028
+ <!-- reserve space at right for PaperClip icon -->
7029
+ <fo:inline keep-with-previous.within-line="always">        </fo:inline>
7030
+ </xsl:if>
7014
7031
  </xsl:with-param>
7015
7032
  </xsl:call-template>
7016
7033
  </xsl:otherwise>
@@ -12413,6 +12430,39 @@
12413
12430
  </pdf:catalog>
12414
12431
  <x:xmpmeta xmlns:x="adobe:ns:meta/">
12415
12432
  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
12433
+ <rdf:Description xmlns:pdfaExtension="http://www.aiim.org/pdfa/ns/extension/" xmlns:pdfaProperty="http://www.aiim.org/pdfa/ns/property#" xmlns:pdfaSchema="http://www.aiim.org/pdfa/ns/schema#" rdf:about="">
12434
+ <pdfaExtension:schemas>
12435
+ <rdf:Bag>
12436
+ <rdf:li rdf:parseType="Resource">
12437
+ <pdfaSchema:namespaceURI>http://www.aiim.org/pdfua/ns/id/</pdfaSchema:namespaceURI>
12438
+ <pdfaSchema:prefix>pdfuaid</pdfaSchema:prefix>
12439
+ <pdfaSchema:schema>PDF/UA identification schema</pdfaSchema:schema>
12440
+ <pdfaSchema:property>
12441
+ <rdf:Seq>
12442
+ <rdf:li rdf:parseType="Resource">
12443
+ <pdfaProperty:category>internal</pdfaProperty:category>
12444
+ <pdfaProperty:description>PDF/UA version identifier</pdfaProperty:description>
12445
+ <pdfaProperty:name>part</pdfaProperty:name>
12446
+ <pdfaProperty:valueType>Integer</pdfaProperty:valueType>
12447
+ </rdf:li>
12448
+ <rdf:li rdf:parseType="Resource">
12449
+ <pdfaProperty:category>internal</pdfaProperty:category>
12450
+ <pdfaProperty:description>PDF/UA amendment identifier</pdfaProperty:description>
12451
+ <pdfaProperty:name>amd</pdfaProperty:name>
12452
+ <pdfaProperty:valueType>Text</pdfaProperty:valueType>
12453
+ </rdf:li>
12454
+ <rdf:li rdf:parseType="Resource">
12455
+ <pdfaProperty:category>internal</pdfaProperty:category>
12456
+ <pdfaProperty:description>PDF/UA corrigenda identifier</pdfaProperty:description>
12457
+ <pdfaProperty:name>corr</pdfaProperty:name>
12458
+ <pdfaProperty:valueType>Text</pdfaProperty:valueType>
12459
+ </rdf:li>
12460
+ </rdf:Seq>
12461
+ </pdfaSchema:property>
12462
+ </rdf:li>
12463
+ </rdf:Bag>
12464
+ </pdfaExtension:schemas>
12465
+ </rdf:Description>
12416
12466
  <rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pdf="http://ns.adobe.com/pdf/1.3/" rdf:about="">
12417
12467
  <!-- Dublin Core properties go here -->
12418
12468
  <dc:title>
@@ -12423,33 +12473,57 @@
12423
12473
 
12424
12474
  </xsl:for-each>
12425
12475
  </xsl:variable>
12426
- <xsl:choose>
12427
- <xsl:when test="normalize-space($title) != ''">
12428
- <xsl:value-of select="$title"/>
12429
- </xsl:when>
12430
- <xsl:otherwise>
12431
- <xsl:text> </xsl:text>
12432
- </xsl:otherwise>
12433
- </xsl:choose>
12476
+ <rdf:Alt>
12477
+ <rdf:li xml:lang="x-default">
12478
+ <xsl:choose>
12479
+ <xsl:when test="normalize-space($title) != ''">
12480
+ <xsl:value-of select="$title"/>
12481
+ </xsl:when>
12482
+ <xsl:otherwise>
12483
+ <xsl:text> </xsl:text>
12484
+ </xsl:otherwise>
12485
+ </xsl:choose>
12486
+ </rdf:li>
12487
+ </rdf:Alt>
12434
12488
  </dc:title>
12435
- <dc:creator>
12489
+ <xsl:variable name="dc_creator">
12436
12490
  <xsl:for-each select="(//*[contains(local-name(), '-standard')])[1]/*[local-name() = 'bibdata']">
12437
12491
 
12438
- <xsl:for-each select="*[local-name() = 'contributor'][*[local-name() = 'role']/@type='author']">
12439
- <xsl:value-of select="*[local-name() = 'organization']/*[local-name() = 'name']"/>
12440
- <xsl:if test="position() != last()">; </xsl:if>
12441
- </xsl:for-each>
12492
+ <rdf:Seq>
12493
+ <xsl:for-each select="*[local-name() = 'contributor'][*[local-name() = 'role']/@type='author']">
12494
+ <rdf:li>
12495
+ <xsl:value-of select="*[local-name() = 'organization']/*[local-name() = 'name']"/>
12496
+ </rdf:li>
12497
+ <!-- <xsl:if test="position() != last()">; </xsl:if> -->
12498
+ </xsl:for-each>
12499
+ </rdf:Seq>
12442
12500
 
12443
12501
  </xsl:for-each>
12444
- </dc:creator>
12445
- <dc:description>
12502
+ </xsl:variable>
12503
+ <xsl:if test="normalize-space($dc_creator) != ''">
12504
+ <dc:creator>
12505
+ <xsl:copy-of select="$dc_creator"/>
12506
+ </dc:creator>
12507
+ </xsl:if>
12508
+
12509
+ <xsl:variable name="dc_description">
12446
12510
  <xsl:variable name="abstract">
12447
12511
 
12448
12512
  <xsl:copy-of select="//*[contains(local-name(), '-standard')]/*[local-name() = 'preface']/*[local-name() = 'abstract']//text()[not(ancestor::*[local-name() = 'title'])]"/>
12449
12513
 
12450
12514
  </xsl:variable>
12451
- <xsl:value-of select="normalize-space($abstract)"/>
12452
- </dc:description>
12515
+ <rdf:Alt>
12516
+ <rdf:li xml:lang="x-default">
12517
+ <xsl:value-of select="normalize-space($abstract)"/>
12518
+ </rdf:li>
12519
+ </rdf:Alt>
12520
+ </xsl:variable>
12521
+ <xsl:if test="normalize-space($dc_description)">
12522
+ <dc:description>
12523
+ <xsl:copy-of select="$dc_description"/>
12524
+ </dc:description>
12525
+ </xsl:if>
12526
+
12453
12527
  <pdf:Keywords>
12454
12528
  <xsl:call-template name="insertKeywords">
12455
12529
  <xsl:with-param name="meta">true</xsl:with-param>
@@ -12464,9 +12538,14 @@
12464
12538
  </x:xmpmeta>
12465
12539
  <!-- add attachments -->
12466
12540
  <xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
12467
- <xsl:variable name="description" select="normalize-space(//*[local-name() = 'bibitem'][@hidden = 'true'][*[local-name() = 'uri'][@type = 'attachment'] = current()/@name]/*[local-name() = 'formattedref'])"/>
12468
-
12469
- <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" filename="{@name}">
12541
+ <xsl:variable name="bibitem_attachment_" select="//*[local-name() = 'bibitem'][@hidden = 'true'][*[local-name() = 'uri'][@type = 'attachment'] = current()/@name]"/>
12542
+ <xsl:variable name="bibitem_attachment" select="xalan:nodeset($bibitem_attachment_)"/>
12543
+ <xsl:variable name="description" select="normalize-space($bibitem_attachment/*[local-name() = 'formattedref'])"/>
12544
+ <xsl:variable name="filename" select="java:org.metanorma.fop.Util.getFilenameFromPath(@name)"/>
12545
+ <!-- Todo: need update -->
12546
+ <xsl:variable name="afrelationship" select="normalize-space($bibitem_attachment//*[local-name() = 'span'][@class = 'pdf-AFRelationship'])"/>
12547
+
12548
+ <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" filename="{$filename}" link-as-file-annotation="true">
12470
12549
  <xsl:attribute name="src">
12471
12550
  <xsl:choose>
12472
12551
  <xsl:when test="normalize-space() != ''">
@@ -12482,18 +12561,27 @@
12482
12561
  <xsl:if test="$description != ''">
12483
12562
  <xsl:attribute name="description"><xsl:value-of select="$description"/></xsl:attribute>
12484
12563
  </xsl:if>
12564
+ <xsl:if test="$afrelationship != ''">
12565
+ <xsl:attribute name="afrelationship"><xsl:value-of select="$afrelationship"/></xsl:attribute>
12566
+ </xsl:if>
12485
12567
  </pdf:embedded-file>
12486
12568
  </xsl:for-each>
12487
12569
  <!-- references to external attachments (no binary-encoded within the Metanorma XML file) -->
12488
12570
  <xsl:if test="not(//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment'])">
12489
12571
  <xsl:for-each select="//*[local-name() = 'bibitem'][@hidden = 'true'][*[local-name() = 'uri'][@type = 'attachment']]">
12490
12572
  <xsl:variable name="attachment_path" select="*[local-name() = 'uri'][@type = 'attachment']"/>
12573
+ <xsl:variable name="attachment_name" select="java:org.metanorma.fop.Util.getFilenameFromPath($attachment_path)"/>
12491
12574
  <xsl:variable name="url" select="concat('url(file:///',$basepath, $attachment_path, ')')"/>
12492
12575
  <xsl:variable name="description" select="normalize-space(*[local-name() = 'formattedref'])"/>
12493
- <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{$attachment_path}">
12576
+ <!-- Todo: need update -->
12577
+ <xsl:variable name="afrelationship" select="normalize-space(.//*[local-name() = 'span'][@class = 'pdf-AFRelationship'])"/>
12578
+ <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{$attachment_name}" link-as-file-annotation="true">
12494
12579
  <xsl:if test="$description != ''">
12495
12580
  <xsl:attribute name="description"><xsl:value-of select="$description"/></xsl:attribute>
12496
12581
  </xsl:if>
12582
+ <xsl:if test="$afrelationship != ''">
12583
+ <xsl:attribute name="afrelationship"><xsl:value-of select="$afrelationship"/></xsl:attribute>
12584
+ </xsl:if>
12497
12585
  </pdf:embedded-file>
12498
12586
  </xsl:for-each>
12499
12587
  </xsl:if>
@@ -12513,6 +12601,12 @@
12513
12601
  <!-- Get or calculate depth of the element -->
12514
12602
  <xsl:template name="getLevel">
12515
12603
  <xsl:param name="depth"/>
12604
+ <!-- <xsl:message>
12605
+ <xsl:choose>
12606
+ <xsl:when test="local-name() = 'title'">title=<xsl:value-of select="."/></xsl:when>
12607
+ <xsl:when test="local-name() = 'clause'">clause/title=<xsl:value-of select="*[local-name() = 'title']"/></xsl:when>
12608
+ </xsl:choose>
12609
+ </xsl:message> -->
12516
12610
  <xsl:choose>
12517
12611
  <xsl:when test="normalize-space(@depth) != ''">
12518
12612
  <xsl:value-of select="@depth"/>
@@ -12533,8 +12627,27 @@
12533
12627
  <xsl:when test="ancestor::*[local-name() = 'preface']">
12534
12628
  <xsl:value-of select="$level_total - 2"/>
12535
12629
  </xsl:when>
12630
+ <xsl:when test="ancestor::*[local-name() = 'sections'] and self::*[local-name() = 'title']">
12631
+ <xsl:variable name="upper_clause_depth" select="normalize-space(ancestor::*[local-name() = 'clause'][2]/*[local-name() = 'title']/@depth)"/>
12632
+ <xsl:choose>
12633
+ <xsl:when test="string(number($upper_clause_depth)) != 'NaN'">
12634
+ <xsl:value-of select="number($upper_clause_depth + 1)"/>
12635
+ </xsl:when>
12636
+ <xsl:otherwise>
12637
+ <xsl:value-of select="$level_total - 2"/>
12638
+ </xsl:otherwise>
12639
+ </xsl:choose>
12640
+ </xsl:when>
12536
12641
  <xsl:when test="ancestor::*[local-name() = 'sections']">
12537
- <xsl:value-of select="$level_total - 1"/>
12642
+ <xsl:variable name="upper_clause_depth" select="normalize-space(ancestor::*[local-name() = 'clause'][1]/*[local-name() = 'title']/@depth)"/>
12643
+ <xsl:choose>
12644
+ <xsl:when test="string(number($upper_clause_depth)) != 'NaN'">
12645
+ <xsl:value-of select="number($upper_clause_depth + 1)"/>
12646
+ </xsl:when>
12647
+ <xsl:otherwise>
12648
+ <xsl:value-of select="$level_total - 1"/>
12649
+ </xsl:otherwise>
12650
+ </xsl:choose>
12538
12651
  </xsl:when>
12539
12652
  <xsl:when test="ancestor::*[local-name() = 'bibliography']">
12540
12653
  <xsl:value-of select="$level_total - 1"/>
@@ -12542,6 +12655,17 @@
12542
12655
  <xsl:when test="parent::*[local-name() = 'annex']">
12543
12656
  <xsl:value-of select="$level_total - 1"/>
12544
12657
  </xsl:when>
12658
+ <xsl:when test="ancestor::*[local-name() = 'annex'] and self::*[local-name() = 'title']">
12659
+ <xsl:variable name="upper_clause_depth" select="normalize-space(ancestor::*[local-name() = 'clause'][2]/*[local-name() = 'title']/@depth)"/>
12660
+ <xsl:choose>
12661
+ <xsl:when test="string(number($upper_clause_depth)) != 'NaN'">
12662
+ <xsl:value-of select="number($upper_clause_depth + 1)"/>
12663
+ </xsl:when>
12664
+ <xsl:otherwise>
12665
+ <xsl:value-of select="$level_total - 1"/>
12666
+ </xsl:otherwise>
12667
+ </xsl:choose>
12668
+ </xsl:when>
12545
12669
  <xsl:when test="ancestor::*[local-name() = 'annex']">
12546
12670
  <xsl:value-of select="$level_total"/>
12547
12671
  </xsl:when>
@@ -12900,6 +13024,20 @@
12900
13024
 
12901
13025
  <!-- END: insert cover page image -->
12902
13026
 
13027
+ <xsl:template name="insertVerticalChar">
13028
+ <xsl:param name="str"/>
13029
+ <xsl:if test="string-length($str) &gt; 0">
13030
+ <fo:inline-container writing-mode="lr-tb" text-align="center" alignment-baseline="central" reference-orientation="90" width="1em" margin="0" padding="0" text-indent="0mm" last-line-end-indent="0mm" start-indent="0mm" end-indent="0mm">
13031
+ <fo:block-container width="1em">
13032
+ <fo:block line-height="1em"><xsl:value-of select="substring($str,1,1)"/></fo:block>
13033
+ </fo:block-container>
13034
+ </fo:inline-container>
13035
+ <xsl:call-template name="insertVerticalChar">
13036
+ <xsl:with-param name="str" select="substring($str, 2)"/>
13037
+ </xsl:call-template>
13038
+ </xsl:if>
13039
+ </xsl:template>
13040
+
12903
13041
  <xsl:template name="number-to-words">
12904
13042
  <xsl:param name="number"/>
12905
13043
  <xsl:param name="first"/>
@@ -13187,4 +13325,18 @@
13187
13325
  </xsl:if>
13188
13326
  </xsl:template>
13189
13327
 
13328
+ <xsl:template match="@*|node()" mode="set_table_role_skip">
13329
+ <xsl:copy>
13330
+ <xsl:apply-templates select="@*|node()" mode="set_table_role_skip"/>
13331
+ </xsl:copy>
13332
+ </xsl:template>
13333
+
13334
+ <xsl:template match="*[starts-with(local-name(), 'table')]" mode="set_table_role_skip">
13335
+ <xsl:copy>
13336
+ <xsl:apply-templates select="@*" mode="set_table_role_skip"/>
13337
+ <xsl:attribute name="role">SKIP</xsl:attribute>
13338
+ <xsl:apply-templates select="node()" mode="set_table_role_skip"/>
13339
+ </xsl:copy>
13340
+ </xsl:template>
13341
+
13190
13342
  </xsl:stylesheet>