]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxrevert_224.py
Fix warnings in python 2.3.
[lyx.git] / lib / lyx2lyx / lyxrevert_224.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 string import split, join
19 from parser_tools import find_token, find_tokens
20
21 def convert_external(lines):
22     external_header = "\\begin_inset External"
23     i = 0
24     while 1:
25         i = find_token(lines, external_header, i)
26         if i == -1:
27             break
28
29         template = split(lines[i+1])
30         template.reverse()
31         del lines[i+1]
32
33         filename = split(lines[i+1])
34         filename.reverse()
35         del lines[i+1]
36
37         params = split(lines[i+1])
38         params.reverse()
39         if lines[i+1]: del lines[i+1]
40
41         lines[i] = lines[i] + " " + template[0]+ ', "' + filename[0] + '", " '+ join(params[1:]) + '"'
42         i = i + 1
43
44 def convert_comment(lines):
45     i = 0
46     while 1:
47         i = find_tokens(lines, ["\\begin_inset Comment", "\\begin_inset Greyedout"], i)
48
49         if i == -1:
50             return
51         lines[i] = "\\begin_inset Note"
52         i = i + 1
53
54 def convert(header, body):
55     convert_external(body)
56     convert_comment(body)
57
58 if __name__ == "__main__":
59     pass