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