]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyx_1_1_6fix3.py
Whitespace, only whitespace. s/ +$//
[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, find_re
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     regexp = re.compile(r'^\\begin_inset\s+Tabular')
36     lines = file.body
37     i=0
38     while 1:
39         i = find_re(lines, regexp, i)
40         if i == -1:
41             break
42
43         i = i +1
44
45         # scan table header meta-info
46         res = table_meta_re.match( lines[i] )
47         if res:
48             val = res.groups()
49             lines[i] = '<lyxtabular version="2" rows="%s" columns="%s">' % val
50
51         j = find_token(lines, '</LyXTabular>', i) + 1
52         if j == 0:
53             file.warning( "Error: Bad lyx format i=%d j=%d" % (i,j))
54             break
55
56         new_table = table_update(lines[i:j])
57         lines[i:j] = new_table
58         i = i + len(new_table)
59
60
61 col_re = re.compile(r'<column alignment="?(\d)"? valignment="?(\d)"? leftline="?(\d)"? rightline="?(\d)"? width="(.*)" special="(.*)">')
62 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="(.*)">')
63 features_re = re.compile(r'<features rotate="?(\d)"? islongtable="?(\d)"? endhead="?(-?\d)"? endfirsthead="?(-?\d)"? endfoot="?(-?\d)"? endlastfoot="?(-?\d)"?>')
64 row_re = re.compile(r'<row topline="?(\d)"? bottomline="?(\d)"? newpage="?(\d)"?>')
65
66 def table_update(lines):
67     lines[1] = string.replace(lines[1], '<Features', '<features')
68     res = features_re.match( lines[1] )
69     if res:
70         val = res.groups()
71         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])
72
73     if lines[2]=="":
74         del lines[2]
75     i = 2
76     col_info = []
77     while i < len(lines):
78         lines[i] = string.replace(lines[i], '<Cell', '<cell')
79         lines[i] = string.replace(lines[i], '</Cell', '</cell')
80         lines[i] = string.replace(lines[i], '<Row', '<row')
81         lines[i] = string.replace(lines[i], '</Row', '</row')
82         lines[i] = string.replace(lines[i], '<Column', '<column')
83         lines[i] = string.replace(lines[i], '</Column', '</column')
84         lines[i] = string.replace(lines[i], '</LyXTabular', '</lyxtabular')
85         k = string.find (lines[i], '<column ')
86         if k != -1:
87             col_info.append(lines[i])
88             del lines[i]
89             continue
90
91         if lines[i] == '</column>' or lines[i] == '<column>':
92             del lines[i]
93             continue
94
95         res = cell_re.match(lines[i])
96         if res:
97             val = res.groups()
98             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])
99
100         res = row_re.match(lines[i])
101         if res:
102             val = res.groups()
103             lines[i] = '<row topline="%s" bottomline="%s" newpage="%s">' % (bool_table(val[0]), bool_table(val[1]), bool_table(val[2]))
104
105         i = i + 1
106
107     j = len(col_info)
108     for i in range(j):
109         res = col_re.match(col_info[i])
110         if res:
111             val = res.groups()
112             col_info[i] = '<column alignment="%s" valignment="%s" leftline="%s" rightline="%s" width="%s" special="%s">' \
113                           % ( align_table[val[0]], align_table[val[1]], bool_table(val[2]), bool_table(val[3]), val[4],val[5])
114
115     return lines[:2] + col_info + lines[2:]
116
117
118 convert = [[218, [update_tabular]]]
119 revert  = []
120
121
122 if __name__ == "__main__":
123     pass