Class: IsoDoc::Iso::WordConvert

Inherits:
WordConvert
  • Object
show all
Includes:
BaseConvert
Defined in:
lib/isodoc/iso/word_convert.rb

Instance Method Summary collapse

Methods included from BaseConvert

#annex_names, #annex_names1, #appendix_names, #boilerplate, #clausedelim, #eref_localities1, #eref_localities1_zh, #error_parse, #example_p_parse, #example_parse, #example_parse1, #example_span_label, #foreword, #implicit_reference, #initial_anchor_names, #introduction, #introduction_names, #metadata_init, #node_begins_with_para, #prefix_container, #section_names1, #term_parse, #termexamples_before_termnotes

Constructor Details

#initialize(options) ⇒ WordConvert

Returns a new instance of WordConvert.



8
9
10
11
# File 'lib/isodoc/iso/word_convert.rb', line 8

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

Instance Method Details

#authority_cleanup(docxml) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/isodoc/iso/word_convert.rb', line 110

def authority_cleanup(docxml)
  insert = docxml.at("//div[@id = 'license']")
  auth = docxml&.at("//div[@class = 'license']")&.remove
  auth&.xpath(".//p[not(@class)]")&.each { |p| p["class"] = "zzWarning" }
  auth and insert.children = auth
  insert = docxml.at("//div[@id = 'copyright']")
  auth = docxml&.at("//div[@class = 'copyright']")&.remove
  auth&.xpath(".//p[not(@class)]")&.each { |p| p["class"] = "zzCopyright" }
  auth&.xpath(".//p[@id = 'authority2']")&.each { |p| p["class"] = "zzCopyright1" }
  auth&.xpath(".//p[@id = 'authority3']")&.each { |p| p["class"] = "zzAddress" }
  auth and insert.children = auth
end

#authority_hdr_cleanup(docxml) ⇒ Object



95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/isodoc/iso/word_convert.rb', line 95

def authority_hdr_cleanup(docxml)
  docxml&.xpath("//div[@class = 'license']").each do |d|
    d.xpath(".//h1").each do |p|
      p.name = "p"
      p["class"] = "zzWarningHdr"
    end
  end
  docxml&.xpath("//div[@class = 'copyright']").each do |d|
    d.xpath(".//h1").each do |p|
      p.name = "p"
      p["class"] = "zzCopyrightHdr"
    end
  end
end

#colophon(body, docxml) ⇒ Object



61
62
63
64
65
66
67
68
# File 'lib/isodoc/iso/word_convert.rb', line 61

def colophon(body, docxml)
  stage =  @meta.get[:stage_int]
  return if !stage.nil? && stage < 60
  body.br **{ clear: "all", style: "page-break-before:left;"\
              "mso-break-type:section-break" }
  body.div **{ class: "colophon" } do |div|
  end
end

#default_file_locations(options) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/isodoc/iso/word_convert.rb', line 23

def default_file_locations(options)
  {
    htmlstylesheet: (options[:alt] ? html_doc_path("style-human.scss") :
                     html_doc_path("style-iso.scss")),
    htmlcoverpage: html_doc_path("html_iso_titlepage.html"),
    htmlintropage: html_doc_path("html_iso_intro.html"),
    scripts: html_doc_path("scripts.html"),
    wordstylesheet: html_doc_path("wordstyle.scss"),
    standardstylesheet: html_doc_path("isodoc.scss"),
    header: html_doc_path("header.html"),
    wordcoverpage: html_doc_path("word_iso_titlepage.html"),
    wordintropage: html_doc_path("word_iso_intro.html"),
    ulstyle: "l3", 
    olstyle: "l2",
  }
end

#default_fonts(options) ⇒ Object



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

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

#figure_cleanup(xml) ⇒ Object



70
71
72
73
74
75
76
77
# File 'lib/isodoc/iso/word_convert.rb', line 70

def figure_cleanup(xml)
  super
  xml.xpath("//div[@class = 'figure']//table[@class = 'dl']").each do |t|
    t["class"] = "figdl"
    d = t.add_previous_sibling("<div class='figdl'/>")
    t.parent = d.first
  end
end

#make_body(xml, docxml) ⇒ Object



40
41
42
43
44
45
46
47
48
# File 'lib/isodoc/iso/word_convert.rb', line 40

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)
    colophon(body, docxml)
  end
end

#make_body2(body, docxml) ⇒ Object



50
51
52
53
54
55
56
57
58
59
# File 'lib/isodoc/iso/word_convert.rb', line 50

def make_body2(body, docxml)
  body.div **{ class: "WordSection2" } do |div2|
    boilerplate docxml, div2
    abstract docxml, div2
    foreword docxml, div2
    introduction docxml, div2
    div2.p { |p| p << "&nbsp;" } # placeholder
  end
  section_break(body)
end

#word_annex_cleanup(docxml) ⇒ Object



87
88
89
90
91
92
93
# File 'lib/isodoc/iso/word_convert.rb', line 87

def word_annex_cleanup(docxml)
  word_annex_cleanup1(docxml, 2)
  word_annex_cleanup1(docxml, 3)
  word_annex_cleanup1(docxml, 4)
  word_annex_cleanup1(docxml, 5)
  word_annex_cleanup1(docxml, 6)
end

#word_annex_cleanup1(docxml, i) ⇒ Object

force Annex h2 down to be p.h2Annex, so it is not picked up by ToC



80
81
82
83
84
85
# File 'lib/isodoc/iso/word_convert.rb', line 80

def word_annex_cleanup1(docxml, i)
  docxml.xpath("//h#{i}[ancestor::*[@class = 'Section3']]").each do |h2|
    h2.name = "p"
    h2["class"] = "h#{i}Annex"
  end
end

#word_cleanup(docxml) ⇒ Object



123
124
125
126
127
128
# File 'lib/isodoc/iso/word_convert.rb', line 123

def word_cleanup(docxml)
  authority_hdr_cleanup(docxml)
  super
  authority_cleanup(docxml)
  docxml
end