]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxconvert_215.py
Remove debug messages.\nAlmost the remaining diff are whitespace.
[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 def convert(header,body):
58     replace_protected_separator(body)
59     merge_formula_inset(body)
60
61 if __name__ == "__main__":
62     pass
63