From: Han-Wen Nienhuys Date: Tue, 29 Nov 2005 00:14:06 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.6.5~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=02c7aff81c0672b758972fe88f9594f1b170f81d;p=lilypond.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index c187b8dbbd..041f37241f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-11-29 Han-Wen Nienhuys + * scripts/*.py: update bug reporting addresses. + * lily/main.cc (LY_DEFINE): gmane address for reporting bugs. 2005-11-27 Han-Wen Nienhuys diff --git a/scripts/abc2ly.py b/scripts/abc2ly.py index 8029dbea8f..0980f29255 100644 --- a/scripts/abc2ly.py +++ b/scripts/abc2ly.py @@ -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 , Laura Conrad , Roy Rankin . diff --git a/scripts/etf2ly.py b/scripts/etf2ly.py index c2f2245373..6ed2d18a7f 100644 --- a/scripts/etf2ly.py +++ b/scripts/etf2ly.py @@ -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 . diff --git a/scripts/midi2ly.py b/scripts/midi2ly.py index a259eaa6b9..e3a3968b7e 100644 --- a/scripts/midi2ly.py +++ b/scripts/midi2ly.py @@ -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) diff --git a/scripts/mup2ly.py b/scripts/mup2ly.py index d9154fe079..f1f5f3a45d 100644 --- a/scripts/mup2ly.py +++ b/scripts/mup2ly.py @@ -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)