]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxconvert_215.py
re-add stuff to math menu
[lyx.git] / lib / lyx2lyx / lyxconvert_215.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
19 from parser_tools import *
20
21 layout_exp = re.compile(r"\\layout (\S*)")
22
23 math_env = ["\\[","\\begin{eqnarray*}","\\begin{eqnarray}","\\begin{equation}"]
24
25 def replace_protected_separator(lines):
26     i=0
27     while 1:
28         i = find_token(lines, "\\protected_separator", i)
29         if i == -1:
30             break
31         j = find_token_backwards(lines, "\\layout", i)
32         #if j == -1: print error
33         layout = layout_exp.match(lines[j]).group(1)
34
35         if layout == "LyX-Code":
36             result = ""
37             while lines[i] == "\\protected_separator ":
38                 result = result + " "
39                 del lines[i]
40
41             lines[i-1] = lines[i-1] + result + lines[i]
42         else:
43             lines[i-1] = lines[i-1]+ "\\SpecialChar ~"
44
45         del lines[i]
46
47 def merge_formula_inset(lines):
48     i=0
49     while 1:
50         i = find_token(lines, "\\begin_inset Formula", i)
51         if i == -1: break
52         if lines[i+1] in math_env:
53             lines[i] = lines[i] + lines[i+1]
54             del lines[i+1]
55         i = i + 1
56
57 # Update from tabular format 4 to 5 if necessary
58 def update_tabular(lines):
59     lyxtable_re = re.compile(r".*\\LyXTable$")
60     i=0
61     while 1:
62         i = find_re(lines, lyxtable_re, i)
63         if i == -1:
64             break
65         i = i + 1
66         format = lines[i][8]
67         if format != '4':
68             continue
69         
70         lines[i]='multicol5'
71         i = i + 1
72         rows = int(string.split(lines[i])[0])
73         columns = int(string.split(lines[i])[1])
74
75         i = i + rows + 1
76         for j in range(columns):
77             col_info = string.split(lines[i])
78             if len(col_info) == 3:
79                 lines[i] = lines[i] + '"" ""'
80             else:
81                 lines[i] = string.join(col_info[:3]) + ' "%s" ""' % col_info[3]
82             i = i + 1
83
84         while lines[i]:
85             lines[i] = lines[i] + ' "" ""'
86             i = i + 1
87
88 def update_toc(lines):
89     i = 0
90     while 1:
91         i = find_token(lines, '\\begin_inset LatexCommand \\tableofcontents', i)
92         if i == -1:
93             break
94         lines[i] = lines[i] + '{}'
95         i = i + 1
96
97 def convert(header,body):
98     update_toc(body)
99     replace_protected_separator(body)
100     merge_formula_inset(body)
101     update_tabular(body)
102
103 if __name__ == "__main__":
104     pass
105