Class: IsoDoc::Vsd::WordConvert

Inherits:
WordConvert
  • Object
show all
Defined in:
lib/isodoc/vsd/word_convert.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ WordConvert

Returns a new instance of WordConvert.



10
11
12
13
# File 'lib/isodoc/vsd/word_convert.rb', line 10

def initialize(options)
  @libdir ||= File.dirname(__FILE__)
  super
end

Instance Method Details

#default_file_locations(options) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
# File 'lib/isodoc/vsd/word_convert.rb', line 23

def default_file_locations(options)
  {
      wordstylesheet: html_doc_path("wordstyle.scss"),
      standardstylesheet: html_doc_path("vsd.scss"),
      header: html_doc_path("header.html"),
      wordcoverpage: html_doc_path("word_vsd_titlepage.html"),
      wordintropage: html_doc_path("word_vsd_intro.html"),
      ulstyle: "l3",
      olstyle: "l2",
  }
end

#default_fonts(options) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/isodoc/vsd/word_convert.rb', line 15

def default_fonts(options)
  {
      bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' : '"Arial",sans-serif'),
      headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' : '"Arial",sans-serif'),
      monospacefont: '"Courier New",monospace'
  }
end

#generate_header(filename, dir) ⇒ Object



48
49
50
51
52
53
54
55
56
57
# File 'lib/isodoc/vsd/word_convert.rb', line 48

def generate_header(filename, dir)
  return unless @header
  template = Liquid::Template.parse(File.read(@header, encoding: "UTF-8"))
  meta = @meta.get
  meta[:filename] = filename
  params = meta.map { |k, v| [k.to_s, v] }.to_h
  File.open("header.html", "w") { |f| f.write(template.render(params)) }
  @files_to_delete << "header.html"
  "header.html"
end

#make_body(xml, docxml) ⇒ Object



39
40
41
42
43
44
45
46
# File 'lib/isodoc/vsd/word_convert.rb', line 39

def make_body(xml, docxml)
  body_attr = { lang: "EN-US", link: "blue", vlink: "#954F72" }
  xml.body **body_attr do |body|
    make_body1(body, docxml)
    make_body2(body, docxml)
    make_body3(body, docxml)
  end
end

#metadata_init(lang, script, labels) ⇒ Object



35
36
37
# File 'lib/isodoc/vsd/word_convert.rb', line 35

def (lang, script, labels)
  @meta = Metadata.new(lang, script, labels)
end