metanorma-iho 0.9.12 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isodoc/iho/base_convert.rb +4 -0
- data/lib/isodoc/iho/html/htmlstyle.css +40 -0
- data/lib/isodoc/iho/html_convert.rb +0 -6
- data/lib/isodoc/iho/iho.specification.xsl +58 -6
- data/lib/isodoc/iho/iho.standard.xsl +58 -6
- data/lib/isodoc/iho/pdf_convert.rb +7 -2
- data/lib/isodoc/iho/word_convert.rb +0 -4
- data/lib/metanorma/iho/processor.rb +0 -16
- data/lib/metanorma/iho/version.rb +1 -1
- data/metanorma-iho.gemspec +2 -1
- data/metanorma.yml +12 -0
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c69fb1fa7ffaa584eb5f056c9e35b8c47b5a864ed79c518dadcd2badb75aa27
|
4
|
+
data.tar.gz: fd19d981d27d26211c6955120c65dc1fc2b7dfdddca987fa539bd463f1a60810
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b2b97c6194a316247e56cbf946d42507644bd6abe1f9e1bc511e8b8dc75cc30e43ce5b525d37fbd34264c5c4cf71bdf58068a252e6f051c8c49f05fa2a84960
|
7
|
+
data.tar.gz: 461af02ce4d8cab801a1b2c615e3e15bf5269de393324ddf729a7c8a994f6fdc2df6478ed7351f34977ce73bb41bb2afa64260ab548cb9e0182b731d9c2ae254
|
@@ -229,6 +229,46 @@ h6:hover > a.anchor,
|
|
229
229
|
.inline-header:hover > a.anchor {
|
230
230
|
visibility: visible; }
|
231
231
|
|
232
|
+
/* collapsible snippets: collapsible before hidable */
|
233
|
+
.hidable {
|
234
|
+
max-height: 0;
|
235
|
+
overflow: hidden;
|
236
|
+
transition: max-height 0.2s ease-out; }
|
237
|
+
|
238
|
+
.collapsible {
|
239
|
+
background-color: #777;
|
240
|
+
color: white;
|
241
|
+
cursor: pointer;
|
242
|
+
padding: 12px 0;
|
243
|
+
margin: 0;
|
244
|
+
width: 100%;
|
245
|
+
border: none;
|
246
|
+
text-align: left;
|
247
|
+
outline: none;
|
248
|
+
font-size: 15px; }
|
249
|
+
|
250
|
+
.active, .collapsible:hover {
|
251
|
+
background-color: #555; }
|
252
|
+
|
253
|
+
.collapsible:after {
|
254
|
+
content: '\25bc';
|
255
|
+
color: white;
|
256
|
+
font-weight: bold;
|
257
|
+
float: right;
|
258
|
+
margin-left: 12px;
|
259
|
+
margin-right: 12px; }
|
260
|
+
|
261
|
+
.active:after {
|
262
|
+
content: "\25b2"; }
|
263
|
+
|
264
|
+
/* collapsible: */
|
265
|
+
.collapsible + .hidable {
|
266
|
+
margin-top: 0; }
|
267
|
+
|
268
|
+
.collapsible:not(.active) + .hidable {
|
269
|
+
overflow: hidden;
|
270
|
+
padding: 0; }
|
271
|
+
|
232
272
|
#standard-band {
|
233
273
|
background-color: #0AC442; }
|
234
274
|
|
@@ -4,13 +4,7 @@ require_relative "init"
|
|
4
4
|
|
5
5
|
module IsoDoc
|
6
6
|
module IHO
|
7
|
-
# A {Converter} implementation that generates HTML output, and a document
|
8
|
-
# schema encapsulation of the document for validation
|
9
|
-
#
|
10
7
|
class HtmlConvert < IsoDoc::Generic::HtmlConvert
|
11
|
-
def configuration
|
12
|
-
Metanorma::IHO.configuration
|
13
|
-
end
|
14
8
|
|
15
9
|
include BaseConvert
|
16
10
|
include Init
|
@@ -2702,13 +2702,35 @@
|
|
2702
2702
|
</xsl:for-each>
|
2703
2703
|
</xsl:element>
|
2704
2704
|
|
2705
|
-
<xsl:call-template name="
|
2705
|
+
<xsl:call-template name="insertAnnexAndBibliographyInSeparatePageSequences"/>
|
2706
2706
|
|
2707
|
-
<xsl:call-template name="insertBibliographyInSeparatePageSequences"/>
|
2707
|
+
<!-- <xsl:call-template name="insertBibliographyInSeparatePageSequences"/> -->
|
2708
2708
|
|
2709
2709
|
<!-- <xsl:call-template name="insertIndexInSeparatePageSequences"/> -->
|
2710
2710
|
</xsl:template> <!-- END: insertMainSectionsInSeparatePageSequences -->
|
2711
2711
|
|
2712
|
+
<xsl:template name="insertAnnexAndBibliographyInSeparatePageSequences">
|
2713
|
+
<xsl:for-each select="/*/*[local-name()='annex'] | /*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]] | /*/*[local-name()='indexsect']">
|
2714
|
+
<xsl:sort select="@displayorder" data-type="number"/>
|
2715
|
+
<xsl:choose>
|
2716
|
+
<xsl:when test="local-name() = 'annex' or local-name() = 'indexsect'">
|
2717
|
+
<xsl:element name="page_sequence" namespace="{$namespace_full}">
|
2718
|
+
<xsl:attribute name="main_page_sequence"/>
|
2719
|
+
<xsl:apply-templates select="." mode="update_xml_step_move_pagebreak"/>
|
2720
|
+
</xsl:element>
|
2721
|
+
</xsl:when>
|
2722
|
+
<xsl:otherwise> <!-- bibliography -->
|
2723
|
+
<xsl:element name="bibliography" namespace="{$namespace_full}"> <!-- save context element -->
|
2724
|
+
<xsl:element name="page_sequence" namespace="{$namespace_full}">
|
2725
|
+
<xsl:attribute name="main_page_sequence"/>
|
2726
|
+
<xsl:apply-templates select="." mode="update_xml_step_move_pagebreak"/>
|
2727
|
+
</xsl:element>
|
2728
|
+
</xsl:element>
|
2729
|
+
</xsl:otherwise>
|
2730
|
+
</xsl:choose>
|
2731
|
+
</xsl:for-each>
|
2732
|
+
</xsl:template>
|
2733
|
+
|
2712
2734
|
<xsl:template name="insertAnnexInSeparatePageSequences">
|
2713
2735
|
<xsl:for-each select="/*/*[local-name()='annex']">
|
2714
2736
|
<xsl:sort select="@displayorder" data-type="number"/>
|
@@ -6967,18 +6989,33 @@
|
|
6967
6989
|
|
6968
6990
|
<xsl:template match="*[local-name()='localityStack']"/>
|
6969
6991
|
|
6992
|
+
<xsl:variable name="pdfAttachmentsList_">
|
6993
|
+
<xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
|
6994
|
+
<attachment filename="{@name}"/>
|
6995
|
+
</xsl:for-each>
|
6996
|
+
</xsl:variable>
|
6997
|
+
<xsl:variable name="pdfAttachmentsList" select="xalan:nodeset($pdfAttachmentsList_)"/>
|
6998
|
+
|
6970
6999
|
<xsl:template match="*[local-name()='link']" name="link">
|
7000
|
+
<xsl:variable name="target_normalized" select="translate(@target, '\', '/')"/>
|
7001
|
+
<xsl:variable name="target_attachment_name" select="substring-after($target_normalized, '_attachments/')"/>
|
6971
7002
|
<xsl:variable name="target">
|
6972
7003
|
<xsl:choose>
|
6973
7004
|
<xsl:when test="@updatetype = 'true'">
|
6974
7005
|
<xsl:value-of select="concat(normalize-space(@target), '.pdf')"/>
|
6975
7006
|
</xsl:when>
|
7007
|
+
<!-- link to the PDF attachment -->
|
7008
|
+
<xsl:when test="$pdfAttachmentsList//attachment[@filename = current()/@target]">
|
7009
|
+
<xsl:value-of select="concat('url(embedded-file:', @target, ')')"/>
|
7010
|
+
</xsl:when>
|
7011
|
+
<!-- <xsl:when test="starts-with($target_normalized, '_') and contains($target_normalized, '_attachments/') and $pdfAttachmentsList//attachment[@filename = $target_attachment_name]">
|
7012
|
+
<xsl:value-of select="concat('url(embedded-file:', $target_attachment_name, ')')"/>
|
7013
|
+
</xsl:when>
|
6976
7014
|
<xsl:when test="contains(@target, concat('_', $inputxml_filename_prefix, '_attachments'))">
|
6977
|
-
<!-- link to the PDF attachment -->
|
6978
7015
|
<xsl:variable name="target_" select="translate(@target, '\', '/')"/>
|
6979
7016
|
<xsl:variable name="target__" select="substring-after($target_, concat('_', $inputxml_filename_prefix, '_attachments', '/'))"/>
|
6980
7017
|
<xsl:value-of select="concat('url(embedded-file:', $target__, ')')"/>
|
6981
|
-
</xsl:when>
|
7018
|
+
</xsl:when> -->
|
6982
7019
|
<xsl:otherwise>
|
6983
7020
|
<xsl:value-of select="normalize-space(@target)"/>
|
6984
7021
|
</xsl:otherwise>
|
@@ -11570,6 +11607,19 @@
|
|
11570
11607
|
<xsl:copy-of select="."/>
|
11571
11608
|
</xsl:template>
|
11572
11609
|
|
11610
|
+
<xsl:template match="*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']" mode="update_xml_step1">
|
11611
|
+
<xsl:copy>
|
11612
|
+
<xsl:copy-of select="@*"/>
|
11613
|
+
<xsl:if test="1 = 2"> <!-- remove attachment/text(), because attachments added in the template 'addPDFUAmeta' before applying 'update_xml_step1' -->
|
11614
|
+
<xsl:variable name="name_filepath" select="concat($inputxml_basepath, @name)"/>
|
11615
|
+
<xsl:variable name="file_exists" select="normalize-space(java:exists(java:java.io.File.new($name_filepath)))"/>
|
11616
|
+
<xsl:if test="$file_exists = 'false'"> <!-- copy attachment content only if file on disk doesnt exist -->
|
11617
|
+
<xsl:value-of select="normalize-space(.)"/>
|
11618
|
+
</xsl:if>
|
11619
|
+
</xsl:if>
|
11620
|
+
</xsl:copy>
|
11621
|
+
</xsl:template>
|
11622
|
+
|
11573
11623
|
<!-- add @id, mandatory for table auto-layout algorithm -->
|
11574
11624
|
<xsl:template match="*[local-name() = 'dl' or local-name() = 'table'][not(@id)]" mode="update_xml_step1">
|
11575
11625
|
<xsl:copy>
|
@@ -12440,11 +12490,13 @@
|
|
12440
12490
|
<xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
|
12441
12491
|
<xsl:choose>
|
12442
12492
|
<xsl:when test="normalize-space() != ''">
|
12443
|
-
<
|
12493
|
+
<xsl:variable name="src_attachment" select="java:replaceAll(java:java.lang.String.new(.),'( | | )', '')"/> <!-- remove line breaks -->
|
12494
|
+
<pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$src_attachment}" filename="{@name}"/>
|
12444
12495
|
</xsl:when>
|
12445
12496
|
<xsl:otherwise>
|
12446
12497
|
<!-- _{filename}_attachments -->
|
12447
|
-
<xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/>
|
12498
|
+
<!-- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/> -->
|
12499
|
+
<xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath , @name, ')')"/>
|
12448
12500
|
<pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{@name}"/>
|
12449
12501
|
</xsl:otherwise>
|
12450
12502
|
</xsl:choose>
|
@@ -2702,13 +2702,35 @@
|
|
2702
2702
|
</xsl:for-each>
|
2703
2703
|
</xsl:element>
|
2704
2704
|
|
2705
|
-
<xsl:call-template name="
|
2705
|
+
<xsl:call-template name="insertAnnexAndBibliographyInSeparatePageSequences"/>
|
2706
2706
|
|
2707
|
-
<xsl:call-template name="insertBibliographyInSeparatePageSequences"/>
|
2707
|
+
<!-- <xsl:call-template name="insertBibliographyInSeparatePageSequences"/> -->
|
2708
2708
|
|
2709
2709
|
<!-- <xsl:call-template name="insertIndexInSeparatePageSequences"/> -->
|
2710
2710
|
</xsl:template> <!-- END: insertMainSectionsInSeparatePageSequences -->
|
2711
2711
|
|
2712
|
+
<xsl:template name="insertAnnexAndBibliographyInSeparatePageSequences">
|
2713
|
+
<xsl:for-each select="/*/*[local-name()='annex'] | /*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]] | /*/*[local-name()='indexsect']">
|
2714
|
+
<xsl:sort select="@displayorder" data-type="number"/>
|
2715
|
+
<xsl:choose>
|
2716
|
+
<xsl:when test="local-name() = 'annex' or local-name() = 'indexsect'">
|
2717
|
+
<xsl:element name="page_sequence" namespace="{$namespace_full}">
|
2718
|
+
<xsl:attribute name="main_page_sequence"/>
|
2719
|
+
<xsl:apply-templates select="." mode="update_xml_step_move_pagebreak"/>
|
2720
|
+
</xsl:element>
|
2721
|
+
</xsl:when>
|
2722
|
+
<xsl:otherwise> <!-- bibliography -->
|
2723
|
+
<xsl:element name="bibliography" namespace="{$namespace_full}"> <!-- save context element -->
|
2724
|
+
<xsl:element name="page_sequence" namespace="{$namespace_full}">
|
2725
|
+
<xsl:attribute name="main_page_sequence"/>
|
2726
|
+
<xsl:apply-templates select="." mode="update_xml_step_move_pagebreak"/>
|
2727
|
+
</xsl:element>
|
2728
|
+
</xsl:element>
|
2729
|
+
</xsl:otherwise>
|
2730
|
+
</xsl:choose>
|
2731
|
+
</xsl:for-each>
|
2732
|
+
</xsl:template>
|
2733
|
+
|
2712
2734
|
<xsl:template name="insertAnnexInSeparatePageSequences">
|
2713
2735
|
<xsl:for-each select="/*/*[local-name()='annex']">
|
2714
2736
|
<xsl:sort select="@displayorder" data-type="number"/>
|
@@ -6967,18 +6989,33 @@
|
|
6967
6989
|
|
6968
6990
|
<xsl:template match="*[local-name()='localityStack']"/>
|
6969
6991
|
|
6992
|
+
<xsl:variable name="pdfAttachmentsList_">
|
6993
|
+
<xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
|
6994
|
+
<attachment filename="{@name}"/>
|
6995
|
+
</xsl:for-each>
|
6996
|
+
</xsl:variable>
|
6997
|
+
<xsl:variable name="pdfAttachmentsList" select="xalan:nodeset($pdfAttachmentsList_)"/>
|
6998
|
+
|
6970
6999
|
<xsl:template match="*[local-name()='link']" name="link">
|
7000
|
+
<xsl:variable name="target_normalized" select="translate(@target, '\', '/')"/>
|
7001
|
+
<xsl:variable name="target_attachment_name" select="substring-after($target_normalized, '_attachments/')"/>
|
6971
7002
|
<xsl:variable name="target">
|
6972
7003
|
<xsl:choose>
|
6973
7004
|
<xsl:when test="@updatetype = 'true'">
|
6974
7005
|
<xsl:value-of select="concat(normalize-space(@target), '.pdf')"/>
|
6975
7006
|
</xsl:when>
|
7007
|
+
<!-- link to the PDF attachment -->
|
7008
|
+
<xsl:when test="$pdfAttachmentsList//attachment[@filename = current()/@target]">
|
7009
|
+
<xsl:value-of select="concat('url(embedded-file:', @target, ')')"/>
|
7010
|
+
</xsl:when>
|
7011
|
+
<!-- <xsl:when test="starts-with($target_normalized, '_') and contains($target_normalized, '_attachments/') and $pdfAttachmentsList//attachment[@filename = $target_attachment_name]">
|
7012
|
+
<xsl:value-of select="concat('url(embedded-file:', $target_attachment_name, ')')"/>
|
7013
|
+
</xsl:when>
|
6976
7014
|
<xsl:when test="contains(@target, concat('_', $inputxml_filename_prefix, '_attachments'))">
|
6977
|
-
<!-- link to the PDF attachment -->
|
6978
7015
|
<xsl:variable name="target_" select="translate(@target, '\', '/')"/>
|
6979
7016
|
<xsl:variable name="target__" select="substring-after($target_, concat('_', $inputxml_filename_prefix, '_attachments', '/'))"/>
|
6980
7017
|
<xsl:value-of select="concat('url(embedded-file:', $target__, ')')"/>
|
6981
|
-
</xsl:when>
|
7018
|
+
</xsl:when> -->
|
6982
7019
|
<xsl:otherwise>
|
6983
7020
|
<xsl:value-of select="normalize-space(@target)"/>
|
6984
7021
|
</xsl:otherwise>
|
@@ -11570,6 +11607,19 @@
|
|
11570
11607
|
<xsl:copy-of select="."/>
|
11571
11608
|
</xsl:template>
|
11572
11609
|
|
11610
|
+
<xsl:template match="*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']" mode="update_xml_step1">
|
11611
|
+
<xsl:copy>
|
11612
|
+
<xsl:copy-of select="@*"/>
|
11613
|
+
<xsl:if test="1 = 2"> <!-- remove attachment/text(), because attachments added in the template 'addPDFUAmeta' before applying 'update_xml_step1' -->
|
11614
|
+
<xsl:variable name="name_filepath" select="concat($inputxml_basepath, @name)"/>
|
11615
|
+
<xsl:variable name="file_exists" select="normalize-space(java:exists(java:java.io.File.new($name_filepath)))"/>
|
11616
|
+
<xsl:if test="$file_exists = 'false'"> <!-- copy attachment content only if file on disk doesnt exist -->
|
11617
|
+
<xsl:value-of select="normalize-space(.)"/>
|
11618
|
+
</xsl:if>
|
11619
|
+
</xsl:if>
|
11620
|
+
</xsl:copy>
|
11621
|
+
</xsl:template>
|
11622
|
+
|
11573
11623
|
<!-- add @id, mandatory for table auto-layout algorithm -->
|
11574
11624
|
<xsl:template match="*[local-name() = 'dl' or local-name() = 'table'][not(@id)]" mode="update_xml_step1">
|
11575
11625
|
<xsl:copy>
|
@@ -12440,11 +12490,13 @@
|
|
12440
12490
|
<xsl:for-each select="//*[contains(local-name(), '-standard')]/*[local-name() = 'metanorma-extension']/*[local-name() = 'attachment']">
|
12441
12491
|
<xsl:choose>
|
12442
12492
|
<xsl:when test="normalize-space() != ''">
|
12443
|
-
<
|
12493
|
+
<xsl:variable name="src_attachment" select="java:replaceAll(java:java.lang.String.new(.),'( | | )', '')"/> <!-- remove line breaks -->
|
12494
|
+
<pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$src_attachment}" filename="{@name}"/>
|
12444
12495
|
</xsl:when>
|
12445
12496
|
<xsl:otherwise>
|
12446
12497
|
<!-- _{filename}_attachments -->
|
12447
|
-
<xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/>
|
12498
|
+
<!-- <xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath, '_', $inputxml_filename_prefix, '_attachments', '/', @name, ')')"/> -->
|
12499
|
+
<xsl:variable name="url" select="concat('url(file:///',$inputxml_basepath , @name, ')')"/>
|
12448
12500
|
<pdf:embedded-file xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf" src="{$url}" filename="{@name}"/>
|
12449
12501
|
</xsl:otherwise>
|
12450
12502
|
</xsl:choose>
|
@@ -1,13 +1,15 @@
|
|
1
1
|
require "isodoc"
|
2
|
+
require "metanorma-generic"
|
3
|
+
require_relative "base_convert"
|
2
4
|
|
3
5
|
module IsoDoc
|
4
6
|
module IHO
|
5
7
|
# A {Converter} implementation that generates PDF HTML output, and a
|
6
8
|
# document schema encapsulation of the document for validation
|
7
|
-
class PdfConvert < IsoDoc::
|
9
|
+
class PdfConvert < IsoDoc::Generic::PdfConvert
|
8
10
|
def initialize(options)
|
9
|
-
@libdir = File.dirname(__FILE__)
|
10
11
|
super
|
12
|
+
@libdir = File.dirname(__FILE__)
|
11
13
|
end
|
12
14
|
|
13
15
|
def pdf_stylesheet(docxml)
|
@@ -17,6 +19,9 @@ module IsoDoc
|
|
17
19
|
"iho.specification.xsl"
|
18
20
|
end
|
19
21
|
end
|
22
|
+
|
23
|
+
include BaseConvert
|
24
|
+
include Init
|
20
25
|
end
|
21
26
|
end
|
22
27
|
end
|
@@ -7,10 +7,6 @@ module IsoDoc
|
|
7
7
|
# A {Converter} implementation that generates Word output, and a document
|
8
8
|
# schema encapsulation of the document for validation
|
9
9
|
class WordConvert < IsoDoc::Generic::WordConvert
|
10
|
-
def configuration
|
11
|
-
Metanorma::IHO.configuration
|
12
|
-
end
|
13
|
-
|
14
10
|
def make_body1(body, _docxml)
|
15
11
|
body.div class: "WordSection1" do |div1|
|
16
12
|
div1.p style: "font-size:0pt;" do |p|
|
@@ -15,22 +15,6 @@ module Metanorma
|
|
15
15
|
)
|
16
16
|
end
|
17
17
|
|
18
|
-
def fonts_manifest
|
19
|
-
{
|
20
|
-
"Arial" => nil,
|
21
|
-
"Calibri" => nil,
|
22
|
-
"Cambria Math" => nil,
|
23
|
-
"Courier New" => nil,
|
24
|
-
"Fira Code" => nil,
|
25
|
-
"Source Sans Pro Light" => nil,
|
26
|
-
"Source Serif Pro" => nil,
|
27
|
-
"Source Code Pro Light" => nil,
|
28
|
-
"Source Han Sans" => nil,
|
29
|
-
"Source Han Sans Normal" => nil,
|
30
|
-
"STIX Two Math" => nil,
|
31
|
-
}
|
32
|
-
end
|
33
|
-
|
34
18
|
def version
|
35
19
|
"Metanorma::IHO #{Metanorma::IHO::VERSION}"
|
36
20
|
end
|
data/metanorma-iho.gemspec
CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.require_paths = ["lib"]
|
28
28
|
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
|
29
29
|
|
30
|
-
spec.add_dependency "metanorma-generic", "~> 2.
|
30
|
+
spec.add_dependency "metanorma-generic", "~> 2.7.0"
|
31
31
|
|
32
32
|
spec.add_development_dependency "debug"
|
33
33
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
@@ -39,4 +39,5 @@ Gem::Specification.new do |spec|
|
|
39
39
|
spec.add_development_dependency "sassc", "2.4.0"
|
40
40
|
spec.add_development_dependency "simplecov", "~> 0.15"
|
41
41
|
spec.add_development_dependency "timecop", "~> 0.9"
|
42
|
+
spec.add_development_dependency "xml-c14n"
|
42
43
|
end
|
data/metanorma.yml
CHANGED
@@ -65,3 +65,15 @@ termsdefs_titles:
|
|
65
65
|
- Terms, definitions, symbols and abbreviated terms
|
66
66
|
normref_titles:
|
67
67
|
- References
|
68
|
+
fonts_manifest:
|
69
|
+
Arial:
|
70
|
+
Calibri:
|
71
|
+
Cambria Math:
|
72
|
+
Courier New:
|
73
|
+
Fira Code:
|
74
|
+
Source Sans Pro Light:
|
75
|
+
Source Serif Pro:
|
76
|
+
Source Code Pro Light:
|
77
|
+
Source Han Sans:
|
78
|
+
Source Han Sans Normal:
|
79
|
+
STIX Two Math:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-iho
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.1
|
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-
|
11
|
+
date: 2024-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: metanorma-generic
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.
|
19
|
+
version: 2.7.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.
|
26
|
+
version: 2.7.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: debug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -164,6 +164,20 @@ dependencies:
|
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0.9'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: xml-c14n
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
167
181
|
description: |
|
168
182
|
metanorma-iho lets you write IHO in AsciiDoc syntax.
|
169
183
|
|