]> git.lyx.org Git - features.git/blob - lib/lyx2lyx/lyx_1_1_6_3.py
Convert all python files to utf-8.
[features.git] / lib / lyx2lyx / lyx_1_1_6_3.py
1 # This file is part of lyx2lyx
2 # -*- coding: utf-8 -*-
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 """ Convert files to the file format generated by lyx 1.1.6fix3"""
20
21 import re
22 import string
23 from parser_tools import find_token, find_re
24
25 def bool_table(item):
26     " Convert 0, 1 to false, true."
27     if item == "0":
28         return "false"
29     # should emit a warning if item != "1"
30     return "true"
31
32
33 align_vertical = {"0": "top", "1": "bottom", "2": "center"}
34 align_table = {"0": "top", "2": "left", "4": "right", "8": "center"}
35 use_table = {"0": "none", "1": "parbox"}
36 table_meta_re = re.compile(r'<LyXTabular version="?1"? rows="?(\d*)"? columns="?(\d*)"?>')
37
38 def update_tabular(document):
39     " Update tabular format to version 2 (xml like syntax)."
40     regexp = re.compile(r'^\\begin_inset\s+Tabular')
41     lines = document.body
42     i=0
43     while 1:
44         i = find_re(lines, regexp, i)
45         if i == -1:
46             break
47
48         i = i +1
49
50         # scan table header meta-info
51         res = table_meta_re.match( lines[i] )
52         if res:
53             val = res.groups()
54             lines[i] = '<lyxtabular version="2" rows="%s" columns="%s">' % val
55
56         j = find_token(lines, '</LyXTabular>', i) + 1
57         if j == 0:
58             document.warning( "Error: Bad lyx format i=%d j=%d" % (i,j))
59             break
60
61         new_table = table_update(lines[i:j])
62         lines[i:j] = new_table
63         i = i + len(new_table)
64
65
66 col_re = re.compile(r'<column alignment="?(\d)"? valignment="?(\d)"? leftline="?(\d)"? rightline="?(\d)"? width="(.*)" special="(.*)">')
67 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="(.*)">')
68 features_re = re.compile(r'<features rotate="?(\d)"? islongtable="?(\d)"? endhead="?(-?\d)"? endfirsthead="?(-?\d)"? endfoot="?(-?\d)"? endlastfoot="?(-?\d)"?>')
69 row_re = re.compile(r'<row topline="?(\d)"? bottomline="?(\d)"? newpage="?(\d)"?>')
70
71 def table_update(lines):
72     " Update table's internal content to format 2."
73     lines[1] = string.replace(lines[1], '<Features', '<features')
74     res = features_re.match( lines[1] )
75     if res:
76         val = res.groups()
77         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])
78
79     if lines[2]=="":
80         del lines[2]
81     i = 2
82     col_info = []
83     while i < len(lines):
84         lines[i] = string.replace(lines[i], '<Cell', '<cell')
85         lines[i] = string.replace(lines[i], '</Cell', '</cell')
86         lines[i] = string.replace(lines[i], '<Row', '<row')
87         lines[i] = string.replace(lines[i], '</Row', '</row')
88         lines[i] = string.replace(lines[i], '<Column', '<column')
89         lines[i] = string.replace(lines[i], '</Column', '</column')
90         lines[i] = string.replace(lines[i], '</LyXTabular', '</lyxtabular')
91         k = string.find (lines[i], '<column ')
92         if k != -1:
93             col_info.append(lines[i])
94             del lines[i]
95             continue
96
97         if lines[i] == '</column>' or lines[i] == '<column>':
98             del lines[i]
99             continue
100
101         res = cell_re.match(lines[i])
102         if res:
103             val = res.groups()
104             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_vertical[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])
105
106         res = row_re.match(lines[i])
107         if res:
108             val = res.groups()
109             lines[i] = '<row topline="%s" bottomline="%s" newpage="%s">' % (bool_table(val[0]), bool_table(val[1]), bool_table(val[2]))
110
111         i = i + 1
112
113     j = len(col_info)
114     for i in range(j):
115         res = col_re.match(col_info[i])
116         if res:
117             val = res.groups()
118             col_info[i] = '<column alignment="%s" valignment="%s" leftline="%s" rightline="%s" width="%s" special="%s">' \
119                           % ( align_table[val[0]], align_vertical[val[1]], bool_table(val[2]), bool_table(val[3]), val[4],val[5])
120
121     return lines[:2] + col_info + lines[2:]
122
123
124 supported_versions = ["1.1.6fix3","1.1.6fix4","1.1"]
125 convert = [[218, [update_tabular]]]
126 revert  = []
127
128
129 if __name__ == "__main__":
130     pass