metanorma-un 0.12.13 → 0.12.15

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: 7ac3ff2550d6d6fdd944bce56ca13356d13f0edda10a94f763ed1d4f3534d354
4
- data.tar.gz: f9ff7cc1b492be2dd88aac32210cf71dfe5816e298fbee94f0982b3a3cfdfd8a
3
+ metadata.gz: 4cbf3fafbf48123286c81522fa8d05402997ee8ca2c7692ec60eed21f52294f6
4
+ data.tar.gz: 6d5e047ee2bc3c177988bb98da75f6078f3e9618ecfae279bbff1f84952ccb54
5
5
  SHA512:
6
- metadata.gz: 96da9243fdbaf0c63e1979802c276395ee6114fa73d03965dc9e0cce8cc3d8090d95db9d1670ff7a67ef195e7fd7cab0134dfa2921ba11d398e46fb73adbba37
7
- data.tar.gz: 8414dafec2bdca98f7e63a0ae7bed378ee95726bf321727d3dd2676f50ce35ddefabd063f71b21cf76e48d40970d6d2f0af3a3a6104e97c979a94fce166437e9
6
+ metadata.gz: a56663989b0eab35e2d88f4c8c60d12b8708ab36ee86bf78ae2ed5213723285769b496a332f393808a96571f2b9ae3b23af75d810fa70691f1ab2558537be0e1
7
+ data.tar.gz: 96ca6c2c8acec1a328116742a4bfedac887e0c0939ac4ed450160331779ab939d5a2e9fba164aeb8fb24329f7121f206f8913d68136ccd2ae3a8e41d77da9f81
@@ -6913,18 +6913,33 @@
6913
6913
 
6914
6914
  <xsl:template match="*[local-name()='localityStack']"/>
6915
6915
 
6916
+ <xsl:variable name="pdfAttachmentsList_">
6917
+ <xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
6918
+ <attachment filename="{@name}"/>
6919
+ </xsl:for-each>
6920
+ </xsl:variable>
6921
+ <xsl:variable name="pdfAttachmentsList" select="xalan:nodeset($pdfAttachmentsList_)"/>
6922
+
6916
6923
  <xsl:template match="*[local-name()='link']" name="link">
6924
+ <xsl:variable name="target_normalized" select="translate(@target, '\', '/')"/>
6925
+ <xsl:variable name="target_attachment_name" select="substring-after($target_normalized, '_attachments/')"/>
6917
6926
  <xsl:variable name="target">
6918
6927
  <xsl:choose>
6919
6928
  <xsl:when test="@updatetype = 'true'">
6920
6929
  <xsl:value-of select="concat(normalize-space(@target), '.pdf')"/>
6921
6930
  </xsl:when>
6931
+ <!-- link to the PDF attachment -->
6932
+ <xsl:when test="$pdfAttachmentsList//attachment[@filename = current()/@target]">
6933
+ <xsl:value-of select="concat('url(embedded-file:', @target, ')')"/>
6934
+ </xsl:when>
6935
+ <!-- <xsl:when test="starts-with($target_normalized, '_') and contains($target_normalized, '_attachments/') and $pdfAttachmentsList//attachment[@filename = $target_attachment_name]">
6936
+ <xsl:value-of select="concat('url(embedded-file:', $target_attachment_name, ')')"/>
6937
+ </xsl:when>
6922
6938
  <xsl:when test="contains(@target, concat('_', $inputxml_filename_prefix, '_attachments'))">
6923
- <!-- link to the PDF attachment -->
6924
6939
  <xsl:variable name="target_" select="translate(@target, '\', '/')"/>
6925
6940
  <xsl:variable name="target__" select="substring-after($target_, concat('_', $inputxml_filename_prefix, '_attachments', '/'))"/>
6926
6941
  <xsl:value-of select="concat('url(embedded-file:', $target__, ')')"/>
6927
- </xsl:when>
6942
+ </xsl:when> -->
6928
6943
  <xsl:otherwise>
6929
6944
  <xsl:value-of select="normalize-space(@target)"/>
6930
6945
  </xsl:otherwise>
@@ -8588,8 +8603,11 @@
8588
8603
  </xsl:template>
8589
8604
 
8590
8605
  <xsl:template match="*[local-name() = 'strong']" mode="contents_item">
8606
+ <xsl:param name="element"/>
8591
8607
  <xsl:copy>
8592
- <xsl:apply-templates mode="contents_item"/>
8608
+ <xsl:apply-templates mode="contents_item">
8609
+ <xsl:with-param name="element" select="$element"/>
8610
+ </xsl:apply-templates>
8593
8611
  </xsl:copy>
8594
8612
  </xsl:template>
8595
8613
 
@@ -8656,7 +8674,10 @@
8656
8674
 
