From 9749545ad221eaea4230669c2dfab7cffde17076 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 6 Mar 1998 00:29:26 +0000 Subject: [PATCH] lilypond-0.1.47 --- Documentation/other-packages.pod | 16 +++++++++++++++- bin/make-website.py | 10 +++++++--- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/Documentation/other-packages.pod b/Documentation/other-packages.pod index b04410aa3e..56cd0f9c83 100644 --- a/Documentation/other-packages.pod +++ b/Documentation/other-packages.pod @@ -11,7 +11,7 @@ packages. Feel free to add info (and mail it to me). =over 4 -=item Rosegarden, http://www.bath.ac.uk/~masjpf/rose.html +=item Rosegarden, http://www.bath.ac.uk/~masjpf/rose.html. A Notation editor/Sequencer for X. Also outputs musictex. @@ -171,6 +171,8 @@ clones. It uses MIDI-keyboard input =head2 Unknown +=over 4 + =item MusE, [no WWW address known] A-R Music Engraving, by A-R Editions, Inc. Professional engraving on @@ -189,12 +191,24 @@ Dominique Montel (a professional music typesetter) is now working together with computer scientists on his own software for music publishing, called "Berlioz". +=back + =head2 Other stuff +=over 4 + =item Sonata, http://www.adobe.com/type/browser/F/F_SONA.html The music font by Adobe. +=item Haskore, http://haskell.systemscz.cs.yale.edu/haskore/onlinetutorial/index.html + +A programming system for music, based on Haskell, a functional +programming language. It outputs MIDI, CSound, NeXTStep MusicKit and +CMN. + +=back + diff --git a/bin/make-website.py b/bin/make-website.py index 15da0c6e43..a2243a78f9 100644 --- a/bin/make-website.py +++ b/bin/make-website.py @@ -95,7 +95,7 @@ def my_system(cmds): base="lilypond/"; examples=["twinkle-pop", - "toccata-fuga-E", + "praeludium-fuga-E", "cadenza", "twinkle", "collisions", @@ -123,8 +123,11 @@ def gen_examples(inputs): print 'generating examples:\n' outputs = [] for i in inputs: - located = multiple_find ([i + '.ly'], include_path) [0] - + try: + located = multiple_find ([i + '.ly'], include_path) [0] + except IndexError: + print 'continuing dazed & confused (%s) ' % i + continue outputs.append (located) if not file_exist_b(i + '.dvi'): my_system (['ly2dvi %s' % located]) @@ -275,6 +278,7 @@ def edit_html(): s = regsub.sub ('', footstr('index.html') + makewebsite_id + '', s) s = regsub.sub('\(.*\)$', 'LilyPond WWW: \\1', s) + dump_file (f,s) -- 2.11.4.GIT