1228: #line 1588 "input_frame.ipk" 1229: def begin_table(self, *headings, **kwds): 1230: "Begin a table" 1231: apply(self.get_weaver().begin_table, headings, kwds) 1232: 1233: def table_row(self, *data): 1234: "Weave a table row" 1235: self.current_weaver.table_row(data) 1236: 1237: def end_table(self): 1238: "End the current table" 1239: self.current_weaver.end_table() 1240: 1241: def table_rule(self): 1242: "Draw a horizontal rule across a table" 1243: self.current_weaver.table_rule() 1244: 1245: def begin_table_row(self): 1246: "Begin a table row" 1247: self.current_weaver.begin_table_row() 1248: 1249: def end_table_row(self): 1250: "End a table row" 1251: self.current_weaver.end_table_row() 1252: 1253: def begin_table_cell(self): 1254: "Begin a table cell" 1255: self.current_weaver.begin_table_cell() 1256: 1257: def end_table_cell(self): 1258: "End a table cell" 1259: self.current_weaver.end_table_cell() 1260: