]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxrevert_228.py
Handle Michael's changes to InsetCollapsable.
[lyx.git] / lib / lyx2lyx / lyxrevert_228.py
1 # This file is part of lyx2lyx
2 # Copyright (C) 2003 Jos\81é Matos <jamatos@fep.up.pt>
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 from parser_tools import find_tokens
19
20 def convert_collapsable(lines):
21     i = 0
22     while 1:
23         i = find_tokens(lines, ["\\begin_inset Box",
24                                 "\\begin_inset Branch",
25                                 "\\begin_inset CharStyle",
26                                 "\\begin_inset Float",
27                                 "\\begin_inset Foot",
28                                 "\\begin_inset Marginal",
29                                 "\\begin_inset Note",
30                                 "\\begin_inset OptArg",
31                                 "\\begin_inset Wrap"], i)
32         if i == -1:
33             break
34
35         # We are interested in the next line
36         i = i + 1
37         if (lines[i] == "status open"):
38             lines[i] = "collapsed false"
39         elif (lines[i] == "status collapsed" or
40               lines[i] == "status inlined"):
41             lines[i] = "collapsed true"
42         else:
43             sys.stderr.write("Malformed lyx file\n")
44
45         i = i + 1
46
47 def convert(header, body):
48     convert_collapsable(body)
49
50 if __name__ == "__main__":
51     pass