8657
8675
  <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output -->
8658
8676
  <xsl:template match="*[local-name() = 'span']" mode="contents_item">
8659
- <xsl:apply-templates mode="contents_item"/>
8677
+ <xsl:param name="element"/>
8678
+ <xsl:apply-templates mode="contents_item">
8679
+ <xsl:with-param name="element" select="$element"/>
8680
+ </xsl:apply-templates>
8660
8681
  </xsl:template>
8661
8682
 
8662
8683
  <!-- =============== -->
@@ -11511,6 +11532,17 @@
11511
11532
  <xsl:copy-of select="."/>
11512
11533
  </xsl:template>
11513
11534
 
11535
+ <xsl:template match="*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']" mode="update_xml_step1">
11536
+ <xsl:copy>
11537
+ <xsl:copy-of select="@*"/>
11538
+ <xsl:variable name="name_filepath" select="concat($inputxml_basepath, @name)"/>
11539
+ <xsl:variable name="file_exists" select="normalize-space(java:exists(java:java.io.File.new($name_filepath)))"/>
11540
+ <xsl:if test="$file_exists = 'false'"> <!-- copy attachment content only if file on disk doesnt exist -->
11541
+ <xsl:value-of select="."/>
11542
+ </xsl:if>
11543
+ </xsl:copy>
11544
+ </xsl:template>
11545
+
11514
11546
  <!-- add @id, mandatory for table auto-layout algorithm -->
11515
11547
  <xsl:template match="*[local-name() = 'dl' or local-name() = 'table'][not(@id)]" mode="update_xml_step1">
11516
11548
  <xsl:copy>
@@ -12385,7 +12417,8 @@
12385
12417
  </xsl:when>
12386
12418
  <xsl:otherwise>
12387
12419
  <!-- _{filename}_attachments -->
12388
- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/>
12420
+ <!-- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/> -->
12421
+ <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath , @name, ')')"/>
12389
12422
  <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{@name}"/>
12390
12423
  </xsl:otherwise>
12391
12424
  </xsl:choose>
@@ -6913,18 +6913,33 @@
6913
6913
 
6914
6914
  <xsl:template match="*[local-name()='localityStack']"/>
6915
6915
 
6916
+ <xsl:variable name="pdfAttachmentsList_">
6917
+ <xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
6918
+ <attachment filename="{@name}"/>
6919
+ </xsl:for-each>
6920
+ </xsl:variable>
6921
+ <xsl:variable name="pdfAttachmentsList" select="xalan:nodeset($pdfAttachmentsList_)"/>
6922
+
6916
6923
  <xsl:template match="*[local-name()='link']" name="link">
6924
+ <xsl:variable name="target_normalized" select="translate(@target, '\', '/')"/>
6925
+ <xsl:variable name="target_attachment_name" select="substring-after($target_normalized, '_attachments/')"/>
6917
6926
  <xsl:variable name="target">
6918
6927
  <xsl:choose>
6919
6928
  <xsl:when test="@updatetype = 'true'">
6920
6929
  <xsl:value-of select="concat(normalize-space(@target), '.pdf')"/>
6921
6930
  </xsl:when>
6931
+ <!-- link to the PDF attachment -->
6932
+ <xsl:when test="$pdfAttachmentsList//attachment[@filename = current()/@target]">
6933
+ <xsl:value-of select="concat('url(embedded-file:', @target, ')')"/>
6934
+ </xsl:when>
6935
+ <!-- <xsl:when test="starts-with($target_normalized, '_') and contains($target_normalized, '_attachments/') and $pdfAttachmentsList//attachment[@filename = $target_attachment_name]">
6936
+ <xsl:value-of select="concat('url(embedded-file:', $target_attachment_name, ')')"/>
6937
+ </xsl:when>
6922
6938
  <xsl:when test="contains(@target, concat('_', $inputxml_filename_prefix, '_attachments'))">
6923
- <!-- link to the PDF attachment -->
6924
6939
  <xsl:variable name="target_" select="translate(@target, '\', '/')"/>
6925
6940
  <xsl:variable name="target__" select="substring-after($target_, concat('_', $inputxml_filename_prefix, '_attachments', '/'))"/>
6926
6941
  <xsl:value-of select="concat('url(embedded-file:', $target__, ')')"/>
6927
- </xsl:when>
6942
+ </xsl:when> -->
6928
6943
  <xsl:otherwise>
6929
6944
  <xsl:value-of select="normalize-space(@target)"/>
6930
6945
  </xsl:otherwise>
@@ -8588,8 +8603,11 @@
8588
8603
  </xsl:template>
8589
8604
 
8590
8605
  <xsl:template match="*[local-name() = 'strong']" mode="contents_item">
8606
+ <xsl:param name="element"/>
8591
8607
  <xsl:copy>
