Module: IsoDoc::Function::Inline

Included in:
Common
Defined in:
lib/isodoc/function/inline.rb

Instance Method Summary collapse

Instance Method Details

#anchor_linkend(node, linkend) ⇒ Object



44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/isodoc/function/inline.rb', line 44

def anchor_linkend(node, linkend)
  if node["citeas"].nil? && node["bibitemid"] 
    return anchor(node["bibitemid"] ,:xref) || "???"
  elsif node["target"] && !/.#./.match(node["target"])
    linkend = anchor(node["target"], :xref)
    container = anchor(node["target"], :container, false)
    (container && get_note_container_id(node) != container &&
     @anchors[node["target"]]) &&
    linkend = prefix_container(container, linkend, node["target"])
  end
  linkend || "???"
end

#bookmark_parse(node, out) ⇒ Object



157
158
159
# File 'lib/isodoc/function/inline.rb', line 157

def bookmark_parse(node, out)
  out.a **attr_code(id: node["id"])
end

#br_parse(node, out) ⇒ Object



19
20
21
# File 'lib/isodoc/function/inline.rb', line 19

def br_parse(node, out)
  out.br
end

#callout_parse(node, out) ⇒ Object



36
37
38
# File 'lib/isodoc/function/inline.rb', line 36

def callout_parse(node, out)
  out << " &lt;#{node.text}&gt;"
end

#concept_parse(node, out) ⇒ Object



101
102
103
104
105
106
107
108
109
110
111
# File 'lib/isodoc/function/inline.rb', line 101

def concept_parse(node, out)
  content = node.first_element_child.children.select { |c| c.name != "locality" }.
    select { |c| !c.text? || /\S/.match(c) }
  if content.empty?
    out << "[Term defined in "
    parse(node.first_element_child, out)
    out << "]"
  else
    content.each { |n| parse(n, out) }
  end
end

#em_parse(node, out) ⇒ Object



167
168
169
170
171
# File 'lib/isodoc/function/inline.rb', line 167

def em_parse(node, out)
  out.i do |e|
    node.children.each { |n| parse(n, e) }
  end
end

#eref_localities(refs, target) ⇒ Object



74
75
76
77
78
79
80
81
82
83
84
# File 'lib/isodoc/function/inline.rb', line 74

def eref_localities(refs, target)
  ret = ""
  refs.each do |r|
    ret += if r["type"] == "whole" then l10n(", #{@whole_of_text}")
           else
             eref_localities1(target, r["type"], r.at(ns("./referenceFrom")),
                              r.at(ns("./referenceTo")), @lang)
           end
  end
  ret
end

#eref_parse(node, out) ⇒ Object



86
87
88
89
90
91
92
93
94
95
# File 'lib/isodoc/function/inline.rb', line 86

def eref_parse(node, out)
  linkend = get_linkend(node)
  if node["type"] == "footnote"
    out.sup do |s|
      s.a(**{ "href": "#" + node["bibitemid"] }) { |l| l << linkend }
    end
  else
    out.a(**{ "href": "#" + node["bibitemid"] }) { |l| l << linkend }
  end
end

#error_parse(node, out) ⇒ Object



203
204
205
206
207
208
# File 'lib/isodoc/function/inline.rb', line 203

def error_parse(node, out)
  text = node.to_xml.gsub(/</, "&lt;").gsub(/>/, "&gt;")
  out.para do |p|
    p.b(**{ role: "strong" }) { |e| e << text }
  end
end

#get_linkend(node) ⇒ Object



57
58
59
60
61
62
63
64
65
66
# File 'lib/isodoc/function/inline.rb', line 57

def get_linkend(node)
  link = anchor_linkend(node, docid_l10n(node["target"] || node["citeas"]))
  link += eref_localities(node.xpath(ns("./locality")), link)
  contents = node.children.select { |c| c.name != "locality" }.
    select { |c| !c.text? || /\S/.match(c) }
  return link if contents.nil? || contents.empty?
  Nokogiri::XML::NodeSet.new(node.document, contents).to_xml
  # so not <origin bibitemid="ISO7301" citeas="ISO 7301">
  # <locality type="section"><reference>3.1</reference></locality></origin>
end

#hr_parse(node, out) ⇒ Object



15
16
17
# File 'lib/isodoc/function/inline.rb', line 15

def hr_parse(node, out)
  out.hr
end

#image_parse(node, out, caption) ⇒ Object



133
134
135
136
137
138
139
140
141
# File 'lib/isodoc/function/inline.rb', line 133

def image_parse(node, out, caption)
  attrs = { src: node["src"],
            height: node["height"] || "auto",
            width: node["width"] || "auto",
            title: node["title"],
            alt: node["alt"]  }
  out.img **attr_code(attrs)
  image_title_parse(out, caption)
end

#image_title_parse(out, caption) ⇒ Object



125
126
127
128
129
130
131
# File 'lib/isodoc/function/inline.rb', line 125

