From: Richard Heck Date: Tue, 13 Nov 2007 15:30:29 +0000 (+0000) Subject: Change lyx2lyx to conform to new standard URL inset. X-Git-Tag: 1.6.10~7369 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=70055b34223f55739ad12e3dabce6b97603ad145;p=lyx.git Change lyx2lyx to conform to new standard URL inset. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21586 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/lyx_1_6.py b/lib/lyx2lyx/lyx_1_6.py index 3a3fee3a3d..d62ef3eb4d 100644 --- a/lib/lyx2lyx/lyx_1_6.py +++ b/lib/lyx2lyx/lyx_1_6.py @@ -521,7 +521,6 @@ def convert_url(document): 'Convert url insets to url charstyles' if document.backend == "docbook": return - didone = False i = 0 while True: i = find_token(document.body, "\\begin_inset CommandInset url", i) @@ -555,30 +554,8 @@ def convert_url(document): "\\end_layout", ""] document.body[i:k] = newstuff - didone = True i = k - #If we did one, we need to add URL to the modules - if didone: - i = find_token(document.header, "\\begin_modules", 0) - if i == -1: - #No modules yet included - i = find_token(document.header, "\\textclass", 0) - if i == -1: - document.warning("Malformed LyX document: No \\textclass!!") - return - modinfo = ["\\begin_modules", "URL", "\\end_modules"] - document.header[i + 1: i + 1] = modinfo - return - j = find_token(document.header, "\\end_modules", i) - if j == -1: - document.warning("Malformed LyX document: No \\end_modules.") - return - k = find_token(document.header, "URL", i) - if k != -1 and k < j: - return - document.header.insert(i + 1, "URL") - def revert_href(document): 'Reverts hyperlink insets (href) to url insets (url)'