From 379467599e9d3f7831ff1b473a9a71a564b2f279 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Matox?= Date: Wed, 22 Oct 2003 09:03:51 +0000 Subject: [PATCH] * lyxconvert_223.py (convert_minipage): Assures the paramaters order and defaut values git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7949 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/ChangeLog | 5 ++++ lib/lyx2lyx/lyxconvert_223.py | 50 ++++++++++++++++++++++++++++++----- 2 files changed, 48 insertions(+), 7 deletions(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index e128f1dacf..e36f5dd14b 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2003-10-22 José Matos + + * lyxconvert_223.py (convert_minipage): Assures that paramaters order + is the same that lyx outputs. Give default values to new parameters. + 2003-10-21 José Matos * lyxconvert_223.py (convert_minipage): convert minipage to insetbox. diff --git a/lib/lyx2lyx/lyxconvert_223.py b/lib/lyx2lyx/lyxconvert_223.py index 9b5e69d079..eaa71d77b4 100644 --- a/lib/lyx2lyx/lyxconvert_223.py +++ b/lib/lyx2lyx/lyxconvert_223.py @@ -119,7 +119,10 @@ def convert_comment(lines): def convert_minipage(lines): - pos = ["t","c","","b"] + """ Convert minipages to the box inset. + We try to use the same order of arguments as lyx does. + """ + pos = ["t","c","b"] inner_pos = ["c","t","b","s"] i = 0 @@ -129,18 +132,51 @@ def convert_minipage(lines): return lines[i] = "\\begin_inset Frameless" - i = i + 1 # convert old to new position using the pos list if lines[i][:8] == "position": - lines[i] = "position " + pos[int(lines[i][9])] - i = i + 1 + lines[i] = 'position "%s"' % pos[int(lines[i][9])] + else: + lines.insert(i, 'position "%s"' % pos[0]) + i = i + 1 + + lines.insert(i, 'hor_pos "c"') + i = i + 1 + lines.insert(i, 'has_inner_box 1') + i = i + 1 - # do the same for the inner_position + # convert the inner_position if lines[i][:14] == "inner_position": - lines[i] = "inner_pos " + inner_pos[int(lines[i][15])] - i = i + 1 + lines[i] = 'inner_pos "%s"' % inner_pos[int(lines[i][15])] + else: + lines.insert('inner_pos "%s"' % inner_pos[0]) + i = i + 1 + + # We need this since the new file format has a height and width + # in a different order. + if lines[i][:6] == "height": + height = lines[i][6:] + del lines[i] + else: + height = ' "0"' + + if lines[i][:5] == "width": + width = lines[i][5:] + del lines[i] + else: + width = ' "0"' + + lines.insert(i, 'use_parbox 0') + i = i + 1 + lines.insert(i, 'width' + width) + i = i + 1 + lines.insert(i, 'special "none"') + i = i + 1 + lines.insert(i, 'height' + height) + i = i + 1 + lines.insert(i, 'height_special "totalheight"') + i = i + 1 def convert(header, body): convert_external(body) -- 2.39.2