metanorma-iho 0.1.2 → 0.2.4

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.
@@ -0,0 +1,25 @@
1
+ require "isodoc"
2
+ require_relative "metadata"
3
+ require_relative "xref"
4
+
5
+ module IsoDoc
6
+ module IHO
7
+ module Init
8
+ def metadata_init(lang, script, labels)
9
+ @meta = Metadata.new(lang, script, labels)
10
+ end
11
+
12
+ def xref_init(lang, script, klass, labels, options)
13
+ html = HtmlConvert.new(language: lang, script: script)
14
+ @xrefs = Xref.new(lang, script, html, labels, options)
15
+ end
16
+
17
+ def i18n_init(lang, script, i18nyaml = nil)
18
+ @i18n = I18n.new(
19
+ lang, script, i18nyaml ||
20
+ Metanorma::IHO.configuration.i18nyaml || @i18nyaml)
21
+ end
22
+ end
23
+ end
24
+ end
25
+
@@ -1,5 +1,4 @@
1
1
  require "isodoc"
2
- require "isodoc/iho/metadata"
3
2
 
4
3
  module IsoDoc
5
4
  module IHO
@@ -1,10 +1,11 @@
1
- require_relative "base_convert"
1
+ require_relative "init"
2
2
  require "isodoc"
3
3
  require "metanorma-generic"
4
4
 
5
5
  module IsoDoc
6
6
  module IHO
7
7
  class PresentationXMLConvert < IsoDoc::Generic::PresentationXMLConvert
8
+ include Init
8
9
  end
9
10
  end
10
11
  end
@@ -1,6 +1,6 @@
1
1
  require "isodoc"
2
2
  require "isodoc/generic/word_convert"
3
- require "isodoc/iho/metadata"
3
+ require_relative "init"
4
4
 
5
5
  module IsoDoc
6
6
  module IHO
@@ -23,6 +23,7 @@ module IsoDoc
23
23
  def make_body2(body, docxml)
24
24
  body.div **{ class: "WordSection2" } do |div2|
25
25
  boilerplate docxml, div2
26
+ preface_block docxml, div2
26
27
  abstract docxml, div2
27
28
  foreword docxml, div2
28
29
  introduction docxml, div2
@@ -41,6 +42,7 @@ module IsoDoc
41
42
  end
42
43
 
43
44
  include BaseConvert
45
+ include Init
44
46
  end
45
47
  end
46
48
  end
@@ -6,7 +6,7 @@ module IsoDoc
6
6
  def annex_name_lbl(clause, num)
7
7
  lbl = clause["obligation"] == "informative" ?
8
8
  @labels["appendix"] : @labels["annex"]
9
- l10n("<b>#{lbl} #{num}</b>")
9
+ l10n("<strong>#{lbl} #{num}</strong>")
10
10
  end
11
11
 
12
12
  def annex_names(clause, num)
@@ -15,7 +15,7 @@ module IsoDoc
15
15
  @labels["appendix"] : @labels["annex"]
16
16
  @anchors[clause["id"]] =
17
17
  { label: annex_name_lbl(clause, num), type: "clause",
18
- xref: "#{lbl} #{num}", level: 1 }
18
+ xref: "#{lbl} #{num}", level: 1, value: lbl }
19
19
  if a = single_annex_special_section(clause)
20
20
  annex_names1(a, "#{num}", 1)
21
21
  else
@@ -59,6 +59,16 @@ module IsoDoc
59
59
  @anchors[c["id"]][:container] = clause["id"]
60
60
  end
61
61
  end
62
+
63
+ def section_names1(clause, num, level)
64
+ @anchors[clause["id"]] =
65
+ { label: num, level: level, xref: l10n("#{@labels["subclause"]} #{num}"),
66
+ type: "clause" }
67
+ clause.xpath(ns(SUBCLAUSES)).
68
+ each_with_index do |c, i|
69
+ section_names1(c, "#{num}.#{i + 1}", level + 1)
70
+ end
71
+ end
62
72
  end
63
73
  end
64
74
  end
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module IHO
3
- VERSION = "0.1.2"
3
+ VERSION = "0.2.4"
4
4
  end
5
5
  end
@@ -27,9 +27,8 @@ Gem::Specification.new do |spec|
27
27
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
28
28
 
29
29
  spec.add_dependency "htmlentities", "~> 4.3.4"
30
- spec.add_dependency "metanorma-standoc", "~> 1.4.0"
31
- spec.add_dependency "isodoc", "~> 1.1.0"
32
- spec.add_dependency 'metanorma-generic', '~> 1.5.0'
30
+ spec.add_dependency "isodoc", "~> 1.2.0"
31
+ spec.add_dependency 'metanorma-generic', '~> 1.7.0'
33
32
 
34
33
  spec.add_development_dependency "byebug", "~> 9.1"
35
34
  spec.add_development_dependency "sassc", "2.4.0"
@@ -9,6 +9,7 @@ logo_paths:
9
9
  - lib/isodoc/iho/html/image002.png
10
10
  - lib/isodoc/iho/html/image003.png
11
11
  validate_rng_file: lib/asciidoctor/iho/iho.rng
12
+ i18nyaml: lib/isodoc/iho/i18n-en.yaml
12
13
  htmlcoverpage: lib/isodoc/iho/html/html_iho_titlepage.html
13
14
  htmlintropage: lib/isodoc/iho/html/html_iho_intro.html
14
15
  htmlstylesheet: lib/isodoc/iho/html/htmlstyle.scss
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.1.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-26 00:00:00.000000000 Z
11
+ date: 2020-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -24,48 +24,34 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.3.4
27
- - !ruby/object:Gem::Dependency
28
- name: metanorma-standoc
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 1.4.0
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 1.4.0
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: isodoc
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
31
  - - "~>"
46
32
  - !ruby/object:Gem::Version
47
- version: 1.1.0
33
+ version: 1.2.0
48
34
  type: :runtime
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
38
  - - "~>"
53
39
  - !ruby/object:Gem::Version
54
- version: 1.1.0
40
+ version: 1.2.0
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: metanorma-generic
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
45
  - - "~>"
60
46
  - !ruby/object:Gem::Version
61
- version: 1.5.0
47
+ version: 1.7.0
62
48
  type: :runtime
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
52
  - - "~>"
67
53
  - !ruby/object:Gem::Version
68
- version: 1.5.0
54
+ version: 1.7.0
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: byebug
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -254,8 +240,10 @@ files:
254
240
  - lib/isodoc/iho/html/wordstyle.css
255
241
  - lib/isodoc/iho/html/wordstyle.scss
256
242
  - lib/isodoc/iho/html_convert.rb
243
+ - lib/isodoc/iho/i18n-en.yaml
257
244
  - lib/isodoc/iho/iho.specification.xsl
258
245
  - lib/isodoc/iho/iho.standard.xsl
246
+ - lib/isodoc/iho/init.rb
259
247
  - lib/isodoc/iho/metadata.rb
260
248
  - lib/isodoc/iho/pdf_convert.rb
261
249
  - lib/isodoc/iho/presentation_xml_convert.rb