Fix for note insets

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6469 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2003-03-12 18:41:51 +00:00
parent 9bb1334b9f
commit 5fbfa4888b
2 changed files with 21 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2003-03-12 Dekel Tsur <dekelts@tau.ac.il>
* lyx2lyx/lyx2lyx (main): Print error messages to stderr.
* lyx2lyx/lyxconvert_218.py (change_infoinset): Convert correctly
notes with several lines and backslashes.
2003-03-11 Dekel Tsur <dekelts@tau.ac.il>
* lyx2lyx/lyxconvert_218.py (change_infoinset): Convert Info insets

View File

@ -483,8 +483,20 @@ def change_infoinset(lines):
i = find_token(lines, "\\begin_inset Info", i)
if i == -1:
break
lines[i:i+1] = ["\\begin_inset Note", "collapsed true", "",
"\layout Standard", ""]
txt = string.lstrip(lines[i][18:])
new = ["\\begin_inset Note", "collapsed true", ""]
if len(txt) > 0:
new = new + ["\layout Standard", "", txt]
j = find_token(lines, "\\end_inset", i)
if j == -1:
break
for k in range(i+1, j):
new = new + ["\layout Standard", ""]
tmp = string.split(lines[k], '\\')
new = new + [tmp[0]]
for x in tmp[1:]:
new = new + ["\\backslash ", x]
lines[i:j] = new
i = i+5
def change_preamble(lines):