Module: Asciidoctor::ISO::Base

Included in:
Converter
Defined in:
lib/asciidoctor/iso/base.rb

Constant Summary collapse

TERM_REFERENCE_RE_STR =
<<~REGEXP.freeze
  ^(?<xref><xref[^>]+>([^<]*</xref>)?)
         (,\s(?<text>.*))?
  $
REGEXP
TERM_REFERENCE_RE =
Regexp.new(TERM_REFERENCE_RE_STR.gsub(/\s/, "").gsub(/_/, "\\s"),
Regexp::IGNORECASE | Regexp::MULTILINE)

Instance Method Summary collapse

Instance Method Details

#add_term_source(xml_t, seen_xref, m) ⇒ Object



149
150
151
152
153
154
155
# File 'lib/asciidoctor/iso/base.rb', line 149

def add_term_source(xml_t, seen_xref, m)
  xml_t.origin seen_xref.children[0].content,
    **attr_code(term_source_attr(seen_xref))
  m[:text] && xml_t.modification do |mod|
    mod.p { |p| p << m[:text].sub(/^\s+/, "") }
  end
end

#content(node) ⇒ Object



20
21
22
# File 'lib/asciidoctor/iso/base.rb', line 20

def content(node)
  node.content
end

#default_fonts(node) ⇒ Object



79
80
81
82
83
84
85
86
87
88
# File 'lib/asciidoctor/iso/base.rb', line 79

def default_fonts(node)
  b = node.attr("body-font") ||
    (node.attr("script") == "Hans" ? '"SimSun",serif' :
     '"Cambria",serif')
  h = node.attr("header-font") ||
    (node.attr("script") == "Hans" ? '"SimHei",sans-serif' :
     '"Cambria",serif')
  m = node.attr("monospace-font") || '"Courier New",monospace'
  "$bodyfont: #{b};\n$headerfont: #{h};\n$monospacefont: #{m};\n"
end

#doc_converter(node) ⇒ Object



52
53
54
55
56
57
58
59
60
# File 'lib/asciidoctor/iso/base.rb', line 52

def doc_converter(node)
  IsoDoc::Iso::WordConvert.new(
    script: node.attr("script"),
    bodyfont: node.attr("body-font"),
    headerfont: node.attr("header-font"),
    monospacefont: node.attr("monospace-font"),
    i18nyaml: node.attr("i18nyaml"),
  )
end

#doctype(node) ⇒ Object



126
127
128
# File 'lib/asciidoctor/iso/base.rb', line 126

def doctype(node)
  node.attr("doctype")
end

#document(node) ⇒ Object



90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/asciidoctor/iso/base.rb', line 90

def document(node)
  init(node)
  ret = makexml(node).to_xml(indent: 2)
  unless node.attr("nodoc") || !node.attr("docfile")
    File.open(@filename + ".xml", "w") { |f| f.write(ret) }
    html_converter_alt(node).convert(@filename + ".xml")
    system "mv #{@filename}.html #{@filename}_alt.html"
    html_converter(node).convert(@filename + ".xml")
    doc_converter(node).convert(@filename + ".xml")
  end
  @files_to_delete.each { |f| system "rm #{f}" }
  ret
end

#draft?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'lib/asciidoctor/iso/base.rb', line 122

def draft?
  @draft
end

#extract_termsource_refs(text, node) ⇒ Object



166
167
168
169
170
171
172
# File 'lib/asciidoctor/iso/base.rb', line 166

def extract_termsource_refs(text, node)
  matched = TERM_REFERENCE_RE.match text
  if matched.nil?
    Utils::warning(node, "term reference not in expected format", text)
  end
  matched
end

#front(node, xml) ⇒ Object



130
131
132
133
134
135
# File 'lib/asciidoctor/iso/base.rb', line 130

def front(node, xml)
  xml.bibdata **attr_code(type: doctype(node)) do |b|
     node, b
  end
  (node, xml)
end

#html_converter(node) ⇒ Object



