]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyx_1_3.py
Don't use widest label for numerical citations.
[lyx.git] / lib / lyx2lyx / lyx_1_3.py
1 # This file is part of lyx2lyx
2 # -*- coding: utf-8 -*-
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19
20 """ Convert files to the file format generated by lyx 1.3"""
21
22 import re
23 from parser_tools import find_token, find_end_of, get_value,\
24                          find_token_exact
25
26 ####################################################################
27 # Private helper functions
28
29 def find_end_of_inset(lines, i):
30     "Finds the matching \end_inset"
31     return find_end_of(lines, i, "\\begin_inset", "\\end_inset")
32
33
34 def del_token(lines, token, start, end):
35     """ del_token(lines, token, start, end) -> int
36
37     Find the lower line in lines where token is the first element and
38     delete that line.
39
40     Returns the number of lines remaining."""
41
42     k = find_token_exact(lines, token, start, end)
43     if k == -1:
44         return end
45     else:
46         del lines[k]
47         return end - 1
48
49 # End of helper functions
50 ####################################################################
51
52
53 def change_insetgraphics(document):
54     " Change inset Graphics."
55     lines = document.body
56     i = 0
57     while 1:
58         i = find_token(lines, "\\begin_inset Graphics", i)
59         if i == -1:
60             break
61         j = find_end_of_inset(lines, i)
62
63         lines[i] = "\\begin_inset Graphics"
64
65         if get_value(lines, "display", i, j) == "default":
66             j = del_token(lines, "display", i, j)
67         if get_value(lines, "rotateOrigin", i, j) == "leftBaseline":
68             j = del_token(lines, "rotateOrigin", i, j)
69
70         k = find_token_exact(lines, "rotate", i, j)
71         if k != -1:
72             del lines[k]
73             j = j-1
74         else:
75             j = del_token(lines, "rotateAngle", i, j)
76
77         k = find_token_exact(lines, "size_type", i, j)
78         if k == -1:
79             k = find_token_exact(lines, "size_kind", i, j)
80         if k != -1:
81             size_type = lines[k].split()[1]
82             del lines[k]
83             j = j-1
84             if size_type in ["0", "original"]:
85                 j = del_token(lines, "width", i, j)
86                 j = del_token(lines, "height", i, j)
87                 j = del_token(lines, "scale", i, j)
88             elif size_type in ["2", "scale"]:
89                 j = del_token(lines, "width", i, j)
90                 j = del_token(lines, "height", i, j)
91                 if get_value(lines, "scale", i, j) == "100":
92                     j = del_token(lines, "scale", i, j)
93             else:
94                 j = del_token(lines, "scale", i, j)
95
96         k = find_token_exact(lines, "lyxsize_type", i, j)
97         if k == -1:
98             k = find_token_exact(lines, "lyxsize_kind", i, j)
99         if k != -1:
100             lyxsize_type = lines[k].split()[1]
101             del lines[k]
102             j = j-1
103             j = del_token(lines, "lyxwidth", i, j)
104             j = del_token(lines, "lyxheight", i, j)
105             if lyxsize_type not in ["2", "scale"] or \
106                get_value(lines, "lyxscale", i, j) == "100":
107                 j = del_token(lines, "lyxscale", i, j)
108
109         i = i+1
110
111
112 def change_tabular(document):
113     " Change tabular."
114     lines = document.body
115     i = 0
116     while 1:
117         i = find_token(lines, "<column", i)
118         if i == -1:
119             break
120         if not re.search('width="0pt"', lines[i]):
121             lines[i] = re.sub(' alignment=".*?"',' alignment="block"',lines[i])
122         i = i+1
123
124
125 supported_versions = ["1.3.%d" % i for i in range(8)] + ["1.3"]
126 convert = [[221, [change_insetgraphics, change_tabular]]]
127 revert  = []
128
129
130 if __name__ == "__main__":
131     pass