From 005f68419372b212cf71660482cf8dca4821ae0c Mon Sep 17 00:00:00 2001 From: Erlend Aasland Date: Mon, 11 Feb 2008 12:22:55 +0100 Subject: [PATCH] MusicXML: Really make relative mode default. Add "default = True" for relative mode. Also add some trivial formatting (whitespace stuff) in the option handler. --- scripts/musicxml2ly.py | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 6d7389fb52..5fe8ee52c2 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1785,8 +1785,8 @@ def get_all_voices (parts): def option_parser (): - p = ly.get_option_parser(usage=_ ("musicxml2ly [options] FILE.xml"), - version=('''%prog (LilyPond) @TOPLEVEL_VERSION@\n\n''' + p = ly.get_option_parser (usage = _ ("musicxml2ly [options] FILE.xml"), + version = ('''%prog (LilyPond) @TOPLEVEL_VERSION@\n\n''' + _ ("""This program is free software. It is covered by the GNU General Public License and you are welcome to change it and/or distribute copies of it @@ -1798,17 +1798,17 @@ Copyright (c) 2005--2008 by Jan Nieuwenhuizen and Reinhold Kainhofer """), - description=_ ("Convert %s to LilyPond input.") % 'MusicXML' + "\n") + description = _ ("Convert %s to LilyPond input.") % 'MusicXML' + "\n") p.add_option ('-v', '--verbose', - action="store_true", - dest='verbose', - help=_ ("be verbose")) + action = "store_true", + dest = 'verbose', + help = _ ("be verbose")) p.add_option ('', '--lxml', - action="store_true", - default=False, - dest="use_lxml", - help=_ ("Use lxml.etree; uses less memory and cpu time.")) + action = "store_true", + default = False, + dest = "use_lxml", + help = _ ("Use lxml.etree; uses less memory and cpu time.")) p.add_option ('-z', '--compressed', action = "store_true", @@ -1818,6 +1818,7 @@ Copyright (c) 2005--2008 by p.add_option ('-r', '--relative', action = "store_true", + default = True, dest = "relative", help = _ ("Convert pitches in relative mode. (Default)")) @@ -1827,7 +1828,7 @@ Copyright (c) 2005--2008 by help = _ ("Convert pitches in absolute mode.")) p.add_option ('-l', '--language', - metavar=_("LANG"), + metavar = _ ("LANG"), action = "store", help = _ ("Use a different language file 'LANG.ly' and corresponding pitch names, e.g. 'deutsch' for deutsch.ly.")) @@ -1838,14 +1839,14 @@ Copyright (c) 2005--2008 by help = _ ("Do not convert directions (^, _ or -) for articulations, dynamics, etc.")) p.add_option ('-o', '--output', - metavar=_ ("FILE"), - action="store", - default=None, - type='string', - dest='output_name', - help=_ ("set output filename to FILE")) - p.add_option_group ( _('Bugs'), - description=(_ ("Report bugs via") + metavar = _ ("FILE"), + action = "store", + default = None, + type = 'string', + dest = 'output_name', + help = _ ("set output filename to FILE")) + p.add_option_group ( _ ('Bugs'), + description = ( _ ("Report bugs via") + ''' http://post.gmane.org/post.php''' '''?group=gmane.comp.gnu.lilypond.bugs\n''')) return p -- 2.39.5