class Asciidoctor::Mpfd::Converter

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

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

Public Instance Methods

clause_parse(attrs, xml, node) click to toggle source
Calls superclass method
# File lib/asciidoctor/mpfd/section.rb, line 85
def clause_parse(attrs, xml, node)
  attrs[:preface] = true if node.attr("style") == "preface"
  attrs[:guidance] = true if node.role == "guidance"
  attrs[:container] = true if node.role == "container"
  super
end
doctype(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 91
      def doctype(node)
        d = node.attr("doctype")
=begin
        unless %w{policy-and-procedures best-practices supporting-document report legal directives proposal standard}.include? d
          warn "#{d} is not a legal document type: reverting to 'standard'"
          d = "standard"
        end
=end
        d
      end
document(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 109
def document(node)
  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_convert(filename.sub(/\.xml$/, "")) unless node.attr("nodoc")
  end
  @files_to_delete.each { |f| system "rm #{f}" }
  ret
end
html_converter(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 155
def html_converter(node)
  IsoDoc::Mpfd::HtmlConvert.new(
    script: node.attr("script"),
    bodyfont: node.attr("body-font"),
    headerfont: node.attr("header-font"),
    monospacefont: node.attr("monospace-font"),
    titlefont: node.attr("title-font"),
    i18nyaml: node.attr("i18nyaml"),
    scope: node.attr("scope"),
  )
end
inline_quoted(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 179
def inline_quoted(node)
  noko do |xml|
    case node.type
    when :emphasis then xml.em node.text
    when :strong then xml.strong node.text
    when :monospaced then xml.tt node.text
    when :double then xml << "\"#{node.text}\""
    when :single then xml << "'#{node.text}'"
    when :superscript then xml.sup node.text
    when :subscript then xml.sub node.text
    when :asciimath then stem_parse(node.text, xml)
    else
      case node.role
      when "strike" then xml.strike node.text
      when "smallcap" then xml.smallcap node.text
      when "keyword" then xml.keyword node.text
      else
        xml << node.text
      end
    end
  end.join
end
literal(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 135
def literal(node)
  noko do |xml|
    xml.figure **id_attr(node) do |f|
      figure_title(node, f)
      f.pre node.lines.join("\n")
    end
  end
end
make_preface(x, s) click to toggle source
# File lib/asciidoctor/mpfd/section.rb, line 69
def make_preface(x, s)
  if x.at("//foreword | //introduction | //terms")
    preface = s.add_previous_sibling("<preface/>").first
    foreword = x.at("//foreword")
    preface.add_child foreword.remove if foreword
    introduction = x.at("//introduction")
    preface.add_child introduction.remove if introduction
    terms = x.at("//terms")
    preface.add_child terms.remove if terms
  end
  x.xpath("//clause[@preface]").each do |c|
    c.delete("preface")
    preface.add_child c.remove
  end
end
makexml(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 78
def makexml(node)
  result = ["<?xml version='1.0' encoding='UTF-8'?>\n<mpfd-standard>"]
  @draft = node.attributes.has_key?("draft")
  result << noko { |ixml| front node, ixml }
  result << noko { |ixml| middle node, ixml }
  result << "</mpfd-standard>"
  result = textcleanup(result.flatten * "\n")
  ret1 = cleanup(Nokogiri::XML(result))
  validate(ret1)
  ret1.root.add_namespace(nil, MPFD_NAMESPACE)
  ret1
end
metadata_author(node, xml) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 18
def metadata_author(node, xml)
  xml.contributor do |c|
    c.role **{ type: "author" }
    c.organization do |a|
      a.name "Mandatory Provident Fund Schemes Authority"
      a.abbreviation "MPFA"
    end
  end
end
metadata_committee(node, xml) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 38
def metadata_committee(node, xml)
  xml.editorialgroup do |a|
    a.committee node.attr("committee"),
      **attr_code(type: node.attr("committee-type"))
  end
end
metadata_id(node, xml) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 57
def metadata_id(node, xml)
  xml.docidentifier { |i| i << node.attr("docnumber") }
end
metadata_publisher(node, xml) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 28
def metadata_publisher(node, xml)
  xml.contributor do |c|
    c.role **{ type: "publisher" }
    c.organization do |a|
      a.name "Mandatory Provident Fund Schemes Authority"
      a.abbreviation "MPFA"
    end
  end
end
metadata_status(node, xml) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 53
def metadata_status(node, xml)
  xml.status(**{ format: "plain" }) { |s| s << node.attr("status") }
end
pdf_convert(filename) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 102
def pdf_convert(filename)
  url = "#{Dir.pwd}/#{filename}.html"
  pdfjs = File.join(File.dirname(__FILE__), 'pdf.js')
  system "export NODE_PATH=$(npm root --quiet -g);
          node #{pdfjs} file://#{url} #{filename}.pdf"
end
rsd_html_path(file) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 131
def rsd_html_path(file)
  File.join(File.dirname(__FILE__), File.join("html", file))
end
section(node) click to toggle source
# File lib/asciidoctor/mpfd/section.rb, line 27
def section(node)
  a = { id: Asciidoctor::ISO::Utils::anchor_or_uuid(node) }
  noko do |xml|
    case sectiontype(node)
    when "introduction" then
      if node.level == 1 then introduction_parse(a, xml, node)
      else
        clause_parse(a, xml, node)
      end
    when "terms and definitions",
      "terms, definitions, symbols and abbreviated terms",
      "terms, definitions, symbols and abbreviations",
      "terms, definitions and symbols",
      "terms, definitions and abbreviations",
      "terms, definitions and abbreviated terms",
      "glossary"
      @term_def = true
      term_def_parse(a, xml, node, true)
      @term_def = false
    when "symbols and abbreviated terms"
      symbols_parse(a, xml, node)
    when "bibliography" then bibliography_parse(a, xml, node)
    else
      if @term_def then term_def_subclause_parse(a, xml, node)
      elsif @biblio then bibliography_parse(a, xml, node)
      elsif node.attr("style") == "bibliography" && node.level == 1
        bibliography_parse(a, xml, node)
      elsif node.attr("style") == "appendix" && node.level == 1
        annex_parse(a, xml, node)
      elsif node.option? "appendix"
        appendix_parse(a, xml, node)
      else
        clause_parse(a, xml, node)
      end
    end
  end.join("\n")
end
sections_cleanup(x) click to toggle source
Calls superclass method
# File lib/asciidoctor/mpfd/converter.rb, line 144
def sections_cleanup(x)
  super
  x.xpath("//*[@inline-header]").each do |h|
    h.delete("inline-header")
  end
end
style(n, t) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 151
def style(n, t)
  return
end
term_def_title(_toplevel, node) click to toggle source
# File lib/asciidoctor/mpfd/section.rb, line 65
def term_def_title(_toplevel, node)
  return node.title
end
title(node, xml) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 45
def title(node, xml)
  ["en"].each do |lang|
    xml.title **{ language: lang, format: "plain" } do |t|
      t << asciidoc_sub(node.attr("title"))
    end
  end
end
title_validate(root) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 74
def title_validate(root)
  nil
end
validate(doc) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 125
def validate(doc)
  content_validate(doc)
  schema_validate(formattedstr_strip(doc.dup),
                  File.join(File.dirname(__FILE__), "rsd.rng"))
end
word_converter(node) click to toggle source
# File lib/asciidoctor/mpfd/converter.rb, line 167
def word_converter(node)
  IsoDoc::Mpfd::WordConvert.new(
    script: node.attr("script"),
    bodyfont: node.attr("body-font"),
    headerfont: node.attr("header-font"),
    monospacefont: node.attr("monospace-font"),
    titlefont: node.attr("title-font"),
    i18nyaml: node.attr("i18nyaml"),
    scope: node.attr("scope"),
  )
end