Module: IsoDoc::Iso::BaseConvert

Included in:
HtmlConvert, WordConvert
Defined in:
lib/isodoc/iso/base_convert.rb

Instance Method Summary collapse

Instance Method Details

#annex_names(clause, num) ⇒ Object



65
66
67
68
# File 'lib/isodoc/iso/base_convert.rb', line 65

def annex_names(clause, num)
  appendix_names(clause, num)
  super
end

#annex_names1(clause, num, level) ⇒ Object



88
89
90
91
92
93
# File 'lib/isodoc/iso/base_convert.rb', line 88

def annex_names1(clause, num, level)
  @anchors[clause["id"]] = { label: num, xref: num, level: level }
  clause.xpath(ns("./clause | ./references")).each_with_index do |c, i|
    annex_names1(c, "#{num}.#{i + 1}", level + 1)
  end
end

#appendix_names(clause, num) ⇒ Object



70
71
72
73
74
75
76
# File 'lib/isodoc/iso/base_convert.rb', line 70

def appendix_names(clause, num)
  clause.xpath(ns("./appendix")).each_with_index do |c, i|
    @anchors[c["id"]] = anchor_struct(i + 1, nil, @appendix_lbl, "clause")
    @anchors[c["id"]][:level] = 2
    @anchors[c["id"]][:container] = clause["id"]
  end
end

#clausedelimObject



188
189
190
# File 'lib/isodoc/iso/base_convert.rb', line 188

def clausedelim
  ""
end

#eref_localities1(target, type, from, to, lang = "en") ⇒ Object



107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/isodoc/iso/base_convert.rb', line 107

def eref_localities1(target, type, from, to, lang = "en")
  subsection = from&.text&.match(/\./)
  type = type.downcase
  return l10n(eref_localities1_zh(target, type, from, to)) if lang == "zh"
  ret = type == "list" ? "" : ","
  loc = @locality[type] || type.sub(/^locality:/, "").capitalize
  ret += " #{loc}" unless subsection && type == "clause" ||
    type == "list" || target.match(/^IEV$|^IEC 60050-/)
  ret += " #{from.text}" if from
  ret += "–#{to.text}" if to
  ret += ")" if type == "list"
  l10n(ret)
end

#eref_localities1_zh(target, type, from, to) ⇒ Object



95
96
97
98
99
100
101
102
103
104
105
# File 'lib/isodoc/iso/base_convert.rb', line 95

def eref_localities1_zh(target, type, from, to)
  subsection = from&.text&.match(/\./)
  ret = type == "list" ? "" : ","
  ret += "#{from.text}" if from
  ret += "–#{to}" if to
  loc = (@locality[type] || type.sub(/^locality:/, "").capitalize )
  ret += " #{loc}" unless subsection && type == "clause" ||
    type == "list" || target.match(/^IEV$|^IEC 60050-/)
  ret += ")" if type == "list"
  ret
end

#error_parse(node, out) ⇒ Object

terms not defined in standoc



57
58
59
60
61
62
63
# File 'lib/isodoc/iso/base_convert.rb', line 57

def error_parse(node, out)
  case node.name
  when "appendix" then clause_parse(node, out)
  else
    super
  end
end

#example_p_parse(node, div) ⇒ Object



137
138
139
140
141
142
143
144
145
# File 'lib/isodoc/iso/base_convert.rb', line 137

def example_p_parse(node, div)
  name = node&.at(ns("./name"))&.remove
  div.p do |p|
    example_span_label(node, p, name)
    insert_tab(p, 1)
    node.first_element_child.children.each { |n| parse(n, p) }
  end
  node.element_children[1..-1].each { |n| parse(n, div) }
end

#example_parse(node, out) ⇒ Object



164
165
166
167
168
169
170
171
172
# File 'lib/isodoc/iso/base_convert.rb', line 164

def example_parse(node, out)
  out.div **{ id: node["id"], class: "example" } do |div|
    if node_begins_with_para(node)
      example_p_parse(node, div)
    else
      example_parse1(node, div)
    end
  end
end

#example_parse1(node, div) ⇒ Object



147
148
149
150
151
152
153
# File 'lib/isodoc/iso/base_convert.rb', line 147

def example_parse1(node, div)
  div.p do |p|
    example_span_label(node, p, node.at(ns("./name")))
    insert_tab(p, 1)
  end
  node.children.each { |n| parse(n, div) unless n.name == "name" }
end

#example_span_label(node, div, name) ⇒ Object



126
127
128
129
130
131
132
133
134
135
# File 'lib/isodoc/iso/base_convert.rb', line 126

def example_span_label(node, div, name)
  n = get_anchors[node["id"]]
  div.span **{ class: "example_label" } do |p|
    lbl = (n.nil? || n[:label].nil? || n[:label].empty?) ? @example_lbl :
      l10n("#{@example_lbl} #{n[:label]}")
    p << lbl
    name and !lbl.nil? and p << "&nbsp;&mdash; "
    name and name.children.each { |n| parse(n, div) }
  end
