]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 29 Nov 2005 00:14:06 +0000 (00:14 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 29 Nov 2005 00:14:06 +0000 (00:14 +0000)
ChangeLog
scripts/abc2ly.py
scripts/etf2ly.py
scripts/midi2ly.py
scripts/mup2ly.py

index c187b8dbbd6f7b2994c9b571b8692f3252cd1774..041f37241f948786d1970538d4a988836d65cab3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * scripts/*.py: update bug reporting addresses.  
+
        * lily/main.cc (LY_DEFINE): gmane address for reporting bugs.
 
 2005-11-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
index 8029dbea8f222ce93ab42137e46cc72a8939cef1..0980f29255e1f96f47d7da0431f78551e56c9c79 100644 (file)
@@ -1338,7 +1338,9 @@ This program converts ABC music files (see
 http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt) to LilyPond input.
 
 
-Report bugs to bug-lilypond@gnu.org.
+Report bugs via
+
+  http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs
 
 Written by Han-Wen Nienhuys <hanwen@cs.uu.nl>, Laura Conrad
 <lconrad@laymusic.org>, Roy Rankin <Roy.Rankin@@alcatel.com.au>.
index c2f2245373dd6fb3d3d68c0ae5849aff2decf5cc..6ed2d18a7ff5fbf4321bd27d333b4005716c9bac 100644 (file)
@@ -1165,7 +1165,9 @@ Enigma Transport Format is a format used by Coda Music Technology's
 Finale product. This program will convert a subset of ETF to a
 ready-to-use lilypond file.
 
-Report bugs to bug-lilypond@gnu.org.
+Report bugs via
+
+  http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs
 
 Written by  Han-Wen Nienhuys <hanwen@cs.uu.nl>.
 
index a259eaa6b935aa7c50f1ec2093cb522a52d54ed5..e3a3968b7e7b1b9a924ace2586d71ad4e8ea8bd1 100644 (file)
@@ -233,7 +233,8 @@ def help ():
                ('\n'),
                (options_help_str (option_definitions)),
                ('\n\n'),
-               (_ ("Report bugs to %s.") % 'bug-lilypond@gnu.org'),
+               (_ ("Report bugs via %s.") %
+                "http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs"),
                ('\n')]
        map (sys.stdout.write, ls)
        
index d9154fe079e9a71d8c4d4f0dda95a50e6842a37c..f1f5f3a45dfdba61d1234c55773a125e451e39cf 100644 (file)
@@ -217,21 +217,23 @@ def options_help_str (opts):
 
 def help ():
        ls = [(_ ("Usage: %s [OPTIONS]... FILE") % program_name),
-               ('\n\n'),
-               (help_summary),
-               ('\n\n'),
-               (_ ("Options:")),
-               ('\n'),
-               (options_help_str (option_definitions)),
-               ('\n\n'),
-               (_ ("Report bugs to %s.") % 'bug-lilypond@gnu.org'),
-               ('\n')]
+             ('\n\n'),
+             (help_summary),
+             ('\n\n'),
+             (_ ("Options:")),
+             ('\n'),
+             (options_help_str (option_definitions)),
+             ('\n\n'),
+             (_ ("Report bugs to %s.") %
+             "http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs"),
+             ('\n')]
        map (sys.stdout.write, ls)
        
 def setup_temp ():
        """
-       Create a temporary directory, and return its name. 
+       Create a temporary directory, and return its name.
        """
+       
        global temp_dir
        if not keep_temp_dir_p:
                temp_dir = tempfile.mktemp (program_name)