From 17c3888d25a1a38da21fff955600ca208cff8867 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sat, 12 Apr 2008 13:54:30 +0000 Subject: [PATCH] lyx2lyx: lyx2lyx: lyx_1_6.py, parser_tools.py: add some comments git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24246 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyx_1_6.py | 6 ++++-- lib/lyx2lyx/parser_tools.py | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/lyx2lyx/lyx_1_6.py b/lib/lyx2lyx/lyx_1_6.py index 8b09eff90a..0ee1e42ba2 100644 --- a/lib/lyx2lyx/lyx_1_6.py +++ b/lib/lyx2lyx/lyx_1_6.py @@ -486,20 +486,22 @@ def revert_pdf_options(document): # write to the preamble when hyperref was used if hyperref == True: - #preamble write preparation + # preamble write preparations + # bookmark numbers are only output when they are turned on if bookmarksopen == ',\n bookmarksopen=true': bookmarksopen = bookmarksopen + bookmarksopenlevel if bookmarks == ',\n bookmarks=true': bookmarks = bookmarks + bookmarksnumbered + bookmarksopen else: bookmarks = bookmarks + # hypersetup is only output when there are things to be set up setupstart = '\\hypersetup{%\n' setupend = ' }\n' if otheroptions == "" and title == "" and author == ""\ and subject == "" and keywords == "": setupstart = "" setupend = "" - #write the preamble + # write the preamble add_to_preamble(document, ['% Commands inserted by lyx2lyx for PDF properties', '\\usepackage[unicode=true' diff --git a/lib/lyx2lyx/parser_tools.py b/lib/lyx2lyx/parser_tools.py index 7a6d56e098..9b63e00fd1 100644 --- a/lib/lyx2lyx/parser_tools.py +++ b/lib/lyx2lyx/parser_tools.py @@ -160,7 +160,8 @@ def get_value_string(lines, token, start, end = 0, trim = False, default = ""): """ get_value_string(lines, token, start[[, end], trim, default]) -> string Return tokens after token as string, in lines, where - token is the first element.""" + token is the first element. When trim is used, the first and last character + of the string is trimmed.""" i = find_token_exact(lines, token, start, end) if i == -1: -- 2.39.5