end

#foreword(isoxml, out) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/isodoc/iso/base_convert.rb', line 34

def foreword(isoxml, out)
  f = isoxml.at(ns("//foreword")) || return
  page_break(out)
  out.div **attr_code(id: f["id"]) do |s|
    s.h1(**{ class: "ForewordTitle" }) { |h1| h1 << @foreword_lbl }
    f.elements.each { |e| parse(e, s) unless e.name == "title" }
  end
end

#format_ref(ref, prefix, isopub, date, allparts) ⇒ Object



192
193
194
195
196
197
198
# File 'lib/isodoc/iso/base_convert.rb', line 192

def format_ref(ref, prefix, isopub, date, allparts)
  ref = ref.sub(/ \(All Parts\)/i, "")
  ref = docid_prefix(prefix, ref)
  return "[#{ref}]" if /^\d+$/.match(ref) && !prefix &&
    !/^\[.*\]$/.match(ref)
    ref
end

#implicit_reference(b) ⇒ Object



12
13
14
# File 'lib/isodoc/iso/base_convert.rb', line 12

def implicit_reference(b)
  b&.at(ns("./docidentifier"))&.text == "IEV"
end

#initial_anchor_names(d) ⇒ Object



43
44
45
46
# File 'lib/isodoc/iso/base_convert.rb', line 43

def initial_anchor_names(d)
  super
  introduction_names(d.at(ns("//introduction")))
end

#introduction(isoxml, out) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/isodoc/iso/base_convert.rb', line 16

def introduction(isoxml, out)
  f = isoxml.at(ns("//introduction")) || return
  num = f.at(ns(".//clause")) ? "0" : nil
  title_attr = { class: "IntroTitle" }
  page_break(out)
  out.div **{ class: "Section3", id: f["id"] } do |div|
    # div.h1 "Introduction", **attr_code(title_attr)
    clause_name(num, @introduction_lbl, div, title_attr)
    f.elements.each do |e|
      if e.name == "patent-notice"
        e.elements.each { |e1| parse(e1, div) }
      else
        parse(e, div) unless e.name == "title"
      end
    end
  end
end

#introduction_names(clause) ⇒ Object

we can reference 0-number clauses in introduction



49
50
51
52
53
54
# File 'lib/isodoc/iso/base_convert.rb', line 49

def introduction_names(clause)
  return if clause.nil?
  clause.xpath(ns("./clause")).each_with_index do |c, i|
    section_names1(c, "0.#{i + 1}", 2)
  end
end

#metadata_init(lang, script, labels) ⇒ Object



8
9
10
# File 'lib/isodoc/iso/base_convert.rb', line 8

def (lang, script, labels)
  @meta = Metadata.new(lang, script, labels)
end

#node_begins_with_para(node) ⇒ Object



155
156
157
158
159
160
161
162
# File 'lib/isodoc/iso/base_convert.rb', line 155

def node_begins_with_para(node)
  node.elements.each do |e|
    next if e.name == "name"
    return true if e.name == "p"
    return false
  end
  false
end

#prefix_container(container, linkend, target) ⇒ Object



121
122
123
124
# File 'lib/isodoc/iso/base_convert.rb', line 121

def prefix_container(container, linkend, target)
  delim = anchor(target, :type) == "listitem" ? " " : ", "
  l10n(anchor(container, :xref) + delim + linkend)
end

#section_names1(clause, num, level) ⇒ Object



78
79
80
81
82
83
84
85
86
# File 'lib/isodoc/iso/base_convert.rb', line 78

def section_names1(clause, num, level)
  @anchors[clause["id"]] =
    { label: num, level: level, xref: num }
  # subclauses are not prefixed with "Clause"
  clause.xpath(ns("./clause | ./terms | ./term | ./definitions | ./references")).
    each_with_index do |c, i|
    section_names1(c, "#{num}.#{i + 1}", level + 1)
  end
end

#term_parse(node, out) ⇒ Object



181
182
183
184
185
186
# File 'lib/isodoc/iso/base_convert.rb', line 181

def term_parse(node, out)
  termexamples_before_termnotes(node)
  out.p **{ class: "Terms", style:"text-align:left;" } do |p|
    node.children.each { |c| parse(c, p) }
  end
end

#termexamples_before_termnotes(node) ⇒ Object



174
175
176
177
178
179
# File 'lib/isodoc/iso/base_convert.rb', line 174

def termexamples_before_termnotes(node)
  return unless node.at(ns("./termnote")) && node.at(ns("./termexample"))
  return unless insert = node.at(ns("./definition"))
  insert = insertall_after_here(node, insert, "termexample")
  insert = insertall_after_here(node, insert, "termnote")
end