Beispiel #1
0
    def dbwriteTable(self, t):           
        """
        rowspan & colspan are supported
        nested tables not supported in DocBook V4.4
        """

        table = Element("informaltable")
        setVList(table, t)           
        if t.caption:
            #c = SubElement(table, "caption")
            #self.writeText(t.caption, c)
            pass
        return table
    def dbwriteTable(self, t):           
        """
        rowspan & colspan are supported
        nested tables not supported in DocBook V4.4
        """

        table = Element("informaltable")
        setVList(table, t)           
        if t.caption:
            #c = SubElement(table, "caption")
            #self.writeText(t.caption, c)
            pass
        return table
Beispiel #3
0
 def dbwriteCell(self, cell):
     td = Element("td")
     setVList(td, cell)           
     return td
 def dbwriteCell(self, cell):
     td = Element("td")
     setVList(td, cell)           
     return td