2011-11-25 11:01:20 -06:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
import cgi
|
|
|
|
|
2011-10-26 03:21:09 -05:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
class OdtTable:
|
2011-12-09 01:56:37 -06:00
|
|
|
'''This class allows to construct an ODT table programmatically. As ODT and
|
|
|
|
HTML are very similar, this class also allows to contruct an
|
|
|
|
HTML table.'''
|
2011-10-26 03:21:09 -05:00
|
|
|
# Some namespace definitions
|
|
|
|
tns = 'table:'
|
|
|
|
txns = 'text:'
|
|
|
|
|
|
|
|
def __init__(self, name, paraStyle, cellStyle, nbOfCols,
|
2011-12-09 01:56:37 -06:00
|
|
|
paraHeaderStyle=None, cellHeaderStyle=None, html=False):
|
|
|
|
# An ODT table must have a name. In the case of an HTML table, p_name
|
|
|
|
# represents the CSS class for the whole table.
|
2011-10-26 03:21:09 -05:00
|
|
|
self.name = name
|
|
|
|
# The default style of every paragraph within cells
|
|
|
|
self.paraStyle = paraStyle
|
|
|
|
# The default style of every cell
|
|
|
|
self.cellStyle = cellStyle
|
|
|
|
# The total number of columns
|
|
|
|
self.nbOfCols = nbOfCols
|
|
|
|
# The default style of every paragraph within a header cell
|
|
|
|
self.paraHeaderStyle = paraHeaderStyle or paraStyle
|
|
|
|
# The default style of every header cell
|
|
|
|
self.cellHeaderStyle = cellHeaderStyle or cellStyle
|
|
|
|
# The buffer where the resulting table will be rendered
|
|
|
|
self.res = ''
|
2011-12-09 01:56:37 -06:00
|
|
|
# Do we need to generate an HTML table instead of an ODT table ?
|
|
|
|
self.html = html
|
2011-10-26 03:21:09 -05:00
|
|
|
|
|
|
|
def dumpCell(self, content, span=1, header=False,
|
2012-04-13 11:07:48 -05:00
|
|
|
paraStyle=None, cellStyle=None, align=None):
|
2011-10-26 03:21:09 -05:00
|
|
|
'''Dumps a cell in the table. If no specific p_paraStyle (p_cellStyle)
|
|
|
|
is given, self.paraStyle (self.cellStyle) is used, excepted if
|
|
|
|
p_header is True: in that case, self.paraHeaderStyle
|
2012-04-13 11:07:48 -05:00
|
|
|
(self.cellHeaderStyle) is used. p_align is used only for HTML.'''
|
2011-10-26 03:21:09 -05:00
|
|
|
if not paraStyle:
|
|
|
|
if header: paraStyle = self.paraHeaderStyle
|
|
|
|
else: paraStyle = self.paraStyle
|
|
|
|
if not cellStyle:
|
|
|
|
if header: cellStyle = self.cellHeaderStyle
|
|
|
|
else: cellStyle = self.cellStyle
|
2011-12-09 01:56:37 -06:00
|
|
|
if not self.html:
|
|
|
|
self.res += '<%stable-cell %sstyle-name="%s" ' \
|
|
|
|
'%snumber-columns-spanned="%d">' % \
|
|
|
|
(self.tns, self.tns, cellStyle, self.tns, span)
|
|
|
|
self.res += '<%sp %sstyle-name="%s">%s</%sp>' % \
|
|
|
|
(self.txns, self.txns, paraStyle,
|
|
|
|
cgi.escape(str(content)), self.txns)
|
|
|
|
self.res += '</%stable-cell>' % self.tns
|
|
|
|
else:
|
|
|
|
tag = header and 'th' or 'td'
|
2012-04-13 11:07:48 -05:00
|
|
|
palign = ''
|
|
|
|
if align: palign = ' align="%s"' % align
|
|
|
|
self.res += '<%s colspan="%d"%s>%s</%s>' % \
|
|
|
|
(tag, span, palign, cgi.escape(str(content)), tag)
|
2011-10-26 03:21:09 -05:00
|
|
|
|
|
|
|
def startRow(self):
|
2011-12-09 01:56:37 -06:00
|
|
|
if not self.html:
|
|
|
|
self.res += '<%stable-row>' % self.tns
|
|
|
|
else:
|
|
|
|
self.res += '<tr>'
|
2011-10-26 03:21:09 -05:00
|
|
|
|
|
|
|
def endRow(self):
|
2011-12-09 01:56:37 -06:00
|
|
|
if not self.html:
|
|
|
|
self.res += '</%stable-row>' % self.tns
|
|
|
|
else:
|
|
|
|
self.res += '</tr>'
|
2011-10-26 03:21:09 -05:00
|
|
|
|
|
|
|
def startTable(self):
|
2011-12-09 01:56:37 -06:00
|
|
|
if not self.html:
|
|
|
|
self.res += '<%stable %sname="%s">' % (self.tns, self.tns,
|
|
|
|
self.name)
|
|
|
|
self.res += '<%stable-column %snumber-columns-repeated="%d"/>' % \
|
|
|
|
(self.tns, self.tns, self.nbOfCols)
|
|
|
|
else:
|
|
|
|
css = ''
|
|
|
|
if self.name: css = ' class="%s"' % self.name
|
|
|
|
self.res += '<table%s cellpadding="0" cellspacing="0">' % css
|
2011-10-26 03:21:09 -05:00
|
|
|
|
|
|
|
def endTable(self):
|
2011-12-09 01:56:37 -06:00
|
|
|
if not self.html:
|
|
|
|
self.res += '</%stable>' % self.tns
|
|
|
|
else:
|
|
|
|
self.res += '</table>'
|
2011-10-26 03:21:09 -05:00
|
|
|
|
|
|
|
def dumpFloat(self, number):
|
|
|
|
return str(round(number, 2))
|
|
|
|
|
|
|
|
def get(self):
|
|
|
|
'''Returns the whole table.'''
|
2011-12-09 01:56:37 -06:00
|
|
|
if self.html:
|
|
|
|
return self.res
|
|
|
|
else:
|
|
|
|
return self.res.decode('utf-8')
|
2011-10-26 03:21:09 -05:00
|
|
|
# ------------------------------------------------------------------------------
|