]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyxconvert_223.py
remove twice unused variable 'tmpheight'
[lyx.git] / lib / lyx2lyx / lyxconvert_223.py
1 # This file is part of lyx2lyx
2 # Copyright (C) 2002 Dekel Tsur <dekel@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 string
19 import re
20 from parser_tools import find_token
21
22 def convert_external(lines):
23     external_rexp = re.compile(r'\\begin_inset External ([^,]*),"([^"]*)",')
24     external_header = "\\begin_inset External"
25     i = 0
26     while 1:
27         i = find_token(lines, external_header, i)
28         if i == -1:
29             break
30         look = external_rexp.search(lines[i])
31         args = ['','']
32         if look:
33             args[0] = look.group(1)
34             args[1] = look.group(2)
35         #FIXME: if the previous search fails then warn
36
37         if args[0] == "RasterImage":
38             # Convert a RasterImage External Inset to a Graphics Inset.
39             top = "\\begin_inset Graphics"
40             if args[1]:
41                 filename = "\tfilename " + args[1]
42             lines[i:i+1] = [top, filename]
43             i = i + 1
44         else:
45             # Convert the old External Inset format to the new.
46             top = external_header
47             template = "\ttemplate " + args[0]
48             if args[1]:
49                 filename = "\tfilename " + args[1]
50                 lines[i:i+1] = [top, template, filename]
51                 i = i + 2
52             else:
53                 lines[i:i+1] = [top, template]
54                 i = i + 1
55
56 def convert(header, body):
57     convert_external(body)
58
59 if __name__ == "__main__":
60     pass