8592
- <xsl:apply-templates mode="contents_item"/>
8608
+ <xsl:apply-templates mode="contents_item">
8609
+ <xsl:with-param name="element" select="$element"/>
8610
+ </xsl:apply-templates>
8593
8611
  </xsl:copy>
8594
8612
  </xsl:template>
8595
8613
 
@@ -8656,7 +8674,10 @@
8656
8674
 
8657
8675
  <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output -->
8658
8676
  <xsl:template match="*[local-name() = 'span']" mode="contents_item">
8659
- <xsl:apply-templates mode="contents_item"/>
8677
+ <xsl:param name="element"/>
8678
+ <xsl:apply-templates mode="contents_item">
8679
+ <xsl:with-param name="element" select="$element"/>
8680
+ </xsl:apply-templates>
8660
8681
  </xsl:template>
8661
8682
 
8662
8683
  <!-- =============== -->
@@ -11511,6 +11532,17 @@
11511
11532
  <xsl:copy-of select="."/>
11512
11533
  </xsl:template>
11513
11534
 
11535
+ <xsl:template match="*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']" mode="update_xml_step1">
11536
+ <xsl:copy>
11537
+ <xsl:copy-of select="@*"/>
11538
+ <xsl:variable name="name_filepath" select="concat($inputxml_basepath, @name)"/>
11539
+ <xsl:variable name="file_exists" select="normalize-space(java:exists(java:java.io.File.new($name_filepath)))"/>
11540
+ <xsl:if test="$file_exists = 'false'"> <!-- copy attachment content only if file on disk doesnt exist -->
11541
+ <xsl:value-of select="."/>
11542
+ </xsl:if>
11543
+ </xsl:copy>
11544
+ </xsl:template>
11545
+
11514
11546
  <!-- add @id, mandatory for table auto-layout algorithm -->
11515
11547
  <xsl:template match="*[local-name() = 'dl' or local-name() = 'table'][not(@id)]" mode="update_xml_step1">
11516
11548
  <xsl:copy>
@@ -12385,7 +12417,8 @@
12385
12417
  </xsl:when>
12386
12418
  <xsl:otherwise>
12387
12419
  <!-- _{filename}_attachments -->
12388
- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/>
12420
+ <!-- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/> -->
12421
+ <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath , @name, ')')"/>
12389
12422
  <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{@name}"/>
12390
12423
  </xsl:otherwise>
12391
12424
  </xsl:choose>
@@ -7012,18 +7012,33 @@
7012
7012
 
7013
7013
  <xsl:template match="*[local-name()='localityStack']"/>
7014
7014
 
7015
+ <xsl:variable name="pdfAttachmentsList_">
7016
+ <xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
7017
+ <attachment filename="{@name}"/>
7018
+ </xsl:for-each>
7019
+ </xsl:variable>
7020
+ <xsl:variable name="pdfAttachmentsList" select="xalan:nodeset($pdfAttachmentsList_)"/>
7021
+
7015
7022
  <xsl:template match="*[local-name()='link']" name="link">
7023
+ <xsl:variable name="target_normalized" select="translate(@target, '\', '/')"/>
7024
+ <xsl:variable name="target_attachment_name" select="substring-after($target_normalized, '_attachments/')"/>
7016
7025
  <xsl:variable name="target">
7017
7026
  <xsl:choose>
7018
7027
  <xsl:when test="@updatetype = 'true'">
7019
7028
  <xsl:value-of select="concat(normalize-space(@target), '.pdf')"/>
7020
7029
  </xsl:when>
7030
+ <!-- link to the PDF attachment -->
7031
+ <xsl:when test="$pdfAttachmentsList//attachment[@filename = current()/@target]">
7032
+ <xsl:value-of select="concat('url(embedded-file:', @target, ')')"/>
7033
+ </xsl:when>
7034
+ <!-- <xsl:when test="starts-with($target_normalized, '_') and contains($target_normalized, '_attachments/') and $pdfAttachmentsList//attachment[@filename = $target_attachment_name]">
7035
+ <xsl:value-of select="concat('url(embedded-file:', $target_attachment_name, ')')"/>
7036
+ </xsl:when>
7021
7037
  <xsl:when test="contains(@target, concat('_', $inputxml_filename_prefix, '_attachments'))">
7022
- <!-- link to the PDF attachment -->
7023
7038
  <xsl:variable name="target_" select="translate(@target, '\', '/')"/>
7024
7039
  <xsl:variable name="target__" select="substring-after($target_, concat('_', $inputxml_filename_prefix, '_attachments', '/'))"/>
7025
7040
  <xsl:value-of select="concat('url(embedded-file:', $target__, ')')"/>
7026
- </xsl:when>
7041
+ </xsl:when> -->
7027
7042
  <xsl:otherwise>
