class Asciidoctor::Acme::Converter

A {Converter} implementation that generates RSD output, and a document schema encapsulation of the document for validation

Constants

XML_NAMESPACE
XML_ROOT_TAG

Public Instance Methods

baselocation(loc) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 17
 def baselocation(loc)
  return nil if loc.nil?
  File.expand_path(File.join(File.dirname(self.class::_file || __FILE__), "..", "..", "..", loc))
end
blank_method(*args) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 149
def blank_method(*args); end
Also aliased as: style, title_validate
boilerplate_isodoc(xmldoc) click to toggle source
Calls superclass method
# File lib/asciidoctor/acme/converter.rb, line 167
def boilerplate_isodoc(xmldoc)
  conv = super
  Metanorma::Acme::Configuration::CONFIG_ATTRS.each do |a|
    conv.labels[a] = configuration.send a
  end
  conv
end
configuration() click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 163
def configuration
  Metanorma::Acme.configuration
end
docidentifier_cleanup(xmldoc) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 55
def docidentifier_cleanup(xmldoc)
  template = configuration.docid_template ||
    "{{ organization_name_short }} {{ docnumeric }}"
  docid = xmldoc.at("//bibdata/docidentifier")
  id = boilerplate_isodoc(xmldoc).populate_template(template, nil)
  id.empty? and docid.remove or docid.children = id
end
doctype(node) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 97
def doctype(node)
  d = node.attr("doctype")
  unless %w{policy-and-procedures best-practices supporting-document
    report legal directives proposal standard}.include? d
    @log.add("Document Attributes", nil,
             "#{d} is not a legal document type: reverting to 'standard'")
    d = "standard"
  end
  d
end
document(node) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 113
def document(node)
  read_config_file(node.attr("customize")) if node.attr("customize")
  init(node)
  ret1 = makexml(node)
  ret = ret1.to_xml(indent: 2)
  unless node.attr("nodoc") || !node.attr("docfile")
    filename = node.attr("docfile").gsub(/\.adoc/, ".xml").
      gsub(%r{^.*/}, "")
    File.open(filename, "w") { |f| f.write(ret) }
    html_converter(node).convert filename unless node.attr("nodoc")
    word_converter(node).convert filename unless node.attr("nodoc")
    pdf_converter(node).convert filename unless node.attr("nodoc")
  end
  @log.write(@filename + ".err") unless @novalid
  @files_to_delete.each { |f| FileUtils.rm f }
  ret
end
html_converter(node) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 151
def html_converter(node)
  IsoDoc::Acme::HtmlConvert.new(html_extract_attributes(node))
end
Also aliased as: pdf_converter
html_path_acme(file) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 138
def html_path_acme(file)
  File.join(File.dirname(__FILE__), File.join("html", file))
end
makexml(node) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 82
def makexml(node)
  root_tag = configuration.xml_root_tag || XML_ROOT_TAG
  result = ["<?xml version='1.0' encoding='UTF-8'?>\n<#{root_tag}>"]
  @draft = node.attributes.has_key?("draft")
  result << noko { |ixml| front node, ixml }
  result << noko { |ixml| middle node, ixml }
  result << "</#{root_tag}>"
  result = textcleanup(result)
  ret1 = cleanup(Nokogiri::XML(result))
  validate(ret1) unless @novalid
  ret1.root.add_namespace(nil, configuration.document_namespace ||
                          XML_NAMESPACE)
  ret1
end
metadata_author(node, xml) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 22
def metadata_author(node, xml)
  xml.contributor do |c|
    c.role **{ type: "author" }
    c.organization do |a|
      a.name configuration.organization_name_short
    end
  end
  personal_author(node, xml)
end
metadata_committee(node, xml) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 41
def metadata_committee(node, xml)
  return unless node.attr("committee")
  xml.editorialgroup do |a|
    a.committee node.attr("committee"),
      **attr_code(type: node.attr("committee-type"))
    i = 2
    while node.attr("committee_#{i}") do
      a.committee node.attr("committee_#{i}"),
        **attr_code(type: node.attr("committee-type_#{i}"))
      i += 1
    end
  end
end
metadata_id(node, xml) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 63
def metadata_id(node, xml)
  xml.docidentifier do |i|
    i << "DUMMY"
  end
  xml.docnumber { |i| i << node.attr("docnumber") }
end
metadata_publisher(node, xml) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 32
def metadata_publisher(node, xml)
  xml.contributor do |c|
    c.role **{ type: "publisher" }
    c.organization do |a|
      a.name configuration.organization_name_short
    end
  end
end
pdf_converter(node)
Alias for: html_converter
read_config_file(path_to_config_file) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 108
def read_config_file(path_to_config_file)
  Metanorma::Acme.configuration.
    set_default_values_from_yaml_file(path_to_config_file)
end
sections_cleanup(x) click to toggle source
Calls superclass method
# File lib/asciidoctor/acme/converter.rb, line 142
def sections_cleanup(x)
  super
  x.xpath("//*[@inline-header]").each do |h|
    h.delete("inline-header")
  end
end
style(*args)
Alias for: blank_method
title_validate(*args)
Alias for: blank_method
validate(doc) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 131
def validate(doc)
  content_validate(doc)
  schema_validate(formattedstr_strip(doc.dup),
                  baselocation(configuration.validate_rng_file) ||
                  File.join(File.dirname(__FILE__), "acme.rng"))
end
word_converter(node) click to toggle source
# File lib/asciidoctor/acme/converter.rb, line 159
def word_converter(node)
  IsoDoc::Acme::WordConvert.new(doc_extract_attributes(node))
end