From: José Matox Date: Sun, 25 Aug 2002 18:45:10 +0000 (+0000) Subject: Start to take care of the tables with continuation rows X-Git-Tag: 1.6.10~18466 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2a15d6e5d649c92aa675f58b6fd98f0b146a2110;p=lyx.git Start to take care of the tables with continuation rows git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5102 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/lyxconvert_216.py b/lib/lyx2lyx/lyxconvert_216.py index 8018a23829..b8bab3bdd5 100644 --- a/lib/lyx2lyx/lyxconvert_216.py +++ b/lib/lyx2lyx/lyxconvert_216.py @@ -41,7 +41,7 @@ def update_tabular(lines): rows = int(head[0]) columns = int(head[1]) - lines[i] = '' % (head[0],head[1]) + tabular_line = i i = i +1 lines.insert(i, '' % (head[2],head[3],head[4],head[5],head[6],head[7])) @@ -58,13 +58,20 @@ def update_tabular(lines): cell_info = [] ncells = 0 + cont_row = [] for j in range(rows): + c_row = 0 for k in range(columns): cell_info.append(string.split(lines[i])) + if cell_info[len(cell_info)-1][6] == '1': + c_row = 1 if lines[i][0] != "2": ncells = ncells + 1 del lines[i] + if c_row: + cont_row.append(j+1) + lines[tabular_line] = '' % (rows-len(cont_row),columns) del lines[i] if not lines[i]: del lines[i] @@ -83,18 +90,18 @@ def update_tabular(lines): tmp.append('' % (column_info[k][0],column_info[k][1], column_info[k][2], column_info[k][3], column_info[k][4])) m = j*columns + k - leftline = int(cell_info[m][4]) or int(column_info[k][1]) + leftline = int(column_info[k][1]) if cell_info[m][0] == '1': n = m + 1 while n < rows * columns - 1 and cell_info[n][0] == '2': n = n + 1 - rightline = int(cell_info[n][5]) or int(column_info[k][2]) + rightline = int(column_info[k][2]) else: # not a multicolumn main cell # rightline = int(cell_info[m][5]) or int(column_info[k][2]) rightline = int(column_info[k][2]) - tmp.append('' % (cell_info[m][0],cell_info[m][1],cell_info[m][2],cell_info[m][3],leftline,rightline,cell_info[m][6],cell_info[m][7],cell_info[m][8])) + tmp.append('' % (cell_info[m][0],cell_info[m][1],cell_info[m][2],cell_info[m][3],leftline,rightline,cell_info[m][5],cell_info[m][6],cell_info[m][7],cell_info[m][8])) tmp.append('\\begin_inset Text') tmp.append('') tmp.append('\\layout Standard')