7028
7043
  <xsl:value-of select="normalize-space(@target)"/>
7029
7044
  </xsl:otherwise>
@@ -8687,8 +8702,11 @@
8687
8702
  </xsl:template>
8688
8703
 
8689
8704
  <xsl:template match="*[local-name() = 'strong']" mode="contents_item">
8705
+ <xsl:param name="element"/>
8690
8706
  <xsl:copy>
8691
- <xsl:apply-templates mode="contents_item"/>
8707
+ <xsl:apply-templates mode="contents_item">
8708
+ <xsl:with-param name="element" select="$element"/>
8709
+ </xsl:apply-templates>
8692
8710
  </xsl:copy>
8693
8711
  </xsl:template>
8694
8712
 
@@ -8755,7 +8773,10 @@
8755
8773
 
8756
8774
  <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output -->
8757
8775
  <xsl:template match="*[local-name() = 'span']" mode="contents_item">
8758
- <xsl:apply-templates mode="contents_item"/>
8776
+ <xsl:param name="element"/>
8777
+ <xsl:apply-templates mode="contents_item">
8778
+ <xsl:with-param name="element" select="$element"/>
8779
+ </xsl:apply-templates>
8759
8780
  </xsl:template>
8760
8781
 
8761
8782
  <!-- =============== -->
@@ -11611,6 +11632,17 @@
11611
11632
  <xsl:copy-of select="."/>
11612
11633
  </xsl:template>
11613
11634
 
11635
+ <xsl:template match="*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']" mode="update_xml_step1">
11636
+ <xsl:copy>
11637
+ <xsl:copy-of select="@*"/>
11638
+ <xsl:variable name="name_filepath" select="concat($inputxml_basepath, @name)"/>
11639
+ <xsl:variable name="file_exists" select="normalize-space(java:exists(java:java.io.File.new($name_filepath)))"/>
11640
+ <xsl:if test="$file_exists = 'false'"> <!-- copy attachment content only if file on disk doesnt exist -->
11641
+ <xsl:value-of select="."/>
11642
+ </xsl:if>
11643
+ </xsl:copy>
11644
+ </xsl:template>
11645
+
11614
11646
  <!-- add @id, mandatory for table auto-layout algorithm -->
11615
11647
  <xsl:template match="*[local-name() = 'dl' or local-name() = 'table'][not(@id)]" mode="update_xml_step1">
11616
11648
  <xsl:copy>
@@ -12485,7 +12517,8 @@
12485
12517
  </xsl:when>
12486
12518
  <xsl:otherwise>
12487
12519
  <!-- _{filename}_attachments -->
12488
- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/>
12520
+ <!-- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/> -->
12521
+ <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath , @name, ')')"/>
12489
12522
  <pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{@name}"/>
12490
12523
  </xsl:otherwise>
12491
12524
  </xsl:choose>
@@ -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 v1.3.2 -->
20
+ <!-- VERSION v1.3.3 -->
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">
@@ -331,9 +331,9 @@
331
331
  <zeroOrMore>
332
332
  <ref name="table-note"/>
333
333
  </zeroOrMore>
334
- <optional>
334
+ <zeroOrMore>
335
335
  <ref name="source"/>
336
- </optional>
336
+ </zeroOrMore>
337
337
  </define>
338
338
  <define name="FigureAttr">
339
339
  <optional>
@@ -380,9 +380,9 @@
380
380
  <zeroOrMore>
381
381
  <ref name="note"/>
382
382
  </zeroOrMore>
383
- <optional>
383
+ <zeroOrMore>
384
384
  <ref name="source"/>
385
- </optional>
385
+ </zeroOrMore>
386
386
  </define>
387
387
  <define name="source">
388
388
  <element name="source">
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module UN
3
- VERSION = "0.12.13".freeze
3
+ VERSION = "0.12.15".freeze
4
4
  end
5
5
  end
data/metanorma-un.gemspec CHANGED
@@ -43,4 +43,5 @@ Gem::Specification.new do |spec|
43
43
  spec.add_development_dependency "sassc", "2.4.0"
44
44
  spec.add_development_dependency "simplecov", "~> 0.15"
45
45
  spec.add_development_dependency "timecop", "~> 0.9"
46
+ spec.add_development_dependency "xml-c14n"
46
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-un
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.13
4
+ version: 0.12.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-08 00:00:00.000000000 Z
11
+ date: 2024-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: iso-639
@@ -206,6 +206,20 @@ dependencies:
206
206
  - - "~>"
207
207
  - !ruby/object:Gem::Version
208
208
  version: '0.9'
209
+ - !ruby/object:Gem::Dependency
210
+ name: xml-c14n
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
209
223
  description: |
210
224
  Metanorma for UN documents.
211
225