X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=python%2Fconvertrules.py;h=1214b8a7c4b271d6e070193eadbff7fe93129c33;hb=55494354ca340929aada3695a3b652e4fa313715;hp=06f572e2048c4514c5be02271245e7f87f09b474;hpb=91f01637f31c7d904fd8016b49184e935bf1c8ab;p=lilypond.git diff --git a/python/convertrules.py b/python/convertrules.py index 06f572e204..1214b8a7c4 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -18,132 +18,130 @@ class FatalConversionError: pass conversions = [] -error_file = sys.stderr +stderr_write = lilylib.stderr_write +def warning (str): + stderr_write (_ ("warning: %s") % str) + +# Decorator to make rule syntax simpler +def rule (version, message): + """ + version: a LilyPond version tuple like (2, 11, 50) + message: the message that describes the conversion. + + This decorator adds its function together with the version and the + message to the global conversions list. (It doesn't need to return + the function as it isn't used directly anyway.) + + A conversion rule using this decorator looks like this: + + @rule ((1, 2, 3), "convert foo to bar") + def conv(str): + str = str.replace('foo', 'bar') + return str + + """ + def dec(f): + conversions.append ((version, f, message)) + return dec + + +@rule ((0, 1, 9), _ ('\\header { key = concat + with + operator }')) def conv(str): if re.search ('\\\\multi', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "\\multi") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "\\multi") + stderr_write ('\n') return str -conversions.append (((0,1,9), conv, '\\header { key = concat + with + operator }')) - +@rule ((0, 1, 19), _ ('deprecated %s') % '\\octave') def conv (str): if re.search ('\\\\octave', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "\\octave") - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "\\octave") + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') # raise FatalConversionError () - return str -conversions.append (( - ((0,1,19), conv, 'deprecated \\octave; cannot convert automatically'))) - - +@rule ((0, 1, 20), _ ('deprecated \\textstyle, new \\key syntax')) def conv (str): str = re.sub ('\\\\textstyle([^;]+);', '\\\\property Lyrics . textstyle = \\1', str) # harmful to current .lys # str = re.sub ('\\\\key([^;]+);', '\\\\accidentals \\1;', str) - return str -conversions.append (( - ((0,1,20), conv, 'deprecated \\textstyle, new \\key syntax'))) - - +@rule ((0, 1, 21), '\\musical_pitch -> \\musicalpitch, \\meter -> \\time') def conv (str): str = re.sub ('\\\\musical_pitch', '\\\\musicalpitch',str) str = re.sub ('\\\\meter', '\\\\time',str) - return str -conversions.append (( - ((0,1,21), conv, '\\musical_pitch -> \\musicalpitch, '+ - '\\meter -> \\time'))) - +@rule ((1, 0, 0), _ ("bump version for release")) def conv (str): return str -conversions.append (( - ((1,0,0), conv, '0.1.21 -> 1.0.0 '))) - - +@rule ((1, 0, 1), '\\accidentals -> \\keysignature, specialaccidentals -> keyoctaviation') def conv (str): str = re.sub ('\\\\accidentals', '\\\\keysignature',str) str = re.sub ('specialaccidentals *= *1', 'keyoctaviation = 0',str) str = re.sub ('specialaccidentals *= *0', 'keyoctaviation = 1',str) - return str -conversions.append (( - ((1,0,1), conv, '\\accidentals -> \\keysignature, ' + - 'specialaccidentals -> keyoctaviation'))) - +@rule ((1, 0, 2), _ ('\\header { key = concat + with + operator }')) def conv(str): if re.search ('\\\\header', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "new \\header format") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("new \\header format")) + stderr_write ('\n') return str -conversions.append (((1,0,2), conv, '\\header { key = concat + with + operator }')) - +@rule ((1, 0, 3), '\\melodic -> \\notes') def conv(str): str = re.sub ('\\\\melodic([^a-zA-Z])', '\\\\notes\\1',str) return str -conversions.append (((1,0,3), conv, '\\melodic -> \\notes')) - +@rule ((1, 0, 4), 'default_{paper,midi}') def conv(str): str = re.sub ('default_paper *=', '',str) str = re.sub ('default_midi *=', '',str) return str -conversions.append (((1,0,4), conv, 'default_{paper,midi}')) - +@rule ((1, 0, 5), 'ChoireStaff -> ChoirStaff') def conv(str): str = re.sub ('ChoireStaff', 'ChoirStaff',str) str = re.sub ('\\\\output', 'output = ',str) - return str -conversions.append (((1,0,5), conv, 'ChoireStaff -> ChoirStaff')) - +@rule ((1, 0, 6), 'foo = \\translator {\\type .. } ->\\translator {\\type ..; foo; }') def conv(str): if re.search ('[a-zA-Z]+ = *\\translator',str): - error_file.write ('\n') - error_file.write (NOT_SMART % "\\translator syntax") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("\\translator syntax")) + stderr_write ('\n') # raise FatalConversionError () return str -conversions.append (((1,0,6), conv, 'foo = \\translator {\\type .. } ->\\translator {\\type ..; foo; }')) - - +@rule ((1, 0, 7), '\\lyric -> \\lyrics') def conv(str): str = re.sub ('\\\\lyrics*', '\\\\lyrics',str) - return str -conversions.append (((1,0,7), conv, '\\lyric -> \\lyrics')) - +@rule ((1, 0, 10), '[2/3 ]1/1 -> \\times 2/3 ') def conv(str): str = re.sub ('\\\\\\[/3+', '\\\\times 2/3 { ',str) str = re.sub ('\\[/3+', '\\\\times 2/3 { [',str) @@ -154,211 +152,152 @@ def conv(str): str = re.sub ('\\]([0-9/]+)', '] }', str) return str -conversions.append (((1,0,10), conv, '[2/3 ]1/1 -> \\times 2/3 ')) - +@rule ((1, 0, 12), 'Chord syntax stuff') def conv(str): return str -conversions.append (((1,0,12), conv, 'Chord syntax stuff')) - +@rule ((1, 0, 13), ' c -> ~ c') def conv(str): - - str = re.sub ('<([^>~]+)~([^>]*)>','<\\1 \\2> ~', str) - return str -conversions.append (((1,0,13), conv, ' c -> ~ c')) - +@rule ((1, 0, 14), '<[a b> c -> [ ]') def conv(str): str = re.sub ('<\\[','[<', str) str = re.sub ('\\]>','>]', str) - return str -conversions.append (((1,0,14), conv, '<[a b> c -> [ ]')) - - +@rule ((1, 0, 16), '\\type -> \\context, textstyle -> textStyle') def conv(str): str = re.sub ('\\\\type([^\n]*engraver)','\\\\TYPE\\1', str) str = re.sub ('\\\\type([^\n]*performer)','\\\\TYPE\\1', str) str = re.sub ('\\\\type','\\\\context', str) str = re.sub ('\\\\TYPE','\\\\type', str) str = re.sub ('textstyle','textStyle', str) - return str -conversions.append (((1,0,16), conv, '\\type -> \\context, textstyle -> textStyle')) - - +@rule ((1, 0, 18), _ ('\\repeat NUM Music Alternative -> \\repeat FOLDSTR Music Alternative')) def conv(str): if re.search ('\\\\repeat',str): - error_file.write ('\n') - error_file.write (NOT_SMART % "\\repeat") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "\\repeat") + stderr_write ('\n') # raise FatalConversionError () return str -conversions.append (((1,0,18), conv, - '\\repeat NUM Music Alternative -> \\repeat FOLDSTR Music Alternative')) - +@rule ((1, 0, 19), 'fontsize -> fontSize, midi_instrument -> midiInstrument, SkipBars -> skipBars') def conv(str): str = re.sub ('SkipBars','skipBars', str) str = re.sub ('fontsize','fontSize', str) str = re.sub ('midi_instrument','midiInstrument', str) - return str -conversions.append (((1,0,19), conv, - 'fontsize -> fontSize, midi_instrument -> midiInstrument, SkipBars -> skipBars')) - - +@rule ((1, 0, 20), '{,tie,slur}ydirection -> {v,tieV,slurV}erticalDirection') def conv(str): str = re.sub ('tieydirection','tieVerticalDirection', str) str = re.sub ('slurydirection','slurVerticalDirection', str) str = re.sub ('ydirection','verticalDirection', str) - return str -conversions.append (((1,0,20), conv, - '{,tie,slur}ydirection -> {v,tieV,slurV}erticalDirection')) - - +@rule ((1, 0, 21), 'hshift -> horizontalNoteShift') def conv(str): str = re.sub ('hshift','horizontalNoteShift', str) - return str -conversions.append (((1,0,21), conv, - 'hshift -> horizontalNoteShift')) - - +@rule ((1, 1, 52), _ ('deprecate %s') % '\\grouping') def conv(str): str = re.sub ('\\\\grouping[^;]*;','', str) - return str -conversions.append (((1,1,52), conv, - 'deprecate \\grouping')) - - +@rule ((1, 1, 55), '\\wheel -> \\coda') def conv(str): str = re.sub ('\\\\wheel','\\\\coda', str) - return str -conversions.append (((1,1,55), conv, - '\\wheel -> \\coda')) - +@rule ((1, 1, 65), 'slurdash -> slurDash, keyoctaviation -> keyOctaviation') def conv(str): str = re.sub ('keyoctaviation','keyOctaviation', str) str = re.sub ('slurdash','slurDash', str) - return str -conversions.append (((1,1,65), conv, - 'slurdash -> slurDash, keyoctaviation -> keyOctaviation')) - +@rule ((1, 1, 66), 'semi -> volta') def conv(str): str = re.sub ('\\\\repeat *\"?semi\"?','\\\\repeat "volta"', str) - return str -conversions.append (((1,1,66), conv, - 'semi -> volta')) - - +@rule ((1, 1, 67), 'beamAuto -> noAutoBeaming') def conv(str): str = re.sub ('\"?beamAuto\"? *= *\"?0?\"?','noAutoBeaming = "1"', str) - return str -conversions.append (((1,1,67), conv, - 'beamAuto -> noAutoBeaming')) - +@rule ((1, 2, 0), 'automaticMelismas -> automaticMelismata') def conv(str): str = re.sub ('automaticMelismas', 'automaticMelismata', str) - return str -conversions.append (((1,2,0), conv, - 'automaticMelismas -> automaticMelismata')) - +@rule ((1, 2, 1), 'dynamicDir -> dynamicDirection') def conv(str): str = re.sub ('dynamicDir\\b', 'dynamicDirection', str) - return str -conversions.append (((1,2,1), conv, - 'dynamicDir -> dynamicDirection')) - +@rule ((1, 3, 4), '\\cadenza -> \\cadenza{On|Off}') def conv(str): str = re.sub ('\\\\cadenza *0 *;', '\\\\cadenzaOff', str) str = re.sub ('\\\\cadenza *1 *;', '\\\\cadenzaOn', str) - return str -conversions.append (((1,3,4), conv, - '\\cadenza -> \\cadenza{On|Off}')) - +@rule ((1, 3, 5), 'beamAuto moment properties') def conv (str): str = re.sub ('"?beamAuto([^"=]+)"? *= *"([0-9]+)/([0-9]+)" *;*', 'beamAuto\\1 = #(make-moment \\2 \\3)', str) return str -conversions.append (((1,3,5), conv, 'beamAuto moment properties')) - +@rule ((1, 3, 17), 'stemStyle -> flagStyle') def conv (str): str = re.sub ('stemStyle', 'flagStyle', str) return str -conversions.append (((1,3,17), conv, 'stemStyle -> flagStyle')) - +@rule ((1, 3, 18), 'staffLineLeading -> staffSpace') def conv (str): str = re.sub ('staffLineLeading', 'staffSpace', str) return str -conversions.append (((1,3,18), conv, 'staffLineLeading -> staffSpace')) - - +@rule ((1, 3, 23), _ ('deprecate %s ') % '\\repetitions') def conv(str): if re.search ('\\\\repetitions',str): - error_file.write ('\n') - error_file.write (NOT_SMART % "\\repetitions") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "\\repetitions") + stderr_write ('\n') # raise FatalConversionError () return str -conversions.append (((1,3,23), conv, - '\\\\repetitions feature dropped')) - - +@rule ((1, 3, 35), 'textEmptyDimension -> textNonEmpty') def conv (str): str = re.sub ('textEmptyDimension *= *##t', 'textNonEmpty = ##f', @@ -368,91 +307,75 @@ def conv (str): str) return str -conversions.append (((1,3,35), conv, 'textEmptyDimension -> textNonEmpty')) - +@rule ((1, 3, 38), '\musicalpitch { a b c } -> #\'(a b c)') def conv (str): str = re.sub ("([a-z]+)[ \t]*=[ \t]*\\\\musicalpitch *{([- 0-9]+)} *\n", "(\\1 . (\\2))\n", str) str = re.sub ("\\\\musicalpitch *{([0-9 -]+)}", "\\\\musicalpitch #'(\\1)", str) if re.search ('\\\\notenames',str): - error_file.write ('\n') - error_file.write (NOT_SMART % "new \\notenames format") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("new \\notenames format")) + stderr_write ('\n') return str -conversions.append (((1,3,38), conv, '\musicalpitch { a b c } -> #\'(a b c)')) - +@rule ((1, 3, 39), '\\key A ; ->\\key a;') def conv (str): def replace (match): - return '\\key %s;' % string.lower (match.group (1)) + return '\\key %s;' % match.group (1).lower () str = re.sub ("\\\\key ([^;]+);", replace, str) return str -conversions.append (((1,3,39), conv, '\\key A ; ->\\key a;')) - +@rule ((1, 3, 41), '[:16 c4 d4 ] -> \\repeat "tremolo" 2 { c16 d16 }') def conv (str): if re.search ('\\[:',str): - error_file.write ('\n') - error_file.write (NOT_SMART % "new tremolo format") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("new tremolo format")) + stderr_write ('\n') return str -conversions.append (((1,3,41), conv, - '[:16 c4 d4 ] -> \\repeat "tremolo" 2 { c16 d16 }')) - +@rule ((1, 3, 42), _ ('Staff_margin_engraver deprecated, use Instrument_name_engraver')) def conv (str): str = re.sub ('Staff_margin_engraver' , 'Instrument_name_engraver', str) return str -conversions.append (((1,3,42), conv, - 'Staff_margin_engraver deprecated, use Instrument_name_engraver')) - +@rule ((1, 3, 49), 'noteHeadStyle value: string -> symbol') def conv (str): str = re.sub ('note[hH]eadStyle\\s*=\\s*"?(\\w+)"?' , "noteHeadStyle = #'\\1", str) return str -conversions.append (((1,3,49), conv, - 'noteHeadStyle value: string -> symbol')) - +@rule ((1, 3, 58), 'noteHeadStyle value: string -> symbol') def conv (str): if re.search ('\\\\keysignature', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "new tremolo format") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % '\\keysignature') + stderr_write ('\n') return str -conversions.append (((1,3,58), conv, - 'noteHeadStyle value: string -> symbol')) - - +@rule ((1, 3, 59), '\key X ; -> \key X major; ') def conv (str): str = re.sub (r"""\\key *([a-z]+) *;""", r"""\\key \1 \major;""",str); return str -conversions.append (((1,3,59), conv, - '\key X ; -> \key X major; ')) +@rule ((1, 3, 68), 'latexheaders = "\\input global" -> latexheaders = "global"') def conv (str): str = re.sub (r'latexheaders *= *"\\\\input ', 'latexheaders = "', str) return str -conversions.append (((1,3,68), conv, 'latexheaders = "\\input global" -> latexheaders = "global"')) - - # TODO: lots of other syntax change should be done here as well - +@rule ((1, 3, 92), 'basicXXXProperties -> XXX, Repeat_engraver -> Volta_engraver') def conv (str): str = re.sub ('basicCollisionProperties', 'NoteCollision', str) str = re.sub ('basicVoltaSpannerProperties' , "VoltaBracket", str) @@ -468,9 +391,8 @@ def conv (str): str = re.sub ('Repeat_engraver' ,'Volta_engraver', str) return str -conversions.append (((1,3,92), conv, 'basicXXXProperties -> XXX, Repeat_engraver -> Volta_engraver')) - +@rule ((1, 3, 93), _ ('change property definiton case (eg. onevoice -> oneVoice)')) def conv (str): # Ugh, but meaning of \stemup changed too # maybe we should do \stemup -> \stemUp\slurUp\tieUp ? @@ -524,33 +446,23 @@ def conv (str): str = re.sub ('\\\\property *[^ .]*[.]?noAutoBeaming[^=]*= *#?"?(0|(""))"?', '\\\\autoBeamOn', str) str = re.sub ('\\\\property *[^ .]*[.]?noAutoBeaming[^=]*= *#?"?([1-9]+)"?', '\\\\autoBeamOff', str) - - - return str -conversions.append (((1,3,93), conv, - 'property definiton case (eg. onevoice -> oneVoice)')) - - +@rule ((1, 3, 97), 'ChordName -> ChordNames') def conv (str): str = re.sub ('ChordNames*', 'ChordNames', str) if re.search ('\\\\textscript "[^"]* *"[^"]*"', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "new \\textscript markup text") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("new \\textscript markup text")) + stderr_write ('\n') str = re.sub ('\\textscript +("[^"]*")', '\\textscript #\\1', str) - return str -conversions.append (((1,3,97), conv, 'ChordName -> ChordNames')) - - # TODO: add lots of these - +@rule ((1, 3, 98), 'CONTEXT.textStyle -> GROB.#font-style ') def conv (str): str = re.sub ('\\\\property *"?Voice"? *[.] *"?textStyle"? *= *"([^"]*)"', '\\\\property Voice.TextScript \\\\set #\'font-style = #\'\\1', str) str = re.sub ('\\\\property *"?Lyrics"? *[.] *"?textStyle"? *= *"([^"]*)"', '\\\\property Lyrics.LyricText \\\\set #\'font-style = #\'\\1', str) @@ -571,31 +483,24 @@ def conv (str): str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?flagStyle"? *= *"([^"]*)"', '\\\\property \\1.Stem \\\\override #\'flag-style = #\'\\2', str) return str -conversions.append (((1,3,98), conv, 'CONTEXT.textStyle -> GROB.#font-style ')) - +@rule ((1, 3, 102), 'beamAutoEnd -> autoBeamSettings \\push (end * * * *)') def conv (str): str = re.sub ('"?beamAutoEnd_([0-9]*)"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(end 1 \\1 * *) = \\2', str) str = re.sub ('"?beamAutoBegin_([0-9]*)"? *= *(#\\([^)]*\))', 'autoBeamSettings \\push #\'(begin 1 \\1 * *) = \\2', str) str = re.sub ('"?beamAutoEnd"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(end * * * *) = \\1', str) str = re.sub ('"?beamAutoBegin"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(begin * * * *) = \\1', str) - - return str -conversions.append (((1,3,102), conv, 'beamAutoEnd -> autoBeamSettings \\push (end * * * *)')) - - +@rule ((1, 3, 111), '\\push -> \\override, \\pop -> \\revert') def conv (str): str = re.sub ('\\\\push', '\\\\override', str) str = re.sub ('\\\\pop', '\\\\revert', str) - return str -conversions.append (((1,3,111), conv, '\\push -> \\override, \\pop -> \\revert')) - +@rule ((1, 3, 113), 'LyricVoice -> LyricsVoice') def conv (str): str = re.sub ('LyricVoice', 'LyricsVoice', str) # old fix @@ -603,7 +508,7 @@ def conv (str): str = re.sub ('Chord[Nn]ames([ \t\n]+\\\\override)', 'ChordName\\1', str) return str -conversions.append (((1,3,113), conv, 'LyricVoice -> LyricsVoice')) + def regularize_id (str): s = '' lastx = '' @@ -616,14 +521,14 @@ def regularize_id (str): elif x not in string.letters: x = 'x' elif x in string.lowercase and lastx == '_': - x = string.upper (x) + x = x.upper () s = s + x lastx = x return s -def conv (str): - +@rule ((1, 3, 117), _ ('identifier names: %s') % '$!foo_bar_123 -> xfooBarABC') +def conv (str): def regularize_dollar_reference (match): return regularize_id (match.group (1)) def regularize_assignment (match): @@ -632,14 +537,11 @@ def conv (str): str = re.sub ('\n([^ \t\n]+)[ \t]*= *', regularize_assignment, str) return str -conversions.append (((1,3,117), conv, 'identifier names: $!foo_bar_123 -> xfooBarABC')) - - +@rule ((1, 3, 120), 'paper_xxx -> paperXxxx, pedalup -> pedalUp.') def conv (str): def regularize_paper (match): return regularize_id (match.group (1)) - str = re.sub ('(paper_[a-z]+)', regularize_paper, str) str = re.sub ('sustainup', 'sustainUp', str) str = re.sub ('nobreak', 'noBreak', str) @@ -648,65 +550,55 @@ def conv (str): str = re.sub ('sostenutodown', 'sostenutoDown', str) str = re.sub ('unachorda', 'unaChorda', str) str = re.sub ('trechorde', 'treChorde', str) - return str -conversions.append (((1,3,120), conv, 'paper_xxx -> paperXxxx, pedalup -> pedalUp.')) - +@rule ((1, 3, 122), 'drarnChords -> chordChanges, \\musicalpitch -> \\pitch') def conv (str): str = re.sub ('drarnChords', 'chordChanges', str) str = re.sub ('\\musicalpitch', '\\pitch', str) return str -conversions.append (((1,3,122), conv, 'drarnChords -> chordChanges, \\musicalpitch -> \\pitch')) - +@rule ((1, 3, 136), 'ly-X-elt-property -> ly-X-grob-property') def conv (str): str = re.sub ('ly-([sg])et-elt-property', 'ly-\\1et-grob-property', str) return str -conversions.append (((1,3,136), conv, 'ly-X-elt-property -> ly-X-grob-property')) - +@rule ((1, 3, 138), _ ('point-and-click argument changed to procedure.')) def conv (str): str = re.sub ('point-and-click +#t', 'point-and-click line-column-location', str) return str -conversions.append (((1,3,138), conv, 'point-and-click argument changed to procedure.')) - +@rule ((1, 3, 138), 'followThread -> followVoice.') def conv (str): str = re.sub ('followThread', 'followVoice', str) str = re.sub ('Thread.FollowThread', 'Voice.VoiceFollower', str) str = re.sub ('FollowThread', 'VoiceFollower', str) return str -conversions.append (((1,3,138), conv, 'followThread -> followVoice.')) - +@rule ((1, 3, 139), 'font-point-size -> font-design-size.') def conv (str): str = re.sub ('font-point-size', 'font-design-size', str) return str -conversions.append (((1,3,139), conv, 'font-point-size -> font-design-size.')) - +@rule ((1, 3, 141), 'xNoDots -> xSolid') def conv (str): str = re.sub ('([a-zA-Z]*)NoDots', '\\1Solid', str) return str -conversions.append (((1,3,141), conv, 'xNoDots -> xSolid')) - +@rule ((1, 3, 144), 'Chorda -> Corda') def conv (str): str = re.sub ('([Cc])hord([ea])', '\\1ord\\2', str) return str -conversions.append (((1,3,144), conv, 'Chorda -> Corda')) - - +@rule ((1, 3, 145), 'ContextNameXxxxVerticalExtent -> XxxxVerticalExtent') def conv (str): str = re.sub ('([A-Za-z]+)MinimumVerticalExtent', 'MinimumV@rticalExtent', str) str = re.sub ('([A-Za-z]+)ExtraVerticalExtent', 'ExtraV@rticalExtent', str) @@ -715,10 +607,8 @@ def conv (str): str = re.sub ('MinimumV@rticalExtent', 'MinimumVerticalExtent', str) return str -conversions.append (((1,3,145), conv, -'ContextNameXxxxVerticalExtent -> XxxxVerticalExtent')) - +@rule ((1, 3, 146), _('semicolons removed')) def conv (str): str = re.sub ('\\\\key[ \t]*;', '\\key \\default;', str) str = re.sub ('\\\\mark[ \t]*;', '\\mark \\default;', str) @@ -731,40 +621,37 @@ def conv (str): # Otherwise we interfere with Scheme comments, # which is badbadbad. str = re.sub ("([^ \t;#]);", "\\1", str) - return str -conversions.append (((1,3,146), conv, 'semicolons removed')) +@rule ((1, 3, 147), 'default-neutral-direction -> neutral-direction') def conv (str): str = re.sub ('default-neutral-direction', 'neutral-direction',str) return str -conversions.append (((1,3,147), conv, 'default-neutral-direction -> neutral-direction')) +@rule ((1, 3, 148), '"(align" -> "(axis", "(rows" -> "(columns"') def conv (str): str = re.sub ('\(align', '(axis', str) str = re.sub ('\(rows', '(columns', str) return str -conversions.append (((1,3,148), conv, '"(align" -> "(axis", "(rows" -> "(columns"')) - +@rule ((1, 5, 33), 'SystemStartDelimiter -> systemStartDelimiter') def conv (str): str = re.sub ('SystemStartDelimiter', 'systemStartDelimiter', str) return str -conversions.append (((1,5,33), conv, 'SystemStartDelimiter -> systemStartDelimiter')) +@rule ((1, 5, 38), 'arithmetic... -> spacing...') def conv (str): str = re.sub ('arithmetic-multiplier', 'spacing-increment', str) str = re.sub ('arithmetic-basicspace', 'shortest-duration-space', str) return str -conversions.append (((1,5,38), conv, 'SystemStartDelimiter -> systemStartDelimiter')) - - +# 40 ? +@rule ((1, 5, 40), _ ('%s property names') % 'breakAlignOrder') def conv (str): def func(match): @@ -788,44 +675,35 @@ def conv (str): func, str) return str -# 40 ? -conversions.append (((1,5,40), conv, 'breakAlignOrder property names')) - - +@rule ((1, 5, 49), 'noAutoBeaming -> autoBeaming') def conv (str): str = re.sub ('noAutoBeaming *= *##f', 'autoBeaming = ##t', str) str = re.sub ('noAutoBeaming *= *##t', 'autoBeaming = ##f', str) return str -conversions.append (((1,5,49), conv, 'noAutoBeaming -> autoBeaming')) - +@rule ((1, 5, 52), 'tuplet-X-visibility -> X-visibility') def conv (str): str = re.sub ('tuplet-bracket-visibility', 'bracket-visibility', str) str = re.sub ('tuplet-number-visibility', 'number-visibility', str) return str -conversions.append (((1,5,52), conv, 'tuplet-X-visibility -> X-visibility')) - +@rule ((1, 5, 56), 'Pitch::transpose -> ly-transpose-pitch') def conv (str): str = re.sub ('Pitch::transpose', 'ly-transpose-pitch', str) - return str -conversions.append (((1,5,56), conv, 'Pitch::transpose -> ly-transpose-pitch')) - +@rule ((1, 5, 58), _ ('deprecate %s') % 'textNonEmpty') def conv (str): str = re.sub ('textNonEmpty *= *##t', "TextScript \\set #'no-spacing-rods = ##f", str) str = re.sub ('textNonEmpty *= *##f', "TextScript \\set #'no-spacing-rods = ##t", str) return str -conversions.append (((1,5,58), conv, 'deprecate textNonEmpty')) - - +@rule ((1, 5, 59), 'XxxxVerticalExtent -> xxxVerticalExtent') def conv (str): str = re.sub ('MinimumVerticalExtent', 'minimumV@rticalExtent', str) str = re.sub ('minimumVerticalExtent', 'minimumV@rticalExtent', str) @@ -836,49 +714,39 @@ def conv (str): str = re.sub ('minimumV@rticalExtent', 'minimumVerticalExtent', str) return str -conversions.append (((1,5,59), conv, -'XxxxVerticalExtent -> xxxVerticalExtent')) - +@rule ((1, 5, 62), 'visibility-lambda -> break-visibility') def conv (str): str = re.sub ('visibility-lambda', 'break-visibility', str) return str -conversions.append (((1,5,62), conv, -'visibility-lambda -> break-visibility')) - - +@rule ((1, 5, 67), _ ('automaticMelismata turned on by default')) def conv (str): if re.search (r'\addlyrics',str) \ and re.search ('automaticMelismata', str) == None: - error_file.write ('\n') - error_file.write (NOT_SMART % "automaticMelismata; turned on by default since 1.5.67.") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "automaticMelismata; turned on by default since 1.5.67.") + stderr_write ('\n') raise FatalConversionError () return str -conversions.append (((1,5,67), conv, - 'automaticMelismata turned on by default')) - +@rule ((1, 5, 68), 'ly-set-X-property -> ly-set-X-property!') def conv (str): str = re.sub ('ly-set-grob-property([^!])', 'ly-set-grob-property!\1', str) str = re.sub ('ly-set-mus-property([^!])', 'ly-set-mus-property!\1', str) return str -conversions.append (((1,5,68), conv, 'ly-set-X-property -> ly-set-X-property!')) - +@rule ((1, 5, 71), 'extent-[XY] -> [XY]-extent') def conv (str): str = re.sub ('extent-X', 'X-extent', str) str = re.sub ('extent-Y', 'Y-extent', str) return str -conversions.append (((1,5,71), conv, 'extent-[XY] -> [XY]-extent')) - - +@rule ((1, 5, 72), 'set! point-and-click -> set-point-and-click!') def conv (str): str = re.sub ("""#\(set! +point-and-click +line-column-location\)""", """#(set-point-and-click! \'line-column)""", str) @@ -888,31 +756,25 @@ def conv (str): '#(set-point-and-click! \'none)', str) return str -conversions.append (((1,5,72), conv, 'set! point-and-click -> set-point-and-click!')) - - +@rule ((1, 6, 5), 'Stems: flag-style -> stroke-style; style -> flag-style') def conv (str): str = re.sub ('flag-style', 'stroke-style', str) str = re.sub (r"""Stem([ ]+)\\override #'style""", r"""Stem \\override #'flag-style""", str); str = re.sub (r"""Stem([ ]+)\\set([ ]+)#'style""", r"""Stem \\set #'flag-style""", str); return str -conversions.append (((1,6,5), conv, 'Stems: flag-style -> stroke-style; style -> flag-style')) - - def subst_req_name (match): return "(make-music-by-name \'%sEvent)" % regularize_id (match.group(1)) + +@rule ((1, 7, 1), 'ly-make-music foo_bar_req -> make-music-by-name FooBarEvent') def conv (str): str = re.sub ('\\(ly-make-music *\"([A-Z][a-z_]+)_req\"\\)', subst_req_name, str) str = re.sub ('Request_chord', 'EventChord', str) return str -conversions.append (((1,7,1), conv, 'ly-make-music foo_bar_req -> make-music-by-name FooBarEvent')) - - spanner_subst ={ "text" : 'TextSpanEvent', @@ -923,24 +785,29 @@ spanner_subst ={ "UnaCorda" : 'UnaCordaEvent', "Sostenuto" : 'SostenutoEvent', } + def subst_ev_name (match): stype = 'STOP' if re.search ('start', match.group(1)): stype= 'START' - mtype = spanner_subst[match.group(2)] return "(make-span-event '%s %s)" % (mtype , stype) def subst_definition_ev_name(match): return ' = #%s' % subst_ev_name (match) + def subst_inline_ev_name (match): s = subst_ev_name (match) return '#(ly-export %s)' % s + def subst_csp_definition (match): return ' = #(make-event-chord (list %s))' % subst_ev_name (match) + def subst_csp_inline (match): return '#(ly-export (make-event-chord (list %s)))' % subst_ev_name (match) + +@rule ((1, 7, 2), '\\spanrequest -> #(make-span-event .. ), \script -> #(make-articulation .. )') def conv (str): str = re.sub (r' *= *\\spanrequest *([^ ]+) *"([^"]+)"', subst_definition_ev_name, str) str = re.sub (r'\\spanrequest *([^ ]+) *"([^"]+)"', subst_inline_ev_name, str) @@ -952,9 +819,8 @@ def conv (str): str = re.sub (r'\\script "([^"]+)"', '#(ly-export (make-articulation "\\1"))', str) return str -conversions.append (((1,7,2), conv, '\\spanrequest -> #(make-span-event .. ), \script -> #(make-articulation .. )')) - +@rule ((1, 7, 3), 'ly- -> ly:') def conv(str): str = re.sub (r'\(ly-', '(ly:', str) @@ -988,16 +854,14 @@ def conv(str): 'set-point-and-click!' ] - origre = r'\b(%s)' % string.join (changed, '|') + origre = r'\b(%s)' % '|'.join (changed) str = re.sub (origre, r'ly:\1',str) str = re.sub ('set-point-and-click!', 'set-point-and-click', str) - return str -conversions.append (((1,7,3), conv, 'ly- -> ly:')) - +@rule ((1, 7, 4), '<< >> -> < < > >') def conv(str): if re.search ('new-chords-done',str): return str @@ -1006,16 +870,15 @@ def conv(str): str = re.sub (r'>>', '> >', str) return str -conversions.append (((1,7,4), conv, '<< >> -> < < > >')) - +@rule ((1, 7, 5), '\\transpose TO -> \\transpose FROM TO') def conv(str): str = re.sub (r"\\transpose", r"\\transpose c'", str) str = re.sub (r"\\transpose c' *([a-z]+)'", r"\\transpose c \1", str) return str -conversions.append (((1,7,5), conv, '\\transpose TO -> \\transpose FROM TO')) +@rule ((1, 7, 6), 'note\\script -> note-\script') def conv(str): kws = ['arpeggio', 'sustainDown', @@ -1031,50 +894,43 @@ def conv(str): 'sfz', ] - origstr = string.join (kws, '|') + origstr = '|'.join (kws) str = re.sub (r'([^_^-])\\(%s)\b' % origstr, r'\1-\\\2', str) return str -conversions.append (((1,7,6), conv, 'note\\script -> note-\script')) - +@rule ((1, 7, 10), "\property ChordName #'style -> #(set-chord-name-style 'style)") def conv(str): str = re.sub (r"\\property *ChordNames *\. *ChordName *\\(set|override) *#'style *= *#('[a-z]+)", r"#(set-chord-name-style \2)", str) str = re.sub (r"\\property *ChordNames *\. *ChordName *\\revert *#'style", r"", str) return str -conversions.append (((1,7,10), conv, "\property ChordName #'style -> #(set-chord-name-style 'style)")) - - +@rule ((1, 7, 11), "transpose-pitch -> pitch-transpose") def conv(str): str = re.sub (r"ly:transpose-pitch", "ly:pitch-transpose", str) - return str -conversions.append (((1,7,11), conv, "transpose-pitch -> pitch-transpose")) +@rule ((1, 7, 13), "ly:XX-molecule-YY -> ly:molecule-XX-YY") def conv(str): str = re.sub (r"ly:get-molecule-extent", "ly:molecule-get-extent", str) str = re.sub (r"ly:set-molecule-extent!", "ly:molecule-set-extent!", str) str = re.sub (r"ly:add-molecule", "ly:molecule-add", str) str = re.sub (r"ly:combine-molecule-at-edge", "ly:molecule-combine-at-edge", str) str = re.sub (r"ly:align-to!", "ly:molecule-align-to!", str) - return str -conversions.append (((1,7,13), conv, "ly:XX-molecule-YY -> ly:molecule-XX-YY")) - +@rule ((1, 7, 15), "linewidth = -1 -> raggedright = ##t") def conv(str): str = re.sub (r"linewidth *= *-[0-9.]+ *(\\mm|\\cm|\\in|\\pt)?", 'raggedright = ##t', str ) return str -conversions.append (((1,7,15), conv, "linewidth = -1 -> raggedright = ##t")) - +@rule ((1, 7, 16), "divisiomaior -> divisioMaior") def conv(str): str = re.sub ("divisiomaior", "divisioMaior", str) @@ -1084,17 +940,15 @@ def conv(str): "divisioMaxima", str) return str -conversions.append (((1,7,16), conv, "divisiomaior -> divisioMaior")) - +@rule ((1, 7, 17), "Skip_req -> Skip_event") def conv(str): str = re.sub ("Skip_req_swallow_translator", "Skip_event_swallow_translator", str) return str -conversions.append (((1,7,17), conv, "Skip_req -> Skip_event")) - +@rule ((1, 7, 18), "groupOpen/Close -> start/stopGroup, #'outer -> #'enclose-bounds") def conv(str): str = re.sub ("groupOpen", "startGroup", str) @@ -1105,31 +959,24 @@ def conv(str): return str -conversions.append (((1,7,18), conv, - """groupOpen/Close -> start/stopGroup, - #'outer -> #'enclose-bounds - """)) - +@rule ((1, 7, 19), _ ("remove %s") % "GraceContext") def conv(str): if re.search( r'\\GraceContext', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "GraceContext") - error_file.write (FROM_TO \ + stderr_write ('\n') + stderr_write (NOT_SMART % "GraceContext") + stderr_write (FROM_TO \ % ("GraceContext", "#(add-to-grace-init .. )")) - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () str = re.sub ('HaraKiriStaffContext', 'RemoveEmptyStaffContext', str) return str -conversions.append (((1,7,19), conv,"remove GraceContext")) - - - +@rule ((1, 7, 22), "#'type -> #'style") def conv(str): str = re.sub ( r"(set|override|revert) *#'type", @@ -1137,9 +984,8 @@ def conv(str): str) return str -conversions.append (((1,7,22), conv,"#'type -> #'style")) - +@rule ((1, 7, 23), "barNonAuto -> automaticBars") def conv(str): str = re.sub ( "barNonAuto *= *##t", @@ -1151,36 +997,27 @@ def conv(str): str) return str -conversions.append (((1,7,23), conv,"barNonAuto -> automaticBars")) - - +@rule ((1, 7, 24), _ ("cluster syntax")) def conv(str): if re.search( r'-(start|stop)Cluster', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "Cluster syntax") - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("cluster syntax")) + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () - return str -conversions.append (((1,7,24), conv,"cluster syntax")) - +@rule ((1, 7, 28), _ ("new Pedal style syntax")) def conv(str): str = re.sub (r"\\property *Staff\.(Sustain|Sostenuto|UnaCorda)Pedal *\\(override|set) *#'pedal-type *", r"\property Staff.pedal\1Style ", str) str = re.sub (r"\\property *Staff\.(Sustain|Sostenuto|UnaCorda)Pedal *\\revert *#'pedal-type", '', str) return str -conversions.append (((1,7,28), conv,"new Pedal style syntax")) - - - - def sub_chord (m): str = m.group(1) @@ -1293,9 +1130,8 @@ def sub_chord (m): ## end of while <> - suffix = string.join (slur_strs, '') + string.join (pslur_strs, - '') \ - + string.join (dyns, '') + suffix = ''.join (slur_strs) + ''.join (pslur_strs) \ + + ''.join (dyns) return '@STARTCHORD@%s@ENDCHORD@%s%s' % (str , dur_str, suffix) @@ -1434,6 +1270,8 @@ def conv_relative(str): return str +@rule ((1, 9, 0), _ ("""New relative mode, +Postfix articulations, new text markup syntax, new chord syntax.""")) def conv (str): str = re.sub (r"#'\(\)", "@SCM_EOL@", str) str = conv_relative (str) @@ -1442,20 +1280,17 @@ def conv (str): str = text_markup (str) str = smarter_articulation_subst (str) str = re.sub ("@SCM_EOL@", "#'()", str) - return str -conversions.append (((1,9,0), conv, """New relative mode, -Postfix articulations, new text markup syntax, new chord syntax.""")) - +@rule ((1, 9, 1), _ ("Remove - before articulation")) def conv (str): if re.search ("font-style",str): - error_file.write ('\n') - error_file.write (NOT_SMART % "font-style") - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "font-style") + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () @@ -1469,8 +1304,8 @@ def conv (str): str = re.sub (r'@\\markup', r'-\\markup', str) return str -conversions.append (((1,9,1), conv, """Remove - before articulation""")) +@rule ((1, 9, 2), "\\newcontext -> \\new") def conv (str): str = re.sub ('ly:set-context-property', 'ly:set-context-property!', str) @@ -1483,21 +1318,21 @@ def conv (str): \1 \\property Voice.Stem \\revert #'stroke-style } """, str) - return str -conversions.append (((1,9,2), conv, """\\newcontext -> \\new""")) +@rule ((1, 9, 3), (_ ("%s misspelling") % "\\acciaccatura") + + ", fingerHorizontalDirection -> fingeringOrientations") def conv (str): str = re.sub ('accacciatura', 'acciaccatura', str) if re.search ("context-spec-music", str): - error_file.write ('\n') - error_file.write (NOT_SMART % "context-spec-music") - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "context-spec-music") + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () @@ -1505,17 +1340,13 @@ def conv (str): "fingeringOrientations = #'(up down left)", str) str = re.sub ('fingerHorizontalDirection *= *#(RIGHT|1)', "fingeringOrientations = #'(up down right)", str) - return str -conversions.append (((1,9,3), conv, - """\\acciaccatura misspelling, fingerHorizontalDirection -> fingeringOrientations""")) - +@rule ((1, 9, 4), _ ('Swap < > and << >>')) def conv (str): if re.search ('\\figures', str): - error_file.write ("Warning: attempting automatic \\figures conversion. Check results!"); - + warning (_ ("attempting automatic \\figures conversion. Check results!")); def figures_replace (m): s = m.group (1) @@ -1540,45 +1371,41 @@ def conv (str): str = re.sub ('@ENDSIMUL@', '>>', str) str = re.sub ('@FIGOPEN@', '<', str) str = re.sub ('@FIGCLOSE@', '>', str) - return str -conversions.append (((1,9,4), conv, 'Swap < > and << >>')) - +@rule ((1, 9, 5), 'HaraKiriVerticalGroup -> RemoveEmptyVerticalGroup') def conv (str): str = re.sub ('HaraKiriVerticalGroup', 'RemoveEmptyVerticalGroup', str) - return str -conversions.append (((1,9,5), conv, 'HaraKiriVerticalGroup -> RemoveEmptyVerticalGroup')) +@rule ((1, 9, 6), _ ('deprecate %s') % 'ly:get-font') def conv (str): if re.search ("ly:get-font", str) : - error_file.write ('\n') - error_file.write (NOT_SMART % "(ly:-get-font") - error_file.write ('\n') - error_file.write (FROM_TO \ + stderr_write ('\n') + stderr_write (NOT_SMART % "(ly:-get-font") + stderr_write ('\n') + stderr_write (FROM_TO \ % ("(ly:paper-get-font (ly:grob-get-paper foo) .. )", "(ly:paper-get-font (ly:grob-get-paper foo) .. )")) - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () if re.search ("\\pitch *#", str) : - error_file.write ('\n') - error_file.write (NOT_SMART % "\\pitch") - error_file.write ('\n') - error_file.write ("Use Scheme code to construct arbitrary note events.") - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "\\pitch") + stderr_write ('\n') + stderr_write (_ ("Use Scheme code to construct arbitrary note events.")) + stderr_write ('\n') raise FatalConversionError () - return str -conversions.append (((1,9,6), conv, 'ly:get-font deprecated.')) - +@rule ((1, 9, 7), _ ('''use symbolic constants for alterations, +remove \\outputproperty, move ly:verbose into ly:get-option''')) def conv (str): def sub_alteration (m): alt = m.group (3) @@ -1601,74 +1428,69 @@ def conv (str): m= re.search ("\\\\outputproperty #([^#]+)[\t\n ]*#'([^ ]+)", str) if m: - error_file.write (\ + stderr_write (_ (\ r"""\outputproperty found, Please hand-edit, using \applyoutput #(outputproperty-compatibility %s '%s ) -as a substitution text.""" % (m.group (1), m.group (2)) ) +as a substitution text.""") % (m.group (1), m.group (2)) ) raise FatalConversionError () if re.search ("ly:(make-pitch|pitch-alteration)", str) \ or re.search ("keySignature", str): - error_file.write ('\n') - error_file.write (NOT_SMART % "pitches") - error_file.write ('\n') - error_file.write ( - """The alteration field of Scheme pitches was multiplied by 2 -to support quarter tone accidentals. You must update the following constructs by manually: + stderr_write ('\n') + stderr_write (NOT_SMART % "pitches") + stderr_write ('\n') + stderr_write ( + _ ("""The alteration field of Scheme pitches was multiplied by 2 +to support quarter tone accidentals. You must update the following constructs manually: * calls of ly:make-pitch and ly:pitch-alteration * keySignature settings made with \property -""") +""")) raise FatalConversionError () - return str -conversions.append (((1,9,7), conv, - '''use symbolic constants for alterations, -remove \\outputproperty, move ly:verbose into ly:get-option''')) +@rule ((1, 9, 8), "dash-length -> dash-fraction") def conv (str): if re.search ("dash-length",str): - error_file.write ('\n') - error_file.write (NOT_SMART % "dash-length") - error_file.write ('\n') - error_file.write (FROM_TO % ("dash-length", "dash-fraction")) - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "dash-length") + stderr_write ('\n') + stderr_write (FROM_TO % ("dash-length", "dash-fraction")) + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () return str -conversions.append (((1,9,8), conv, """dash-length -> dash-fraction""")) - +@rule ((2, 1, 1), "font-relative-size -> font-size") def conv (str): def func(match): - return "#'font-size = #%d" % (2*string.atoi (match.group (1))) + return "#'font-size = #%d" % (2*int (match.group (1))) str =re.sub (r"#'font-relative-size\s*=\s*#\+?([0-9-]+)", func, str) str =re.sub (r"#'font-family\s*=\s*#'ancient", r"#'font-family = #'music", str) - return str -conversions.append (((2,1,1), conv, """font-relative-size -> font-size""")) +@rule ((2, 1, 2), "ly:get-music-length -> ly:music-length") def conv (str): str =re.sub (r"ly:get-music-length", "ly:music-length", str) return str -conversions.append (((2,1,2), conv, """ly:get-music-length -> ly:music-length""")) +@rule ((2, 1, 3), "stanza -> instrument") def conv (str): str =re.sub (r"\.\s+stz=", ". instr ", str) return str -conversions.append (((2,1,3), conv, """stanza -> instrument""")) +@rule ((2, 1, 4), _ ("removal of automaticMelismata; use melismaBusyProperties instead.")) def conv (str): def func (match): c = match.group (1) @@ -1685,30 +1507,30 @@ def conv (str): str = re.sub (r"\\property ([a-zA-Z]+)\s*\.\s*automaticMelismata\s*=\s*##([ft])", func, str) return str -conversions.append (((2,1,4), conv, """removal of automaticMelismata; use melismaBusyProperties instead.""")) - - +@rule ((2, 1, 7), "\\translator Staff -> \\change Staff") def conv (str): str =re.sub (r"\\translator\s+([a-zA-Z]+)", r"\\change \1", str) return str -conversions.append (((2,1,7), conv, """\\translator Staff -> \\change Staff""")) +@rule ((2, 1, 10), "\\newaddlyrics -> \\lyricsto") def conv (str): str =re.sub (r"\\newaddlyrics", r"\\lyricsto", str) return str -conversions.append (((2,1,10), conv, """\\newaddlyrics -> \\lyricsto""")) +@rule ((2, 1, 11), """\\include "paper16.ly" -> #(set-staff-size 16) +\\note #3 #1 #1 -> \\note #"8." #1 +""") def conv (str): str = re.sub (r'\\include\s*"paper([0-9]+)(-init)?.ly"', r"#(set-staff-size \1)", str) def sub_note (match): dur = '' - log = string.atoi (match.group (1)) - dots = string.atoi (match.group (2)) + log = int (match.group (1)) + dots = int (match.group (2)) if log >= 0: dur = '%d' % (1 << log) @@ -1725,41 +1547,37 @@ def conv (str): sub_note, str) return str -conversions.append (((2,1,11), conv, """\\include "paper16.ly" -> #(set-staff-size 16) -\\note #3 #1 #1 -> \\note #"8." #1 -""")) - +@rule ((2, 1, 12), "OttavaSpanner -> OttavaBracket") def conv (str): - str =re.sub (r"OttavaSpanner", r"OttavaBracket", str) + str = re.sub (r"OttavaSpanner", r"OttavaBracket", str) return str -conversions.append (((2,1,12), conv, """OttavaSpanner -> OttavaBracket""")) - +@rule ((2, 1, 13), "set-staff-size -> set-global-staff-size") def conv (str): - str =re.sub (r"\(set-staff-size ", r"(set-global-staff-size ", str) + str = re.sub (r"\(set-staff-size ", r"(set-global-staff-size ", str) return str -conversions.append (((2,1,13), conv, """set-staff-size -> set-global-staff-size""")) +@rule ((2, 1, 14), "style = dotted -> dash-fraction = 0") def conv (str): - str =re.sub (r"#'style\s*=\s*#'dotted-line", + str = re.sub (r"#'style\s*=\s*#'dotted-line", r"#'dash-fraction = #0.0 ", str) return str -conversions.append (((2,1,14), conv, """style = dotted -> dash-fraction = 0""")) +@rule ((2, 1, 15), "LyricsVoice . instr(ument) -> vocalName") def conv (str): - str =re.sub (r'LyricsVoice\s*\.\s*instrument\s*=\s*("[^"]*")', + str = re.sub (r'LyricsVoice\s*\.\s*instrument\s*=\s*("[^"]*")', r'LyricsVoice . vocalName = \1', str) - str =re.sub (r'LyricsVoice\s*\.\s*instr\s*=\s*("[^"]*")', + str = re.sub (r'LyricsVoice\s*\.\s*instr\s*=\s*("[^"]*")', r'LyricsVoice . vocNam = \1', str) return str -conversions.append (((2,1,15), conv, """LyricsVoice . instr(ument) -> vocalName""")) +@rule ((2, 1, 16), '\\musicglyph #"accidentals-NUM" -> \\sharp/flat/etc.') def conv (str): def sub_acc (m): d = { @@ -1778,17 +1596,16 @@ def conv (str): sub_acc, str) return str -conversions.append (((2,1,16), conv, """\\musicglyph #"accidentals-NUM" -> \\sharp/flat/etc.""")) - +@rule ((2, 1, 17), _ ("\\partcombine syntax change to \\newpartcombine")) def conv (str): if re.search (r'\\partcombine', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "\\partcombine") - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "\\partcombine") + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () # this rule doesn't really work, @@ -1796,28 +1613,23 @@ def conv (str): str = re.sub (r'\\context\s+Voice\s*=\s*one\s*\\partcombine\s+Voice\s*\\context\s+Thread\s*=\s*one(.*)\s*' + r'\\context\s+Thread\s*=\s*two', '\\\\newpartcombine\n\\1\n', str) - - return str -conversions.append (((2,1,17), conv, """\\partcombine syntax change to \\newpartcombine""")) - +@rule ((2, 1, 18), """\\newpartcombine -> \\partcombine, +\\autochange Staff -> \\autochange +""") def conv (str): str = re.sub (r'\\newpartcombine', r'\\partcombine', str) str = re.sub (r'\\autochange\s+Staff', r'\\autochange ', str) return str -conversions.append (((2,1,18), conv, """\\newpartcombine -> \\partcombine, -\\autochange Staff -> \\autochange -""")) - - - +@rule ((2, 1, 19), _ ("""Drum notation changes, Removing \\chordmodifiers, \\notenames. +Harmonic notes. Thread context removed. Lyrics context removed.""")) def conv (str): if re.search ('include "drumpitch', str): - error_file.write ("Drums found. Enclose drum notes in \\drummode") + stderr_write (_ ("Drums found. Enclose drum notes in \\drummode")) str = re.sub (r'\\include "drumpitch-init.ly"','', str) @@ -1828,14 +1640,14 @@ def conv (str): if re.search ('drums->paper', str): - error_file.write ("\nDrum notation found. Check file manually!") + stderr_write (_ ("\n%s found. Check file manually!\n") % _("Drum notation")) str = re.sub (r"""\\apply\s+#\(drums->paper\s+'([a-z]+)\)""", r"""\property DrumStaff.drumStyleTable = #\1-style""", str) if re.search ('Thread', str): - error_file.write ("\nThread found. Check file manually!\n"); + stderr_write (_ ("\n%s found. Check file manually!\n") % "Thread"); str = re.sub (r"""(\\once\s*)?\\property\s+Thread\s*\.\s*NoteHead\s*""" + r"""\\(set|override)\s*#'style\s*=\s*#'harmonic""" @@ -1846,25 +1658,28 @@ def conv (str): str = re.sub (r"""Thread""", """Voice""", str) if re.search ('\bLyrics\b', str): - error_file.write ("\nLyrics found. Check file manually!\n"); + stderr_write (_ ("\n%s found. Check file manually!\n") % "Lyrics"); str = re.sub (r"""LyricsVoice""", r"""L@ricsVoice""", str) str = re.sub (r"""\bLyrics\b""", r"""LyricsVoice""", str) str = re.sub (r"""LyricsContext""", r"""LyricsVoiceContext""", str) str = re.sub (r"""L@ricsVoice""", r"""LyricsVoice""",str) - - return str -conversions.append (((2,1,19), conv, """Drum notation changes, Removing \\chordmodifiers, \\notenames. -Harmonic notes. Thread context removed. Lyrics context removed.""")) +@rule ((2, 1, 20), "nonevent-skip -> skip-music") def conv (str): str = re.sub (r'nonevent-skip', 'skip-music', str) return str -conversions.append (((2,1,20), conv, """nonevent-skip -> skip-music""" )) +@rule ((2, 1, 21), """molecule-callback -> print-function, +brew_molecule -> print +brew-new-markup-molecule -> Text_item::print +LyricsVoice -> Lyrics +tupletInvisible -> TupletBracket \set #'transparent +%s. +""" % (_ ("remove %s") % "Grob::preset_extent")) def conv (str): str = re.sub (r'molecule-callback', 'print-function', str) str = re.sub (r'brew_molecule', 'print', str) @@ -1877,18 +1692,14 @@ def conv (str): str = re.sub (r"\\property\s+[a-zA-Z]+\s*\.\s*[a-zA-Z]+\s*" + r"\\set\s*#'X-extent-callback\s*=\s*#Grob::preset_extent", "", str) - return str -conversions.append (((2,1,21), conv, """molecule-callback -> print-function, -brew_molecule -> print -brew-new-markup-molecule -> Text_item::print -LyricsVoice -> Lyrics -tupletInvisible -> TupletBracket \set #'transparent -Grob::preset_extent removed. -""" )) +@rule ((2, 1, 22), """%s + \\set A.B = #C , \\unset A.B + \\override A.B #C = #D, \\revert A.B #C +""" % _ ("new syntax for property settings:")) def conv (str): str = re.sub (r'(\\property[^=]+)=\s*([-0-9]+)', r'\1= #\2', str) @@ -1913,12 +1724,8 @@ def conv (str): str = re.sub ('Molecule', 'Stencil', str) return str -conversions.append (((2,1,22), conv, """new syntax for property settings: - \\set A.B = #C , \\unset A.B - \\override A.B #C = #D, \\revert A.B #C - -""")) +@rule ((2, 1, 23), _ ("Property setting syntax in \\translator{ }")) def conv (str): def subst_in_trans (match): s = match.group (0) @@ -1947,17 +1754,17 @@ def conv (str): str = re.sub (r"""\\override\s*(?P[a-zA-Z]+\s*\.\s*)?autoBeamSettings""" +r"""\s*#(?P[^=]+)\s*=\s*#\(ly:make-moment\s+(?P\d+)\s+(?P\d)\s*\)""", sub_abs, str) - return str -conversions.append (((2,1,23), conv, """Property setting syntax in \\translator{ }""")) + +@rule ((2, 1, 24), "music-list? -> ly:music-list?") def conv (str): str = re.sub (r'music-list\?', 'ly:music-list?', str) str = re.sub (r'\|\s*~', '~ |', str) return str -conversions.append (((2,1,24), conv, """music-list? -> ly:music-list?""")) +@rule ((2, 1, 25), _ ("Scheme grob function renaming")) def conv (str): str = re.sub (r'ly:get-spanner-bound', 'ly:spanner-get-bound', str) str = re.sub (r'ly:get-extent', 'ly:grob-extent', str) @@ -1967,11 +1774,11 @@ def conv (str): str = re.sub (r'ly:get-broken-into', 'ly:spanner-broken-into', str) str = re.sub (r'Melisma_engraver', 'Melisma_translator', str) if re.search ("ly:get-paper-variable", str): - error_file.write ('\n') - error_file.write (NOT_SMART % "ly:paper-get-variable") - error_file.write ('\n') - error_file.write ('use (ly:paper-lookup (ly:grob-paper ))') - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "ly:paper-get-variable") + stderr_write ('\n') + stderr_write (_ ('use %s') % '(ly:paper-lookup (ly:grob-paper ))') + stderr_write ('\n') raise FatalConversionError () str = re.sub (r'\\defaultAccidentals', "#(set-accidental-style 'default)", str) @@ -1984,12 +1791,10 @@ def conv (str): str = re.sub (r'\\pianoCautionaries', "#(set-accidental-style 'piano-cautionary)", str) str = re.sub (r'\\forgetAccidentals', "#(set-accidental-style 'forget)", str) str = re.sub (r'\\noResetKey', "#(set-accidental-style 'no-reset)", str) - return str -conversions.append (((2,1,25), conv, """Scheme grob function renaming""")) - +@rule ((2, 1, 26), _ ("More Scheme function renaming")) def conv (str): str = re.sub ('ly:set-grob-property!', 'ly:grob-set-property!',str) str = re.sub ('ly:set-mus-property!', 'ly:music-set-property!',str) @@ -1997,14 +1802,13 @@ def conv (str): str = re.sub ('ly:get-grob-property', 'ly:grob-property',str) str = re.sub ('ly:get-mus-property', 'ly:music-property',str) str = re.sub ('ly:get-context-property', 'ly:context-property',str) - return str -conversions.append (((2,1,26), conv, """More Scheme function renaming""")) +@rule ((2, 1, 27), "property transposing -> tuning") def conv (str): def subst (m): - g = string.atoi (m.group (2)) + g = int (m.group (2)) o = g / 12 g -= o * 12 if g < 0: @@ -2032,26 +1836,29 @@ def conv (str): subst, str) return str -conversions.append (((2,1,27), conv, """property transposing -> tuning""")) +@rule ((2, 1, 28), """make-music-by-name -> make-music, +new syntax for setting \\arpeggioBracket""") def conv (str): str = re.sub (r'make-music-by-name', 'make-music', str) str = re.sub (r"\\override\s+.*Arpeggio\s+#.print-function\s+=\s+\\arpeggioBracket", r"\\arpeggioBracket", str) return str -conversions.append (((2,1,28), conv, - """make-music-by-name -> make-music, -new syntax for setting \\arpeggioBracket""")) +@rule ((2, 1, 29), '\\center -> \\center-align, \\translator -> \\context') def conv (str): str = re.sub (r'\\center([^-])', '\\center-align\\1', str) str = re.sub (r'\\translator', '\\context', str) return str -conversions.append (((2,1,29), conv, - '\\center -> \\center-align, \\translator -> \\context')) - +@rule ((2, 1, 30), '''\\threeq{flat,sharp} -> \\sesqui{flat,sharp} +ly:get-mutable-properties -> ly:mutable-music-properties +centralCPosition -> middleCPosition +ly:unset-context-property -> ly:context-unset-property +ly:translator-find -> ly:context-find +ly:get-stencil-extent -> ly:stencil-extent +''') def conv (str): str = re.sub (r'\\threeq(flat|sharp)', r'\\sesqui\1', str) str = re.sub (r'ly:stencil-get-extent', @@ -2067,74 +1874,57 @@ def conv (str): 'middleCPosition',str) return str -conversions.append (((2,1,30), conv, - '''\\threeq{flat,sharp} -> \\sesqui{flat,sharp} -ly:get-mutable-properties -> ly:mutable-music-properties -centralCPosition -> middleCPosition -ly:unset-context-property -> ly:context-unset-property -ly:translator-find -> ly:context-find -ly:get-stencil-extent -> ly:stencil-extent -''')) - +@rule ((2, 1, 31), 'remove \\alias Timing') def conv (str): str = re.sub (r'\\alias\s*"?Timing"?', '', str) return str -conversions.append (((2,1,31), conv, - '''remove \\alias Timing''')) +@rule ((2, 1, 33), 'breakAlignOrder -> break-align-orders.') def conv (str): str = re.sub (r"(\\set\s+)?(?P(Score\.)?)breakAlignOrder\s*=\s*#'(?P[^\)]+)", r"\n\\override \gBreakAlignment #'break-align-orders = " + "#(make-vector 3 '\g)", str) - return str -conversions.append (((2,1,33), conv, - '''breakAlignOrder -> break-align-orders.''')) +@rule ((2, 1, 34), 'set-paper-size -> set-default-paper-size.') def conv (str): str = re.sub (r"\(set-paper-size", "(set-default-paper-size",str) return str -conversions.append (((2,1,34), conv, - '''set-paper-size -> set-default-paper-size.''')) +@rule ((2, 1, 36), 'ly:mutable-music-properties -> ly:music-mutable-properties') def conv (str): str = re.sub (r"ly:mutable-music-properties", "ly:music-mutable-properties", str) return str -conversions.append (((2,1, 36), conv, - '''ly:mutable-music-properties -> ly:music-mutable-properties''')) - - +@rule ((2, 2, 0), _ ("bump version for release")) def conv (str): return str -conversions.append (((2, 2, 0), conv, - '''clean up version. ''')) +@rule ((2, 3, 1), '\\apply -> \\applymusic') def conv (str): return re.sub (r'\\apply\b', r'\\applymusic', str) -conversions.append (((2, 3, 1), conv, - '''\\apply -> \\applymusic''')) +@rule ((2, 3, 2), '\\FooContext -> \\Foo') def conv (str): if re.search ('textheight', str): - error_file.write ('\n') - error_file.write (NOT_SMART % "textheight") - error_file.write ('\n') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') - error_file.write ( -"""Page layout has been changed, using paper size and margins. + stderr_write ('\n') + stderr_write (NOT_SMART % "textheight") + stderr_write ('\n') + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') + stderr_write ( +_ ("""Page layout has been changed, using paper size and margins. textheight is no longer used. -""") +""")) str = re.sub (r'\\OrchestralScoreContext', '\\Score', str) def func(m): if m.group(1) not in ['RemoveEmptyStaff', @@ -2149,65 +1939,53 @@ textheight is no longer used. str = re.sub ('ly:paper-lookup', 'ly:output-def-lookup', str) return str -conversions.append (((2, 3, 2), conv, - '''\\FooContext -> \\Foo''')) +@rule ((2, 3, 4), _ ('remove %s') % '\\notes') def conv (str): str = re.sub (r'\\notes\b', '', str) - return str -conversions.append (((2, 3, 4), conv, - '''remove \\notes''')) - - +@rule ((2, 3, 6), 'lastpagefill -> raggedlastbottom') def conv (str): str = re.sub (r'lastpagefill\s*=\s*"?1"', 'raggedlastbottom = ##t', str) return str -conversions.append (((2, 3, 6), conv, - '''lastpagefill -> raggedlastbottom''')) - - +@rule ((2, 3, 8), 'remove \\consistsend, strip \\lyrics from \\lyricsto.') def conv (str): str = re.sub (r'\\consistsend', '\\consists', str) str = re.sub (r'\\lyricsto\s+("?[a-zA-Z]+"?)(\s*\\new Lyrics\s*)?\\lyrics', r'\\lyricsto \1 \2', str) return str -conversions.append (((2, 3, 8), conv, - '''remove \\consistsend, strip \\lyrics from \\lyricsto.''')) +@rule ((2, 3, 9), 'neo_mensural -> neomensural, if-text-padding -> bound-padding') def conv (str): str = re.sub (r'neo_mensural', 'neomensural', str) str = re.sub (r'if-text-padding', 'bound-padding', str) return str -conversions.append (((2, 3, 9), conv, - '''neo_mensural -> neomensural, if-text-padding -> bound-padding''')) - - +@rule ((2, 3, 10), '\\addlyrics -> \\oldaddlyrics, \\newlyrics -> \\addlyrics') def conv (str): str = re.sub (r'\\addlyrics', r'\\oldaddlyrics', str) str = re.sub (r'\\newlyrics', r'\\addlyrics', str) if re.search (r"\\override\s*TextSpanner", str): - error_file.write ("\nWarning: TextSpanner has been split into DynamicTextSpanner and TextSpanner\n") + stderr_write ("\nWarning: TextSpanner has been split into DynamicTextSpanner and TextSpanner\n") return str -conversions.append (((2, 3, 10), conv, - '''\\addlyrics -> \\oldaddlyrics, \\newlyrics -> \\addlyrics''')) +@rule ((2, 3, 11), '\\setMmRestFermata -> ^\\fermataMarkup') def conv (str): str = re.sub (r'\\setMmRestFermata\s+(R[0-9.*/]*)', r'\1^\\fermataMarkup', str) return str -conversions.append (((2, 3, 11), conv, - '''\\setMmRestFermata -> ^\\fermataMarkup''')) +@rule ((2, 3, 12), '''\\newpage -> \\pageBreak, junk \\script{up,down,both}, +soloADue -> printPartCombineTexts, #notes-to-clusters -> \\makeClusters +''') def conv (str): str = re.sub (r'\\newpage', r'\\pageBreak', str) str = re.sub (r'\\scriptUp', r"""{ @@ -2229,12 +2007,9 @@ def conv (str): str = re.sub (r'pagenumber\s*=', 'firstpagenumber = ', str) return str -conversions.append (((2, 3, 12), conv, - '''\\newpage -> \\pageBreak, junk \\script{up,down,both}, -soloADue -> printPartCombineTexts, #notes-to-clusters -> \\makeClusters -''')) - +@rule ((2, 3, 16), _ ('''\\foo -> \\foomode (for chords, notes, etc.) +fold \\new FooContext \\foomode into \\foo.''')) def conv (str): str = re.sub (r'\\chords\b', r'\\chordmode', str) str = re.sub (r'\\lyrics\b', r'\\lyricmode', str) @@ -2250,60 +2025,48 @@ def conv (str): return str -conversions.append (((2, 3, 16), conv, - '''\\foo -> \\foomode (for chords, notes, etc.) -fold \\new FooContext \\foomode into \\foo.''')) +@rule ((2, 3, 17), '''slurBoth -> slurNeutral, stemBoth -> stemNeutral, etc. +\\applymusic #(remove-tag 'foo) -> \\removeWithTag 'foo''') def conv (str): str = re.sub (r'(slur|stem|phrasingSlur|tie|dynamic|dots|tuplet|arpeggio|)Both', r'\1Neutral', str) str = re.sub (r"\\applymusic\s*#\(remove-tag\s*'([a-z-0-9]+)\)", r"\\removeWithTag #'\1", str) return str -conversions.append (((2, 3, 17), conv, - '''\\foo -> \\foomode (for chords, notes, etc.) -fold \\new FooContext \\foomode into \\foo.''')) - +@rule ((2, 3, 18), 'Text_item -> Text_interface') def conv (str): str = re.sub (r'Text_item', 'Text_interface', str) return str -conversions.append (((2, 3, 18), - conv, - '''Text_item -> Text_interface''' )) +@rule ((2, 3, 22), 'paper -> layout, bookpaper -> paper') def conv (str): str = re.sub (r'\\paper', r'\\layout', str) str = re.sub (r'\\bookpaper', r'\\paper', str) if re.search ('paper-set-staff-size', str): - error_file.write ('''\nWarning: staff size should be changed at top-level + warning (_ ('''staff size should be changed at top-level with #(set-global-staff-size ) -''') +''')) str = re.sub (r'#\(paper-set-staff-size', '%Use set-global-staff-size at toplevel\n% #(layout-set-staff-size', str) return str -conversions.append (((2, 3, 22), - conv, - '''paper -> layout - bookpaper -> paper''' )) - +@rule ((2, 3, 23), r'\context Foo = NOTENAME -> \context Foo = "NOTENAME"') def conv (str): str = re.sub (r'\\context\s+([a-zA-Z]+)\s*=\s*([a-z]+)\s', r'\\context \1 = "\2" ', str ) return str -conversions.append (((2, 3, 23), - conv, - '''\context Foo = NOTENAME -> \context Foo = "NOTENAME"''')) +@rule ((2, 3, 24), _ ('''regularize other identifiers''')) def conv (str): def sub(m): return regularize_id (m.group (1)) @@ -2311,40 +2074,35 @@ def conv (str): sub, str) return str -conversions.append (((2, 3, 24), - conv, - '''regularize other identifiers.''')) - +@rule ((2, 3, 25), 'petrucci_c1 -> petrucci-c1, 1style -> single-digit') def conv (str): + str = re.sub ('petrucci_c1', 'petrucci-c1', str) + str = re.sub ('1style', 'single-digit', str) return str -conversions.append (((2, 4, 0), - conv, - '')) + +@rule ((2, 4, 0), _ ("bump version for release")) +def conv (str): + return str +@rule ((2, 5, 0), '\\quote -> \\quoteDuring') def conv (str): str = re.sub (r'\\quote\s+"?([a-zA-Z0-9]+)"?\s+([0-9.*/]+)', r'\\quoteDuring #"\1" { \skip \2 }', - str - ) + str) return str -conversions.append (((2, 5, 0), - conv, - '')) - +@rule ((2, 5, 1), 'ly:import-module -> ly:module-copy') def conv (str): str = re.sub (r'ly:import-module', r'ly:module-copy', str) return str -conversions.append (((2, 5, 1), - conv, - 'ly:import-module -> ly:module-copy')) +@rule ((2, 5, 2), '\markup .. < .. > .. -> \markup .. { .. } ..') def conv (str): str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>', r'\\\1 {\2}', str) @@ -2359,10 +2117,8 @@ def conv (str): str = re.sub (r'\\markup\s*{([^}]|{[^}]*})*}', get_markup, str) return str -conversions.append (((2, 5, 2), - conv, - '\markup .. < .. > .. -> \markup .. { .. } ..')) +@rule ((2, 5, 3), 'ly:find-glyph-by-name -> ly:font-get-glyph, remove - from glyphnames.') def conv (str): str = re.sub ('ly:find-glyph-by-name', 'ly:font-get-glyph', str) str = re.sub ('"(scripts|clefs|accidentals)-', r'"\1.', str) @@ -2370,20 +2126,15 @@ def conv (str): str = re.sub ("'(vaticana|hufnagel|medicaea|petrucci|neomensural|mensural)-", r"'\1.", str) return str -conversions.append (((2, 5, 3), - conv, - 'ly:find-glyph-by-name -> ly:font-get-glyph, remove - from glyphnames.')) - +@rule ((2, 5, 12), '\set Slur #\'dashed = #X -> \slurDashed') def conv (str): str = re.sub (r"\\override\s+(Voice\.)?Slur #'dashed\s*=\s*#\d*(\.\d+)?", r"\\slurDashed", str) return str -conversions.append (((2, 5, 12), - conv, - '\set Slur #\'dashed = #X -> \slurDashed')) +@rule ((2, 5, 13), _ ('\\encoding: smart recode latin1..utf-8. Remove ly:point-and-click')) def conv (str): input_encoding = 'latin1' def func (match): @@ -2393,20 +2144,20 @@ def conv (str): if encoding == 'latin1': return match.group (2) - error_file.write ('\n') - error_file.write (NOT_SMART % ("\\encoding: %s" % encoding)) - error_file.write ('\n') - error_file.write (_ ("LilyPond source must be UTF-8")) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (NOT_SMART % ("\\encoding: %s" % encoding)) + stderr_write ('\n') + stderr_write (_ ("LilyPond source must be UTF-8")) + stderr_write ('\n') if encoding == 'TeX': - error_file.write (_ ("Try the texstrings backend")) - error_file.write ('\n') + stderr_write (_ ("Try the texstrings backend")) + stderr_write ('\n') else: - error_file.write ( _("Do something like: %s") % \ + stderr_write ( _("Do something like: %s") % \ ("recode %s..utf-8 FILE" % encoding)) - error_file.write ('\n') - error_file.write (_ ("Or save as UTF-8 in your editor")) - error_file.write ('\n') + stderr_write ('\n') + stderr_write (_ ("Or save as UTF-8 in your editor")) + stderr_write ('\n') raise FatalConversionError () return match.group (0) @@ -2435,81 +2186,68 @@ def conv (str): str = re.sub (r"#\(ly:set-point-and-click '[a-z-]+\)", '', str) return str -conversions.append (((2, 5, 13), - conv, - '\\encoding: smart recode latin1..utf-8. Remove ly:point-and-click')) - +@rule ((2, 5, 17), _ ('remove %s') % 'ly:stencil-set-extent!') def conv (str): if re.search ("ly:stencil-set-extent!", str): - error_file.write ('\n') - error_file.write (NOT_SMART % "ly:stencil-set-extent!") - error_file.write ('\n') - error_file.write ('use (set! VAR (ly:make-stencil (ly:stencil-expr VAR) X-EXT Y-EXT))\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "ly:stencil-set-extent!") + stderr_write ('\n') + stderr_write ('use (set! VAR (ly:make-stencil (ly:stencil-expr VAR) X-EXT Y-EXT))\n') raise FatalConversionError () if re.search ("ly:stencil-align-to!", str): - error_file.write ('\n') - error_file.write (NOT_SMART % "ly:stencil-align-to!") - error_file.write ('\n') - error_file.write ('use (set! VAR (ly:stencil-aligned-to VAR AXIS DIR))\n') + stderr_write ('\n') + stderr_write (NOT_SMART % "ly:stencil-align-to!") + stderr_write ('\n') + stderr_write ('use (set! VAR (ly:stencil-aligned-to VAR AXIS DIR))\n') raise FatalConversionError () return str -conversions.append (((2, 5, 17), - conv, - 'ly:stencil-set-extent! removed')) +@rule ((2, 5, 18), 'ly:warn -> ly:warning') def conv (str): str = re.sub (r"ly:warn\b", 'ly:warning', str) return str -conversions.append (((2, 5, 18), - conv, - 'ly:warn -> ly:warning')) + +@rule ((2, 5, 21), _ ('warn about auto beam settings')) def conv (str): if re.search ("(override-|revert-)auto-beam-setting", str)\ or re.search ("autoBeamSettings", str): - error_file.write ('\n') - error_file.write (NOT_SMART % "auto beam settings") - error_file.write ('\n') - error_file.write (''' + stderr_write ('\n') + stderr_write (NOT_SMART % _ ("auto beam settings")) + stderr_write ('\n') + stderr_write (_ (''' Auto beam settings must now specify each interesting moment in a measure explicitely; 1/4 is no longer multiplied to cover moments 1/2 and 3/4 too. -''') - error_file.write (UPDATE_MANUALLY) - error_file.write ('\n') +''')) + stderr_write (UPDATE_MANUALLY) + stderr_write ('\n') raise FatalConversionError () return str -conversions.append (((2, 5, 21), - conv, - 'warn about auto beam settings')) +@rule ((2, 5, 25), 'unfoldrepeats -> unfoldRepeats, compressmusic -> compressMusic') def conv (str): str = re.sub (r"unfoldrepeats", 'unfoldRepeats', str) str = re.sub (r"compressmusic", 'compressMusic', str) return str -conversions.append (((2, 5, 25), conv, - - 'unfoldrepeats -> unfoldRepeats,' - + 'compressmusic -> compressMusic')) +@rule ((2, 6, 0), _ ("bump version for release")) def conv (str): return str -conversions.append (((2, 6, 0), conv, - - 'dummy rule for 2.6')) - - +@rule ((2, 7, 0), 'ly:get-default-font -> ly:grob-default-font') def conv (str): return re.sub('ly:get-default-font', 'ly:grob-default-font', str) -conversions.append (((2, 7, 0), conv, - 'ly:get-default-font -> ly:grob-default-font')) +@rule ((2, 7, 1), '''ly:parser-define -> ly:parser-define! +excentricity -> eccentricity +Timing_engraver -> Timing_translator + Default_bar_line_engraver +''') def conv (str): str = re.sub('ly:parser-define', 'ly:parser-define!', str) str = re.sub('excentricity', 'eccentricity', str) @@ -2518,30 +2256,21 @@ def conv (str): str) return str -conversions.append (((2, 7, 1), conv, - '''ly:parser-define -> ly:parser-define! -excentricity -> eccentricity -Timing_engraver -> Timing_translator + Default_bar_line_engraver -''')) - +@rule ((2, 7, 2), 'ly:X-moment -> ly:moment-X') def conv (str): str = re.sub('ly:(add|mul|mod|div)-moment', r'ly:moment-\1', str) return str -conversions.append (((2, 7, 2), conv, - '''ly:X-moment -> ly:moment-X''')) - +@rule ((2, 7, 4), 'keyAccidentalOrder -> keyAlterationOrder') def conv (str): str = re.sub('keyAccidentalOrder', 'keyAlterationOrder', str) return str -conversions.append (((2, 7, 4), conv, - '''keyAccidentalOrder->keyAlterationOrder''')) - - +@rule ((2, 7, 6), '''Performer_group_performer -> Performer_group, Engraver_group_engraver -> Engraver_group, +inside-slur -> avoid-slur''') def conv (str): str = re.sub('Performer_group_performer', 'Performer_group', str) str = re.sub('Engraver_group_engraver', 'Engraver_group', str) @@ -2553,12 +2282,8 @@ def conv (str): r"#'avoid-slur", str) return str -conversions.append (((2, 7, 6), conv, - '''Performer_group_performer -> Performer_group, Engraver_group_engraver -> Engraver_group -inside-slur -> avoid-slur''')) - - +@rule ((2, 7, 10), '\\applyxxx -> \\applyXxx') def conv (str): str = re.sub(r'\\applyoutput', r'\\applyOutput', str) str = re.sub(r'\\applycontext', r'\\applyContext', str) @@ -2566,26 +2291,20 @@ def conv (str): str = re.sub(r'ly:grob-suicide', 'ly:grob-suicide!', str) return str -conversions.append (((2, 7, 10), conv, - '''\\applyxxx -> \\applyXxx''')) - - +@rule ((2, 7, 11), '"tabloid" -> "11x17"') def conv (str): str = re.sub(r'\"tabloid\"', '"11x17"', str) return str -conversions.append (((2, 7, 11), conv, - '''\"tabloid\" -> \"11x17\"''')) +@rule ((2, 7, 12), 'outputProperty -> overrideProperty') def conv (str): str = re.sub(r'outputProperty' , 'overrideProperty', str) return str -conversions.append (((2, 7, 12), conv, - '''outputProperty -> overrideProperty''')) - +@rule ((2, 7, 13), 'layout engine refactoring [FIXME]') def conv (str): def subber (match): newkey = {'spacing-procedure': 'springs-and-rods', @@ -2608,18 +2327,15 @@ def conv (str): subber, str) if re.search ('bar-size-procedure', str): - error_file.write (NOT_SMART % "bar-size-procedure") + stderr_write (NOT_SMART % "bar-size-procedure") if re.search ('space-function', str): - error_file.write (NOT_SMART % "space-function") + stderr_write (NOT_SMART % "space-function") if re.search ('verticalAlignmentChildCallback', str): - error_file.write ('verticalAlignmentChildCallback has been deprecated') + stderr_write (_ ('verticalAlignmentChildCallback has been deprecated')) return str -conversions.append (((2, 7, 13), conv, - '''layout engine refactoring. [FIXME] ''')) - - +@rule ((2, 7, 14), _ ('Remove callbacks property, deprecate XY-extent-callback.')) def conv (str): str = re.sub (r"\\override +([A-Z.a-z]+) #'callbacks", r"\\override \1", str) @@ -2639,21 +2355,17 @@ def conv (str): r"\\override \1VerticalAxisGroup #'Y-extent", str) return str -conversions.append (((2, 7, 14), conv, - '''Remove callbacks property, deprecate XY-extent-callback. ''')) - +@rule ((2, 7, 15), _ ('Use grob closures iso. XY-offset-callbacks.')) def conv (str): if re.search ('[XY]-offset-callbacks', str): - error_file.write (NOT_SMART % "[XY]-offset-callbacks") + stderr_write (NOT_SMART % "[XY]-offset-callbacks") if re.search ('position-callbacks', str): - error_file.write (NOT_SMART % "position-callbacks") + stderr_write (NOT_SMART % "position-callbacks") return str -conversions.append (((2, 7, 15), conv, - '''Use grob closures iso. XY-offset-callbacks.''')) - +@rule ((2, 7, 22), r"\tag #'(a b) -> \tag #'a \tag #'b") def conv (str): def sub_syms (m): syms = m.group (1).split () @@ -2663,25 +2375,22 @@ def conv (str): str = re.sub (r"\\tag #'\(([^)]+)\)", sub_syms, str) return str -conversions.append (((2, 7, 22), conv, - """\tag #'(a b) -> \tag #'a \tag #'b""" )) +@rule ((2, 7, 24), _ ('deprecate %s') % 'number-visibility') def conv (str): str = re.sub (r"#'number-visibility", "#'number-visibility % number-visibility is deprecated. Tune the TupletNumber instead\n", str) return str -conversions.append (((2, 7, 24), conv, - """deprecate number-visibility""")) +@rule ((2, 7, 28), "ly:spanner-get-bound -> ly:spanner-bound") def conv (str): str = re.sub (r"ly:spanner-get-bound", "ly:spanner-bound", str) return str -conversions.append (((2, 7, 28), conv, - """ly:spanner-get-bound -> ly:spanner-bound""")) +@rule ((2, 7, 29), "override Stem #'beamed-* -> #'details #'beamed-*") def conv (str): for a in ['beamed-lengths', 'beamed-minimum-free-lengths', 'lengths', @@ -2691,17 +2400,14 @@ def conv (str): str) return str -conversions.append (((2, 7, 29), conv, - """override Stem #'beamed-* -> #'details #'beamed-*""")) +@rule ((2, 7, 30), "\\epsfile") def conv (str): str = re.sub (r'\\epsfile *#"', r'\\epsfile #X #10 #"', str) return str -conversions.append (((2, 7, 30), conv, - """\\epsfile""")) - +@rule ((2, 7, 31), "Foo_bar::bla_bla -> ly:foo-bar::bla-bla") def conv (str): def sub_cxx_id (m): str = m.group(1) @@ -2711,10 +2417,8 @@ def conv (str): sub_cxx_id, str) return str -conversions.append (((2, 7, 31), conv, - """Foo_bar::bla_bla -> ly:foo-bar::bla-bla""")) - +@rule ((2, 7, 32), _ ("foobar -> foo-bar for \paper, \layout")) def conv (str): identifier_subs = [ ('inputencoding', 'input-encoding'), @@ -2757,26 +2461,21 @@ def conv (str): str = re.sub (a, b, str) return str -conversions.append (((2, 7, 32), conv, - """foobar -> foo-bar for \paper, \layout""")) +@rule ((2, 7, 32), "debug-beam-quanting -> debug-beam-scoring") def conv (str): str = re.sub ('debug-beam-quanting', 'debug-beam-scoring', str) return str -conversions.append (((2, 7, 32), conv, - """debug-beam-quanting -> debug-beam-scoring""")) +@rule ((2, 7, 36), "def-(music-function|markup-command) -> define-(music-function|markup-command)") def conv (str): str = re.sub ('def-music-function', 'define-music-function', str) str = re.sub ('def-markup-command', 'define-markup-command', str) return str -conversions.append (((2, 7, 36), conv, - """def-(music-function|markup-command) -> define-(music-function|markup-command)""")) - - +@rule ((2, 7, 40), "rehearsalMarkAlignSymbol/barNumberAlignSymbol -> break-align-symbol") def conv (str): str = re.sub (r'\\set\s+Score\s*\.\s*barNumberAlignSymbol\s*=', r"\\override Score.BarNumber #'break-align-symbol = ", str) @@ -2784,33 +2483,29 @@ def conv (str): r"\\override Score.RehearsalMark #'break-align-symbol = ", str) return str -conversions.append (((2, 7, 40), conv, - "rehearsalMarkAlignSymbol/barNumberAlignSymbol -> break-align-symbol")) - +@rule ((2, 9, 4), "(page-)penalty -> (page-)break-penalty") def conv (str): str = re.sub ('page-penalty', 'page-break-penalty', str) str = re.sub ('([^-])penalty', '\1break-penalty', str) return str -conversions.append (((2, 9, 4), conv, """(page-)penalty -> (page-)break-penalty""")) +@rule ((2, 9, 6), "\\context Foo \\applyOutput #bla -> \\applyOutput #'Foo #bla ") def conv (str): str = re.sub (r'\\context\s+\"?([a-zA-Z]+)\"?\s*\\applyOutput', r"\\applyOutput #'\1", str) return str -conversions.append (((2, 9, 6), conv, """\context Foo \\applyOutput #bla -> \\applyOutput #'Foo #bla """)) - +@rule ((2, 9, 9), "annotatefoo -> annotate-foo") def conv (str): str = re.sub ('annotatepage', 'annotate-page', str) str = re.sub ('annotateheaders', 'annotate-headers', str) str = re.sub ('annotatesystems', 'annotate-systems', str) return str -conversions.append (((2, 9, 9), conv, """annotatefoo -> annotate-foo""")) - +@rule ((2, 9, 11), "\\set tupletNumberFormatFunction -> \\override #'text = ") def conv (str): str = re.sub (r"""(\\set\s)?(?P[a-zA-Z]*.?)tupletNumberFormatFunction\s*=\s*#denominator-tuplet-formatter""", r"""\\override \gTupletNumber #'text = #tuplet-number::calc-denominator-text""", str) @@ -2819,24 +2514,21 @@ def conv (str): r"""\\override \gTupletNumber #'text = #tuplet-number::calc-fraction-text""", str) if re.search ('tupletNumberFormatFunction', str): - error_file.write ("\n") - error_file.write ("tupletNumberFormatFunction has been removed. Use #'text property on TupletNumber") - error_file.write ("\n") - + stderr_write ("\n") + stderr_write ("tupletNumberFormatFunction has been removed. Use #'text property on TupletNumber") + stderr_write ("\n") return str -conversions.append (((2, 9, 11), conv, """\\set tupletNumberFormatFunction -> \\override #'text = """)) - +@rule ((2, 9, 13), "instrument -> instrumentName, instr -> shortInstrumentName, vocNam -> shortVocalName") def conv (str): str = re.sub ('vocNam', 'shortVocalName', str) str = re.sub (r'\.instr\s*=', r'.shortInstrumentName =', str) str = re.sub (r'\.instrument\s*=', r'.instrumentName =', str) return str -conversions.append (((2, 9, 13), conv, """instrument -> instrumentName, instr -> shortInstrumentName, vocNam -> shortVocalName""")) - +@rule ((2, 9, 16), _ ("deprecate \\tempo in \\midi")) def conv (str): def sub_tempo (m): @@ -2865,29 +2557,25 @@ def conv (str): str = re.sub (r'\\midi\s*{\s*\\tempo ([0-9]+)\s*([.]*)\s*=\s*([0-9]+)\s*}', sub_tempo, str) return str -conversions.append (((2, 9, 16), conv, """deprecate \\tempo in \\midi""")) +@rule ((2, 9, 19), "printfirst-page-number -> print-first-page-number") def conv (str): str = re.sub ('printfirst-page-number', 'print-first-page-number', str) return str -conversions.append (((2, 9, 19), conv, """printfirst-page-number -> print-first-page-number""")) - +@rule ((2, 10, 0), _ ("bump version for release")) def conv (str): return str -conversions.append (((2, 10, 0), conv, """bump version for release""")) - +@rule ((2, 11, 2), "ly:clone-parser -> ly:parser-clone") def conv (str): return re.sub ('ly:clone-parser', 'ly:parser-clone', str) -conversions.append (((2, 11, 2), conv, """ly:clone-parser -> ly:parser-clone""")) - - +@rule ((2, 11, 5), _ ("deprecate cautionary-style. Use AccidentalCautionary properties")) def conv (str): str = re.sub ("Accidental\s*#'cautionary-style\s*=\s*#'smaller", "AccidentalCautionary #'font-size = #-2", str) @@ -2897,14 +2585,10 @@ def conv (str): r"\1 #'parenthesized = ##t", str) str = re.sub ("([A-Za-z]+)\s*#'cautionary-style\s*=\s*#'smaller", r"\1 #'font-size = #-2", str) - return str -conversions.append (((2, 11, 5), conv, """deprecate cautionary-style. Use AccidentalCautionary properties""")) - - - +@rule ((2, 11, 6), _ ("Rename accidental glyphs, use glyph-name-alist.")) def conv (str): def sub_acc_name (m): @@ -2924,12 +2608,15 @@ def conv (str): sub_acc_name, str) str = re.sub (r"(KeySignature|Accidental[A-Za-z]*)\s*#'style\s*=\s*#'([a-z]+)", r"\1 #'glyph-name-alist = #alteration-\2-glyph-name-alist", str) - + ## FIXME: standard vs default, alteration-FOO vs FOO-alteration + str = str.replace ('alteration-default-glyph-name-alist', + 'standard-alteration-glyph-name-alist') return str -conversions.append (((2, 11, 6), conv, """Rename accidental glyphs, use glyph-name-alist.""")) - +@rule ((2, 11, 10), """allowBeamBreak -> Beam #'breakable = ##t +addquote -> addQuote +""") def conv (str): str = re.sub (r'(\\set\s+)?([A-Z][a-zA-Z]+\s*\.\s*)allowBeamBreak', r"\override \2Beam #'breakable", str) @@ -2937,18 +2624,140 @@ def conv (str): r"\override Beam #'breakable", str) str = re.sub (r'addquote' , 'addQuote', str) if re.search ("Span_dynamic_performer", str): - error_file.write ("Span_dynamic_performer has been merged into Dynamic_performer") + stderr_write ("Span_dynamic_performer has been merged into Dynamic_performer") return str -conversions.append (((2, 11, 10), conv, """allowBeamBreak -> Beam #'breakable = ##t -addquote -> addQuote - -""")) +@rule ((2, 11, 11), "layout-set-staff-size -> layout-set-absolute-staff-size") def conv (str): str = re.sub (r'\(layout-set-staff-size \(\*\s*([0-9.]+)\s*(pt|mm|cm)\)\)', r'(layout-set-absolute-staff-size (* \1 \2))', str) return str -conversions.append (((2, 11, 11), conv, """layout-set-staff-size -> layout-set-absolute-staff-size""")) + +@rule ((2, 11, 13), "#'arrow = ##t -> #'bound-details #'right #'arrow = ##t") +def conv (str): + str = re.sub (r"\\override\s*([a-zA-Z.]+)\s*#'arrow\s*=\s*##t", + r"\\override \1 #'bound-details #'right #'arrow = ##t", + str) + + if re.search ('edge-text', str): + stderr_write (NOT_SMART % _ ("edge-text settings for TextSpanner.")) + stderr_write (_ ("Use\n\n%s") % + "\t\\override TextSpanner #'bound-details #'right #'text = \n" + "\t\\override TextSpanner #'bound-details #'left #'text = \n") + return str + + +@rule ((2, 11, 15), "#'edge-height -> #'bound-details #'right/left #'text = ...") +def conv (str): + def sub_edge_height (m): + s = '' + for (var, h) in [('left', m.group (3)), + ('right', m.group (4))]: + + if h and float (h): + once = m.group(1) + if not once: + once = '' + + s += (r"%s \override %s #'bound-details #'%s #'text = \markup { \draw-line #'(0 . %s) }" + % (once, m.group (2), var, h)) + + s += '\n' + + return s + + + str = re.sub (r"(\\once)?\s*\\override\s*([a-zA-Z.]+)\s*#'edge-height\s*=\s*#'\(([0-9.-]+)\s+[.]\s+([0-9.-]+)\)", + sub_edge_height, str) + return str + + +@rule ((2, 11, 23), "#'break-align-symbol -> #'break-align-symbols") +def conv (str): + str = re.sub (r"\\override\s*([a-zA-Z.]+)\s*#'break-align-symbol\s*=\s*#'([a-z-]+)", + r"\\override \1 #'break-align-symbols = #'(\2)", str) + return str + + +@rule ((2, 11, 35), """scripts.caesura -> scripts.caesura.curved. +""" + _ ("Use #'style not #'dash-fraction to select solid/dashed lines.")) +def conv (str): + str = re.sub (r"scripts\.caesura", + r"scripts.caesura.curved", str) + + if re.search ('dash-fraction', str): + stderr_write (NOT_SMART % _ ("all settings related to dashed lines.\n")) + stderr_write (_ ("Use \\override ... #'style = #'line for solid lines and\n")) + stderr_write (_ ("\t\\override ... #'style = #'dashed-line for dashed lines.")) + return str + + +@rule ((2, 11, 38), """\\setEasyHeads -> \\easyHeadsOn, \\fatText -> \\textLengthOn, +\\emptyText -> \\textLengthOff""") +def conv (str): + str = re.sub (r"setEasyHeads", r"easyHeadsOn", str) + str = re.sub (r"fatText", r"textLengthOn", str) + str = re.sub (r"emptyText", r"textLengthOff", str) + return str + + +@rule ((2, 11, 46), "\\set hairpinToBarline -> \\override Hairpin #'to-barline") +def conv (str): + str = re.sub (r"\\set\s+([a-zA-Z]+)\s*.\s*hairpinToBarline\s*=\s*##([tf]+)", + r"\\override \1.Hairpin #'to-barline = ##\2", str) + str = re.sub (r"\\set\s+hairpinToBarline\s*=\s*##([tf]+)", + r"\\override Hairpin #'to-barline = ##\1", str) + str = re.sub (r"\\unset\s+([a-zA-Z]+)\s*.\s*hairpinToBarline", + r"\\revert \1.Hairpin #'to-barline", str) + str = re.sub (r"\\unset\s+hairpinToBarline", + r"\\revert Hairpin #'to-barline", str) + str = re.sub (r"hairpinToBarline\s*=\s*##([tf]+)", + r"\\override Hairpin #'to-barline = ##\1", str) + str = re.sub (r"\\set (de|)crescendoSpanner = #'dashed-line", + r"\\set \1crescendoSpanner = #'text", str) + return str + + +@rule ((2, 11, 48), "\\compressMusic -> \\scaleDurations") +def conv (str): + str = re.sub (r"compressMusic", r"scaleDurations", str) + return str + + +@rule ((2, 11, 50), "metronomeMarkFormatter uses text markup as second argument") +def conv (str): + if re.search ('metronomeMarkFormatter', str): + stderr_write (NOT_SMART % _ ("metronomeMarkFormatter got an additional text argument.\n")) + stderr_write (_ ("The function assigned to Score.metronomeMarkFunction now uses the signature\n%s") % + "\t(format-metronome-markup text dur count context)\n") + return str + +conversions.append (((2, 11, 50), conv, """metronomeMarkFormatter uses text markup as second argument""")) + + +def conv (str): + fret_props = ['barre-type', + 'dot-color', + 'dot-radius', + 'finger-code', + 'fret-count', + 'label-dir', + 'number-type', + 'string-count', + 'xo-font-magnification', + 'mute-string', + 'open-string', + 'orientation'] + for prop in fret_props: + if re.search ( prop, str): + stderr_write ('\n') + stderr_write (NOT_SMART % + prop + " in fret-diagram properties. Use fret-diagram-details.") + stderr_write ('\n') + return str + +conversions.append (((2, 11, 50), conv, """Fret diagram properties moved to fret-diagram-details""")) +