]> git.lyx.org Git - lyx.git/blob - lib/lyx2lyx/lyx_1_2.py
Get lots of nice icons from the desktop theme
[lyx.git] / lib / lyx2lyx / lyx_1_2.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
23 from parser_tools import find_token, find_token_backwards, get_next_paragraph,\
24                          find_tokens, find_end_of_inset, find_re, \
25                          is_nonempty_line, get_paragraph, find_nonempty_line, \
26                          get_value, get_tabular_lines, check_token
27
28 floats = {
29     "footnote": ["\\begin_inset Foot",
30                  "collapsed true"],
31     "margin":   ["\\begin_inset Marginal",
32                  "collapsed true"],
33     "fig":      ["\\begin_inset Float figure",
34                  "wide false",
35                  "collapsed false"],
36     "tab":      ["\\begin_inset Float table",
37                  "wide false",
38                  "collapsed false"],
39     "alg":      ["\\begin_inset Float algorithm",
40                  "wide false",
41                  "collapsed false"],
42     "wide-fig": ["\\begin_inset Float figure",
43                  "wide true",
44                  "collapsed false"],
45     "wide-tab": ["\\begin_inset Float table",
46                  "wide true",
47                  "collapsed false"]
48 }
49
50 font_tokens = ["\\family", "\\series", "\\shape", "\\size", "\\emph",
51                "\\bar", "\\noun", "\\color", "\\lang", "\\latex"]
52
53 pextra_type3_rexp = re.compile(r".*\\pextra_type\s+3")
54 pextra_rexp = re.compile(r"\\pextra_type\s+(\S+)"+\
55                          r"(\s+\\pextra_alignment\s+(\S+))?"+\
56                          r"(\s+\\pextra_hfill\s+(\S+))?"+\
57                          r"(\s+\\pextra_start_minipage\s+(\S+))?"+\
58                          r"(\s+(\\pextra_widthp?)\s+(\S*))?")
59
60
61 def get_width(mo):
62     if mo.group(10):
63         if mo.group(9) == "\\pextra_widthp":
64             return mo.group(10)+"col%"
65         else:
66             return mo.group(10)
67     else:
68         return "100col%"
69
70
71 #
72 # Change \begin_float .. \end_float into \begin_inset Float .. \end_inset
73 #
74 def remove_oldfloat(file):
75     lines = file.body
76     i = 0
77     while 1:
78         i = find_token(lines, "\\begin_float", i)
79         if i == -1:
80             break
81         # There are no nested floats, so finding the end of the float is simple
82         j = find_token(lines, "\\end_float", i+1)
83
84         floattype = string.split(lines[i])[1]
85         if not floats.has_key(floattype):
86             file.warning("Error! Unknown float type " + floattype)
87             floattype = "fig"
88
89         # skip \end_deeper tokens
90         i2 = i+1
91         while check_token(lines[i2], "\\end_deeper"):
92             i2 = i2+1
93         if i2 > i+1:
94             j2 = get_next_paragraph(lines, j + 1, file.format + 1)
95             lines[j2:j2] = ["\\end_deeper "]*(i2-(i+1))
96
97         new = floats[floattype]+[""]
98
99         # Check if the float is floatingfigure
100         k = find_re(lines, pextra_type3_rexp, i, j)
101         if k != -1:
102             mo = pextra_rexp.search(lines[k])
103             width = get_width(mo)
104             lines[k] = re.sub(pextra_rexp, "", lines[k])
105             new = ["\\begin_inset Wrap figure",
106                    'width "%s"' % width,
107                    "collapsed false",
108                    ""]
109
110         new = new+lines[i2:j]+["\\end_inset ", ""]
111
112         # After a float, all font attributes are reseted.
113         # We need to output '\foo default' for every attribute foo
114         # whose value is not default before the float.
115         # The check here is not accurate, but it doesn't matter
116         # as extra '\foo default' commands are ignored.
117         # In fact, it might be safer to output '\foo default' for all
118         # font attributes.
119         k = get_paragraph(lines, i, file.format + 1)
120         flag = 0
121         for token in font_tokens:
122             if find_token(lines, token, k, i) != -1:
123                 if not flag:
124                     # This is not necessary, but we want the output to be
125                     # as similar as posible to the lyx format
126                     flag = 1
127                     new.append("")
128                 if token == "\\lang":
129                     new.append(token+" "+ file.language)
130                 else:
131                     new.append(token+" default ")
132
133         lines[i:j+1] = new
134         i = i+1
135
136
137 pextra_type2_rexp = re.compile(r".*\\pextra_type\s+[12]")
138 pextra_type2_rexp2 = re.compile(r".*(\\layout|\\pextra_type\s+2)")
139 pextra_widthp = re.compile(r"\\pextra_widthp")
140
141 def remove_pextra(file):
142     lines = file.body
143     i = 0
144     flag = 0
145     while 1:
146         i = find_re(lines, pextra_type2_rexp, i)
147         if i == -1:
148             break
149
150         # Sometimes the \pextra_widthp argument comes in it own
151         # line. If that happens insert it back in this line.
152         if pextra_widthp.search(lines[i+1]):
153             lines[i] = lines[i] + ' ' + lines[i+1]
154             del lines[i+1]
155
156         mo = pextra_rexp.search(lines[i])
157         width = get_width(mo)
158
159         if mo.group(1) == "1":
160             # handle \pextra_type 1 (indented paragraph)
161             lines[i] = re.sub(pextra_rexp, "\\leftindent "+width+" ", lines[i])
162             i = i+1
163             continue
164
165         # handle \pextra_type 2 (minipage)
166         position = mo.group(3)
167         hfill = mo.group(5)
168         lines[i] = re.sub(pextra_rexp, "", lines[i])
169
170         start = ["\\begin_inset Minipage",
171                  "position " + position,
172                  "inner_position 0",
173                  'height "0pt"',
174                  'width "%s"' % width,
175                  "collapsed false"
176                  ]
177         if flag:
178             flag = 0
179             if hfill:
180                 start = ["","\hfill",""]+start
181         else:
182             start = ["\\layout Standard"] + start
183
184         j0 = find_token_backwards(lines,"\\layout", i-1)
185         j = get_next_paragraph(lines, i, file.format + 1)
186
187         count = 0
188         while 1:
189             # collect more paragraphs to the minipage
190             count = count+1
191             if j == -1 or not check_token(lines[j], "\\layout"):
192                 break
193             i = find_re(lines, pextra_type2_rexp2, j+1)
194             if i == -1:
195                 break
196             mo = pextra_rexp.search(lines[i])
197             if not mo:
198                 break
199             if mo.group(7) == "1":
200                 flag = 1
201                 break
202             lines[i] = re.sub(pextra_rexp, "", lines[i])
203             j = find_tokens(lines, ["\\layout", "\\end_float"], i+1)
204
205         mid = lines[j0:j]
206         end = ["\\end_inset "]
207
208         lines[j0:j] = start+mid+end
209         i = i+1
210
211
212 def is_empty(lines):
213     return filter(is_nonempty_line, lines) == []
214
215
216 move_rexp =  re.compile(r"\\(family|series|shape|size|emph|numeric|bar|noun|end_deeper)")
217 ert_rexp = re.compile(r"\\begin_inset|\\hfill|.*\\SpecialChar")
218 spchar_rexp = re.compile(r"(.*)(\\SpecialChar.*)")
219 ert_begin = ["\\begin_inset ERT",
220              "status Collapsed",
221              "",
222              "\\layout Standard"]
223
224
225 def remove_oldert(file):
226     lines = file.body
227     i = 0
228     while 1:
229         i = find_tokens(lines, ["\\latex latex", "\\layout LaTeX"], i)
230         if i == -1:
231             break
232         j = i+1
233         while 1:
234             # \end_inset is for ert inside a tabular cell. The other tokens
235             # are obvious.
236             j = find_tokens(lines, ["\\latex default", "\\layout", "\\begin_inset", "\\end_inset", "\\end_float", "\\the_end"],
237                             j)
238             if check_token(lines[j], "\\begin_inset"):
239                 j = find_end_of_inset(lines, j)+1
240             else:
241                 break
242
243         if check_token(lines[j], "\\layout"):
244             while j-1 >= 0 and check_token(lines[j-1], "\\begin_deeper"):
245                 j = j-1
246
247         # We need to remove insets, special chars & font commands from ERT text
248         new = []
249         new2 = []
250         if check_token(lines[i], "\\layout LaTeX"):
251             new = ["\layout Standard", "", ""]
252             # We have a problem with classes in which Standard is not the default layout!
253
254         k = i+1
255         while 1:
256             k2 = find_re(lines, ert_rexp, k, j)
257             inset = hfill = specialchar = 0
258             if k2 == -1:
259                 k2 = j
260             elif check_token(lines[k2], "\\begin_inset"):
261                 inset = 1
262             elif check_token(lines[k2], "\\hfill"):
263                 hfill = 1
264                 del lines[k2]
265                 j = j-1
266             else:
267                 specialchar = 1
268                 mo = spchar_rexp.match(lines[k2])
269                 lines[k2] = mo.group(1)
270                 specialchar_str = mo.group(2)
271                 k2 = k2+1
272
273             tmp = []
274             for line in lines[k:k2]:
275                 # Move some lines outside the ERT inset:
276                 if move_rexp.match(line):
277                     if new2 == []:
278                         # This is not necessary, but we want the output to be
279                         # as similar as posible to the lyx format
280                         new2 = [""]
281                     new2.append(line)
282                 elif not check_token(line, "\\latex"):
283                     tmp.append(line)
284
285             if is_empty(tmp):
286                 if filter(lambda x:x != "", tmp) != []:
287                     if new == []:
288                         # This is not necessary, but we want the output to be
289                         # as similar as posible to the lyx format
290                         lines[i-1] = lines[i-1]+" "
291                     else:
292                         new = new+[" "]
293             else:
294                 new = new+ert_begin+tmp+["\\end_inset ", ""]
295
296             if inset:
297                 k3 = find_end_of_inset(lines, k2)
298                 new = new+[""]+lines[k2:k3+1]+[""] # Put an empty line after \end_inset
299                 k = k3+1
300                 # Skip the empty line after \end_inset
301                 if not is_nonempty_line(lines[k]):
302                     k = k+1
303                     new.append("")
304             elif hfill:
305                 new = new + ["\\hfill", ""]
306                 k = k2
307             elif specialchar:
308                 if new == []:
309                     # This is not necessary, but we want the output to be
310                     # as similar as posible to the lyx format
311                     lines[i-1] = lines[i-1]+specialchar_str
312                     new = [""]
313                 else:
314                     new = new+[specialchar_str, ""]
315                 k = k2
316             else:
317                 break
318
319         new = new+new2
320         if not check_token(lines[j], "\\latex "):
321             new = new+[""]+[lines[j]]
322         lines[i:j+1] = new
323         i = i+1
324
325     # Delete remaining "\latex xxx" tokens
326     i = 0
327     while 1:
328         i = find_token(lines, "\\latex ", i)
329         if i == -1:
330             break
331         del lines[i]
332
333
334 # ERT insert are hidden feature of lyx 1.1.6. This might be removed in the future.
335 def remove_oldertinset(file):
336     lines = file.body
337     i = 0
338     while 1:
339         i = find_token(lines, "\\begin_inset ERT", i)
340         if i == -1:
341             break
342         j = find_end_of_inset(lines, i)
343         k = find_token(lines, "\\layout", i+1)
344         l = get_paragraph(lines, i, file.format + 1)
345         if lines[k] == lines[l]: # same layout
346             k = k+1
347         new = lines[k:j]
348         lines[i:j+1] = new
349         i = i+1
350
351
352 def is_ert_paragraph(lines, i):
353     if not check_token(lines[i], "\\layout Standard"):
354         return 0
355
356     i = find_nonempty_line(lines, i+1)
357     if not check_token(lines[i], "\\begin_inset ERT"):
358         return 0
359
360     j = find_end_of_inset(lines, i)
361     k = find_nonempty_line(lines, j+1)
362     return check_token(lines[k], "\\layout")
363
364
365 def combine_ert(file):
366     lines = file.body
367     i = 0
368     while 1:
369         i = find_token(lines, "\\begin_inset ERT", i)
370         if i == -1:
371             break
372         j = get_paragraph(lines, i, file.format + 1)
373         count = 0
374         text = []
375         while is_ert_paragraph(lines, j):
376
377             count = count+1
378             i2 = find_token(lines, "\\layout", j+1)
379             k = find_token(lines, "\\end_inset", i2+1)
380             text = text+lines[i2:k]
381             j = find_token(lines, "\\layout", k+1)
382             if j == -1:
383                 break
384
385         if count >= 2:
386             j = find_token(lines, "\\layout", i+1)
387             lines[j:k] = text
388
389         i = i+1
390
391
392 oldunits = ["pt", "cm", "in", "text%", "col%"]
393
394 def get_length(lines, name, start, end):
395     i = find_token(lines, name, start, end)
396     if i == -1:
397         return ""
398     x = string.split(lines[i])
399     return x[2]+oldunits[int(x[1])]
400
401
402 def write_attribute(x, token, value):
403     if value != "":
404         x.append("\t"+token+" "+value)
405
406
407 def remove_figinset(file):
408     lines = file.body
409     i = 0
410     while 1:
411         i = find_token(lines, "\\begin_inset Figure", i)
412         if i == -1:
413             break
414         j = find_end_of_inset(lines, i)
415
416         if ( len(string.split(lines[i])) > 2 ):
417             lyxwidth = string.split(lines[i])[3]+"pt"
418             lyxheight = string.split(lines[i])[4]+"pt"
419         else:
420             lyxwidth = ""
421             lyxheight = ""
422
423         filename = get_value(lines, "file", i+1, j)
424
425         width = get_length(lines, "width", i+1, j)
426         # what does width=5 mean ?
427         height = get_length(lines, "height", i+1, j)
428         rotateAngle = get_value(lines, "angle", i+1, j)
429         if width == "" and height == "":
430             size_type = "0"
431         else:
432             size_type = "1"
433
434         flags = get_value(lines, "flags", i+1, j)
435         x = int(flags)%4
436         if x == 1:
437             display = "monochrome"
438         elif x == 2:
439             display = "gray"
440         else:
441             display = "color"
442
443         subcaptionText = ""
444         subcaptionLine = find_token(lines, "subcaption", i+1, j)
445         if subcaptionLine != -1:
446             subcaptionText = lines[subcaptionLine][11:]
447             if subcaptionText != "":
448                 subcaptionText = '"'+subcaptionText+'"'
449
450         k = find_token(lines, "subfigure", i+1,j)
451         if k == -1:
452             subcaption = 0
453         else:
454             subcaption = 1
455
456         new = ["\\begin_inset Graphics FormatVersion 1"]
457         write_attribute(new, "filename", filename)
458         write_attribute(new, "display", display)
459         if subcaption:
460             new.append("\tsubcaption")
461         write_attribute(new, "subcaptionText", subcaptionText)
462         write_attribute(new, "size_type", size_type)
463         write_attribute(new, "width", width)
464         write_attribute(new, "height", height)
465         if rotateAngle != "":
466             new.append("\trotate")
467             write_attribute(new, "rotateAngle", rotateAngle)
468         write_attribute(new, "rotateOrigin", "leftBaseline")
469         write_attribute(new, "lyxsize_type", "1")
470         write_attribute(new, "lyxwidth", lyxwidth)
471         write_attribute(new, "lyxheight", lyxheight)
472         new = new + ["\\end_inset"]
473         lines[i:j+1] = new
474
475
476 ##
477 # Convert tabular format 2 to 3
478 #
479 attr_re = re.compile(r' \w*="(false|0|)"')
480 line_re = re.compile(r'<(features|column|row|cell)')
481
482 def update_tabular(file):
483     regexp = re.compile(r'^\\begin_inset\s+Tabular')
484     lines = file.body
485     i = 0
486     while 1:
487         i = find_re(lines, regexp, i)
488         if i == -1:
489             break
490
491         for k in get_tabular_lines(lines, i):
492             if check_token(lines[k], "<lyxtabular"):
493                 lines[k] = string.replace(lines[k], 'version="2"', 'version="3"')
494             elif check_token(lines[k], "<column"):
495                 lines[k] = string.replace(lines[k], 'width=""', 'width="0pt"')
496
497             if line_re.match(lines[k]):
498                 lines[k] = re.sub(attr_re, "", lines[k])
499
500         i = i+1
501
502
503 ##
504 # Convert tabular format 2 to 3
505 #
506 # compatibility read for old longtable options. Now we can make any
507 # row part of the header/footer type we want before it was strict
508 # sequential from the first row down (as LaTeX does it!). So now when
509 # we find a header/footer line we have to go up the rows and set it
510 # on all preceding rows till the first or one with already a h/f option
511 # set. If we find a firstheader on the same line as a header or a
512 # lastfooter on the same line as a footer then this should be set empty.
513 # (Jug 20011220)
514
515 # just for compatibility with old python versions
516 # python >= 2.3 has real booleans (False and True)
517 false = 0
518 true = 1
519
520 # simple data structure to deal with long table info
521 class row:
522     def __init__(self):
523         self.endhead = false            # header row
524         self.endfirsthead = false       # first header row
525         self.endfoot = false            # footer row
526         self.endlastfoot = false        # last footer row
527
528
529 def haveLTFoot(row_info):
530     for row_ in row_info:
531         if row_.endfoot:
532             return true
533     return false
534
535
536 def setHeaderFooterRows(hr, fhr, fr, lfr, rows_, row_info):
537     endfirsthead_empty = false
538     endlastfoot_empty = false
539     # set header info
540     while (hr > 0):
541         hr = hr - 1
542         row_info[hr].endhead = true
543
544     # set firstheader info
545     if fhr and fhr < rows_:
546         if row_info[fhr].endhead:
547             while fhr > 0:
548                 fhr = fhr - 1
549                 row_info[fhr].endfirsthead = true
550                 row_info[fhr].endhead = false
551         elif row_info[fhr - 1].endhead:
552             endfirsthead_empty = true
553         else:
554             while fhr > 0 and not row_info[fhr - 1].endhead:
555                 fhr = fhr - 1
556                 row_info[fhr].endfirsthead = true
557
558     # set footer info
559     if fr and fr < rows_:
560         if row_info[fr].endhead and row_info[fr - 1].endhead:
561             while fr > 0 and not row_info[fr - 1].endhead:
562                 fr = fr - 1
563                 row_info[fr].endfoot = true
564                 row_info[fr].endhead = false
565         elif row_info[fr].endfirsthead and row_info[fr - 1].endfirsthead:
566             while fr > 0 and not row_info[fr - 1].endfirsthead:
567                 fr = fr - 1
568                 row_info[fr].endfoot = true
569                 row_info[fr].endfirsthead = false
570         elif not row_info[fr - 1].endhead and not row_info[fr - 1].endfirsthead:
571             while fr > 0 and not row_info[fr - 1].endhead and not row_info[fr - 1].endfirsthead:
572                 fr = fr - 1
573                 row_info[fr].endfoot = true
574
575     # set lastfooter info
576     if lfr and lfr < rows_:
577         if row_info[lfr].endhead and row_info[lfr - 1].endhead:
578             while lfr > 0 and not row_info[lfr - 1].endhead:
579                 lfr = lfr - 1
580                 row_info[lfr].endlastfoot = true
581                 row_info[lfr].endhead = false
582         elif row_info[lfr].endfirsthead and row_info[lfr - 1].endfirsthead:
583             while lfr > 0 and not row_info[lfr - 1].endfirsthead:
584                 lfr = lfr - 1
585                 row_info[lfr].endlastfoot = true
586                 row_info[lfr].endfirsthead = false
587         elif row_info[lfr].endfoot and row_info[lfr - 1].endfoot:
588             while lfr > 0 and not row_info[lfr - 1].endfoot:
589                 lfr = lfr - 1
590                 row_info[lfr].endlastfoot = true
591                 row_info[lfr].endfoot = false
592         elif not row_info[fr - 1].endhead and not row_info[fr - 1].endfirsthead and not row_info[fr - 1].endfoot:
593             while lfr > 0 and not row_info[lfr - 1].endhead and not row_info[lfr - 1].endfirsthead and not row_info[lfr - 1].endfoot:
594                 lfr = lfr - 1
595                 row_info[lfr].endlastfoot = true
596         elif haveLTFoot(row_info):
597             endlastfoot_empty = true
598
599     return endfirsthead_empty, endlastfoot_empty
600
601
602 def insert_attribute(lines, i, attribute):
603     last = string.find(lines[i],'>')
604     lines[i] = lines[i][:last] + ' ' + attribute + lines[i][last:]
605
606
607 rows_re = re.compile(r'rows="(\d*)"')
608 longtable_re = re.compile(r'islongtable="(\w)"')
609 ltvalues_re = re.compile(r'endhead="(-?\d*)" endfirsthead="(-?\d*)" endfoot="(-?\d*)" endlastfoot="(-?\d*)"')
610 lt_features_re = re.compile(r'(endhead="-?\d*" endfirsthead="-?\d*" endfoot="-?\d*" endlastfoot="-?\d*")')
611 def update_longtables(file):
612     regexp = re.compile(r'^\\begin_inset\s+Tabular')
613     body = file.body
614     i = 0
615     while 1:
616         i = find_re(body, regexp, i)
617         if i == -1:
618             break
619         i = i + 1
620         i = find_token(body, "<lyxtabular", i)
621         if i == -1:
622             break
623
624         # get number of rows in the table
625         rows = int(rows_re.search(body[i]).group(1))
626
627         i = i + 1
628         i = find_token(body, '<features', i)
629         if i == -1:
630             break
631
632         # is this a longtable?
633         longtable = longtable_re.search(body[i])
634
635         if not longtable:
636             # islongtable is missing add it
637             body[i] = body[i][:10] + 'islongtable="false" ' + body[i][10:]
638
639         if not longtable or longtable.group(1) != "true":
640             # remove longtable elements from features
641             features = lt_features_re.search(body[i])
642             if features:
643                 body[i] = string.replace(body[i], features.group(1), "")
644             continue
645
646         row_info = row() * rows
647         res = ltvalues_re.search(body[i])
648         if not res:
649             continue
650
651         endfirsthead_empty, endlastfoot_empty = setHeaderFooterRows(res.group(1), res.group(2), res.group(3), res.group(4), rows, row_info)
652
653         if endfirsthead_empty:
654             insert_attribute(body, i, 'firstHeadEmpty="true"')
655
656         if endfirsthead_empty:
657             insert_attribute(body, i, 'lastFootEmpty="true"')
658
659         i = i + 1
660         for j in range(rows):
661             i = find_token(body, '<row', i)
662
663             self.endfoot = false                # footer row
664             self.endlastfoot = false    # last footer row
665             if row_info[j].endhead:
666                 insert_attribute(body, i, 'endhead="true"')
667
668             if row_info[j].endfirsthead:
669                 insert_attribute(body, i, 'endfirsthead="true"')
670
671             if row_info[j].endfoot:
672                 insert_attribute(body, i, 'endfoot="true"')
673
674             if row_info[j].endlastfoot:
675                 insert_attribute(body, i, 'endlastfoot="true"')
676
677             i = i + 1
678
679
680 # Figure insert are hidden feature of lyx 1.1.6. This might be removed in the future.
681 def fix_oldfloatinset(file):
682     lines = file.body
683     i = 0
684     while 1:
685         i = find_token(lines, "\\begin_inset Float ", i)
686         if i == -1:
687             break
688         j = find_token(lines, "collapsed", i)
689         if j != -1:
690             lines[j:j] = ["wide false"]
691         i = i+1
692
693
694 def change_listof(file):
695     lines = file.body
696     i = 0
697     while 1:
698         i = find_token(lines, "\\begin_inset LatexCommand \\listof", i)
699         if i == -1:
700             break
701         type = re.search(r"listof(\w*)", lines[i]).group(1)[:-1]
702         lines[i] = "\\begin_inset FloatList "+type
703         i = i+1
704
705
706 def change_infoinset(file):
707     lines = file.body
708     i = 0
709     while 1:
710         i = find_token(lines, "\\begin_inset Info", i)
711         if i == -1:
712             break
713         txt = string.lstrip(lines[i][18:])
714         new = ["\\begin_inset Note", "collapsed true", ""]
715         j = find_token(lines, "\\end_inset", i)
716         if j == -1:
717             break
718
719         note_lines = lines[i+1:j]
720         if len(txt) > 0:
721             note_lines = [txt]+note_lines
722
723         for line in note_lines:
724             new = new + ["\layout Standard", ""]
725             tmp = string.split(line, '\\')
726             new = new + [tmp[0]]
727             for x in tmp[1:]:
728                 new = new + ["\\backslash ", x]
729         lines[i:j] = new
730         i = i+5
731
732
733 def change_header(file):
734     lines = file.header
735     i = find_token(lines, "\\use_amsmath", 0)
736     if i == -1:
737         return
738     lines[i+1:i+1] = ["\\use_natbib 0",
739                       "\use_numerical_citations 0"]
740
741
742 convert = [[220, [change_header, change_listof, fix_oldfloatinset,
743                   update_tabular, update_longtables, remove_pextra,
744                   remove_oldfloat, remove_figinset, remove_oldertinset,
745                   remove_oldert, combine_ert, change_infoinset]]]
746 revert  = []
747
748
749 if __name__ == "__main__":
750     pass