]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyx_1_1_6fix3.py
fix bug 1332
[lyx.git] / lib / lyx2lyx / lyx_1_1_6fix3.py
1 # This file is part of lyx2lyx
2 # -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2002-2004 José Matos <jamatos@lyx.org>
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 import re
20 import string
21 from parser_tools import find_token
22
23 def bool_table(item):
24     if item == "0":
25         return "false"
26     # should emit a warning if item != "1"
27     return "true"
28
29
30 align_table = {"0": "top", "2": "left", "4": "right", "8": "center"}
31 use_table = {"0": "none", "1": "parbox"}
32 table_meta_re = re.compile(r'<LyXTabular version="?1"? rows="?(\d*)"? columns="?(\d*)"?>')
33
34 def update_tabular(file):
35     lines = file.body
36     i=0
37     while 1:
38         i = find_token(lines, '\\begin_inset  Tabular', i)
39         if i == -1:
40             break
41
42         i = i +1
43
44         # scan table header meta-info
45         res = table_meta_re.match( lines[i] )
46         if res:
47             val = res.groups()
48             lines[i] = '<lyxtabular version="2" rows="%s" columns="%s">' % val
49
50         j = find_token(lines, '</LyXTabular>', i) + 1
51         if j == 0:
52             file.warning( "Error: Bad lyx format i=%d j=%d" % (i,j))
53             break
54
55         new_table = table_update(lines[i:j])
56         lines[i:j] = new_table
57         i = i + len(new_table)
58
59
60 col_re = re.compile(r'<column alignment="?(\d)"? valignment="?(\d)"? leftline="?(\d)"? rightline="?(\d)"? width="(.*)" special="(.*)">')
61 cell_re = re.compile(r'<cell multicolumn="?(\d)"? alignment="?(\d)"? valignment="?(\d)"? topline="?(\d)"? bottomline="?(\d)"? leftline="?(\d)"? rightline="?(\d)"? rotate="?(\d)"? usebox="?(\d)"? width="(.*)" special="(.*)">')
62 features_re = re.compile(r'<features rotate="?(\d)"? islongtable="?(\d)"? endhead="?(-?\d)"? endfirsthead="?(-?\d)"? endfoot="?(-?\d)"? endlastfoot="?(-?\d)"?>')
63 row_re = re.compile(r'<row topline="?(\d)"? bottomline="?(\d)"? newpage="?(\d)"?>')
64
65 def table_update(lines):
66     lines[1] = string.replace(lines[1], '<Features', '<features')
67     res = features_re.match( lines[1] )
68     if res:
69         val = res.groups()
70         lines[1] = '<features rotate="%s" islongtable="%s" endhead="%s" endfirsthead="%s" endfoot="%s" endlastfoot="%s">' % (bool_table(val[0]), bool_table(val[1]), val[2], val[3], val[4], val[5])
71
72     if lines[2]=="":
73         del lines[2]
74     i = 2
75     col_info = []
76     while i < len(lines):
77         lines[i] = string.replace(lines[i], '<Cell', '<cell')
78         lines[i] = string.replace(lines[i], '</Cell', '</cell')
79         lines[i] = string.replace(lines[i], '<Row', '<row')
80         lines[i] = string.replace(lines[i], '</Row', '</row')
81         lines[i] = string.replace(lines[i], '<Column', '<column')
82         lines[i] = string.replace(lines[i], '</Column', '</column')
83         lines[i] = string.replace(lines[i], '</LyXTabular', '</lyxtabular')
84         k = string.find (lines[i], '<column ')
85         if k != -1:
86             col_info.append(lines[i])
87             del lines[i]
88             continue
89
90         if lines[i] == '</column>' or lines[i] == '<column>':
91             del lines[i]
92             continue
93
94         res = cell_re.match(lines[i])
95         if res:
96             val = res.groups()
97             lines[i] = '<cell multicolumn="%s" alignment="%s" valignment="%s" topline="%s" bottomline="%s" leftline="%s" rightline="%s" rotate="%s" usebox="%s" width="%s" special="%s">' % ( val[0], align_table[val[1]], align_table[val[2]], bool_table(val[3]), bool_table(val[4]), bool_table(val[5]), bool_table(val[6]), bool_table(val[7]), use_table[val[8]], val[9], val[10])
98
99         res = row_re.match(lines[i])
100         if res:
101             val = res.groups()
102             lines[i] = '<row topline="%s" bottomline="%s" newpage="%s">' % (bool_table(val[0]), bool_table(val[1]), bool_table(val[2]))
103
104         i = i + 1
105
106     j = len(col_info)
107     for i in range(j):
108         res = col_re.match(col_info[i])
109         if res:
110             val = res.groups()
111             col_info[i] = '<column alignment="%s" valignment="%s" leftline="%s" rightline="%s" width="%s" special="%s">' \
112                           % ( align_table[val[0]], align_table[val[1]], bool_table(val[2]), bool_table(val[3]), val[4],val[5])
113
114     return lines[:2] + col_info + lines[2:]
115
116
117 convert = [[218, [update_tabular]]]
118 revert  = []
119
120
121 if __name__ == "__main__":
122     pass