]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxrevert_228.py
add bibtopic support (bug 870).
[lyx.git] / lib / lyx2lyx / lyxrevert_228.py
1 # This file is part of lyx2lyx
2 # -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2003 José Matos <jamatos@fep.up.pt>
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 import sys
20 from parser_tools import find_token, find_tokens
21
22 def convert_collapsable(lines):
23     i = 0
24     while 1:
25         i = find_tokens(lines, ["\\begin_inset Box",
26                                 "\\begin_inset Branch",
27                                 "\\begin_inset CharStyle",
28                                 "\\begin_inset Float",
29                                 "\\begin_inset Foot",
30                                 "\\begin_inset Marginal",
31                                 "\\begin_inset Note",
32                                 "\\begin_inset OptArg",
33                                 "\\begin_inset Wrap"], i)
34         if i == -1:
35             break
36
37         # Seach for a line starting 'status'
38         # If, however, we find a line starting '\begin_layout'
39         # (_always_ present) then break with a warning message
40         i = i + 1
41         while 1:
42             if (lines[i] == "status open"):
43                 lines[i] = "collapsed false"
44                 break
45             elif (lines[i] == "status collapsed" or
46                   lines[i] == "status inlined"):
47                 lines[i] = "collapsed true"
48                 break
49             elif (lines[i][:13] == "\\begin_layout"):
50                 sys.stderr.write("Malformed lyx file\n")
51                 break
52             i = i + 1
53
54         i = i + 1
55
56 def convert_ert(lines):
57     i = 0
58     while 1:
59         i = find_token(lines, "\\begin_inset ERT", i)
60         if i == -1:
61             break
62
63         # Seach for a line starting 'status'
64         # If, however, we find a line starting '\begin_layout'
65         # (_always_ present) then break with a warning message
66         i = i + 1
67         while 1:
68             if (lines[i] == "status open"):
69                 lines[i] = "status Open"
70                 break
71             elif (lines[i] == "status collapsed"):
72                 lines[i] = "status Collapsed"
73                 break
74             elif (lines[i] == "status inlined"):
75                 lines[i] = "status Inlined"
76                 break
77             elif (lines[i][:13] == "\\begin_layout"):
78                 sys.stderr.write("Malformed lyx file\n")
79                 break
80             i = i + 1
81
82         i = i + 1
83
84 def convert(header, body):
85     convert_collapsable(body)
86     convert_ert(body)
87
88 if __name__ == "__main__":
89     pass