|
|
NAMELogFile::XML - Perl module for writing creating an OpenOffice Calc document.
SYNOPSIS
use LogFile::XML;
write_calc_document ("test.sxc",
{ name => "table-name",
data => [ ["first row", 1],
["second row", 2],
["third row", 3]
] } );
will generate a XML file readable by the OpenOffice Calc that consists of one page named ``table-name'' containing a table consisting of two columns and three rows.
DESCRIPTIONGenerates a XML file in OpenOffice Calc format. The file contains a zipped collection of three files: META-INF/manifest.xml, meta.xml, and content.xml. A call to
CUSTOMIZATIONThe variables
INTERNALSThe functions The manifest is taken care of if you create it with Files are created with The special files meta.xml and manifest.xml are written with the
functions The actual calc document is written with a cascade of functions:
ColorsYou can change the backround colors of cells by changing the values of the
variable
IndentationThe indentation is specified by the string in
AUTHORAndre Fischer <andre.w.fischer@sun.com>. |


