mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Improve readability of the lyx2lyx help output.
Also some small clean-up edits
This commit is contained in:
parent
16b28ad725
commit
5a1fb5b5fa
@ -447,8 +447,8 @@ class LyX_base:
|
|||||||
else:
|
else:
|
||||||
header = self.header
|
header = self.header
|
||||||
|
|
||||||
for line in header + [''] + self.body:
|
for line in header + [u''] + self.body:
|
||||||
self.output.write(line+u"\n")
|
self.output.write(line+u'\n')
|
||||||
|
|
||||||
|
|
||||||
def choose_output(self, output):
|
def choose_output(self, output):
|
||||||
|
@ -56,26 +56,27 @@ def main():
|
|||||||
parser.add_argument("--noisy",
|
parser.add_argument("--noisy",
|
||||||
action="store_const", const=10, dest="debug")
|
action="store_const", const=10, dest="debug")
|
||||||
parser.add_argument("-c", "--encoding", type=cmd_arg, dest="cjk_encoding",
|
parser.add_argument("-c", "--encoding", type=cmd_arg, dest="cjk_encoding",
|
||||||
help="files in format 413 and lower are read and"
|
help="Files in format 413 and lower are read and"
|
||||||
" written in the format of CJK-LyX."
|
" written in the format of CJK-LyX."
|
||||||
"If encoding is not given or 'auto' the encoding"
|
" If encoding is not given or 'auto' the encoding"
|
||||||
"is determined from the locale.")
|
" is determined from the locale.")
|
||||||
parser.add_argument("-e", "--err", type=cmd_arg, dest="error",
|
parser.add_argument("-e", "--err", type=cmd_arg, dest="error",
|
||||||
help= "file name of the error file else goes to stderr")
|
help= "File name of the error file else goes to stderr.")
|
||||||
parser.add_argument("-o", "--output", type=cmd_arg, dest="output",
|
parser.add_argument("-o", "--output", type=cmd_arg, dest="output",
|
||||||
help= "name of the output file else goes to stdout")
|
help= "Name of the output file else goes to stdout.")
|
||||||
parser.add_argument("-t", "--to", type=cmd_arg, dest= "end_format",
|
parser.add_argument("-t", "--to", type=cmd_arg, dest= "end_format",
|
||||||
help= "destination file format, default (latest)")
|
help= "Destination file format, default <latest>.")
|
||||||
parser.add_argument("-V", "--final_version", type=cmd_arg, dest= "final_version",
|
parser.add_argument("-V", "--final_version", type=cmd_arg, dest= "final_version",
|
||||||
help= "destination version, default (latest)")
|
help= "Destination version, default <latest>.")
|
||||||
parser.add_argument("-l", "--list", action="store_true",
|
parser.add_argument("-l", "--list", action="store_true",
|
||||||
help = "list all available formats and supported versions")
|
help = "List all available formats and supported versions.")
|
||||||
parser.add_argument("-n", "--try-hard", action="store_true",
|
parser.add_argument("-n", "--try-hard", action="store_true",
|
||||||
help = "try hard (ignore any convertion errors)")
|
help = "Try hard (ignore any convertion errors).")
|
||||||
parser.add_argument("-s", "--systemlyxdir", type=cmd_arg, dest= "systemlyxdir",
|
parser.add_argument("-s", "--systemlyxdir", type=cmd_arg, dest= "systemlyxdir",
|
||||||
help= "LyX system directory for conversion from version 489 or older")
|
help= "LyX system directory for conversion from"
|
||||||
|
" version 489 or older.")
|
||||||
parser.add_argument('--version', action='version', version="""lyx2lyx, version %s
|
parser.add_argument('--version', action='version', version="""lyx2lyx, version %s
|
||||||
Copyright (C) 2011 The LyX Team, José Matos and Dekel Tsur""" % LyX.version__)
|
Copyright (C) 2011 The LyX Team, José Matos and Dekel Tsur""" % LyX.version__)
|
||||||
parser.add_argument("input", nargs='?', type=cmd_arg, default=None)
|
parser.add_argument("input", nargs='?', type=cmd_arg, default=None)
|
||||||
|
|
||||||
options = parser.parse_args()
|
options = parser.parse_args()
|
||||||
|
@ -33,8 +33,6 @@ from parser_tools import (del_token, del_value, del_complete_lines,
|
|||||||
|
|
||||||
from lyx2lyx_tools import (add_to_preamble, put_cmd_in_ert, revert_font_attrs,
|
from lyx2lyx_tools import (add_to_preamble, put_cmd_in_ert, revert_font_attrs,
|
||||||
insert_to_preamble, latex_length)
|
insert_to_preamble, latex_length)
|
||||||
# get_ert, lyx2latex, lyx2verbatim, length_in_bp, convert_info_insets
|
|
||||||
# revert_flex_inset, hex2ratio, str2bool
|
|
||||||
|
|
||||||
####################################################################
|
####################################################################
|
||||||
# Private helper functions
|
# Private helper functions
|
||||||
|
Loading…
Reference in New Issue
Block a user