]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyx_1_3.py
Fix previous leftover transformation. (opt -> file)
[lyx.git] / lib / lyx2lyx / lyx_1_3.py
1 # This file is part of lyx2lyx
2 # -*- coding: iso-8859-1 -*-
3 # Copyright (C) 2002 Dekel Tsur <dekel@lyx.org>
4 # Copyright (C) 2004 José Matos <jamatos@lyx.org>
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 import string
21 import re
22 from parser_tools import find_token, find_end_of_inset, get_value,\
23                          find_token2, del_token
24
25 def change_insetgraphics(lines):
26     i = 0
27     while 1:
28         i = find_token(lines, "\\begin_inset Graphics", i)
29         if i == -1:
30             break
31         j = find_end_of_inset(lines, i)
32
33         lines[i] = "\\begin_inset Graphics"
34
35         if get_value(lines, "display", i, j) == "default":
36             j = del_token(lines, "display", i, j)
37         if get_value(lines, "rotateOrigin", i, j) == "leftBaseline":
38             j = del_token(lines, "rotateOrigin", i, j)
39
40         k = find_token2(lines, "rotate", i, j)
41         if k != -1:
42             del lines[k]
43             j = j-1
44         else:
45             j = del_token(lines, "rotateAngle", i, j)
46
47         k = find_token2(lines, "size_type", i, j)
48         if k == -1:
49             k = find_token2(lines, "size_kind", i, j)
50         if k != -1:
51             size_type = string.split(lines[k])[1]
52             del lines[k]
53             j = j-1
54             if size_type in ["0", "original"]:
55                 j = del_token(lines, "width", i, j)
56                 j = del_token(lines, "height", i, j)
57                 j = del_token(lines, "scale", i, j)
58             elif size_type in ["2", "scale"]:
59                 j = del_token(lines, "width", i, j)
60                 j = del_token(lines, "height", i, j)
61                 if get_value(lines, "scale", i, j) == "100":
62                     j = del_token(lines, "scale", i, j)
63             else:
64                 j = del_token(lines, "scale", i, j)
65
66         k = find_token2(lines, "lyxsize_type", i, j)
67         if k == -1:
68             k = find_token2(lines, "lyxsize_kind", i, j)
69         if k != -1:
70             lyxsize_type = string.split(lines[k])[1]
71             del lines[k]
72             j = j-1
73             j = del_token(lines, "lyxwidth", i, j)
74             j = del_token(lines, "lyxheight", i, j)
75             if lyxsize_type not in ["2", "scale"] or \
76                get_value(lines, "lyxscale", i, j) == "100":
77                 j = del_token(lines, "lyxscale", i, j)
78
79         i = i+1
80
81
82 def change_tabular(lines):
83     i = 0
84     while 1:
85         i = find_token(lines, "<column", i)
86         if i == -1:
87             break
88         if not re.search('width="0pt"', lines[i]):
89             lines[i] = re.sub(' alignment=".*?"',' alignment="block"',lines[i])
90         i = i+1
91
92
93 def convert(file):
94     change_insetgraphics(file.body)
95     change_tabular(file.body)
96     file.format = 221
97
98
99 def revert(file):
100     file.error("The convertion to an older format (%s) is not implemented." % file.format)
101
102
103 if __name__ == "__main__":
104     pass