]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyx_1_6.py
make sure that the C++ preprocessor is set up
[lyx.git] / lib / lyx2lyx / lyx_1_6.py
1 # This file is part of lyx2lyx
2 # -*- coding: utf-8 -*-
3 # Copyright (C) 2007 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.6"""
20
21 import re
22 import unicodedata
23 import sys, os
24
25 from parser_tools import find_token, find_end_of, find_tokens
26
27 ####################################################################
28 # Private helper functions
29
30 def find_end_of_inset(lines, i):
31     " Find end of inset, where lines[i] is included."
32     return find_end_of(lines, i, "\\begin_inset", "\\end_inset")
33
34 ####################################################################
35
36 def fix_wrong_tables(document):
37     i = 0
38     while True:
39         i = find_token(document.body, "\\begin_inset Tabular", i)
40         if i == -1:
41             return
42         j = find_end_of_inset(document.body, i + 1)
43         if j == -1:
44             document.warning("Malformed LyX document: Could not find end of tabular.")
45             continue
46
47         m = i + 1
48         nrows = int(document.body[i+1].split('"')[3])
49         ncols = int(document.body[i+1].split('"')[5])
50
51         for l in range(nrows):
52             prev_multicolumn = 0
53             for k in range(ncols):
54                 m = find_token(document.body, '<cell', m)
55
56                 if document.body[m].find('multicolumn') != -1:
57                     multicol_cont = int(document.body[m].split('"')[1])
58
59                     if multicol_cont == 2 and (k == 0 or prev_multicolumn == 0):
60                         document.body[m] = document.body[m][:5] + document.body[m][21:]
61                         prev_multicolumn = 0
62                     else:
63                         prev_multicolumn = multicol_cont
64                 else:
65                     prev_multicolumn = 0
66
67         i = j + 1
68
69
70 def close_begin_deeper(document):
71     i = 0
72     depth = 0
73     while True:
74         i = find_tokens(document.body, ["\\begin_deeper", "\\end_deeper"], i)
75
76         if i == -1:
77             break
78
79         if document.body[i][:13] == "\\begin_deeper":
80             depth += 1
81         else:
82             depth -= 1
83
84         i += 1
85
86     document.body[-2:-2] = ['\\end_deeper' for i in range(depth)]
87         
88
89
90 ##
91 # Conversion hub
92 #
93
94 supported_versions = ["1.6.0","1.6"]
95 convert = [
96            [277, [fix_wrong_tables]],
97            [278, [close_begin_deeper]],
98           ]
99
100 revert =  [
101            [276, []],
102            [277, []],
103           ]
104
105
106 if __name__ == "__main__":
107     pass