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