Module: ODFWriter::ODFHelper

Defined in:
lib/odf_writer/odf_helper.rb

Instance Method Summary collapse

Instance Method Details

#export_odf(data, template) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/odf_writer/odf_helper.rb', line 24

def export_odf(data, template)

  ####################################################################################
  # create a template object and add readers to it parsing the document
  ####################################################################################
  doc = ODFWriter::Document.new(template) do |document| 
  
  ####################################################################################
  # add predefined styles to document
  ####################################################################################
    document.add_style(      :content, *ODFWriter::Style::AUT_STYLES  )
    document.add_style(      :styles,  *ODFWriter::Style::DOC_STYLES  )
    document.add_list_style( :content, *ODFWriter::Style::LIST_STYLES )
  
  ####################################################################################
  # add readers to parse template for fields, texts, tables an section lists
  ####################################################################################
    add_readers
  end
  
  ####################################################################################
  # populate template object
  ####################################################################################
  doc.populate(data, :remove_class_prefix => ["wiki-class-"])
  
  ####################################################################################
  # write document
  ####################################################################################
  doc.write
  
end