# This file is part of lyx2lyx # Copyright (C) 2002 Dekel Tsur # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. import sys,string,re from parser_tools import * floats = { "footnote": ["\\begin_inset Foot", "collapsed true"], "margin": ["\\begin_inset Marginal", "collapsed true"], "fig": ["\\begin_inset Float figure", "placement htbp", "wide false", "collapsed false"], "tab": ["\\begin_inset Float table", "placement htbp", "wide false", "collapsed false"], "alg": ["\\begin_inset Float algorithm", "placement htbp", "wide false", "collapsed false"], "wide-fig": ["\\begin_inset Float figure", "placement htbp", "wide true", "collapsed false"], "wide-tab": ["\\begin_inset Float table", "placement htbp", "wide true", "collapsed false"] } def remove_oldfloat(lines, language): i = 0 while 1: i = find_token(lines, "\\begin_float", i) if i == -1: break j = find_token(lines, "\\end_float", i+1) floattype = string.split(lines[i])[1] if not floats.has_key(floattype): sys.stderr.write("Error! Unknown float type "+floattype+"\n") floattype = "fig" # skip \end_deeper tokens i2 = i+1 while check_token(lines[i2], "\\end_deeper"): i2 = i2+1 if i2 > i+1: j2 = find_token(lines, "\\layout", j+1) lines[j2:j2] = ["\\end_deeper "]*(i2-(i+1)) start = floats[floattype]+[""] mid = lines[i2:j] end = ["\\end_inset ", "\\family default ", "\\series default ", "\\shape default ", "\\size default ", "\\emph default ", # "\\numeric default ", "\\bar default ", "\\noun default ", "\\color default " "\\lang %s " % language] # It isn't nice to always put all the '\xxx default' statements, # but it doesn't hurt lines[i:j+1]= start+mid+end i = i+1 def remove_oldminipage(lines): i = 0 flag = 0 while 1: i = find_token(lines, "\\pextra_type 2", i) if i == -1: break hfill = 0 line = string.split(lines[i]) if line[4] == "\\pextra_hfill": hfill = 1 line[4:6] = [] if line[4] == "\\pextra_start_minipage": # We just ignore this line[4:6] = [] position = line[3] width = line[5] if line[4] == "\\pextra_widthp": width = line[5]+"col%" start = ["\\begin_inset Minipage", "position " + position, "inner_position 0", 'height "0pt"', 'width "%s"' % width, "collapsed false" ] if flag: flag = 0 if hfill: start = ["","\hfill",""]+start else: start = ["\\layout Standard"] + start j = find_token_backwards(lines,"\\layout", i-1) j0 = j mid = lines[j:i] j = find_tokens(lines, ["\\layout", "\\end_float"], i+1) # j can be -1, but this is still ok mid = mid+lines[i+1:j] count = 0 while 1: # collect more paragraphs to the minipage count = count+1 if j == -1 or not check_token(lines[j], "\\layout"): break i = find_tokens(lines, ["\\layout", "\\pextra_type"], j+1) if i == -1 or not check_token(lines[i], "\\pextra_type"): break line = string.split(lines[i]) if line[4] == "\\pextra_hfill": line[4:6] = [] if line[4] == "\\pextra_start_minipage" and line[5] == "1": flag = 1 break j = find_token_backwards(lines,"\\layout", i-1) mid = mid+lines[j:i] j = find_tokens(lines, ["\\layout", "\\end_float"], i+1) mid = mid+lines[i+1:j] end = ["\\end_inset "] lines[j0:j] = start+mid+end i = i+1 def is_empty(lines): return filter(is_nonempty_line, lines) == [] font_rexp = re.compile(r"\\(family|series|shape|size|emph|numeric|bar|noun)") ert_rexp = re.compile(r"\\begin_inset|.*\\SpecialChar") spchar_rexp = re.compile(r"(.*)(\\SpecialChar.*)") ert_begin = ["\\begin_inset ERT", "status Collapsed", "", "\\layout Standard"] def remove_oldert(lines): i = 0 while 1: i = find_tokens(lines, ["\\latex latex", "\\layout LaTeX"], i) if i == -1: break j = find_tokens(lines, ["\\latex default", "\\layout", "\\end_float"], i+1) if j == -1: j = len(lines)-1 if check_token(lines[j], "\\layout"): while j-1 >= 0 and check_token(lines[j-1], "\\begin_deeper"): j = j-1 # We need to remove insets, special chars & font commands from ERT text new = [] new2 = [] if check_token(lines[i], "\\layout LaTeX"): new = ["\layout Standard", "", ""] # We have a problem with classes in which Standard is not the default layout! k = i+1 while 1: k2 = find_re(lines, ert_rexp, k, j) inset = specialchar = 0 if k2 == -1: k2 = j elif check_token(lines[k2], "\\begin_inset"): inset = 1 else: specialchar = 1 mo = spchar_rexp.match(lines[k2]) lines[k2] = mo.group(1) specialchar_str = mo.group(2) k2 = k2+1 tmp = [] for line in lines[k:k2]: if font_rexp.match(line): new2.append(line) else: tmp.append(line) if is_empty(tmp): new = new+tmp else: new = new+ert_begin+tmp+["\\end_inset ", ""] if inset: k3 = find_token(lines, "\\end_inset", k2+1) new = new+[""]+lines[k2:k3+1]+["", ""] k = k3+1 elif specialchar: new = new+[specialchar_str] k = k2 else: break new = new+new2 if not check_token(lines[j], "\\latex default"): new = new+[""]+[lines[j]] lines[i:j+1] = new i = i+1 def is_ert_paragraph(lines, i): i = find_nonempty_line(lines, i+1) if not check_token(lines[i], "\\begin_inset ERT"): return 0 j = find_token(lines, "\\end_inset", i) k = find_nonempty_line(lines, j+1) return check_token(lines[k], "\\layout") def combine_ert(lines): i = 0 while 1: i = find_token(lines, "\\begin_inset ERT", i) if i == -1: break j = find_token_backwards(lines,"\\layout", i-1) count = 0 text = [] while is_ert_paragraph(lines, j): count = count+1 i2 = find_token(lines, "\\layout", j+1) k = find_token(lines, "\\end_inset", i2+1) text = text+lines[i2:k] j = find_token(lines, "\\layout", k+1) if j == -1: break if count >= 2: lines[i+1:k] = text i = i+1 oldunits = ["pt", "cm", "in", "text%", "col%"] def get_length(lines, name, start, end): i = find_token(lines, name, start, end) if i == -1: return "" x = string.split(lines[i]) return x[2]+oldunits[int(x[1])] def append(x, token, value): if value != "": x.append("\t"+token+" "+value) def remove_figinset(lines): i = 0 while 1: i = find_token(lines, "\\begin_inset Figure", i) if i == -1: break j = find_token(lines, "\\end_inset", i+1) lyxwidth = string.split(lines[i])[3]+"pt" lyxheight = string.split(lines[i])[4]+"pt" filename = get_value(lines, "file", i+1, j) width = get_length(lines, "width", i+1, j) # what does width=5 mean ? height = get_length(lines, "height", i+1, j) rotateAngle = get_value(lines, "angle", i+1, j) if width == "" and height == "": size_type = "0" else: size_type = "1" flags = get_value(lines, "flags", i+1, j) x = int(flags)%4 if x == 1: display = "monochrome" elif x == 2: display = "gray" else: display = "color" subcaptionText = get_value(lines, "subcaption", i+1, j) if subcaptionText != "": subcaptionText = '"'+subcaptionText+'"' k = find_token(lines, "subfigure", i+1,j) if k == -1: subcaption = 0 else: subcaption = 1 new = ["\\begin_inset Graphics FormatVersion 1"] append(new, "filename", filename) append(new, "display", display) if subcaption: new.append("\tsubcaption") append(new, "subcaptionText", subcaptionText) append(new, "size_type", size_type) append(new, "width", width) append(new, "height", height) if rotateAngle != "": new.append("\trotate") append(new, "rotateAngle", rotateAngle) new.append("\trotateOrigin center") new.append("\tlyxsize_type 1") append(new, "lyxwidth", lyxwidth) append(new, "lyxheight", lyxheight) new = new + ["\end_inset"] lines[i:j+1] = new def change_preamble(lines): i = find_token(lines, "\\use_amsmath", 0) if i == -1: return lines[i+1:i+1] = ["\\use_natbib 0", "\use_numerical_citations 0"] def convert(header, body): language = get_value(header, "\\language", 0) if language == "": language = "english" change_preamble(header) remove_oldert(body) combine_ert(body) remove_oldminipage(body) remove_oldfloat(body, language) remove_figinset(body) if __name__ == "__main__": pass