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



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

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

#annex_names1(clause, num, level) ⇒ Object



83
84
85
86
87
88
# File 'lib/isodoc/iso/base_convert.rb', line 83

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



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

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

#clause_parse_title(node, div, c1, out) ⇒ Object



206
207
208
209
# File 'lib/isodoc/iso/base_convert.rb', line 206

def clause_parse_title(node, div, c1, out)
  return inline_header_title(out, node, c1) if c1.nil?
  super
end

#clausedelimObject



190
191
192
# File 'lib/isodoc/iso/base_convert.rb', line 190

def clausedelim
  ""
end

#cleanup(docxml) ⇒ Object



211
212
213
214
215
216
# File 'lib/isodoc/iso/base_convert.rb', line 211

def cleanup(docxml)
  super
  remove_internal_hyperlinks(docxml)
  table_th_center(docxml)
  docxml
end

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



102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/isodoc/iso/base_convert.rb', line 102

def eref_localities1(target, type, from, to, delim, lang = "en")
  subsection = from&.text&.match(/\./)
  type = type.downcase
  return l10n(eref_localities1_zh(target, type, from, to, delim)) if lang == "zh"
  ret = (delim == ";") ? ";" : (type == "list") ? "" : delim
  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, delim) ⇒ Object



90
91
92
93
94
95
96
97
98
99
100
# File 'lib/isodoc/iso/base_convert.rb', line 90

def eref_localities1_zh(target, type, from, to, delim)
  subsection = from&.text&.match(/\./)
  ret = (delim == ";") ? ";" : (type == "list") ? "" : delim
  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



52
53
54
55
56
57
58
# File 'lib/isodoc/iso/base_convert.rb', line 52

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



132
133
134
135
136
137
138
139
140
# File 'lib/isodoc/iso/base_convert.rb', line 132

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



159
160
161
162
163
164
165
166
167
# File 'lib/isodoc/iso/base_convert.rb', line 159

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



142
143
144
145
146
147
148
# File 'lib/isodoc/iso/base_convert.rb', line 142

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



121
122
123
124
125
126
127
128
129
130
# File 'lib/isodoc/iso/base_convert.rb', line 121

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



29
30
31
32
33
34
35
36
# File 'lib/isodoc/iso/base_convert.rb', line 29

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



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

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

#hierarchical_formula_names(clause, num) ⇒ Object



237
238
239
240
241
242
243
244
245
246
# File 'lib/isodoc/iso/base_convert.rb', line 237

def hierarchical_formula_names(clause, num)
  c = IsoDoc::Function::XrefGen::Counter.new
  clause.xpath(ns(".//formula")).each do |t|
    next if t["id"].nil? || t["id"].empty?
    @anchors[t["id"]] =
      anchor_struct("#{num}#{hiersep}#{c.increment(t).print}", t,
                    t["inequality"] ? @inequality_lbl : @formula_lbl,
                    "formula", t["unnumbered"])
  end
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



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

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

#insertall_after_here(node, insert, name) ⇒ Object



169
170
171
172
173
174
175
176
# File 'lib/isodoc/iso/base_convert.rb', line 169

def insertall_after_here(node, insert, name)
  node.children.each do |n|
    next unless n.name == name
    insert.next = n.remove
    insert = n
  end
  insert
end

#introduction(isoxml, out) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
# 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|
    clause_name(num, @introduction_lbl, div, title_attr)
    f.elements.each do |e|
      parse(e, div) unless e.name == "title"
    end
  end
end

#introduction_names(clause) ⇒ Object

we can reference 0-number clauses in introduction



44
45
46
47
48
49
# File 'lib/isodoc/iso/base_convert.rb', line 44

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



150
151
152
153
154
155
156
157
# File 'lib/isodoc/iso/base_convert.rb', line 150

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



116
117
118
119
# File 'lib/isodoc/iso/base_convert.rb', line 116

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


218
219
220
221
222
223
224
225
226
227
228
# File 'lib/isodoc/iso/base_convert.rb', line 218

def remove_internal_hyperlinks(docxml)
  docxml.xpath("//a[@href]").each do |a|
    next unless /^#/.match(a[:href])
    anchor = a[:href].sub(/^#/, "")
    next if a["epub:type"] == "footnote"
    next unless @anchors[anchor]
    next unless @anchors[anchor][:type]
    next if @anchors[anchor][:type] == "clause"
    a.replace(a.children)
  end
end

#section_names1(clause, num, level) ⇒ Object



73
74
75
76
77
78
79
80
81
# File 'lib/isodoc/iso/base_convert.rb', line 73

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

#table_footnote_reference_format(a) ⇒ Object



202
203
204
# File 'lib/isodoc/iso/base_convert.rb', line 202

def table_footnote_reference_format(a)
  a.content = a.content + ")"
end

#table_th_center(docxml) ⇒ Object



230
231
232
233
234
235
# File 'lib/isodoc/iso/base_convert.rb', line 230

def table_th_center(docxml)
  docxml.xpath("//thead//th | //thead//td").each do |th|
    th["align"] = "center"
    th["valign"] = "middle"
  end
end

#termdef_parse(node, out) ⇒ Object



185
186
187
188
# File 'lib/isodoc/iso/base_convert.rb', line 185

def termdef_parse(node, out)
  termexamples_before_termnotes(node)
  super
end

#termexamples_before_termnotes(node) ⇒ Object



178
179
180
181
182
183
# File 'lib/isodoc/iso/base_convert.rb', line 178

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