CVSROOT: /cvsroot/lilypond Module name: lilypond Branch: Changes by: Han-Wen Nienhuys <[EMAIL PROTECTED]> 05/07/18 23:41:58
Modified files: . : ChangeLog Documentation/topdocs: NEWS.tely python : convertrules.py Log message: * Documentation/topdocs/NEWS.tely (Top): add note about engravers. * python/convertrules.py (conv): rule for Timing_translator. CVSWeb URLs: http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3886&tr2=1.3887&r1=text&r2=text http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/topdocs/NEWS.tely.diff?tr1=1.42&tr2=1.43&r1=text&r2=text http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/python/convertrules.py.diff?tr1=1.6&tr2=1.7&r1=text&r2=text Patches: Index: lilypond/ChangeLog diff -u lilypond/ChangeLog:1.3886 lilypond/ChangeLog:1.3887 --- lilypond/ChangeLog:1.3886 Mon Jul 18 23:37:23 2005 +++ lilypond/ChangeLog Mon Jul 18 23:41:58 2005 @@ -1,5 +1,9 @@ 2005-07-19 Han-Wen Nienhuys <[EMAIL PROTECTED]> + * Documentation/topdocs/NEWS.tely (Top): add note about engravers. + + * python/convertrules.py (conv): rule for Timing_translator. + * lily/include/translator.icc: new file. * lily/paper-column-engraver.cc (process_music): new Index: lilypond/Documentation/topdocs/NEWS.tely diff -u lilypond/Documentation/topdocs/NEWS.tely:1.42 lilypond/Documentation/topdocs/NEWS.tely:1.43 --- lilypond/Documentation/topdocs/NEWS.tely:1.42 Fri Jul 8 18:08:24 2005 +++ lilypond/Documentation/topdocs/NEWS.tely Mon Jul 18 23:41:58 2005 @@ -33,6 +33,11 @@ @itemize @bullet @item +The setting @code{whichBar} and time-bookkeeping is now split into a [EMAIL PROTECTED] and @code{Timing_translator} +respectively. + [EMAIL PROTECTED] Explicit pitches may be added to trills, @lilypond[relative,verbatim,fragment] Index: lilypond/python/convertrules.py diff -u lilypond/python/convertrules.py:1.6 lilypond/python/convertrules.py:1.7 --- lilypond/python/convertrules.py:1.6 Thu Jul 14 00:39:25 2005 +++ lilypond/python/convertrules.py Mon Jul 18 23:41:58 2005 @@ -2512,13 +2512,19 @@ 'ly:get-default-font -> ly:grob-default-font')) def conv (str): - return re.sub('ly:parser-define', 'ly:parser-define!', str) + str = re.sub('ly:parser-define', 'ly:parser-define!', str) + str = re.sub('excentricity', 'eccentricity', str) + str = re.sub(r'\\(consists|remove) *"?Timing_engraver"?', + r'\\\1 "Timing_translator" \\\1 "Default_bar_line_engraver"', + str) + return str -conversions.append (((2, 7, 0), conv, - 'ly:parser-define -> ly:parser-define!')) +conversions.append (((2, 7, 1), conv, + '''ly:parser-define -> ly:parser-define! +excentricity -> eccentricity +Timing_engraver -> Timing_translator + Default_bar_line_engraver +''')) -def conv (str): - return re.sub('excentricity', 'eccentricity', str) ################################################################ _______________________________________________ Lilypond-cvs mailing list Lilypond-cvs@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-cvs