Module: IsoDoc::Function::Blocks
- Included in:
- Common
- Defined in:
- lib/isodoc/function/blocks.rb
Constant Summary collapse
- EXAMPLE_TBL_ATTR =
{ valign: "top", class: "example_label", style: "width:82.8pt;padding:0 0 0 0;margin-left:0pt" }.freeze
Instance Method Summary collapse
- #admonition_class(node) ⇒ Object
- #admonition_name(node, type) ⇒ Object
- #admonition_name_parse(_node, div, name) ⇒ Object
- #admonition_parse(node, out) ⇒ Object
- #annotation_parse(node, out) ⇒ Object
-
#example_div_parse(node, out) ⇒ Object
used if we are boxing examples.
- #example_label(node) ⇒ Object
- #example_parse(node, out) ⇒ Object
- #example_table_attr(node) ⇒ Object
- #example_table_parse(node, out) ⇒ Object
- #figure_key(out) ⇒ Object
- #figure_name_parse(node, div, name) ⇒ Object
- #figure_parse(node, out) ⇒ Object
- #formula_parse(node, out) ⇒ Object
- #formula_parse1(node, out) ⇒ Object
- #formula_where(dl, out) ⇒ Object
- #image_parse(node, out, caption) ⇒ Object
- #image_title_parse(out, caption) ⇒ Object
- #note_label(node) ⇒ Object
- #note_p_parse(node, div) ⇒ Object
- #note_parse(node, out) ⇒ Object
- #note_parse1(node, div) ⇒ Object
- #para_attrs(node) ⇒ Object
- #para_parse(node, out) ⇒ Object
- #permission_parse(node, out) ⇒ Object
- #pre_parse(node, out) ⇒ Object
- #quote_attribution(node, out) ⇒ Object
- #quote_parse(node, out) ⇒ Object
- #recommendation_name(node, out, type) ⇒ Object
- #recommendation_parse(node, out) ⇒ Object
- #requirement_component_parse(node, out) ⇒ Object
- #requirement_parse(node, out) ⇒ Object
- #requirement_skip_parse(node, out) ⇒ Object
- #sourcecode_name_parse(_node, div, name) ⇒ Object
- #sourcecode_parse(node, out) ⇒ Object
Instance Method Details
#admonition_class(node) ⇒ Object
157 158 159 |
# File 'lib/isodoc/function/blocks.rb', line 157 def admonition_class(node) "Admonition" end |
#admonition_name(node, type) ⇒ Object
161 162 163 164 165 166 167 |
# File 'lib/isodoc/function/blocks.rb', line 161 def admonition_name(node, type) name = node&.at(ns("./name")) and return name name = Nokogiri::XML::Node.new('name', node.document) return unless type && @admonition[type] name << @admonition[type]&.upcase name end |
#admonition_name_parse(_node, div, name) ⇒ Object
125 126 127 128 129 |
# File 'lib/isodoc/function/blocks.rb', line 125 def admonition_name_parse(_node, div, name) div.p **{ class: "AdmonitionTitle", align: "center" } do |p| name.children.each { |n| parse(n, p) } end end |
#admonition_parse(node, out) ⇒ Object
169 170 171 172 173 174 175 176 177 178 |
# File 'lib/isodoc/function/blocks.rb', line 169 def admonition_parse(node, out) type = node["type"] name = admonition_name(node, type) out.div **{ class: admonition_class(node) } do |t| admonition_name_parse(node, t, name) if name node.children.each do |n| parse(n, t) unless n.name == "name" end end end |
#annotation_parse(node, out) ⇒ Object
147 148 149 150 151 152 153 154 155 |
# File 'lib/isodoc/function/blocks.rb', line 147 def annotation_parse(node, out) @sourcecode = false @annotation = true out.span **{ class: "zzMoveToFollowing" } do |s| s << "<#{node.at(ns("//callout[@target='#{node['id']}']")).text}> " end node.children.each { |n| parse(n, out) } @annotation = false end |
#example_div_parse(node, out) ⇒ Object
used if we are boxing examples
85 86 87 88 89 90 91 92 93 94 |
# File 'lib/isodoc/function/blocks.rb', line 85 def example_div_parse(node, out) out.div **attr_code(id: node["id"], class: "example") do |div| div.p **{ class: "example-title" } do |p| p << example_label(node) end node.children.each do |n| parse(n, div) end end end |
#example_label(node) ⇒ Object
74 75 76 77 78 |
# File 'lib/isodoc/function/blocks.rb', line 74 def example_label(node) n = get_anchors[node["id"]] return @example_lbl if n.nil? || n[:label].empty? l10n("#{@example_lbl} #{n[:label]}") end |
#example_parse(node, out) ⇒ Object
115 116 117 |
# File 'lib/isodoc/function/blocks.rb', line 115 def example_parse(node, out) example_div_parse(node, out) end |
#example_table_attr(node) ⇒ Object
96 97 98 99 100 |
# File 'lib/isodoc/function/blocks.rb', line 96 def example_table_attr(node) attr_code(id: node["id"], class: "example", cellspacing: 0, cellpadding: 0, style: "border-collapse:collapse" ) end |
#example_table_parse(node, out) ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/isodoc/function/blocks.rb', line 102 def example_table_parse(node, out) out.table **example_table_attr(node) do |t| t.tr do |tr| tr.td **EXAMPLE_TBL_ATTR do |td| td << example_label(node) end tr.td **{ valign: "top", class: "example" } do |td| node.children.each { |n| parse(n, td) } end end end end |
#figure_key(out) ⇒ Object
55 56 57 58 59 |
# File 'lib/isodoc/function/blocks.rb', line 55 def figure_key(out) out.p do |p| p.b { |b| b << @key_lbl } end end |
#figure_name_parse(node, div, name) ⇒ Object
44 45 46 47 48 49 50 51 52 53 |
# File 'lib/isodoc/function/blocks.rb', line 44 def figure_name_parse(node, div, name) return if name.nil? && node.at(ns("./figure")) div.p **{ class: "FigureTitle", align: "center" } do |p| p << l10n("#{@figure_lbl} #{get_anchors[node['id']][:label]}") if name p << " — " name.children.each { |n| parse(n, div) } end end end |
#figure_parse(node, out) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/isodoc/function/blocks.rb', line 61 def figure_parse(node, out) @in_figure = true name = node.at(ns("./name")) out.div **attr_code(id: node["id"], class: "figure") do |div| node.children.each do |n| figure_key(out) if n.name == "dl" parse(n, div) unless n.name == "name" end figure_name_parse(node, div, name) end @in_figure = false end |
#formula_parse(node, out) ⇒ Object
196 197 198 199 200 201 202 203 |
# File 'lib/isodoc/function/blocks.rb', line 196 def formula_parse(node, out) formula_parse1(node, out) formula_where(node.at(ns("./dl")), out) node.children.each do |n| next if %w(stem dl).include? n.name parse(n, out) end end |
#formula_parse1(node, out) ⇒ Object
186 187 188 189 190 191 192 193 194 |
# File 'lib/isodoc/function/blocks.rb', line 186 def formula_parse1(node, out) out.div **attr_code(id: node["id"], class: "formula") do |div| div.p do |p| parse(node.at(ns("./stem")), div) insert_tab(div, 1) div << "(#{get_anchors[node['id']][:label]})" end end end |
#formula_where(dl, out) ⇒ Object
180 181 182 183 184 |
# File 'lib/isodoc/function/blocks.rb', line 180 def formula_where(dl, out) return unless dl out.p { |p| p << @where_lbl } parse(dl, out) end |
#image_parse(node, out, caption) ⇒ Object
256 257 258 259 260 261 262 263 |
# File 'lib/isodoc/function/blocks.rb', line 256 def image_parse(node, out, caption) attrs = { src: node["src"], height: node["height"] || "auto", width: node["width"] || "auto", alt: node["alt"] } out.img **attr_code(attrs) image_title_parse(out, caption) end |
#image_title_parse(out, caption) ⇒ Object
248 249 250 251 252 253 254 |
# File 'lib/isodoc/function/blocks.rb', line 248 def image_title_parse(out, caption) unless caption.nil? out.p **{ class: "FigureTitle", align: "center" } do |p| p.b { |b| b << caption.to_s } end end end |
#note_label(node) ⇒ Object
5 6 7 8 9 |
# File 'lib/isodoc/function/blocks.rb', line 5 def note_label(node) n = get_anchors[node["id"]] return @note_lbl if n.nil? || n[:label].nil? || n[:label].empty? l10n("#{@note_lbl} #{n[:label]}") end |
#note_p_parse(node, div) ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/isodoc/function/blocks.rb', line 11 def note_p_parse(node, div) div.p do |p| p.span **{ class: "note_label" } do |s| s << note_label(node) end 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 |
#note_parse(node, out) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/isodoc/function/blocks.rb', line 32 def note_parse(node, out) @note = true out.div **{ id: node["id"], class: "Note" } do |div| if node.first_element_child.name == "p" note_p_parse(node, div) else note_parse1(node, div) end end @note = false end |
#note_parse1(node, div) ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/isodoc/function/blocks.rb', line 22 def note_parse1(node, div) div.p do |p| p.span **{ class: "note_label" } do |s| s << note_label(node) end insert_tab(p, 1) end node.children.each { |n| parse(n, div) } end |
#para_attrs(node) ⇒ Object
205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/isodoc/function/blocks.rb', line 205 def para_attrs(node) classtype = nil classtype = "MsoCommentText" if in_comment classtype = "Sourcecode" if @annotation attrs = { class: classtype, id: node["id"] } unless node["align"].nil? attrs[:align] = node["align"] unless node["align"] == "justify" attrs[:style] = "text-align:#{node['align']}" end attrs end |
#para_parse(node, out) ⇒ Object
217 218 219 220 221 222 223 224 225 |
# File 'lib/isodoc/function/blocks.rb', line 217 def para_parse(node, out) out.p **attr_code(para_attrs(node)) do |p| unless @termdomain.empty? p << "<#{@termdomain}> " @termdomain = "" end node.children.each { |n| parse(n, p) } end end |
#permission_parse(node, out) ⇒ Object
297 298 299 300 301 302 303 304 |
# File 'lib/isodoc/function/blocks.rb', line 297 def (node, out) out.div **{ class: "permission" } do |t| recommendation_name(node, t, @permission_lbl) node.children.each do |n| parse(n, t) unless %w(label title).include? n.name end end end |
#pre_parse(node, out) ⇒ Object
143 144 145 |
# File 'lib/isodoc/function/blocks.rb', line 143 def pre_parse(node, out) out.pre node.text, **attr_code(id: node["id"]) end |
#quote_attribution(node, out) ⇒ Object
227 228 229 230 231 232 233 234 235 |
# File 'lib/isodoc/function/blocks.rb', line 227 def quote_attribution(node, out) = node.at(ns("./author")) source = node.at(ns("./source")) out.p **{ class: "QuoteAttribution" } do |p| p << "— #{.text}" if p << ", " if && source eref_parse(source, p) if source end end |
#quote_parse(node, out) ⇒ Object
237 238 239 240 241 242 243 244 245 246 |
# File 'lib/isodoc/function/blocks.rb', line 237 def quote_parse(node, out) attrs = para_attrs(node) attrs[:class] = "Quote" out.div **attr_code(attrs) do |p| node.children.each do |n| parse(n, p) unless ["author", "source"].include? n.name end quote_attribution(node, out) end end |
#recommendation_name(node, out, type) ⇒ Object
265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/isodoc/function/blocks.rb', line 265 def recommendation_name(node, out, type) label = node.at(ns("./label")) title = node.at(ns("./title")) out.p **{ class: "AdmonitionTitle" } do |b| b << l10n("#{type} #{get_anchors[node['id']][:label]}:") if label || title b.br label and label.children.each { |n| parse(n,b) } b << "#{clausedelim} " if label && title title and title.children.each { |n| parse(n,b) } end end end |
#recommendation_parse(node, out) ⇒ Object
279 280 281 282 283 284 285 286 |
# File 'lib/isodoc/function/blocks.rb', line 279 def recommendation_parse(node, out) out.div **{ class: "recommend" } do |t| recommendation_name(node, t, @recommendation_lbl) node.children.each do |n| parse(n, t) unless %w(label title).include? n.name end end end |
#requirement_component_parse(node, out) ⇒ Object
306 307 308 309 310 311 312 313 |
# File 'lib/isodoc/function/blocks.rb', line 306 def requirement_component_parse(node, out) return if node["exclude"] == "true" out.div **{ class: "requirement-" + node.name } do |div| node.children.each do |n| parse(n, div) end end end |
#requirement_parse(node, out) ⇒ Object
288 289 290 291 292 293 294 295 |
# File 'lib/isodoc/function/blocks.rb', line 288 def requirement_parse(node, out) out.div **{ class: "require" } do |t| recommendation_name(node, t, @requirement_lbl) node.children.each do |n| parse(n, t) unless %w(label title).include? n.name end end end |
#requirement_skip_parse(node, out) ⇒ Object
315 316 |
# File 'lib/isodoc/function/blocks.rb', line 315 def requirement_skip_parse(node, out) end |
#sourcecode_name_parse(_node, div, name) ⇒ Object
119 120 121 122 123 |
# File 'lib/isodoc/function/blocks.rb', line 119 def sourcecode_name_parse(_node, div, name) div.p **{ class: "SourceTitle", align: "center" } do |p| name.children.each { |n| parse(n, p) } end end |
#sourcecode_parse(node, out) ⇒ Object
131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/isodoc/function/blocks.rb', line 131 def sourcecode_parse(node, out) name = node.at(ns("./name")) out.p **attr_code(id: node["id"], class: "Sourcecode") do |div| @sourcecode = true node.children.each do |n| parse(n, div) unless n.name == "name" end @sourcecode = false sourcecode_name_parse(node, div, name) if name end end |