strange "make web" behaviour

2006-06-05 Thread Joe Neeman
When I "make web" a clean lilypond CVS version, instrument-name.ly compiles to the first attached png file. If I do $ rm input/regression/out-www/lily-409* input/regression/out-www/coll* $ make web I get the second attached png file. I also get the second attached png file if I try to generate it

Re: improved cue support

2006-06-05 Thread Werner LEMBERG
> it would be easier to make \cueDuring accept a list of interesting > voices, and use existing functionality to filter the rests, eg. > >\cueDuring #'(uceVoice1 cueVoice2) { > \set CueVoice.quotedEventTypes = #'(note-event) > s1 >} How would you notate the situation described

Re: configure: readlink problem

2006-06-05 Thread Johannes Schindelin
Hi, On Mon, 5 Jun 2006, Karl Hammar wrote: > 2. It requires python >= 2.2. One could put the python version check >elsewhere. No problem. We need subprocess.py anyway (which comes with python 2.4, but works also with 2.3, but not with 2.2 IIRC). Ciao, Dscho

shortened Hairpin hack; how to get "width" of current ChordEvent?

2006-06-05 Thread Kieren MacMillan
Hello, all! I'm trying to hack an easy way to end hairpins early... Here's what I've got so far (a variation on the dynamic+text function Nicolas helped me with): %% CODE SNIPPET ENDS \version "2.9.7" dynNull = #(define-music-function (parser location width event-chord)

Re: configure: readlink problem

2006-06-05 Thread Karl Hammar
[EMAIL PROTECTED]: > > Karl Hammar schreef: > > > > > > Since configure does not test for readlink it is perhaps a bad choise, > > > the alternative would be to use a shell or python script or if someone > > > comes up with a good way to find the afm files. > > > > we rely on python anyway, so

Segfaults and GC

2006-06-05 Thread Joe Neeman
The attached patch fixes a segfault/heap corruption that I was having, but I'm not really sure why because I don't fully understand how the guile garbage collection works. Valgrind was complaining about reads/writes to unallocated memory from line 57 of tuplet-number.cc. The memory had been freed

Re: gub progress

2006-06-05 Thread Johannes Schindelin
Hi, On Sun, 4 Jun 2006, Pedro Kröger wrote: > Johannes Schindelin <[EMAIL PROTECTED]> writes: > > > although you are free to call me an idiot. > > no need to do that :-) ;-) > > - The repository format itself is fragile, just as cvs'. It is based on > > patches, so if there is one single pat

Re: DOCS: minimumVerticalExtent

2006-06-05 Thread Eduardo Vieira
Here are the links: http://lilypond.org/doc/v2.9/Documentation/user/lilypond-internals/Axis_005fgroup_005fengraver.html#Axis_005fgroup_005fengraver - Original Message - From: "Graham Percival" <[EMAIL PROTECTED]> To: "Eduardo Vieira" <[EMAIL PROTECTED]> Cc: Sent: Saturday, June 03, 20

Re: improved cue support

2006-06-05 Thread Han-Wen Nienhuys
Werner LEMBERG schreef: Any idea how this could be avoided? My idea is to have a list which tells lilypond the time spans and the associated cue voices. As an additional benefit, this would allow to have more than a single cue at the same time. Here my proposed syntax -- of course, I have no

RE: Scripts Manual Sect. 6.6.1 (Articulations)

2006-06-05 Thread Anthony Youngman
imho, people WOULD want to alter the defaults for things like segno. By default they attach to notes. I normally see them attached to barlines (I can't remember them anywhere else, actually). So no, just moving the info about them to the repeats section (which imho is where they belong) is a bad

Re: improved cue support

2006-06-05 Thread Werner LEMBERG
> >It's straightforward to insert two \cueDuring commands to get the > >proper cues from cue voice 1 and 2. The very problem is the main > >voice since the whole note has to be split into two half notes, the > >first one has to get the appearance of a whole note, and the second > >one must be inv

Re: improved cue support

2006-06-05 Thread Werner LEMBERG
> with other words, the first two quarters are taken from cue voice 1, > and the last two quarters from voice 2. Should be `the first quarter is taken from cue voice 1, and the last three quarters from voice 2'. Werner ___ lilypond-devel mailing

Re: improved cue support

2006-06-05 Thread Mats Bengtsson
Werner LEMBERG wrote: Consider the following situation: Main Voice: c1| Cue Voice 1: g4 r2.| Cue Voice 2: r2 e4 g e | I want to have this appear in the part: g4 e g e | c1 | with other words, the first two quarters are taken from cue voice 1, and the last two qu

improved cue support

2006-06-05 Thread Werner LEMBERG
Consider the following situation: Main Voice: c1| Cue Voice 1: g4 r2.| Cue Voice 2: r2 e4 g e | I want to have this appear in the part: g4 e g e | c1 | with other words, the first two quarters are taken from cue voice 1, and the last two quarters from voice 2.

Re: test results available!

2006-06-05 Thread Han-Wen Nienhuys
Joe Neeman schreef: On Mon, 2006-06-05 at 02:36 +0200, Han-Wen Nienhuys wrote: Hi there, the first test results are finally available. Grovel at http://lilypond.org/doc/v2.9/v2.8.4/index.html and see what features we broken in the latest release! Awesome! This patch fixes spacing-stick-o

Re: configure: readlink problem

2006-06-05 Thread Karl Hammar
> Karl Hammar schreef: > > > > Since configure does not test for readlink it is perhaps a bad choise, > > the alternative would be to use a shell or python script or if someone > > comes up with a good way to find the afm files. > > we rely on python anyway, so I'm all for a Python based soluti