31
32
33
34
35
36
37
38
39
# File 'lib/asciidoctor/iso/base.rb', line 31

def html_converter(node)
  IsoDoc::Iso::HtmlConvert.new(
    script: node.attr("script"),
    bodyfont: node.attr("body-font"),
    headerfont: node.attr("header-font"),
    monospacefont: node.attr("monospace-font"),
    i18nyaml: node.attr("i18nyaml"),
  )
end

#html_converter_alt(node) ⇒ Object



41
42
43
44
45
46
47
48
49
50
# File 'lib/asciidoctor/iso/base.rb', line 41

def html_converter_alt(node)
  IsoDoc::Iso::HtmlConvert.new(
    script: node.attr("script"),
    bodyfont: node.attr("body-font"),
    headerfont: node.attr("header-font"),
    monospacefont: node.attr("monospace-font"),
    i18nyaml: node.attr("i18nyaml"),
    alt: true,
  )
end

#init(node) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/asciidoctor/iso/base.rb', line 62

def init(node)
  @fn_number = 0
  @draft = false
  @refids = Set.new
  @anchors = {}
  @draft = node.attributes.has_key?("draft")
  @novalid = node.attr("novalid")
  @fontheader = default_fonts(node)
  @files_to_delete = []
  @filename = node.attr("docfile") ?
    node.attr("docfile").gsub(/\.adoc$/, "").gsub(%r{^.*/}, "") : ""
  @no_isobib_cache = node.attr("no-isobib-cache")
  @bibliodb = open_cache_biblio(node, true)
  @local_bibliodb = node.attr("local-cache") ?
    open_cache_biblio(node, false) : nil
end

#makexml(node) ⇒ Object



114
115
116
117
118
119
120
# File 'lib/asciidoctor/iso/base.rb', line 114

def makexml(node)
  result = makexml1(node)
  ret1 = cleanup(Nokogiri::XML(result))
  ret1.root.add_namespace(nil, "http://riboseinc.com/isoxml")
  validate(ret1) unless @novalid
  ret1
end

#makexml1(node) ⇒ Object



104
105
106
107
108
109
110
111
112
# File 'lib/asciidoctor/iso/base.rb', line 104

def makexml1(node)
  result = ["<?xml version='1.0' encoding='UTF-8'?>\n<iso-standard>"]
  result << noko { |ixml| front node, ixml }
  result << noko { |ixml| middle node, ixml }
  result << "</iso-standard>"
  save_cache_biblio(@bibliodb, true)
  save_cache_biblio(@local_bibliodb, false)
  textcleanup(result.flatten * "\n")
end

#middle(node, xml) ⇒ Object



137
138
139
140
141
# File 'lib/asciidoctor/iso/base.rb', line 137

def middle(node, xml)
  xml.sections do |s|
    s << node.content if node.blocks?
  end
end

#skip(node, name = nil) ⇒ Object



24
25
26
27
28
29
# File 'lib/asciidoctor/iso/base.rb', line 24

def skip(node, name = nil)
  name = name || node.node_name
  w = "converter missing for #{name} node in ISO backend"
  Utils::warning(node, w, nil)
  nil
end

#term_source_attr(seen_xref) ⇒ Object



143
144
145
146
147
# File 'lib/asciidoctor/iso/base.rb', line 143

def term_source_attr(seen_xref)
  { bibitemid: seen_xref.children[0]["target"],
    format: seen_xref.children[0]["format"],
    type: "inline" }
end

#termsource(node) ⇒ Object



174
175
176
177
178
179
180
181
182
183
# File 'lib/asciidoctor/iso/base.rb', line 174

def termsource(node)
  matched = extract_termsource_refs(node.content, node) || return
  noko do |xml|
    attrs = { status: matched[:text] ? "modified" : "identical" }
    xml.termsource **attrs do |xml_t|
      seen_xref = Nokogiri::XML.fragment(matched[:xref])
      add_term_source(xml_t, seen_xref, matched)
    end
  end.join("\n")
end