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

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 cd5bf729ebf273f15a8c6bb6c3539cd16e663304..29bb128f45713bd0d3daf82413d4aff043daeaa1 100644 (file)
@@ -239,7 +239,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 59810972eef2830d40f36e1ee7fbc6f7dd5fd32b..81d8a6e3cb0393f9763d2da0467168cb1a62bdd7 100644 (file)
@@ -195,21 +195,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)