def image_title_parse(out, caption)
  unless caption.nil?
    out.p **{ class: "FigureTitle", style: "text-align:center;" } do |p|
      p.b { |b| b << caption.to_s }
    end
  end
end

#index_parse(node, out) ⇒ Object



23
24
# File 'lib/isodoc/function/inline.rb', line 23

def index_parse(node, out)
end

#keyword_parse(node, out) ⇒ Object



161
162
163
164
165
# File 'lib/isodoc/function/inline.rb', line 161

def keyword_parse(node, out)
  out.span **{ class: "keyword" } do |s|
    node.children.each { |n| parse(n, s) }
  end
end


26
27
28
29
30
31
32
33
34
# File 'lib/isodoc/function/inline.rb', line 26

def link_parse(node, out)
  out.a **attr_code(href: node["target"], title: node["alt"]) do |l|
    if node.text.empty?
      l << node["target"].sub(/^mailto:/, "")
    else
      node.children.each { |n| parse(n, l) }
    end
  end
end

#page_break(out) ⇒ Object



7
8
9
# File 'lib/isodoc/function/inline.rb', line 7

def page_break(out)
  out.br
end

#pagebreak_parse(_node, out) ⇒ Object



11
12
13
# File 'lib/isodoc/function/inline.rb', line 11

def pagebreak_parse(_node, out)
  out.br
end

#prefix_container(container, linkend, _target) ⇒ Object



40
41
42
# File 'lib/isodoc/function/inline.rb', line 40

def prefix_container(container, linkend, _target)
  l10n(anchor(container, :xref) + ", " + linkend)
end

#section_break(body) ⇒ Object



3
4
5
# File 'lib/isodoc/function/inline.rb', line 3

def section_break(body)
  body.br
end

#smallcap_parse(node, xml) ⇒ Object



143
144
145
146
147
# File 'lib/isodoc/function/inline.rb', line 143

def smallcap_parse(node, xml)
  xml.span **{ style: "font-variant:small-caps;" } do |s|
    node.children.each { |n| parse(n, s) }
  end
end

#stem_parse(node, out) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
# File 'lib/isodoc/function/inline.rb', line 113

def stem_parse(node, out)
  ooml = if node["type"] == "AsciiMath"
           "#{@openmathdelim}#{HTMLEntities.new.encode(node.text)}#{@closemathdelim}"
         elsif node["type"] == "MathML" then node.first_element_child.to_s
         else
           HTMLEntities.new.encode(node.text)
         end
  out.span **{ class: "stem" } do |span|
    span.parent.add_child ooml
  end
end

#strike_parse(node, out) ⇒ Object



197
198
199
200
201
# File 'lib/isodoc/function/inline.rb', line 197

def strike_parse(node, out)
  out.s do |e|
    node.children.each { |n| parse(n, e) }
  end
end

#strong_parse(node, out) ⇒ Object



173
174
175
176
177
# File 'lib/isodoc/function/inline.rb', line 173

def strong_parse(node, out)
  out.b do |e|
    node.children.each { |n| parse(n, e) }
  end
end

#sub_parse(node, out) ⇒ Object



185
186
187
188
189
# File 'lib/isodoc/function/inline.rb', line 185

def sub_parse(node, out)
  out.sub do |e|
    node.children.each { |n| parse(n, e) }
  end
end

#sup_parse(node, out) ⇒ Object



179
180
181
182
183
# File 'lib/isodoc/function/inline.rb', line 179

def sup_parse(node, out)
  out.sup do |e|
    node.children.each { |n| parse(n, e) }
  end
end

#termrefelem_parse(node, out) ⇒ Object



97
98
99
# File 'lib/isodoc/function/inline.rb', line 97

def termrefelem_parse(node, out)
  out << "Termbase #{node['base']}, term ID #{node['target']}"
end

#text_parse(node, out) ⇒ Object



149
150
151
152
153
154
155
# File 'lib/isodoc/function/inline.rb', line 149

def text_parse(node, out)
  return if node.nil? || node.text.nil?
  text = node.to_s
  text = text.gsub("\n", "<br/>").gsub("<br/> ", "<br/>&nbsp;").
    gsub(/[ ](?=[ ])/, "&nbsp;") if in_sourcecode
  out << text
end

#tt_parse(node, out) ⇒ Object



191
192
193
194
195
# File 'lib/isodoc/function/inline.rb', line 191

def tt_parse(node, out)
  out.tt do |e|
    node.children.each { |n| parse(n, e) }
  end
end

#xref_parse(node, out) ⇒ Object



68
69
70
71
72
# File 'lib/isodoc/function/inline.rb', line 68

def xref_parse(node, out)
  target = /#/.match(node["target"]) ? node["target"].sub(/#/, ".html#") :
    "##{node["target"]}"
    out.a(**{ "href": target }) { |l| l << get_linkend(node) }
end