From: fred Date: Sun, 24 Mar 2002 19:45:29 +0000 (+0000) Subject: lilypond-0.0.67 X-Git-Tag: release/1.5.59~4603 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f41f31500e8cdfe6f508b9537a2f67ad9feaf1f5;p=lilypond.git lilypond-0.0.67 --- diff --git a/bin/make_website b/bin/make_website index f5d540306e..219fcbd5a2 100755 --- a/bin/make_website +++ b/bin/make_website @@ -58,16 +58,20 @@ sub my_system } my $ret = ( system ($cmd)); - if (!$ignoreret && $ret) { - print STDERR "\nmake_website: failed on command \`$cmd\' (status $ret)\n"; - exit 2; + if ($ret) { + if ($ignoreret) { + print STDERR "ignoring failed command \`$cmd\' (status $ret)\n"; + }else { + print STDERR "\nmake_website: failed on command \`$cmd\' (status $ret)\n"; + exit 2; + } } } } local $base="lilypond/"; -local @examples=("wohltemperirt" ,"standchen", "scsii-menuetto", "rhythm", "collisions"); +local @examples=("wohltemperirt" ,"standchen", "toccata-fuga-E", "scsii-menuetto", "rhythm", "collisions"); sub gen_html @@ -134,7 +138,11 @@ sub gen_list { print "generating HTML list\n"; open HTMLLIST, ">example_output.html"; - print HTMLLIST "LilyPond examples\n"; + print HTMLLIST "LilyPond examples\n +These example files are taken from the LilyPond distribution.\n +LilyPond currently only outputs TeX and MIDI. The pictures and\n + PostScript files were generated using TeX, Ghostscript and some graphics tools. \n +The GIF files have been scaled to eliminate aliasing."; foreach $a (@examples) { $name=$a; print HTMLLIST "

example file: $name

\n\n";