CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Han-Wen Nienhuys <[EMAIL PROTECTED]>    05/04/24 22:02:34

Modified files:
        .              : ChangeLog 
        scripts        : abc2ly.py 

Log message:
        

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3493&tr2=1.3494&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/scripts/abc2ly.py.diff?tr1=1.49&tr2=1.50&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3493 lilypond/ChangeLog:1.3494
--- lilypond/ChangeLog:1.3493   Sun Apr 24 21:41:09 2005
+++ lilypond/ChangeLog  Sun Apr 24 22:02:33 2005
@@ -1,3 +1,13 @@
+2005-04-22  Laura Conrad <[EMAIL PROTECTED]>
+ 
+       * scripts/abc2ly:
+       second title line append with punctuation dash character;
+       encode abc2ly python strings in utf-8
+       
+2005-04-21  Laura Conrad <[EMAIL PROTECTED]>
+
+       * scripts/abc2ly fix chords (again)
+ 
 2005-04-22  Bernard Hurley  <[EMAIL PROTECTED]>
 
        * scm/x11-color.scm: new file
Index: lilypond/scripts/abc2ly.py
diff -u lilypond/scripts/abc2ly.py:1.49 lilypond/scripts/abc2ly.py:1.50
--- lilypond/scripts/abc2ly.py:1.49     Wed Apr 20 23:49:30 2005
+++ lilypond/scripts/abc2ly.py  Sun Apr 24 22:02:34 2005
@@ -1,5 +1,5 @@
 [EMAIL PROTECTED]@
-
+# -*- coding: utf-8 -*-
 # once upon a rainy monday afternoon.
 #
 #   ...
@@ -636,7 +636,10 @@
                        if header.has_key('title'):
                                if a:
                                        if len(header['title']):
-                                               header['title'] = 
header['title'] + '\\\\\\\\' + a
+                                               # the non-ascii character
+                                               # in the string below is a
+                                               # punctuation dash. (TeX ---)
+                                               header['title'] = 
header['title'] + ' — ' + a
                                        else:
                                                header['subtitle'] = a
                        else:
@@ -1208,7 +1211,7 @@
        ch = ''
        if str[:1] ==']':
                str = str[1:]
-               ch = '>'
+               ch = '>>'
 
        end = 0
        while str[:1] ==')':
@@ -1388,7 +1391,9 @@
        sys.stderr.write ('lilypond output to: `%s\'...' % out_filename)
        outf = open (out_filename, 'w')
 
-       outf.write ('\\version "2.3.25"\n')
+# don't substitute @[EMAIL PROTECTED] We want this to reflect
+# the last version that was verified to work.
+       outf.write ('\\version "2.5.20"\n' % version)
 
 #      dump_global (outf)
        dump_header (outf, header)


_______________________________________________
Lilypond-cvs mailing list
Lilypond-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to