]> git.donarmstrong.com Git - lilypond.git/blob - ChangeLog
(pango_item_string_stencil): use
[lilypond.git] / ChangeLog
1 2006-10-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2
3         * lily/pango-font.cc (pango_item_string_stencil): use
4         logical_rect. This prevents spaces after words from disappearing.
5
6         * VERSION: release 2.9.20
7
8 2006-10-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
9
10         * scm/define-grob-properties.scm (all-user-grob-properties):
11         mention stencil as user settable.
12
13 2006-10-02  Joe Neeman  <joeneeman@gmail.com>
14
15         * Documentation/user/page.itely (Page formatting): 
16         document auto-first-page-number
17
18         * lily/page-breaking.cc (find_chunks_and_breaks): 
19         * lily/paper-score.cc (calc_breaking): Follow changes to the
20         Constrained_breaking interface
21
22         * lily/constrained-breaking.cc (calc_subproblem): run the main loop
23         here backwards, as an optimisation
24         (initialize): new function; move most of the code in resize () here
25         (combine_demerits): cache ragged_right_
26         (Constrained_breaking): constructor now takes the Paper_score
27
28 2006-10-02  Erik Sandberg  <mandolaerik@gmail.com>
29         
30         * lily/lexer.ll, lily/parser.yy: Add EXPECT_NO_MORE_ARGS token, to
31         avoid parser lookahead for 0-ary functions.
32
33         * lily/translator.cc: Extract event classes from
34         IMPLEMENT_TRANSLATOR_LISTENER for documentation generation.
35
36 2006-10-02  Heikki Junes  <hjunes@gmail.com>
37
38         * po/fi.po: Fix spaces, commas etc. in Finnish translation using
39         KBabel fix tool.
40
41 2006-10-01  Nicolas Sceaux  <nicolas.sceaux@free.fr>
42
43         * scm/layout-page-layout.scm (page-breaking-wrapper): new
44         function. Call the page breaking function selected in the
45         `page-breaking' \paper variable, then the post processing function
46         chosen using the `page-post-process' \paper variable.
47         (line-height): new function. Return the height of a system.
48         (line-minimum-position-on-page): new function. Return the position
49         of a system on page (using the previous line position), only
50         considering between system padding.
51         (stretchable-line?): new function. Says whether a line can be
52         stretched (ie. is not a title nor a single staff system).
53         (page-maximum-space-left): new function. Computes space left on a
54         page, when all systems are separated by their padding.
55
56         * lily/page-breaking.cc (breaking::make_pages): Move page post
57         processing function call to page breaking wrapper (common to all
58         page breakers).
59
60         * lily/paper-book.cc (book::pages): call the page breaking
61         wrapper, instead of the page breaker directly
62
63         * ly/paper-defaults.ly: Add \paper variables for page breaking
64         wrapper and page post processing function. Make
65         `write-page-layout' value depend on the 'dump-tweaks option. Add a
66         `system-maximum-stretch-procedure' variable for holding a function
67         computing the maximum stretch a system allows.
68
69         * scm/layout-page-dump.scm (write-page-breaks): computes the
70         stretch to apply to systems on a page to minimize left
71         space. Dump this stretch length.
72
73         * ly/music-functions-init.ly (spacingTweaks): implement it. Read
74         the system-stretch property of the tweak data to stretch the
75         system.
76         (includePageLayoutFile): Void function which includes the
77         generated page-layout file if it exists and if the page layout
78         dumping is not asked.
79         (scoreTweak): if the score tweak named by the argument exists,
80         return it.
81
82 2006-10-01  Joe Neeman  <joeneeman@gmail.com>
83
84         * lily/page-spacing.cc (compress_lines, uncompress_solution):
85         handle correctly the case where there are multiple \noPageBreaks
86         in a row.
87
88 2006-09-30  Laura Conrad <lconrad@laymusic.org>
89
90         * abc2ly.py adds segno (S) and Coda (O) to articulations.
91         
92         * abc2ly.py fix so that entering " -- " will translate to a -- in
93         the lilypond instead of a " - - "
94         
95 2006-09-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
96
97         * lily/align-interface.cc: fix typo
98
99         * lily/dynamic-text-spanner.cc (print): Add a special case for
100         trill spanner right sides. 
101
102         * scm/define-grobs.scm (all-grob-descriptions): set padding to 0.1
103
104         * lily/align-interface.cc (get_extents_aligned_translates): add
105         support for padding variable.
106
107         * lily/break-align-interface.cc (self_align_callback): oops: use
108         loop variable in guard.
109
110         * input/regression/repeat-percent-grace.ly: new file.
111
112         * lily/percent-repeat-engraver.cc (start_translation_timestep):
113         remember first currentCommandColumn of a grace run. Fixes issue 70.
114
115         * lily/percent-repeat-iterator.cc (class Percent_repeat_iterator):
116         move class definition to CC file.
117
118         * lily/multi-measure-rest.cc (percent): use robust_relative_extent()
119
120         * lily/slash-repeat-engraver.cc (listen_percent): don't warn for
121         measure-long  repeats.
122
123         * flower/include/international.hh: include stdarg.h
124
125 2006-09-30  Joe Neeman  <joeneeman@gmail.com>
126
127         * lily/page-turn-page-breaking.cc (calc_demerits): now that we allow
128         put_systems_on_pages to return an empty result, we need to assign
129         demerits properly in that case.
130         (put_systems_on_pages): Make the number of pages depend on the
131         evenness of page_number. Add auto-first-page-number.
132         (calc_subproblem): ensure that the page-number is even for the
133         left-hand page. Warn if the first page-turn doesn't fit onto the
134         first (right-hand) page.
135
136         * lily/page-spacing.cc (solve): bug: demerits_ would always be inf
137         (min_page_count): make this publicly accessible
138         (min_page_count): fix a bug when there are forced page breaks that
139         was introduced when I made this loop run backwards
140         (space_systems_on_n_pages, space_systems_on_n_or_one_more_pages):
141         replace space_systems_on_min_pages with these two. The logic in
142         space_systems_on_min_pages was getting too convoluted and is better
143         contained in page-turn-page-breaking.
144
145         * lily/page-turn-engraver.cc (breakable_column): remove an always-true
146         conditional
147         (breakable_column): typo
148
149         * lily/source-file.cc (get_line): fix off-by-one error
150         and clean up some of the logic
151
152 2006-09-29  Joe Neeman  <joeneeman@gmail.com>
153
154         * lily/page-breaking.cc (make_pages): honour the first-page-number
155         property
156
157 2006-09-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
158
159         * VERSION (PACKAGE_NAME): bump version.
160
161 2006-09-26  Pal Benko  <benko.pal@gmail.com>
162
163         * scm/parser-clef.scm: add petrucci-f3 and -f4 clefs
164         (the latter is the same as petrucci-f which is kept for compatibility)
165
166 2006-09-26  Erik Sandberg  <mandolaerik@gmail.com>
167         
168         * lily/part-combine-iterator.cc: solo1-event -> solo-one-event
169
170 2006-09-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
171
172         * lily/global-context.cc (run_iterator_on_me): break out of loop
173         if moment doesn't increase.
174
175         * scm/define-grob-properties.scm (all-user-grob-properties): add
176         forced property.
177
178         * lily/accidental.cc (after_line_breaking): read forced property.
179
180         * lily/accidental-engraver.cc (process_acknowledged): set 'forced
181         property.
182
183         * input/regression/accidental-forced-tie.ly:  new file.
184
185 2006-09-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
186
187         * ly/engraver-init.ly: set ignoreFiguredBassRest in Staff context.
188
189         * lily/figured-bass-engraver.cc: only listen to rest events if
190         ignoreFiguredBassRest is not set.
191
192         * scm/define-context-properties.scm
193         (all-user-translation-properties): add ignoreFiguredBassRest property
194
195 2006-09-24  Joe Neeman  <joeneeman@gmail.com>
196
197         * lily/paper-book.cc (get_system_specs):
198         (set_system_penalty): fix breakbefore.
199         We used to set a penalty on the system after the break, now we
200         set a permission on the system before the break
201
202         * lily/grob-property.cc: add scm debugging hooks into
203         property modification
204
205         * lily/context-property.cc:
206         * lily/engraver.cc:
207         rename make_foo_from_properties to internal_make_foo and
208         move it from context-property.cc to a member function of
209         Engraver.
210         
211         * lily/include/lily-guile-macros.hh:
212         overload ly_symbol2scm macro so that there is no more need
213         to use internal_foo
214
215         * lily/volta-repeat-iterator.cc:
216         * lily/tweak-engraver.cc:
217         * lily/tuplet-bracket.cc:
218         * lily/span-bar-engraver.cc:
219         * lily/script-engraver.cc:
220         * lily/prob-scheme.cc:
221         * lily/pointer-group-interface.cc:
222         * lily/parser.yy:
223         * lily/grob-scheme.cc:
224         * lily/grob-property.cc:
225         * lily/context.cc:
226         * lily/context-property.cc:
227         * lily/break-substitution.cc:
228         * lily/break-align-engraver.cc:
229         * lily/axis-group-interface.cc:
230         * lily/align-interface.cc:
231         remove calls to internal_FOO
232
233         * lily/system-start-delimiter-engraver.cc:
234         * lily/parenthesis-engraver.cc:
235         * lily/accidental-engraver.cc:
236         remove calls to make_foo_from_properties
237
238 2006-09-23  Graham Percival  <gpermus@gmail.com>
239
240         * Documentation/user/programming-iterfaces.itely: fix
241         def-music-function -> define-music... leftover.
242
243 2006-09-23  Joe Neeman  <joeneeman@gmail.com>
244
245         * lily/page-spacing.cc (min_page_count): by running the loop
246         backwards, we can calculate ragged_last properly.
247
248 2006-09-22  Mats Bengtsson  <mabe@drongo.s3.kth.se>
249
250         * ly/titling-init.ly (scoreTitleMarkup): Rename (typo!?)
251         printfirst-page-number -> print-first-page-number
252
253         * python/convertrules.py: corresponding rule.
254
255         * Documentation/user/page.itely (Page formatting): Document the
256         default values of all page layout parameters. 
257
258 2006-09-22  Erik Sandberg  <mandolaerik@gmail.com>
259
260         * lily/lexer.ll: remove limitation on music function arity. New
261         mode extratoken, which inserts extra EXPECT_* tokens after
262         MUSIC_FUNCTION token. Junk all MUSIC_FUNCTION_* tokens.
263
264         * lily/parser.yy: Change grammar for music function accordingly.
265
266         * lily/include/lily-parser.hh: New method get_state, new member
267         hidden_state. Works around a problem when parser fetches
268         MUSIC_FUNCTION token but not the following EXPECT_* token.
269
270         * lily/translator.cc, lily/context.cc:, lily/translator-group.cc:
271         remove try_music
272
273         * lily/*-engraver.cc, lily/*-performer.cc: Remove all remaining
274         references to Music; use ASSIGN_EVENT_ONCE everywhere
275
276         * lily/grob-info.cc: junk *music_cause
277
278         * lily/music.cc: copy eventified articulations to stream event
279
280         * lily/part-combine-iterator.cc: Cleanup using enums
281
282         * lily/translator-group.cc: Junk OldMusicEvent, and associated
283         methods
284
285         * lily/include/engraver.hh: Junk music.hh include
286
287         * lily/stream-event.cc: Changed constructors
288
289 2006-09-21  Graham Percival  <gpermus@gmail.com>
290
291         * Documentation/user/tweaks.itely (Fitting music onto fewer
292         pages): change settings to avoid warning messages.
293
294 2006-09-21  Mats Bengtsson  <mabe@drongo.s3.kth.se>
295
296         * Documentation/user/tweaks.itely (Fitting music onto fewer
297         pages): Add between-system-space setting. 
298
299 2006-09-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
300
301         * lily/accidental-placement.cc (calc_positioning_done): don't
302         trigger Y-extent calculation too early. Use pure_height instead.
303
304         * lily/scale.cc (LY_DEFINE): new file. 
305
306 2006-09-20  Joe Neeman  <joeneeman@gmail.com>
307
308         * lily/page-breaking.cc (find_chunks_and_breaks): ignore breaks
309         that happen at the start of a score: having a zero-length
310         chunk was messing up min_system_count calculations.
311
312         * lily/source-file.cc (get_line): lower_bound, not
313         binary_search. Fixes problem where point-and-click would
314         always point to the first line.
315
316 2006-09-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
317
318         * lily/accidental-placement.cc (calc_positioning_done): also put
319         stems into accidental support. 
320
321         * lily/tie-engraver.cc (process_music): also set tieMelismaBusy if
322         event_ detected.
323
324         * scm/script.scm (default-script-alist): avoid-slur and
325         slur-padding for portato script.
326
327         * lily/stem-tremolo.cc (translated_stencil): new function. 
328         (height): use new function. Fixes tremolos on whole notes.
329
330         * lily/slur-scoring.cc (get_best_curve): don't crash if no optimal
331         slur found.
332
333 2006-09-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
334
335         * scripts/abc2ly.py (try_parse_comment): idem.
336
337         * scripts/lilypond-book.py (find_toplevel_snippets): use 'foo' in
338         bar_string iso. string.find()
339
340         * lily/*.cc: idem.
341
342         * lily/slur.cc (get_curve): always use scm_is_pair() looping
343         scheme lists.  
344
345 2006-09-18  Graham Percival  <gpermus@gmail.com>
346
347         * Documentation/user/basic-notation.itely: add bug
348         warning about ties and octavation/clef.
349
350 2006-09-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
351
352         * VERSION (PACKAGE_NAME): release 2.9.18
353
354 2006-08-29  Milan Zamazal  <pdm@brailcom.org>
355
356         * elisp/lilypond-mode.el (LilyPond-command-alist): Don't try to
357         figure out midi file names right here.
358         
359 2006-09-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
360
361         * scm/framework-ps.scm (dump-stencil-as-EPS): naming pad-eps-boxes.
362
363         * scm/backend-library.scm: option naming:  gs-font-load*s*
364
365         * scm/framework-eps.scm (dump-stencils-as-EPSes): rename option to
366         include-eps-fonts
367
368 2006-09-17  Joe Neeman  <joeneeman@gmail.com>
369
370         * scm/define-music-types.scm (music-descriptions): remove
371         BreakEvent and fix {Page,Line}{Break,Turn}Event so
372         Music::to_event doesn't complain.
373
374         * lily/accidental-placement.cc (ape_compare):
375         * lily/semi-tie.cc (compare): 
376         * lily/note-column.cc (shift_compare): replace by XXX_less
377
378         * lily/tie-formatting-problem.cc (set_chord_outline): 
379         * lily/tie-column.cc (calc_positioning_done): 
380         * lily/system.cc (post_processing)
381         (get_paper_system): 
382         * lily/stem.cc (note_head_positions)
383         (calc_positioning_done): 
384         * lily/spanner.cc (do_break_processing)
385         (find_broken_piece): 
386         * lily/span-bar.cc (print): 
387         * lily/semi-tie-column.cc (calc_positioning_done): 
388         * lily/rest-collision.cc (calc_positioning_done): 
389         * lily/program-option.cc (get_help_string): 
390         * lily/note-collision.cc (get_clash_groups):
391         * lily/new-fingering-engraver.cc (position_scripts):
392         * lily/keyword.cc (Keyword_table):
393         * lily/hara-kiri-group-spanner.cc (request_suicide):
394         * lily/grob-pq-engraver.cc (stop_translation_timestep):
395         * lily/accidental-placement.cc (calc_positioning_done):
396         (stagger_apes):
397         * lily/beam.cc (get_beam_segments):
398         * lily/grob-array.cc (remove_duplicates):
399         use new vector_sort
400         
401         * input/mutopia/W.A.Mozart/mozart-hrn3-defs.ily:
402         ragged-last-bottom = ##f (test the new page breaker)
403
404         * flower/include/std-vector.hh (vector_sort): use STL sort stuff
405
406         * scm/define-context-properties.scm
407         (all-internal-translation-properties): remove properties that
408         were used to communicate page-turn stuff to the paper-column
409         engraver.
410
411         * lily/lily-guile.cc (robust_scm2string): new function
412
413         * lily/paper-column-engraver.cc: Clean up page turn stuff
414
415         * lily/page-turn-engraver.cc: Re-write the page turn logic here
416         instead of cluttering up paper-column-engraver.cc
417
418 2006-09-17  Nicolas Sceaux  <nicolas.sceaux@free.fr>
419
420         * scm/layout-page-dump.scm (scm): export utility function names,
421         to allow user writing cutsom dumping functions.
422
423         * scm/layout-page-layout.scm: export utility function names to
424         enable custom page breaking function writing. Tabify.
425         (line-next-space): use ?-suffix only for predicates
426         (page-maximum-space-to-fill): new function. Return the space
427         between first and bottom system of a page, to give to
428         space-systems.
429         (space-systems): use a space-to-fill argument (for instance as
430         computed by page-maximum-space-to-fill) instead of computing
431         internaly this space with the page height. That way, the caller
432         can adjust the space to use.
433         (make-page-from-systems, walk-paths): compute space to fill before
434         calling space-systems.
435
436 2006-09-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
437
438         * scm/script.scm (default-script-alist): set paddings for every
439         type here, increase for portato mark.
440
441         * scm/lily.scm (define-scheme-options): typo: add s, so it is 
442         -dinclude-eps-fonts
443
444 2006-09-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
445
446         * scm/define-grobs.scm (all-grob-descriptions): oops, typo:
447         use spanner::set-spacing-rods
448
449         * lily/note-column.cc: reformat.
450
451         * lily/rest-collision.cc (calc_positioning_done): fix whole/half
452         step positioning for note/rest combinations.
453
454         * input/regression/rest-note-collision.ly: new file.
455
456         * scm/define-grobs.scm (all-grob-descriptions): add
457         springs-and-rods
458
459         * flower/include/std-vector.hh: switch off again.
460
461         * VERSION (PATCH_LEVEL): bump to 2.9.18
462
463         * flower/include/std-string.hh: idem.
464
465         * flower/include/std-vector.hh (_GLIBCXX_DEBUG): set if NDEBUG not set.
466
467 2006-09-15  Mats Bengtsson  <mabe@drongo.s3.kth.se>
468
469         * ly/engraver-init.ly: Make FiguredBass accepted in GrandStaff and
470         PianoStaff. 
471
472 2006-09-08  Joe Neeman  <joeneeman@gmail.com>
473
474         * Documentation/user/page.itely: update page breaking documentation
475
476 2006-09-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
477
478         * lily/note-collision.cc (calc_positioning_done): only access
479         first head if available.
480
481         * lily/tuplet-engraver.cc: add tupletFullLengthNote to description.
482
483         * scm/framework-ps.scm (output-preview-framework): use new name.
484
485         * lily/program-option.cc (internal_set_option): use new names.
486
487         * Documentation/user/SConscript (lilypond_book_flags): update -d
488         variable names.
489
490         * Documentation/user/lilypond-book.itely (Inserting LilyPond
491         output into other programs): new variable names.
492
493         * scm/lily.scm (define-scheme-options): uniformize var names.
494
495         * lily/tuplet-engraver.cc (listen_tuplet_span): verify that
496         tuplets_ is non-empty before popping.
497
498 2006-09-07  Joe Neeman  <joeneeman@gmail.com>
499
500         * lily/spanner.cc (find_broken_piece): 
501         * lily/spacing-spanner.cc (get_columns): 
502         * lily/source-file.cc (get_line): 
503         * lily/simple-spacer.cc (get_column_description): 
504         * lily/keyword.cc (lookup): 
505         use the new binary search.
506
507         * flower/include/std-vector.hh: replace binary_search with
508         a more STL-like version
509
510 2006-09-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
511
512         * lily/tie-performer.cc: remove unused last_event_ property.
513         (class Tie_performer): add now_tied_heads_ property for
514         partially-tied heads.
515         (acknowledge_audio_element): when adding an Audio_note, put the
516         note in now_tied_heads_ if the audio note is partially tied.
517         (stop_translation_timestep): always include entries in
518         now_tied_heads_ in heads_to_tie_.
519
520         * lily/drum-note-performer.cc (process_music): look for tie-events
521         in the articulations; pass to Audio_note constructor.
522
523         * lily/note-performer.cc (process_music): look for tie-events in
524         the articulations; pass to Audio_note constructor.
525
526         * lily/audio-item.cc (Audio_note): Initialize tie_event_ in
527         constructor.
528
529         * lily/include/audio-item.hh (class Audio_note): add tie_event_.
530         include initializer in constructor.
531
532 2006-09-02  Joe Neeman  <joeneeman@gmail.com>
533
534         * lily/simple-spacer.cc (get_line_forces): Ignore loose columns
535         unless they are breakable. This fixes discrepancies between the forces
536         calculated here and the forces calculated in get_line_configuration.
537
538         * lily/grob.cc (pure_relative_y_coordinate): fix some
539         mis-estimation that was happening with piano staves.
540
541         * lily/constrained-breaking.cc (resize): don't choke if we get a
542         measure that won't fit on a line.
543         (combine_demerits): don't consider uniformity when ragged
544
545         * lily/page-spacing.cc (solve): why the f* were there two of these?
546         (calc_subproblem): properly handle the case where a system is taller
547         than the page.
548
549         * lily/system.cc (get_paper_system): ensure that all the permissions
550         and penalties are passed to the paper systems.
551
552         * lily/page-breaking.cc (create_system_list): support system-count.
553
554         * scm/define-grobs.scm (pure-print-callbacks): add
555         ly:script-interface::print
556
557         * lily/page-spacing.cc (min_page_count): fix calculation of min
558         pages if we are ragged and there are non-zero springs.
559
560         * scm/layout-page-layout.scm: if the pure-height estimates are under
561         the real height, allow space-systems to ignore padding if it is
562         needed in order to fit the systems on one page
563
564         * lily/optimal-page-breaking.cc (try_page_spacing): fix reading
565         ragged properties
566         (solve): fix performance problem. Make sure we always get at least
567         one solution
568
569         * lily/page-breaking.cc (make_pages): include write-page-breaks
570         and page-stencil
571
572         * lily/paper-score.cc (calc_breaking): remove Gourlay breaker
573
574         * scm/define-grobs.scm: add the new slur-callback
575         fix pure-relevant to not exclude grobs whose extent is already
576         calculated
577
578         * ly/paper-defaults.ly: make ly:optimal-breaking the new default
579         page breaker
580
581         * lily/slur.cc (pure_height): new callback to estimate the height
582         of a slur
583
584 2006-09-02  Graham Percival  <gpermus@gmail.com>
585
586         * Documentation/user/invoking.itely: small update on
587         MacOS X notes; thanks Trevor!
588
589 2006-09-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
590
591         * VERSION (MY_PATCH_LEVEL): release 2.9.17
592
593         * lily/lexer.ll: accept EOF in all states.
594
595         * lily/tempo-performer.cc (Tempo_performer): initialize last_tempo_.
596
597         * lily/source-file.cc (Source_file): always 0-terminate character
598         array, to prevent Flex from barfing.
599
600         * lily/global-context.cc (get_output): robustness: don't crash if
601         no Score context found.
602
603         * lily/include/book.hh (class Book): idem.
604
605         * lily/include/context-def.hh (struct Context_def): idem.
606
607         * lily/include/score.hh (class Score): don't derive from Input.
608
609         * lily/book.cc (Book): add a copy ctor. 
610
611         * buildscripts/output-distance.py (FileLink.calc_distance): count
612         orphans in distance too.
613
614         * python/midi.c (midi_parse_track): robustness: don't read past
615         end of string.
616
617         * ly/performer-init.ly: add Control_track_performer, move
618         Tempo_performer and Time_signature_performer to Score.        
619
620         * lily/score-performer.cc (acknowledge_audio_elements): override
621         from base class: add to audio-columns
622
623         * lily/control-track-performer.cc (add_text): new file: generate
624         the control track.
625
626         * lily/performance.cc: move output_header_track to
627         Control_track_performer ()
628
629         * lily/midi-walker.cc (Midi_walker): get channel in constructor.
630
631         * lily/include/midi-item.hh (class Midi_channel_item): insert
632         class into hierarchy, for items that can have a channel setting. Dehungarify.
633
634         * lily/include/performer.hh (class Performer): remove
635         play_element();  move functionality into announce/acknowledge.
636
637         * lily/audio-staff.cc (output): remove channel_ from Midi_track.
638
639         * lily/tie-engraver.cc (stop_translation_timestep): only wipe
640         heads_to_tie_ if there are new heads to tie.  Fixes polyphony in ties.
641
642 2006-08-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
643
644         * lily/tie-engraver.cc (stop_translation_timestep): robustness for
645         ambituses.
646
647         * lily/all-font-metrics.cc: remove TFM support.
648
649         * lily/include/tfm.hh: remove TFM support, TFM reader.
650
651         * lily/include/binary-source-file.hh: remove Binary_source_file.
652
653 2006-08-27  Graham Percival  <gpermus@gmail.com>
654
655         * Documentation/topdocs/NEWS.itely: add @c marker for
656         stuff I've processed.
657
658         * Documentation/user/ various: info from NEWS.
659
660 2006-08-27  Joe Neeman  <joeneeman@gmail.com>
661
662         * lily/paper-column-engraver.cc (finalize): Oops, this change
663         should have gone in on 2006-08-23
664
665 2006-08-26  Mats Bengtsson  <mabe@s3.kth.se>
666
667         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use double
668         quotes to quote arguments. Fixes Windows problem.
669
670         * python/lilylib.py (progress): idem
671
672 2006-08-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
673
674         * scripts/musicxml2ly.py: fix for importing
675         minor key signatures from MusicXML.  (Phillip Kirlin)
676
677 2006-08-24  Phillip Kirlin  <pkirlin@acm.org>
678
679         * python/musicxml.py: 
680         (Attributes.get_key_signature): now correctly retrieves mode from 
681         MusicXML. 
682
683 2006-08-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
684
685         * lily/parser.yy (output_def_body): take ownership of identifier
686         back to C++.
687
688         * Documentation/user/advanced-notation.itely (Metronome marks):
689         update use of \tempo in \midi.
690
691         * VERSION: release 2.9.16
692         
693 2006-08-24  Erik Sandberg  <mandolaerik@gmail.com>
694
695         * input/mutopia/*: upgrade to new midi tempo syntax (repairs make
696         web partially)
697
698 2006-08-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
699
700         * input/regression/tie-chord-partial.ly: clarify example.
701
702         * scm/define-music-properties.scm (all-music-properties): remove
703         untied.
704
705         * ly/music-functions-init.ly: remove \untied.
706
707         * lily/tie-engraver.cc (struct Head_event_tuple): store both
708         stream events and music events.
709         (stop_translation_timestep): search acknowledged heads for
710         tie-event.
711
712         * input/regression/tie-chord-partial.ly: new file.
713
714         * scm/define-markup-commands.scm (char): use ly:wide-char->utf-8
715         for \char markup command.
716
717         * scm/define-event-classes.scm (unlistened-music-event-classes): idem.
718
719         * scm/define-music-types.scm (music-descriptions): consistency:
720         Use solo-{one,two}-event iso. solo-[12]-event.
721
722         * lily/part-combine-engraver.cc (process_music):
723         Use solo-{one,two}-event iso. solo-[12]-event.
724
725         * ly/declarations-init.ly (partCombineListener): add Timing as
726         alias
727
728         * flower/std-string.cc (string_copy): use copy ()
729
730         * lily/source-file.cc (Source_file): use copy(). Remove contents_str0()
731
732 2006-08-24  Graham Percival  <gpermus@gmail.com>
733
734         * Documentation/user/changing-defaults.itely, global.itely,
735         lilypond-book.itely, page.itely: minor changes from mailist.
736
737 2006-08-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
738
739         * buildscripts/mutopia-index.py (allfiles): filter lily-XXX and
740         snippet-map
741
742         * scm/define-context-properties.scm
743         (translator-property-description): robustness: detect type errors
744         in property definitions.
745
746         * lily/parser.yy (score_body): protect SCORE_IDENTIFIER result
747         after getting it from SCM. 
748
749         * lily/smobs.cc (protect_smob): switch off fancy smob protection
750         for now. 
751
752         * lily/include/performer.hh (class Performer): strip get_tempo()
753         method.
754
755         * lily/midi-def.cc: strip file.
756
757         * lily/lexer.ll (Lily_lexer): don't protect hash key separately.
758
759         * lily/include/context-def.hh (struct Context_def): use
760         VIRTUAL_COPY_CONSTRUCTOR().
761
762         * lily/source-file.cc: smobification.
763
764         * lily/include/source-file.hh (class Source_file): smobify
765         Source_file. Trim redundant members.
766
767         * lily/parser.yy (Lily_lexer::try_special_identifiers): unprotect
768         clones after creation. This plugs a huge memory leak.
769
770         * python/convertrules.py (FatalConversionError.sub_tempo):
771         complete rule for \midi{ \tempo }
772
773         * input/mutopia/J.S.Bach/wtk1-fugue2.ly (bassdux): idem.
774
775         * input/mutopia/F.Schubert/morgenlied.ly (pianoLH): update tempo.
776
777 2006-08-23  Joe Neeman  <joeneeman@gmail.com>
778
779         * input/regression/optimal-page-breaking-hstretch.ly: test for
780         ragged-last-bottom also
781
782         * lily/paper-column-engraver.cc (finalize): make the end of a score
783         breakable by default. This is to balance out a change in behaviour
784         of the page-turn-breaker which no longer makes the end of a score
785         breakable.
786
787         * lily/paper-book.cc (pages): set the systems_ once the pages are
788         broken
789
790         * lily/page-turn-page-breaking.cc (calc_subproblem): use the new
791         Page_breaking interface.
792
793         * lily/page-breaking.cc (class Page_breaking): make the interface
794         more consistent and provide abstractions for dealing with
795         Line_divisions.
796
797         * lily/optimal-page-breaking.cc (solve): use a more straightforward
798         algorithm. Use the new interface to Page_breaking.
799
800         * lily/page-spacing.cc: better support for ragged-bottom and
801         ragged-last-bottom
802
803 2006-08-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
804
805         * python/convertrules.py (conv): warning on \tempo{}
806
807         * ly/performer-init.ly: set tempoWholesPerMinute.
808
809         * ly/midi-init.ly: remove \midi
810
811         * lily/tempo-performer.cc: look at tempoWholesPerMinute to set
812         MIDI tempo.
813
814         * lily/metronome-engraver.cc (process_music): use tempoUnitCount
815         tempoUnitDuration for determining what to print.
816
817         * lily/lyric-extender.cc: typo.
818
819         * lily/parser.yy (output_def_body): disallow \tempo in \midi{}
820
821         * lily/duration-scheme.cc (LY_DEFINE): ly:duration-length: new
822         function.
823
824         * scm/lily.scm (define-scheme-options): alphabetize, add eps-pad-boxes.
825
826         * scm/framework-ps.scm (dump-stencil-as-EPS): only pad boxes if
827         eps-pad-boxes is set.
828
829         * scripts/lilypond-book.py (main): use -deps-pad-boxes.
830
831         * THANKS: update sponsors.
832
833         * ly/english.ly: quarter tone naming (thanks, Trevor Baca)
834
835         * Documentation/topdocs/NEWS.tely (Top): doc new feature.
836
837         * input/regression/tie-chord-untied.ly: new file.
838
839         * lily/tie-engraver.cc (acknowledge_note_head): check 'untied property.
840
841         * scm/define-music-properties.scm (all-music-properties): add
842         'untied property.
843
844         * buildscripts/mutopia-index.py (allfiles): look for .ly rather
845         than .ly.txt.
846         (headertext_nopics): sanitize no-examples text.
847
848         * scm/page.scm (make-page-stencil): don't rely on extents of
849         page-stencil. This fixes spurious space around .EPS files produced
850         with the EPS backend.
851
852 2006-08-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
853
854         * lily/stencil-scheme.cc (LY_DEFINE): make extent arguments optional.
855
856         * lily/hara-kiri-engraver.cc (process_music): remember
857         keepAliveInterfaces after processing \set
858
859         * lily/lyric-extender.cc (print): support left/right-padding for
860         extenders.
861
862         * scm/documentation-generate.scm (string-append): revert lilypond/
863         path, doc why.
864
865 2006-08-20  Graham Percival  <gpermus@gmail.com>
866
867         * Documentation/user/lilypond.tely: clarification to
868         license presentation (not to actual license).
869
870         * Documentation/user/basic-notation.itely,
871         instrument-notation.itely: minor changes.
872
873         * input/ {regression, test}/+.ly: clarification to
874         text (you can click on examples).  Thanks, Mats!
875
876         * input/manual/bar-lines.ly: adds ||: repeats.
877
878 2006-08-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
879
880         * make/ly-vars.make (OMF_FILES): strip ps.gz from OMF_FILES 
881
882         * scm/documentation-lib.scm (texi-file-head): category LilyPond.
883
884         * Documentation/user/lilypond.tely: strip lilypond/ from info
885         links, rename to category LilyPond
886
887         * lily/pango-font.cc (description_string): new function.
888
889         * VERSION: release 2.9.15
890
891         * lily/spacing-engraver.cc (stop_translation_timestep): use
892         Dscho's fix for spacing spanner. 
893
894         * scm/define-music-types.scm (music-descriptions): use
895         apply-output-event for ApplyOutputEvent
896
897         * lily/output-property-engraver.cc (listen_apply_output): rename
898         from listen_layout_instruction.
899
900         * lily/piano-pedal-engraver.cc (struct Pedal_type_info): new
901         function protect()
902
903 2006-08-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
904
905         * scm/lily.scm (lilypond-all): option read-file-list: substitute
906         commandline args with contains, split by \n.
907
908         * scripts/lilypond-book.py (Lilypond_file_snippet.my_system):
909         write snippet-names file, call with -dread-file-list. Fixes
910         command limitations on 64-bit systems.
911
912         * input/regression/stencil-color-rotation.ly: new file.
913
914         * lily/include/translator.hh (struct Acknowledge_information):
915         revert: don't use Protected_scm in global objects, as GUILE can't
916         handle gc_unprotect from automated destructors on MacOS X.
917  
918         * lily/grob.cc (get_print_stencil): use retval.expr() as base for
919         color, not the original stencil. Fixes combinations of
920         color/transparency/rotation. 
921
922         * scripts/lilypond-book.py (main): add --formats=eps for
923         texinfo/latex.
924
925         * lily/spacing-engraver.cc (stop_translation_timestep): don't
926         crash if spacing_ is nonexistent.
927
928 2006-08-14  Mats Bengtsson  <mabe@s3.kth.se>
929
930         * scripts/lilypond-book.py (output): Remove obsolete(!?)
931         \catcode`\@=12 in the LaTeX output.
932
933 2006-08-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
934
935         * scm/define-music-types.scm (music-descriptions):
936         use sustain-event iso. sustain-pedal-event.
937
938 2006-08-11  Joe Neeman  <joeneeman@gmail.com>
939
940         * scripts/convert-ly.py: honour the -n command-line switch
941
942 2006-08-10  Han-Wen Nienhuys  <hanwen@lilypond.org>
943
944         * scm/output-lib.scm (bar-line::calc-glyph-name): add dashed liine
945         break specification.
946
947 2006-08-10  Joe Neeman  <joeneeman@gmail.com>
948
949         * Documentation/user: convert-ly the user manual
950
951 2006-08-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
952
953         * stepmake/aclocal.m4: version check patch (thanks MWD)
954
955         * ly/music-functions-init.ly: robustness. Don't crash if
956         currentBarNumber is not a number.
957
958         * VERSION (PATCH_LEVEL): bump.
959
960 2006-08-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
961
962         * stepmake/aclocal.m4: better version check; handle fooX.Y
963         binaries too.
964
965         * ly/performer-init.ly: instrument name fixup.
966
967         * input/manual/chord-names-jazz.ly (banterProperties):
968         instrumentName update
969
970         * scm/define-event-classes.scm (lambda): use ly:is-listened-event-class
971
972         * lily/ly-module.cc (ly_module_symbols): use ly_hash_table_keys
973
974         * lily/translator.cc (LY_DEFINE): ly:is-listened-event-class: new
975         function. Use hash tables to check membership.
976
977         * lily/general-scheme.cc (LY_DEFINE): new function.
978
979         * lily/piano-pedal-engraver.cc (struct Pedal_type_info): idem
980
981         * lily/include/translator.hh (struct Acknowledge_information): add
982         Protected_scm
983
984         * ly/music-functions-init.ly: change name to BreathingEvent
985
986         * input/regression/*.ly: apply it.
987
988         * python/convertrules.py (conv): better instrumentName conversion
989         rule.
990
991         * scm/define-music-types.scm (music-descriptions): add
992         line-break-event to LineBreakEvent music
993
994         * lily/music.cc (to_event): don't crash if music type not set.
995
996         * lily/spacing-loose-columns.cc (set_loose_columns): don't barf if
997         spacing not set.
998
999         * lily/spacing-engraver.cc (stop_translation_timestep): set
1000         spacing for proportional notation too.
1001
1002         * scm/translation-functions.scm (format-bass-figure): inspect
1003         stream-event.
1004
1005         * scripts/lilypond-book.py (bindir): add bindir to $PATH.
1006
1007 2006-08-08  Joe Neeman  <joeneeman@gmail.com>
1008
1009         * lily/include/constrained-breaking.hh: add Line_details (Prob*)
1010
1011         * scm/page.scm (make-page): make it friendlier to call (esp. from C++)
1012
1013         * scm/layout-page-layout.scm (make-page-from-systems): new function
1014         (optimal-page-breaks): use the new page-breaking calling convention
1015
1016         * scm/define-context-properties.scm (all-user-translation-properties):
1017         add revokePageTurns
1018
1019         * lily/paper-column-engraver.cc (stop_translation_timestep): add
1020         revokePageTurns  functionality. If there is a special barline within
1021         the breakable region, break there instead of at the end of the region.
1022
1023         * lily/paper-book.cc (pages): use the new page-breaking calling
1024         convention
1025
1026 2006-08-07  Erik Sandberg  <mandolaerik@gmail.com>
1027
1028         * lily/lexer.ll, lily/source-file.cc: Add \sourcefileline command
1029
1030         * scripts/lilypond-book.py: insert \sourcefileline command in
1031         output, so lilypond error messages refer to the spot in the
1032         original .lytex / .itely sourcefile.
1033
1034 2006-08-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
1035
1036         * lily/spacing-loose-columns.cc (set_loose_columns): oops: use
1037         space to next column for distance to fixed col.
1038
1039         * VERSION (PACKAGE_NAME): release 2.9.14
1040
1041         * lily/pitched-trill-engraver.cc (make_trill): do set_parent also
1042         if no accidental.
1043
1044         * lily/accidental-engraver.cc (process_acknowledged): don't create
1045         accidental for trill span event. This fixes spurious accidentals
1046         on trills.
1047
1048 2006-08-04  Mats Bengtsson  <mabe@s3.kth.se>
1049
1050         * scm/define-grob-properties.scm (all-user-grob-properties):
1051         Clarify documentation of side-axis and direction. Thanks to Paul
1052         for the inspiration.
1053
1054         * lily/bar-line.cc: Add documentation for "||:" also in the
1055         interface documentation.
1056
1057 2006-08-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
1058
1059         * lily/spacing-loose-columns.cc (set_loose_columns): bugfix.
1060
1061         * lily/paper-column.cc (set_system): new function.
1062
1063         * lily/spacing-engraver.cc (stop_translation_timestep): store
1064         SpacingSpanner refs in Paper_column.
1065
1066         * lily/spacing-loose-columns.cc (set_loose_columns): rewrite
1067         compute loose clique spacing using GraceSpacing/SpacingSpanner.
1068
1069 2006-08-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
1070
1071         * lily/beam-engraver.cc (listen_beam): add method for
1072         Grace_beam_engraver too.
1073
1074 2006-08-03  Mats Bengtsson  <mabe@s3.kth.se>
1075
1076         * python/convertrules.py: Fix indentation bug that broke
1077         conversion of files older than 1.3.117.
1078         Fix escape error in the description for 2.9.6.
1079
1080 2006-08-02  Erik Sandberg  <mandolaerik@gmail.com>
1081
1082         * lily/*-engraver.cc: convert all try_music functions to listen_*
1083         functions.
1084
1085         * lily/piano-pedal-engraver.cc: some additional cleanups: use
1086         enums to represent pedal types, and calculate more data statically.
1087
1088         * scm/part-combiner.scm (recording-group-emulate): create a
1089         softcoded substitute for recording-group-engraver.cc.
1090
1091         * lily/music.cc: make a common transpose function for events and
1092         music
1093
1094         * ly/declarations-init.ly: change melisma/melismaEnd. Eliminates
1095         ManualMelismaEvent, and obsoletes Melisma_translator.
1096
1097 2006-08-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
1098
1099         * input/test/instrument-name-align.ly: update version.
1100
1101 2006-08-02  Mats Bengtsson  <mabe@s3.kth.se>
1102
1103         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
1104         Doc the --pdf flag to lilypond-book.
1105
1106 2006-07-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
1107
1108         * Documentation/topdocs/NEWS.tely (Top): add description.
1109
1110         * input/regression/tuplet-full-length-note.ly: add file.
1111
1112         * lily/instrument-name-engraver.cc (acknowledge_axis_group):
1113         always store axis group.
1114
1115 2006-07-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
1116
1117         * input/regression/instrument-switch.ly: new file.
1118
1119         * lily/instrument-switch-engraver.cc (process_music): new file.
1120
1121         * ly/engraver-init.ly: add Instrument_switch_engraver
1122
1123         * ly/music-functions-init.ly: \instrumentSwitch
1124
1125         * scm/define-context-properties.scm
1126         (all-user-translation-properties): add instrumentCueName
1127
1128         * scm/define-grobs.scm (all-grob-descriptions): add InstrumentSwitch
1129
1130 2006-07-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
1131
1132         * ly/music-functions-init.ly: music function \transposition.
1133
1134         * lily/parser.yy (command_element): softcode \transposition.
1135
1136         * lily/fall-engraver.cc (process_music): delta-pitch -> delta-step.
1137         (process_music): oops.
1138
1139         * lily/instrument-name-engraver.cc (start_spanner): new
1140         function. Create spanner when property changes.
1141         (stop_spanner): new function.
1142
1143         * python/convertrules.py (conv): add rule.
1144
1145         * lily/instrument-name-engraver.cc: shortVocalName iso. vocNam,
1146         shortInstrumentName iso. instr.
1147
1148         * scm/output-ps.scm (dashed-line): add phase argument to
1149         dashed-line.
1150
1151         * lily/bar-line.cc (dashed_bar_line): new function.
1152         (compound_barline): support \bar "dashed". 
1153
1154         * lily/lily-parser-scheme.cc (LY_DEFINE): only write
1155         --output=DIR to DIR/BASE if it is a dir. 
1156
1157         * flower/file-name.cc (file_part): new function
1158         (dir_part): new function
1159
1160         * lily/lily-parser-scheme.cc (LY_DEFINE): 
1161
1162         * DEDICATION: update
1163
1164 2006-07-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
1165
1166         * lily/instrument-name-engraver.cc: formatting.
1167
1168         * python/convertrules.py (conv): bugfix for \epsfile.
1169
1170 2006-07-25  Joe Neeman  <joeneeman@gmail.com>
1171
1172         * lily/grob.cc:
1173         
1174         * lily/gourlay-breaking.cc: Oops, these should have been included
1175         in my last commit
1176
1177 2006-07-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
1178
1179         * scripts/*.py (program_name): cleanup relocation snippets.
1180
1181         * scripts/convert-ly.py (datadir): remove LILYPONDPREFIX support.
1182
1183 2006-07-24  Joe Neeman  <joeneeman@gmail.com>
1184
1185         * scm/define-grobs.scm (all-grob-descriptions): make NonMusicalPaperColumn
1186         page-breakable by default
1187
1188         * scm/layout-page-layout.scm (space-systems): fix bug where the force isn't
1189         correctly calculated for a single-system page
1190
1191         * scm/lily-library.scm (interval-sane?): also check that the first number is no
1192         bigger than the second number
1193
1194         * lily/simple-spacer.cc (solve): allow compression even when ragged (but we
1195         acknowledge that we aren't satisfying constraints)
1196
1197         * lily/hara-kiri-group-spanner.cc (request_suicide): give equal treatment to
1198         non-Items
1199
1200         * lily/grob.cc (pure_height): add minimum-Y-extent
1201
1202         * lily/gourlay-breaking.cc (solve): don't ignore a compression force, even if we're
1203         ragged
1204
1205         * lily/constrained-breaking.cc: convert code to use new Matrix class
1206         (get_best_solution): new function
1207
1208         * scm/page.scm (make-page-stencil): don't crash if we annotate-layout when there
1209         is a page with no systems
1210
1211 2006-07-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
1212
1213         * VERSION (PACKAGE_NAME): release 2.9.13
1214
1215         * scm/define-grobs.scm (all-grob-descriptions): remove stray
1216         assignment.
1217
1218 2006-07-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
1219
1220         * Documentation/topdocs/NEWS.tely (Top): doc new features.
1221
1222         * scm/output-lib.scm (grace-spacing::calc-shortest-duration): new
1223         function.
1224
1225         * scm/define-grob-properties.scm (all-user-grob-properties):
1226         remove grace-space-factor.
1227
1228         * scm/define-grob-interfaces.scm (grace-spacing-interface): add
1229         grace-spacing-interface
1230         (spacing-options-interface): add.
1231
1232         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): add Grace_spacing_engraver
1233
1234         * lily/spacing-options.cc (get_duration_space): move function from spacing-basic.cc
1235
1236         * lily/spacing-basic.cc (note_spacing): do init_from_grob on
1237         GraceSpacing object.
1238
1239         * lily/note-spacing.cc: fix prop list formatting
1240
1241         * lily/beaming-pattern.cc (de_grace): new function. Sensible
1242         beaming for grace notes too.
1243
1244         * input/regression/spacing-grace.ly: update.
1245
1246         * lily/grace-spacing-engraver.cc: new file.
1247
1248         * lily/spacing-spanner.cc: add strict-grace-spacing.
1249
1250 2006-07-20  Graham Percival  <gpermus@gmail.com>
1251
1252         * lily/parser.yy: compile fix.
1253
1254 2006-07-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
1255
1256         * scm/define-grobs.scm (all-grob-descriptions): typo.
1257
1258         * scm/framework-eps.scm (dump-stencils-as-EPSes): just strip
1259         .eps extension from includegraphics.
1260
1261         * scripts/lilypond-book.py (main): add support for --pdf. 
1262
1263         * lily/spacing-spanner.cc (calc_common_shortest_duration): use
1264         callback to compute common shortest duration.
1265         (set_springs): typo.
1266
1267         * scm/define-grob-properties.scm (all-user-grob-properties): add
1268         strict-grace-spacing.
1269
1270         * lily/spacing-determine-loose-columns.cc (is_loose_column):
1271         support float_grace_columns_.
1272
1273         * lily/spacing-options.cc (init_from_grob): new file.
1274
1275         * Documentation/topdocs/NEWS.tely (Top): doc tupletFullLengthNote.
1276
1277         * input/regression/spacing-loose-grace.ly: new file.
1278
1279         * Documentation/topdocs/NEWS.tely (Top): document new feature.
1280
1281         * lily/tuplet-engraver.cc (struct Tuplet_description): read
1282         tupletFullLengthNote too. Choose right bound depending on value.
1283
1284         * input/regression/tuplet-full-length-note.ly: new file.
1285
1286 2006-07-19  Erik Sandberg  <mandolaerik@gmail.com>
1287
1288         * lily/*-performer.cc: Converted try_music to listen_*
1289
1290         * lily/grob-info.cc, lily/engraver.cc: represent the cause of grob
1291         as a stream-event internally. Introduce event_cause (), deprecate
1292         music_cause ().
1293
1294         * scm/define-music-types.scm: Removed BusyPlayingEvent
1295         
1296 2006-07-19  Mats Bengtsson  <mabe@s3.kth.se>
1297
1298         * Documentation/user/advanced-notation.itely (Font selection):
1299         Document how to get a list of available fonts using 'lilypond
1300         -dshow-available-fonts blabla'.
1301
1302 2006-07-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1303
1304         * GNUmakefile.in: filter lily-XXX.pdf files.
1305
1306         * scm/define-grob-interfaces.scm (bend-after-interface): add thickness.
1307
1308         * scm/define-grob-properties.scm (all-internal-grob-properties):
1309         remove delta-pitch. Use delta-position everywhere.
1310
1311         * scm/output-lib.scm (fall::print): use new order.
1312
1313         * scm/output-ps.scm (path): reorder arguments.
1314
1315         * scm/output-svg.scm (path): support for path primitive.
1316
1317         * input/regression/bend-after.ly: new file.
1318
1319         * Documentation/user/GNUmakefile ($(outdir)/%.pdf): foolproof
1320         recipe for eps -> pdf conversion.
1321
1322 2006-07-19  Erik Sandberg  <mandolaerik@gmail.com>
1323
1324         * lily/parser.yy, lily/lexer.ll: added some simplifications by
1325         Angelo Contardi.
1326
1327 2006-07-19  Graham Percival  <gpermus@gmail.com>
1328
1329         * input/manual/screech-boink.ly: moved to here.
1330
1331         * input/screech-boink.ly: deleted.
1332
1333         * scm/define-grob-properties.scm: clarify doc string.
1334
1335 2006-07-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1336
1337         * Documentation/topdocs/NEWS.tely (Top): doc new feature.
1338
1339         * scm/output-ps.scm (path): define path.
1340
1341         * scm/define-stencil-commands.scm
1342         (ly:register-stencil-expression): add path.
1343
1344         * scm/define-music-properties.scm (all-music-properties): add delta-pitch.
1345
1346         * ly/engraver-init.ly: add Fall_engraver
1347
1348         * lily/parser.yy (music_function_event): allow musicfunction
1349         without music arg as music_function_event.
1350
1351         * lily/grob-scheme.cc (LY_DEFINE):
1352         ly:grob-robust-relative-extent. New function.
1353
1354         * scm/define-grobs.scm (all-grob-descriptions): add BendAfter
1355
1356         * scm/define-music-types.scm (music-descriptions): add BendAfterEvent.
1357
1358         * scm/output-lib.scm (fall::print): new function
1359
1360         * lily/fall-engraver.cc (stop_fall): new file.
1361
1362         * ly/music-functions-init.ly: alphabetise.
1363
1364         * Documentation/user/GNUmakefile (OUT_PNG_IMAGES): pdf iso. eps as
1365         base.
1366
1367 2006-07-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
1368
1369         * VERSION (PATCH_LEVEL): bump version. Release 2.9.12
1370
1371         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
1372         doc pdftex usage.
1373
1374         * lily/translator-group.cc (connect_to_context): non const error message.
1375
1376         * Documentation/user/GNUmakefile ($(outdir)/%.pdf): update to use PDF
1377
1378         * scm/paper.scm (internal-set-paper-size): define landscape to #f
1379         if unset.
1380
1381         * scm/framework-ps.scm (convert-to-pdf): swap h and w in case of landscape. 
1382
1383         * stepmake/stepmake/texinfo-rules.make: strip DVI support.
1384
1385         * scm/framework-eps.scm (dump-stencils-as-EPSes): generate
1386         systems.pdftex too.
1387
1388         * scm/backend-library.scm (postscript->pdf): use -dEPSCrop for PDF.
1389
1390         * make/lilypond-vars.make (TEXINPUTS): add pdf output format.
1391
1392         * Documentation/topdocs/NEWS.tely (Top): add pdftex note.
1393
1394         * scm/output-ps.scm (resetrotation): use gsave/grestore for rotation.
1395
1396         * lily/main.cc (parse_argv): don't overwrite previous --formats string.
1397
1398         * scm/backend-library.scm (postscript->pdf): strip .eps too. 
1399
1400 2006-07-14  Nicolas Sceaux  <nicolas.sceaux@free.fr>
1401
1402         * scm/layout-page-layout.scm: Define module, tidy code, use more
1403         functions iso. a single big one.
1404
1405         * scm/layout-page-dump.scm: move page dump functions used in two
1406         pass spacing to this file. Define module.
1407
1408         * scm/lily.scm (ly:load): don't load layout-page-layout.scm
1409          (separate module)
1410
1411         * ly/paper-defaults.ly: use module layout-page-layout.
1412
1413 2006-07-14  Erik Sandberg  <mandolaerik@gmail.com>
1414
1415         * lily/music.cc: Revised MusicEvent event class. It now contains
1416         event data directly instead of encapsulating it in music. The
1417         previously used class is renamed to OldMusicEvent.
1418
1419         * lily/stream-event.cc: Stream events are now probs.
1420         
1421         * lily/translator-group.cc, lily/translator.cc: Translators can
1422         now listen directly to stream events, by using macros
1423         [DECLARE,IMPLEMENT]_TRANSLATOR_LISTENER.
1424
1425         * lily/arpeggio-engraver.cc: Converted to use new event system
1426
1427         * THANKS: Corrected spelling mistake.
1428
1429 2006-07-12  Graham Percival  <gpermus@gmail.com>
1430
1431         * Documentation/user/SConscript, make/lilypond-vars.make,
1432         input/GNUmakefile: doc build looks in input/manual instead
1433         of input/test/
1434
1435         * input/manual/ GNUmakefile, SConscript: build files for
1436         input/manual/
1437
1438         * input/test/ various: some files moved to input/manual/ 
1439
1440         * Documentation/user/basic-notation.itely: small updates;
1441         thanks Kieren and Charles!
1442
1443 2006-07-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
1444
1445         * VERSION (PACKAGE_NAME): release 2.9.11
1446
1447         * Documentation/topdocs/NEWS.tely (Top): update prop value 
1448
1449         * Documentation/user/basic-notation.itely (Tuplets): new property
1450         value.
1451
1452 2006-07-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
1453
1454         * python/convertrules.py (conv): tweaks. 
1455
1456         * VERSION (PATCH_LEVEL): bump version.
1457
1458         * python/convertrules.py (conv): add rule for
1459         tupletNumberFormatFunction.
1460
1461         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
1462         tupletNumberFormatFunction.
1463
1464         * scm/define-grobs.scm (all-grob-descriptions): calc TupletNumber
1465         text through 'text callback.
1466
1467         * lily/time-scaled-music-iterator.cc (construct_children): copy
1468         tweaks generated events.
1469
1470         * scm/define-context-properties.scm
1471         (all-user-translation-properties): remove tupletNumberFormatFunction
1472
1473         * lily/tuplet-engraver.cc (process_music): don't read
1474         tupletNumberFormatFunction
1475
1476         * scm/output-lib.scm (tuplet-number::calc-fraction-text): new
1477         function.
1478
1479 2006-07-11  Erik Sandberg  <mandolaerik@gmail.com>
1480
1481         * lily/global-context-scheme.cc: Separated ly:run-translator into
1482         smaller pieces.
1483
1484         * lily/score-engraver.cc, lily/score-performer.cc,
1485         scm/define-context-properties.scm: Make paper/midi output
1486         accessable as a context property.
1487
1488         * lily/score-translator.cc, lily/score-context.cc: Removed.
1489
1490 2006-07-07  Guido Amoruso  <guidonte@katamail.com>
1491
1492         * scm/ps-to-png.scm (Module): 
1493         * scm/framework-tex.scm (Module): 
1494         * scm/framework-ps.scm (Module): 
1495         * scm/backend-library.scm (Module): 
1496         * scm/framework-ps.scm: invoke gs with "-dDEVICEWIDTHPOINTS" and
1497         "dDEVICEHEIGHTPOINTS".
1498
1499 2006-07-04  Graham Percival  <gpermus@gmail.com>
1500
1501         * Documentation/user/ various: general improvements to
1502         "working with lilypond files" section.
1503
1504 2006-07-03  Erik Sandberg  <mandolaerik@gmail.com>
1505
1506         * lily/sequential-iterator.cc: Change the default get_music_list
1507         to read elements-callback music property
1508
1509         * scm/define-music-types.scm, scm/music-functions.scm: Cleaner
1510         processing of multimeasure rests. Softcoded
1511         sequential-music-iterator.
1512
1513         * lily/sequential-music-iterator.cc: Removed.
1514
1515 2006-06-28  Graham Percival  <gpermus@gmail.com>
1516
1517         * Documentation/user/basic-notation.itely: clarify \repeatTie.
1518
1519 2006-06-27  Erik Sandberg  <mandolaerik@gmail.com>
1520
1521         * lily/parser.yy: Wrap non-post-events in EventChords before
1522         assigning them to identifiers.
1523
1524 2006-06-27  Mats Bengtsson  <mabe@s3.kth.se>
1525
1526         * lily/bar-line.cc (compound_barline): Fix parenthesis error,
1527         gives correct vertical placement of \bar ":" in all staff
1528         sizes. Thanks Martial!
1529
1530 2006-06-26  Graham Percival  <gpermus@gmail.com>
1531
1532         * Documentation/user/invoking.itely : minor update from mailist.
1533
1534 2006-06-26  Erik Sandberg  <mandolaerik@gmail.com>
1535
1536         * lily/ various: Introduce stream events of types Prepare,
1537         OneTimeStep, CreateContext, AnnounceNewContext, RemoveContext,
1538         ChangeContext, SetProperty, RevertProperty, Override and Revert.
1539
1540         * lily/global-context*.cc: Time is now -inf before iteration
1541         starts.
1542
1543         * lily/include/context.hh: Removed unique_, init_
1544
1545         * Documentation/topdocs/NEWS: Make the feathered beam example
1546         avoid triggering a bug.
1547
1548 2006-06-24  Graham Percival  <gpermus@gmail.com>
1549
1550         * Documentation/user/ various: small additions from mailist.
1551
1552 2006-06-22  Mats Bengtsson  <mabe@s3.kth.se>
1553
1554         * ly/performer-init.ly: Add some missing links in the context
1555         hierarchy for MIDI output. There are probably some more missing!
1556
1557 2006-06-21  Graham Percival  <gpermus@gmail.com>
1558
1559         * Documentation/user/ various: minor spelling fixes;
1560         thanks Dave Luttinen!
1561
1562         * Documentation/user/ various: small clarifications;
1563         thanks Anthony Youngman!
1564
1565 2006-06-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
1566
1567         * po/fr.po: add \n appropriately.
1568
1569         * lily/lexer.ll: remove ? from version-seen?  
1570
1571 2006-06-19  John Mandereau  <john.mandereau@free.fr>
1572
1573         * po/fr.po; update translation, by Jean-Charles Malahieude and
1574         John Mandereau.
1575
1576 2006-06-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1577
1578         * THANKS: add Markus Schneider.
1579
1580         * lily/tab-staff-symbol-engraver.cc: derive from Engraver, not
1581         Staff_symbol_engraver
1582
1583         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): don't
1584         replace staff_engraver
1585
1586         * lily/staff-symbol-engraver.cc (stop_spanner): announce end of
1587         spanner.
1588
1589         * lily/staff-collecting-engraver.cc
1590         (acknowledge_end_staff_symbol): new function
1591
1592         * lily/volta-engraver.cc (acknowledge_end_staff_symbol): new function. 
1593
1594         * lily/staff-collecting-engraver.cc
1595         (acknowledge_end_staff_symbol): new function.
1596
1597         * lily/main.cc: switch on relocation by default.
1598
1599 2006-06-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
1600
1601         * lily/spacing-spanner.cc (musical_column_spacing): set
1602         compound_fixed_note_space to 0.0. Document why.
1603
1604         * lily/simple-spacer.cc (is_sane): also have a kludge for numeric
1605         range of inverse_hooke_
1606         (Simple_spacer): init completely.
1607         (fits): const
1608         (get_line_configuration): don't use cols.resize(); it introduces
1609         initialized data.
1610
1611         * scm/framework-ps.scm (dump-page): add setstrokeadjust. 
1612
1613         * ps/music-drawing-routines.ps: remove selectfont L1 hack.
1614
1615         * lily/beaming-pattern.cc (best_splitpoint_index): urg, 2nd
1616         try. Divide by beatlength.
1617
1618         * input/regression/beaming-ternary-metrum.ly: update doc.
1619         add beatLength hack.
1620
1621         * scm/music-functions.scm (make-time-signature-set): add
1622         standard-beat-grouping. 
1623
1624 2006-06-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
1625
1626         * input/regression/tie-whole.ly: new file.
1627
1628         * lily/tie-formatting-problem.cc (set_column_chord_outline): don't
1629         cross center of note head in case of invisible stem. 
1630
1631 2006-06-16  Graham Percival  <gpermus@gmail.com>
1632
1633         * Documentation/user/ various: small fixes from mailist.
1634
1635 2006-06-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
1636
1637         * lily/breathing-sign.cc (offset_callback): idem.
1638
1639         * lily/align-interface.cc (align_to_fixed_distance): remove
1640         hungarian suffix.
1641
1642         * lily/beaming-pattern.cc (count_factor_twos): oops. We want
1643         x%2==0.
1644
1645 2006-06-15  Han-Wen Nienhuys  <hanwen@lilypond.org>
1646
1647         * VERSION (PACKAGE_NAME): release 2.9.9
1648
1649         * ly/lilypond-book-preamble.ly: add \version
1650
1651 2006-06-14  Han-Wen Nienhuys  <hanwen@lilypond.org>
1652
1653         * scripts/lilypond-book.py (PREAMBLE_LY): include
1654         lilypond-book-preamble.ly
1655
1656         * lily/stem.cc (get_beaming): return max of 0 and
1657         scm_ilength. Fixes slurring from/to beams.
1658
1659         * ly/lilypond-book-preamble.ly: new file.
1660
1661         * lily/slur.cc: add inspect-index feature.
1662
1663 2006-06-13  Graham Percival  <gpermus@gmail.com>
1664
1665         * Documentation/user/tutorial.itely: trivial fix.
1666
1667 2006-06-13  Erik Sandberg  <mandolaerik@gmail.com>
1668
1669         * lily/parser.yy, scm/ly-syntax-constructors.scm: Produce almost
1670         all non-event music in the parser via MAKE_SYNTAX.
1671
1672         * lily/parser-scheme.cc: Add ly:parser-error function
1673
1674         * scm/paper.scm: fix typo
1675
1676 2006-06-13  Han-Wen Nienhuys  <hanwen@lilypond.org>
1677
1678         * THANKS: add RT.
1679
1680         * lily/font-config.cc (init_fontconfig): add warning if cache_file
1681         is null.
1682
1683         * buildscripts/output-distance.py (test_compare_signatures):
1684         timing routines.
1685         (read_signature_file): use new signature format.
1686
1687         * scm/stencil.scm (write-system-signature): simpler signature
1688         format.
1689
1690         * lily/stem.cc (calc_stem_end_position): calc quantized-positions
1691         for beamed case. 
1692
1693         * lily/note-spacing.cc (stem_dir_correction): don't inspect
1694         stem_end_position, but estimate instead. 
1695
1696         * lily/tuplet-bracket.cc (calc_positions): look at
1697         stem-end-position for tuplet bracket slope. Fixes sloped tuplet
1698         brackets narrower than beams. 
1699
1700         * lily/lexer.ll: set version-seen? even if version is
1701         INVALID. 
1702
1703         * lily/rest.cc (y_offset_callback): bugfix: decide position
1704         override based on scm_is_number(). Fixes \rest on center staff
1705         line. 
1706
1707         * lily/beaming-pattern.cc (best_splitpoint_index): fix beaming
1708         patterns for 16th triplets.
1709
1710 2006-06-10  Graham Percival  <gpermus@gmail.com>
1711
1712         * Documentation/user/ page.itely, global.itely: editing
1713         and reorg.
1714
1715         * Documentation/user/ various: findex -> funindex.
1716
1717 2006-06-10  Erik Sandberg  <mandolaerik@gmail.com>
1718
1719         * lily/time-scaled-music-iterator.cc: Use tupletSpannerDuration to
1720         insert extra tuplet events.
1721
1722 2006-06-10  Graham Percival  <gpermus@gmail.com>
1723
1724         * Documentation/user/programming-interfaces.itely: add
1725         info from NEWS.
1726
1727         * python/convertrules.py: add annotatefoo -> annotate-foo
1728         rules.
1729
1730         * Documentation/user/global.itely: start editing.
1731
1732         * Documentation/user/page.itely: major editing, new spacing
1733         docs.
1734
1735 2006-06-10  Han-Wen Nienhuys  <hanwen@lilypond.org>
1736
1737         * scm/define-markup-commands.scm (wordwrap-markups): use
1738         output-def 'line-width if undefined.
1739
1740         * HACKING: trim outdated info.
1741
1742 2006-06-09  Mats Bengtsson  <mabe@s3.kth.se>
1743
1744         * scm/define-grobs.scm (all-grob-descriptions): Add
1745         line-spanner-interface to all grobs that already have
1746         text-spanner-interface or dynamic-text-spanner-interface
1747
1748         * scm/page.scm: Rename annotate{headers,systems,page}->
1749         annotate-*
1750
1751         * input/regression/page-spacing.ly,
1752         input/regression/page-layout-manual-position.ly: idem
1753
1754 2006-06-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
1755
1756         * lily/line-spanner.cc: cleanup property list.
1757
1758         * scripts/lilypond-book.py (find_toplevel_snippets): don't use
1759         generator expressions (2.3 compat). 
1760
1761 2006-06-09  Mats Bengtsson  <mabe@s3.kth.se>
1762
1763         * lily/vertical-align-engraver.cc: Make sure that the
1764         align{Above,Below}Context properties are included in the automatic
1765         documentation.
1766
1767 2006-06-08  Joe Neeman  <joeneeman@gmail.com>
1768
1769         * scm/paper-system.scm (paper-system-annotate): also annotate the
1770         estimated pure-Y-extent
1771
1772         * scm/define-grobs.scm: add pure-Y-extent and pure-Y-offset functions
1773
1774         * lily/system.cc (break_into_pieces): set the estimated height
1775         of each child system
1776
1777         * lily/stem.cc (pure_height): new pure-Y-extent callback
1778
1779         * lily/staff-symbol-referencer.cc (callback): don't destroy
1780         the staff-position property
1781
1782         * lily/hara-kiri-group-spanner.cc (request_suicide): split
1783         consider_suicide into two functions
1784
1785         * lily/constrained-breaking.cc (resize): use the new pure
1786         callbacks to estimate the height of a system
1787
1788         * lily/axis-group-interface.cc (pure_group_height): new
1789         side-effect-free VerticalAxisGroup height-callback
1790
1791         * lily/align-interface.cc (get_extents_aligned_translates):
1792         split align_elements_to_extents into two functions
1793         (get_pure_child_y_translation): new function
1794
1795         * lily/grob.cc: new functions for pure-Y-extent and pure-Y-offset
1796
1797         * lily/item.cc: new functions pure_is_visible and spanned_rank_iv
1798
1799         * lily/paper-score.cc: cache break_indices and columns
1800
1801         * lily/side-position-interface.cc: new pure-Y-extent callbacks
1802         
1803 2006-06-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
1804
1805         * lily/font-config.cc (init_fontconfig): do the init if
1806         cache_file, but don't look at cache_file.
1807
1808         * input/regression/quote-tie.ly: new file.
1809
1810         * lily/tie-engraver.cc (struct Head_event_tuple): add end_moment_
1811         to Head_event_tuple, so we deal gracefully with ties on
1812         cue-endings.
1813
1814         * lily/pango-font.cc (pango_item_string_stencil): type correctness
1815         for FcChar8*
1816
1817 2006-06-08  Graham Percival  <gpermus@gmail.com>
1818
1819         * input/test/ smart-transpose.ly, reverse-music.ly:
1820         \applyMusic to music functions update, thanks Michael!
1821
1822 2006-06-07  Graham Percival  <gpermus@gmail.com>
1823
1824         * input/test/ add-staccato.ly, add-text-script.ly,
1825         unfold-all-repeats.ly, music-box.ly: \applyMusic to
1826         music functions update, thanks to Michael Meixner.
1827
1828         * Documentation/user/music-glossary.tely: small fix
1829         from Francisco.
1830
1831         * Documentation/user/ various: minor additions from mailist.
1832
1833         * Documentation/user/lilypond.tely, basic-notation.itely:
1834         small test of @funindex.  (works here)
1835
1836         * input/test/font-table.ly: reduce size to partially
1837         de-ugly version in manual.
1838
1839         * Documentation/user/page.itely: new file (split former
1840         "global issues" into "page settings" and "non-musical
1841         output".
1842
1843         * Documentation/user/ various: fix @ref{}s to match
1844         new chapter names (above).
1845
1846 2006-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
1847
1848         * SConstruct (LILYPONDPREFIX): Bootstrap fix.
1849
1850 2006-06-06  Graham Percival  <gpermus@gmail.com>
1851
1852         * Documentation/user/advanced-notation.itely: add example
1853         for segno/coda on barline.
1854
1855         * tex/texinfo.tex: merge from upstream.
1856
1857 2006-06-06  Jan Nieuwenhuizen  <janneke@gnu.org>
1858
1859         * scripts/lilypond-book.py (process_snippets): Argument fix.
1860
1861         * SConstruct:
1862         * buildscripts/builder.py:
1863         * lily/SConscript: 
1864         * mf/SConscript: 
1865         * Documentation/user/SConscript:  More SCons fixes.
1866
1867 2006-06-03  Jan Nieuwenhuizen  <janneke@gnu.org>
1868
1869         * lily/font-config.cc (init_fontconfig): Only initialize if
1870         global cache_file is found.
1871
1872 2006-06-06  Erik Sandberg  <mandolaerik@gmail.com>
1873
1874         * ly/music-functions-init.ly: Updated \overrideProperty to use the
1875         new \applyOutput.
1876
1877 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1878
1879         * VERSION (PACKAGE_NAME): release 2.9.8
1880
1881         * lily/ledger-line-engraver.cc (stop_translation_timestep): new
1882         function. Delay ledger modifying ledgered grobs to
1883         stop_translation_timestep(), to ensure that we're ledgering
1884         according to the new spanner.
1885         (acknowledge_staff_symbol): don't check for non-NULL
1886         staff_sym->get_bound()
1887
1888         * lily/staff-symbol-engraver.cc (start_spanner): set left bound on
1889         creation.
1890
1891         * Documentation/pictures/GNUmakefile (XPM_FILES): src-wildcard for
1892         pictures too.
1893
1894         * GNUmakefile.in (dist-toplevel-txt-files): dist aclocal.m4
1895         directly from srcdir/stepmake/aclocal.m4
1896         
1897         * Documentation/misc/GNUmakefile (TEXTS): use src-wildcard for
1898         disting MISC files.
1899
1900         * lily/simple-spacer.cc (get_column_desc): desc -> description.
1901
1902 2006-06-06  Joe Neeman  <joeneeman@gmail.com>
1903
1904         * lily/simple-spacer.cc (get_line_configuration): add
1905         keep-inside-line rods
1906         (struct Column_desc): add constructor
1907         (struct Rod_desc): add constructor
1908         (get_line_forces): check for forced page breaks here too
1909
1910         * lily/instrument-name-engraver.cc (acknowledge_axis_group): prevent
1911         support/elements cycles between InstrumentNames and AxisGroups
1912
1913 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1914
1915         * config.make.in (METAFONT): remove MAKEINFO_VERSION
1916
1917         * stepmake/stepmake/topdocs-targets.make (make-txt-files): define
1918         make-txt-files target.
1919
1920         * stepmake/stepmake/toplevel-targets.make (do-top-doc): use
1921         make-txt-files target.
1922
1923         * configure.in (LINK_GXX_STATICALLY): $srcdir for readlink.py
1924
1925         * stepmake/stepmake/generic-vars.make (distdir): create dist in
1926         top-build-dir.
1927
1928 2006-06-06  Jürgen Reuter  <reuter@ipd.uka.de>
1929
1930         * Documentation/user/instrument-notation.itely,
1931         input/regression/breathing-sign-ancient.ly,
1932         input/test/divisiones.ly: Removed redundant property settings for
1933         vaticana contexts.
1934
1935         * ly/gregorian-init.ly: Rewrote \versus and \responsum in order to
1936         fix lyrics alignment problems.  They are implemented now as scheme
1937         functions that add the appropriate unicode char to the first lyric
1938         event rather than adding a separate lyric event.  Minor edit of
1939         comments.
1940
1941 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1942
1943         * GNUmakefile.in (dist-toplevel-txt-files): new target. Don't
1944         pollute src dir with built .txt files, but install directly from
1945         Documentation/topdocs/out/
1946
1947         * buildscripts/output-distance.py
1948         (ComparisonData.create_html_result_page): put version/directories
1949         in table header.
1950
1951         * Documentation/topdocs/NEWS.tely (Top): document spacing section
1952         feature.
1953
1954         * configure.in (LINK_GXX_STATICALLY): use readlink.py to resolve links.
1955         Patch by Karl Hammar
1956         
1957         * buildscripts/readlink.py: add  file.
1958         Patch by Karl Hammar
1959
1960 2006-06-06  Joe Neeman  <joeneeman@gmail.com>
1961
1962         * lily/tuplet-number.cc (print): prevent stencil from being
1963         garbage collected.
1964
1965 2006-06-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
1966
1967         * scm/stencil.scm (write-system-signature): explicitly 
1968         -well, superfluously- close output port.
1969
1970         * buildscripts/output-distance.py (main): oops. Add extra argument.
1971
1972 2006-06-05  Graham Percival  <gpermus@gmail.com>
1973
1974         * Documentation/user/music-glossary.tely: clarified example
1975         from Francisco Vila, thanks!
1976
1977 2006-06-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
1978
1979         * input/regression/spacing-section.ly: new file.
1980
1981         * lily/input.cc (programming_error): new function.
1982
1983         * lily/spacing-engraver.cc (try_music): new function. Accept
1984         spacing-section-event
1985
1986         * lily/spacing-spanner.cc (set_springs): take slices of all
1987         columns for spacing.
1988
1989         * lily/include/paper-column.hh (class Paper_column): add
1990         Paper_column::compare.
1991
1992         * ly/spanners-init.ly (newSpacingSection): add newSpacingSection.
1993
1994         * scm/define-music-types.scm (music-descriptions): add
1995         SpacingSectionEvent
1996
1997         * lily/music-iterator.cc (report_event): use programming_error for
1998         sending non-event error.
1999
2000         * lily/input.cc (programming_error): new function
2001
2002         * buildscripts/output-distance.py (main): use compare-XXX for
2003         compare files.
2004         (main): --threshold option, default at 0.30
2005
2006         * output-distance.py (main): add --threshold option.
2007
2008 2006-06-04  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2009
2010         * scm/paper-system.scm (paper-system-annotate): fix problem when
2011         annotating an empty system
2012
2013 2006-06-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
2014
2015         * GNUmakefile.in: reinstate old web tar/copying.
2016
2017 2006-06-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2018
2019         * lily/lyric-combine-music-iterator.cc (find_voice): return 0 if
2020         nothing changes. (Erik S) 
2021
2022         * lily/percent-repeat-iterator.cc (get_music_list): fix repeat
2023         count. (Erik S)
2024
2025 2006-05-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2026
2027         * scm/define-markup-commands.scm (whiteout): do not force
2028         foreground color of argument markup to black.
2029
2030         * scm/stencil.scm (annotate-y-interval): put arrow dimension at
2031         the left of the arrow, instead of below the arrow name, so that,
2032         when two little arrows are vertically stacked, their dimensions
2033         and name should not overlap. Add a color key parameter.
2034
2035         * scm/paper-system.scm (paper-system-annotate): Annotate
2036         next-space+next-padding instead of next-space. Annotate space
2037         between next-padding and next-space+padding, respectively, and
2038         following system extent and refpoint-Y-extent. Use colors.
2039
2040         * scm/page.scm (annotate-page): translate annotations slightly to
2041         the right.
2042
2043 2006-06-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2044
2045         * lily/figured-bass-position-engraver.cc (acknowledge_end_slur):
2046         fix for x-staff slurs. Thanks Joe!
2047
2048         * buildscripts/output-distance.py
2049         (SystemLink.output_expression_change_count): keep track of changed
2050         details, and dump in details html page.
2051  
2052         * input/regression/figured-bass-staff.ly: add note about setting
2053         properties in Staff context.
2054
2055         * lily/figured-bass-position-engraver.cc (acknowledge_slur):
2056         add slurs and ties to support too.
2057
2058         * buildscripts/output-distance.py (main): set dest_dir
2059         argument. Add --max-count option.
2060
2061 2006-06-02  Jürgen Reuter  <reuter@ipd.uka.de>
2062
2063         * ly/gregorian-init.ly: Converted to utf-8.  Added memorable
2064         shortcuts for special unicode chars that are useful in chant
2065         notation.  Revised exisiting and added new comments.
2066
2067 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2068
2069         * make/mutopia-rules.make: remove duplicate recipe.
2070
2071 2006-06-02  Werner Lemberg  <wl@gnu.org>
2072
2073         * tex/texinfo.cnf: Fix typo (\euro -> \minus).
2074         Add support for U+0132 (IJ) and U+0133 (ij).
2075
2076 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2077
2078         * buildscripts/output-distance.py (FileLink): new class. collect
2079         info systems from one .ly file. 
2080         (FileLink.link_files_for_html): further tweaks.
2081
2082 2006-06-02  Graham Percival  <gpermus@gmail.com>
2083
2084         * tex/texinfo.tex: partial fix for @funindex.
2085
2086         * Documentation/user/macros.tely: uncomment @funindex (doesn't
2087         break anything).
2088
2089 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2090
2091         * make/mutopia-vars.make (ly_examples): replace .ly.txt with .ly
2092
2093         * tex/texinfo.tex (sectionheading, q.v.): call \quoteexpand for
2094         @example too. Backportme.
2095
2096 2006-06-02  Graham Percival  <gpermus@gmail.com>
2097
2098         * tex/texinfo.cnf: added UTF-8 support for texinfo; patch
2099         from Werner Lemberg.
2100
2101 2006-06-02  Paco (Francisco Vila)  <fravd@ya.com>
2102
2103         * Documentation/user/music-glossary.tely: additional spanish
2104         updates and a lyrics fix in an example.
2105
2106 2006-06-02  Jürgen Reuter  <reuter@ipd.uka.de>
2107
2108         * scm/define-grob-properties.scm: Previous patch contained
2109         spurious line from another patch not yet committed.  Fixed.
2110
2111         * scm/define-grob-properties.scm: Add missing doc strings for
2112         ancient notation.
2113
2114 2006-06-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
2115
2116         * buildscripts/output-distance.py
2117         (ComparisonData.write_text_result_page): separate the scores, sort
2118         by geo_score.
2119
2120         * scm/framework-eps.scm (output-classic-framework): start at 1 for
2121         system signatures.
2122
2123         * buildscripts/output-distance.py (me_path): use argv[0] for
2124         sys.path extension
2125         (ComparisonData.img_cell): use colored borders.
2126
2127         * scm/stencil.scm (write-system-signature): escape newlines too.
2128         (write-system-signature): use (1,-1) interval for empty interval
2129
2130 2006-01-01  Graham Percival  <gpermus@gmail.com>
2131
2132         * Documentation/user/music-glossary.tely: Spanish updates
2133         from Francisco Vila.
2134
2135         * Documentation/user/lilypond-book.itely: addition from
2136         Vaclav Smilauer.
2137
2138         * Documentation/user/ various: edits, small additions
2139         from mailist, etc.
2140
2141 2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
2142
2143         * GNUmakefile.in (tree-lib-prefix-current):
2144         (tree-share-prefix-current): Use version number in tree, add
2145         `current' symlinks.
2146
2147 2006-06-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
2148
2149         * GNUmakefile.in: write VERSION, again.
2150
2151         * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
2152         $(outdir)/%.ly $(outdir)/%.ps): dump sigs for normal files too.
2153
2154         * stepmake/aclocal.m4: robuster version detection.
2155
2156         * buildscripts/output-distance.py
2157         (ComparisonData.create_html_result_page): copy only if file
2158         exists, fixup src paths.
2159
2160         * stepmake/bin/add-html-footer.py (built): junk gulp_file()
2161
2162 2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
2163
2164         * stepmake/aclocal.m4: Robustification for (gcc) version detection.
2165         Another datarootdir reto.
2166
2167         * cygwin/postinstall-lilypond.sh: Do not fail if info docs aren't
2168         available.  This should be moved to postinstall-lilypond-doc.
2169
2170 2006-05-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
2171
2172         * GNUmakefile.in: simplify local-WWW-post. 
2173         remove -type l from find.
2174
2175         * buildscripts/output-distance.py (ComparisonData.compare_trees):
2176         fixes. Don't follow symlinks.
2177         (ComparisonData.create_html_result_page): remove previous results.
2178         insert ../python in path.
2179
2180         * scripts/lilypond-book.py (PREAMBLE_LY): spacing fixes.
2181
2182 2006-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
2183
2184         * config.make.in (datadir): Add datarootdir to silence autoconf.
2185
2186         * stepmake/aclocal.m4: Update for autoconf-2.59d.
2187
2188 2006-05-31  Erlend Aasland  <erlenda@gmail.com>
2189
2190         * dynamic-engraver.cc: fix bug (dynamics collide with accidentals)
2191
2192         * scm/output-ps.scm (repeat-slash): fix a bug that made repeat
2193         slash beams too wide.
2194
2195 2006-05-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
2196
2197         * VERSION: release 2.9.7
2198         
2199 2006-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
2200
2201         * lily/relocate.cc (read_relocation_dir): Do not blindly
2202         dereference DIR.
2203
2204 2006-05-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
2205
2206         * lily/parser.yy: replace THIS by PARSER
2207
2208         * Documentation/index.html.in: add link to test-results.html page.
2209
2210         * Documentation/topdocs/NEWS.tely (Top): update NEWS entry.
2211
2212         * scm/translation-functions.scm (format-bass-figure): translate
2213         digits over 10 to the left
2214
2215         * scm/define-markup-commands.scm (translate-scaled): new markup.
2216
2217         * mf/feta-nummer-code.mf (code): overshoot the topright tip of the
2218         7 glyph. 
2219
2220         * ly/engraver-init.ly: add Figured_bass_engraver
2221
2222         * lily/engraver-group.cc (acknowledge_grobs): use start/stop drul.
2223
2224         * lily/figured-bass-engraver.cc (clear_spanners): use everywhere.
2225
2226         * lily/score-engraver.cc (announce_grob): only note START announces.
2227
2228         * lily/include/engraver-group.hh (Translator_group):
2229         acknowledge_hash_table_ is now drul.
2230
2231         * lily/engraver.cc (announce_end_grob): new method.
2232
2233         * lily/include/grob-info.hh (class Grob_info): add start_end_ member.
2234
2235         * lily/translator-dispatch-list.cc (create): take start_end argument.
2236
2237         * lily/include/translator.hh (TRANSLATOR_DECLARATIONS): change
2238         acknowledge_static_array_ to drul
2239
2240         * lily/include/translator.icc (ADD_END_ACKNOWLEDGER): new macro.
2241
2242         * scm/define-grob-interfaces.scm
2243         (bass-figure-alignment-interface): add bass-figure-alignment-interface
2244
2245         * scm/define-grobs.scm (all-grob-descriptions): add
2246         BassFigureAlignmentPositioning
2247
2248         * ly/Welcome-to-LilyPond-MacOS.ly: include in LilyPond, so version
2249         number stays up to date. Backportme.
2250
2251 2006-05-30  Mats Bengtsson  <mabe@s3.kth.se>
2252
2253         * Documentation/user/basic-notation.itely (Bar lines): Document
2254         the "||:" bar type. 
2255
2256 2006-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
2257
2258         * buildscripts/builder.py: Remove --ly option/target from mf-to-table.
2259
2260         * scripts/lilypond-book.py: Bugfix: do not blindly attempt
2261         .../current hack if LILYPONDPREFIX is fine.  Fixes `scons doc'
2262         build.
2263
2264         * Resurrect `scons lily' build.
2265
2266         * SConstruct (symlink_tree): Bugfix: link
2267         music-drawing-routines.ps to file iso directory.
2268
2269         * lily/SConscript: Remove kpath-guile from LIBS.
2270
2271         * SConstruct (libdir_package_version): Typo.
2272         (configure): Comment-out fontforge for lack of fontforge.pc .
2273         Also add libdir* to environment.
2274
2275 2006-05-30  Graham Percival  <gpermus@gmail.com>
2276
2277         * Documentation/user/ various: minor additions from mailist and
2278         editing.
2279
2280 2006-05-30  Paco <fravd@ya.com>
2281
2282         * Documentation/user/music-glossary.tely: numerous corrections and
2283         some new translations.
2284
2285 2006-05-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
2286
2287         * BackportmeStart.
2288         
2289         * buildscripts/output-distance.py
2290         (ComparisonData.create_html_result_page): new routine: summarise
2291         results in HTML page with images. 
2292         (ComparisonData.create_text_result_page): create summary text files too.
2293
2294         * GNUmakefile.in (web-ext): package .signature files too. They
2295         compress well. 
2296
2297         * scm/stencil.scm (write-system-signature): typo.
2298
2299         * GNUmakefile.in: create web-root/VERSION to help upload scripts.
2300
2301         * scm/stencil.scm (write-system-signature): better escaping.
2302         only write signature for music systems, not for markup systems.
2303
2304         * scm/framework-ps.scm (output-framework): dump-signatures support
2305         for plain output.
2306
2307         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): add -ddump-signatures.
2308
2309         * scm/framework-ps.scm (write-preamble): redefine mark_URI to nop
2310         for -dno-point-and-click
2311
2312         * lily/grob.cc (get_print_stencil): don't read
2313         point_and_click_global to determine whether to set grob-cause.
2314
2315 2006-05-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
2316
2317         * buildscripts/output-distance.py (main): new function.
2318         (ComparisonData): new class.
2319
2320         * lily/ledger-line-engraver.cc (acknowledge_staff_symbol): be more
2321         careful with generating new LedgerLineSpanners.
2322
2323         * lily/ledger-line-spanner.cc (set_spacing_rods): suicide if no staff.
2324
2325         * ly/engraver-init.ly: remove Ledger_line_engraver from Voice
2326         context. This fixes double ledger lines in output. 
2327
2328         * lily/system.cc (get_paper_system): remove 3 layer limit.
2329
2330         * buildscripts/output-distance.py (SystemLink.distance): new
2331         file. Compare signatures.
2332
2333         * python/safeeval.py (SafeEval.visitUnarySub): new file.
2334
2335         * lily/grob-array.cc (remove_duplicates): rename from
2336         uniq(). Sort before calling uniq() so it actually works.
2337
2338 2006-05-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
2339
2340         * scripts/lilypond-book.py (Lilypond_file_snippet.ly): strip
2341         \version from lilypond file snippet.
2342         (Lilypond_file_snippet.ly): oops. typo.
2343         (find_toplevel_snippets): urgh. again.
2344
2345         * lily/system.cc (get_paper_systems): uniq all_elements_ , to
2346         prevent duplicated broken items in output.
2347
2348         * scm/framework-eps.scm (output-classic-framework): only dump if
2349         dump-signatures is set.
2350
2351         * scm/lily.scm (define-scheme-options): add dump-signatures option.
2352
2353         * scm/stencil.scm (write-system-signature): new routine: write
2354         python parseable signature of a separate paper system.
2355         BackportmeEnd.
2356         
2357 2006-05-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
2358
2359         * lily/stanza-number-engraver.cc (process_music): use is_markup()
2360         iso is_string().
2361         include header.
2362
2363 2006-05-25  Erik Sandberg  <mandolaerik@gmail.com>
2364
2365         * translator-group.cc: send music events to engravers in
2366         non-bottom contexts.
2367
2368         * tuplet-engraver.cc: process tuplet brackets in correct order.
2369
2370 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2371
2372         * stepmake/aclocal.m4: STEPMAKE_PYTHON(): clear cached value since
2373         arg 2 might point us to a new binary (patch by Karl Hammar)
2374         
2375 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2376
2377         * VERSION (PACKAGE_NAME): release 2.9.6
2378
2379         * Documentation/topdocs/NEWS.tely (Top): trim explanation. 
2380
2381         * Documentation/user/*.itely: 2nd
2382         attempt: replace funindex -> findex globally.
2383
2384 2006-05-24  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2385
2386         * input/no-notation/display-lily-tests.ly: fix \applyOutput
2387         test. Add \break, \pageBreak, \pageTurn, etc, tests.
2388
2389         * scm/define-music-display-methods.scm: display methods for
2390         breaks. Fix \applyOutput.
2391
2392 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2393
2394         * Documentation/user/macros.itexi: comment out funindex expansion. 
2395
2396         * Documentation/user/music-glossary.tely: junk \oldaddlyrics
2397         everywhere.
2398
2399         * GNUmakefile.in: fix wildcarding for scrips/out/ links. Thanks
2400         Karl Hammar. Backportme.
2401  
2402         * Documentation/user/advanced-notation.itely (Balloon help): idem.
2403
2404         * Documentation/user/changing-defaults.itely (Creating contexts): idem.
2405
2406         * Documentation/user/programming-interface.itely (Running a
2407         function on all layout objects): idem.
2408
2409         * Documentation/user/introduction.itely (Automated engraving):
2410         update \applyOutput syntax
2411
2412         * lily/lyric-combine-music-iterator.cc (start_new_syllable):
2413         remove debugging hook.
2414
2415         * configure.in (LINK_GXX_STATICALLY): use "" to allow $
2416         expansion. 
2417
2418         * Documentation/user/GNUmakefile (TEXI2DVI_FLAGS): add -E.
2419
2420         * stepmake/stepmake/texinfo-rules.make ($(outdir)/%.dvi): add
2421         TEXI2DVI_FLAGS to texi2dvi invocation. 
2422
2423 2006-05-24  Erik Sandberg  <mandolaerik@gmail.com>
2424
2425         * lily/chord-tremolo-*.cc: Reworked how \repeat "tremolo"
2426         works. More work is done by iterator now, and engraver has been
2427         very much simplified.
2428
2429         * lily/translator-group.cc: try_music is now invoked through a
2430         listener
2431
2432         * lily/*-iterator.cc: Massive cleanups. Junked
2433         try_music_in_children globally. Renamed try_music to report_event,
2434         and made that method descend to a bottom context automatically.
2435
2436         * lily/event-iterator.cc: New file.
2437
2438         * lily/output-property-iterator.cc,
2439         lily/old-lyric-combine-music-iterator.cc: Removed.
2440
2441         * python/convert-rules.py: Modified the syntax for \applyOutput.
2442
2443 2006-05-23  Graham Percival  <gpermus@gmail.com>
2444
2445         * stepmake/stepmake/texinfo-rules.make: added -E, allows pdf doc
2446         creation.
2447
2448         * Documentation/user/ various: stuff that might have helped
2449         to fix the pdf creation, plus some minor doc additions.
2450
2451         * Documentation/user/changing-defaults.itely: remove @b from
2452         @b{ @internasref{foo}}; this breaks texi2dvi -E.
2453
2454 2006-05-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
2455
2456         * lily/beaming-pattern.cc (beamify): deal with negative start
2457         moments for beaming patterns.
2458
2459 2006-05-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
2460
2461         * lily/beaming-info.cc (beamify): new function: read beatLength
2462         and beatGrouping from context. 
2463
2464         * input/regression/beam-beat-grouping.ly (Module): new file.
2465
2466         * input/regression/beam-unconnected-beamlets.ly (Module): new file.
2467
2468         * lily/beam.cc (get_beam_segments): generate events for
2469         max_connect_ case too.
2470         (get_beam_segments): read Stem::max-beam-connect.
2471
2472         * input/regression/beam-single-stem.ly: new file.
2473
2474         * lily/stem.cc (set_beaming): use #f as signaling value for
2475         beamcount 0.
2476
2477         * lily/beam-engraver.cc (typeset_beam): set right bound if unset.
2478
2479         * lily/beam.cc (set_beaming): read clip-edges property.
2480         (calc_direction): don't suicide for single stem.
2481
2482         * lily/beaming-info.cc (best_splitpoint_index): take bool*
2483         argument, remove 1<<15 hack. Remove clip_edges() 
2484
2485         * lily/hairpin.cc (print): only do padding for nonmusical bounds
2486
2487 2006-05-21  Graham Percival  <gpermus@gmail.com>
2488
2489         * Documentation/user/basic-notation.itely: reorg.
2490
2491         * Documentation/user/ various: minor fixes.
2492
2493 2006-05-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
2494
2495         * lily/stencil-expression.cc (register_stencil_head): opps, append
2496         to cdr of static SCM object.
2497
2498 2006-05-19  Graham Percival  <gpermus@gmail.com>
2499
2500         * Documentation/user/README.txt, lilypond.tely, macros.itexi:
2501         update framework for command index.  DOC WRITERS: use @funindex
2502         instead of @cindex @code{}.
2503
2504         * Documentation/user/ various: replace @cindex @code{} => @funindex
2505
2506 2006-05-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
2507
2508         * lily/beam.cc (set_stem_lengths): trigger 'beaming callback, in
2509         case positions is set manually. 
2510
2511 2006-05-18  Erik Sandberg  <mandolaerik@gmail.com>
2512         
2513         * scm/ly-syntax-constructors.scm: New file. Converted a few syntax
2514         rules to Scheme.
2515
2516 2006-05-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
2517
2518         * Documentation/user/changing-defaults.itely (Contexts explained):
2519         use absolute dimension for @image.
2520
2521         * Documentation/user/GNUmakefile (OUT_PNG_IMAGES): generate PNG
2522         out image for illustration too.
2523         ($(outdir)/%.png): add more png <-> eps rules. 
2524
2525 2006-05-17  Graham Percival  <gpermus@gmail.com>
2526
2527         * Documentation/user/ various: remove trailing whitespace, cosmetic
2528         change to reduce changes produced by diff.
2529
2530 2006-05-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
2531
2532         * lily/main.cc (do_chroot_jail): correctness tweak.
2533
2534         * python/lilylib.py (system): import subprocess in system () only.
2535
2536         * scripts/*.py: use TARGET_PYTHON iso PYTHON. Backportme.
2537
2538         * make/substitute.make (ATVARIABLES): add TARGET_PYTHON as subst
2539         variable. Backportme.
2540
2541 2006-05-17  Erik Sandberg  <mandolaerik@gmail.com>
2542         
2543         * lily/parser.yy: Change all syntax rules of type Music to SCM type
2544
2545 2006-05-17  Werner Lemberg  <wl@gnu.org>
2546
2547         * lily/lexer.ll (init_signature_has_table): Add
2548         `scm-scm-music-music'.
2549
2550         * lily/parser.yy (MUSIC_FUNCTION_SCM_SCM_MUSIC_MUSIC): New token.
2551         (Generic_prefix_music_scm): Add rule for it.
2552
2553         * lily/quote-iterator.cc (Quote_iterator::process): Handle
2554         `quoted-transposition' property.
2555
2556         * ly/music-functions-init.ly (transposedCueDuring): New function.
2557
2558         * scm/define-music-properties.scm (all-music-properties): Updated.
2559
2560         * Documenation/topdocs/NEWS.itely: Document it.
2561
2562 2006-05-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
2563
2564         * python/lilylib.py (system): move import subprocess to system()
2565         definition. 
2566
2567         * python/convertrules.py (conv): fix convert-ly rules for 2.9.4
2568
2569         * VERSION (PATCH_LEVEL): release 2.9.5
2570         
2571         * Documentation/topdocs/INSTALL.texi (Top): update versions and
2572         build instructions. 
2573
2574         * ly/engraver-init.ly: switch on hairpinToBarline by default.
2575
2576 2006-05-16  Graham Percival  <gpermus@gmail.com>
2577
2578         * Documentation/user/basic-notation.itely: editing from Dave, thanks!
2579
2580         * Documentation/user/ various: minor fixes.
2581
2582 2006-05-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
2583
2584         * Documentation/topdocs/NEWS.tely (Top): add hairpinToBarline feature.
2585
2586 2006-05-16  Mats Bengtsson  <mabe@s3.kth.se>
2587
2588         * Documentation/user/advanced-notation.itely (Instrument names):
2589         Modified obsolete instruction on how to move instrument names away
2590         from the staves. Hmm, at second thought the bug probably has been
2591         solved, so the full bug description should probably be removed.
2592
2593 2006-05-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
2594
2595         * lily/dynamic-engraver.cc (typeset_all): hang ending on
2596         currentCommandColumn. 
2597
2598         * lily/hairpin.cc (print): also add padding for non-neighbor
2599         hairpin bounds.
2600
2601         * scm/define-context-properties.scm
2602         (all-user-translation-properties): add hairpinToBarline
2603
2604         * input/regression/hairpin-to-barline.ly: new file.
2605
2606         * lily/context.cc (internal_send_stream_event): thinko fix.
2607
2608         * lily/tie.cc (set_default_control_points): robustness fix.
2609
2610         * python/musicxml.py (Part.interpret): don't complain about
2611         incomplete measures.
2612
2613         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): only add
2614         new music if last_event_chord() returned None.
2615
2616         * python/musicxml.py (Part.interpret): skip back over chord notes.
2617
2618 2006-05-16  Erik Sandberg  <mandolaerik@gmail.com>
2619         
2620         * lily/percent-repeat-engraver.cc, lily/parser.yy,
2621         lily/define-music-types.cc, lily/percent-repeat-iterator.cc,
2622         lily/slash-repeat-engraver.cc,
2623         lily/include/percent-repeat-iterator.hh: Rework percent repeats:
2624         iterator sends PercentEvents
2625
2626         * lily/time-scaled-music-iterator.cc, lily/tuplet-engraver.cc:
2627         rework tuplets: send start/stop events to engraver
2628
2629         * lily/context.cc, lily/music.cc, lily/context-scheme.cc: Add
2630         dispatchers event-source and events-below to Context
2631         
2632 2006-05-15  Graham Percival  <gpermus@gmail.com>
2633
2634         * Documentation/user/README.txt: update info for doc writers.
2635
2636         * Documentation/user/programming-interface.itely: integrate
2637         Nicolas' fixes for chapter rewrite.
2638
2639         * Documentation/user/ various: minor fixes.
2640
2641 2006-05-15  Han-Wen Nienhuys  <hanwen@lilypond.org>
2642
2643         * lily/clef-engraver.cc: cleanup.
2644
2645         * Documentation/user/GNUmakefile: dist context-example.eps too.
2646
2647         * lily/key-engraver.cc (create_key): use
2648         explicitKeySignatureVisibility for cancellation too. 
2649
2650         * lily/font-config.cc (init_fontconfig): don't close file if
2651         f==NULL. 
2652
2653 2006-05-15  Erlend Aasland  <erlenda@gmail.com>
2654
2655         * Documentation/topdocs/NEWS.tely: niente and rotation news
2656
2657 2006-05-14  Erlend Aasland  <erlenda@gmail.com>
2658
2659         * lily/include/stencil.hh
2660         * lily/stencil.cc (rotate): new function. Makes it possible
2661         to rotate a stencil around a given offset.
2662
2663         * lily/grob.cc (get_print_stencil): add rotation support
2664
2665         * lily/stencil-interpret.cc (interpret_stencil_expression):
2666         add rotation support
2667
2668         * lily/stencil-scheme.cc (ly:stencil-rotate): new function
2669
2670         * scm/define-grob-properties.scm: add 'rotation property
2671
2672         * scm/define-markup-commands.scm: add rotate markup command
2673         
2674         * scm/output-ps.scm: add rotation support in PostScript backend
2675
2676         * scm/output-svg.scm: add rotation support in SVG backend
2677
2678 2006-05-13  Graham Percival  <gpermus@gmail.com>
2679
2680         * Documentation/user/music-glossary.itely: French correction.
2681
2682         * Documentation/user/programming-interface.itely: major
2683         new docs, some reorg, some info from Nicolas.
2684
2685         * Documentation/user/ various: small fixes.
2686
2687 2006-05-12  Mats Bengtsson  <mabe@s3.kth.se>
2688
2689         * Documentation/user/programming-interface.itely (Markup
2690         programmer interface): Remove duplicate text.
2691
2692 2006-05-12  Graham Percival  <gpermus@gmail.com>
2693
2694         * Documentation/user/context-example.eps: new file.
2695
2696         * Documentation/user/changing-defaults.itely: set up file to
2697         use eps image.
2698
2699         * Documentation/user/programming-interface.itely: changes
2700         from mailist.
2701
2702 2006-05-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
2703
2704         * configure.in (LINK_GXX_STATICALLY): python 2.4 req.
2705
2706 2006-05-11  Graham Percival  <gpermus@gmail.com>
2707
2708         * Documentation/user/programming-interface.itely: first round of
2709         editing and merging emails from Nicolas.
2710
2711         * Documentation/user/scheme-tutorial: minor edit.
2712
2713 2006-05-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
2714
2715         * python/musicxml.py (Xml_node.__init__): _attribute_dict stores
2716         XML attributes.
2717         (Xml_node.message): use it.
2718
2719         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): 
2720         oops. Add duration argument.
2721
2722 2006-05-10  Joe Neeman  <joeneeman@gmail.com>
2723
2724         * lily/paper-column-engraver.cc (make_columns):
2725         * scm/define-grobs.scm: Revert my previous change and set the default
2726         in define-grobs.scm instead.
2727
2728 2006-05-09  Graham Percival  <gpermus@gmail.com>
2729         
2730         * Documentation/user/changing-defaults.itely: general editing,
2731         info about \set and \override.
2732
2733         * Documentation/user/tweaking.itely, advanced-notation.itely:
2734         fixes from Dave Luttinen, thanks!
2735
2736 2006-05-09  Joe Neeman  <joeneeman@gmail.com>
2737
2738         * lily/paper-column-engraver.cc (make_columns): By default, a column
2739         needs to be breakable.
2740
2741 2006-05-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
2742
2743         * scripts/musicxml2ly.py (musicxml_clef_to_lily): use new
2744         Attributes methods
2745         (musicxml_time_to_lily): idem
2746         (musicxml_key_to_lily): idem
2747         (instrument_drumtype_dict): dict for supported drumtypes.
2748         (LilyPondVoiceBuilder.__init__): new class: sanely keep track of
2749         moments and pending mm rests
2750         (musicxml_voice_to_lily_voice): rewrite to use LilyPondVoiceBuilder
2751         (musicxml_voice_to_lily_voice): strip KeyChangeEvents for drums.
2752         (musicxml_voice_to_lily_voice): add mode change.
2753         (option_parser): lxml.etree (http://codespeak.net/lxml/) for more
2754         speed and less memory usage (factor 5 to 10).
2755         (convert): write -defs.ly  and driver file separately so people
2756         can script their own part extraction.
2757
2758         * python/musicxml.py (minidom_demarshal_node): new function:
2759         separate minidom handling.
2760         (lxml_demarshal_node): new function: support lxml.etree too.
2761         (Xml_node.message): new function: verbose error message, with XML
2762         path to offending node.
2763         (Attributes.get_measure_length): sane interface to MusicXML attributes.
2764         (Part_list.generate_id_instrument_dict): new method: collect
2765         instrument names, to be able to set drum_type.
2766         (Part.interpret): handle underfull measures
2767         (Part.interpret): assign instrument names.
2768
2769         * python/musicexp.py (Output_printer.close): new method
2770         (MusicWrapper.print_ly): new class: support other modes,
2771         eg. \drummode
2772         (BarCheck.print_ly): new class. Support bar checks, with comments
2773         and fancy barchecks. 
2774         (NoteEvent.__init__): also set drum_type for drum notes.
2775         (MultiMeasureRest.lisp_expression): dump mm rests.
2776
2777         * lily/paper-column-engraver.cc (stop_translation_timestep): set
2778         line-break-permission if forbidBreak is not set.
2779
2780 2006-05-09  Joe Neeman  <joeneeman@gmail.com>
2781
2782         * scm/define-context-properties.scm:
2783         * scm/define-grob-properties.scm:
2784         * scm/define-grobs.scm:
2785         * scm/define-music-display-methods.scm:
2786         * scm/define-music-properties.scm:
2787         * scm/define-music-types.scm:
2788         * scm/music-functions.scm:
2789         * ly/declarations-init.ly:
2790         * lily/include/constrained-breaking.hh:
2791         * lily/system.cc:
2792         * lily/spaceable-grob.cc:
2793         * lily/simple-spacer.cc:
2794         * lily/paper-score.cc:
2795         * lily/paper-column.cc:
2796         * lily/paper-column-engraver.cc:
2797         * lily/item.cc:
2798         * lily/gourlay-breaking.cc:
2799         * lily/constrained-breaking.cc:
2800         * python/convertrules.py:
2801         Change "penalty", "page-penalty" and "breakable" to "line-break-penalty",
2802         "page-break-penalty" and "line-break-permission".
2803         Add "page-break-permission", "page-turn-permission" and "page-turn-penalty".
2804         Replace BreakEvent with LineBreakEvent, PageBreakEvent and PageTurnEvent.
2805
2806         * lily/bar-engraver.cc:
2807         * lily/beam-engraver.cc:
2808         * lily/forbid-break-engraver.cc:
2809         * lily/ligature-engraver.cc:
2810         * lily/paper-column-engraver.cc:
2811         * lily/percent-repeat-engraver.cc:
2812         * lily/score-engraver.cc:
2813         * lily/score-engraver.hh:
2814         * lily/paper-column-engraver.hh:
2815         Inter-engraver communication regarding line breaks is done through context
2816         properties (Score.forbidBreak) instead of function calls.
2817
2818 2006-05-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
2819
2820         * VERSION (PACKAGE_NAME): release 2.9.4
2821
2822 2006-05-08  Graham Percival  <gpermus@gmail.com>
2823
2824         * Documentation/user/working.itely: proofreading from Dave
2825         Luttinen, thanks.
2826
2827         * Doucmentation/user/README.txt: updated with manual style info.
2828
2829         * Documentation/user/ various: trim linewidth to 78 chars.
2830
2831 2006-05-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
2832
2833         * scm/define-grob-properties.scm (all-internal-grob-properties):
2834         remove chord-tremolo property.
2835
2836         * lily/beam.cc (get_beam_segments): don't use stem position as
2837         base for broken ends.
2838
2839 2006-05-06  Graham Percival  <gpermus@gmail.com>
2840
2841         * Documentation/user/putting.itely: proofreading from Dave
2842         Luttinen, thanks!
2843
2844         * Documentation/user/ various: more reorg and clarifications.
2845
2846 2006-05-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
2847
2848         * scm/lily.scm (TEX_STRING_HASHLIMIT): move from framework-texstr.scm.
2849
2850         * ly/music-functions-init.ly: new function featherDurations
2851
2852         * lily/beam.cc: read grow-direction for feathered beaming.
2853
2854         * Documentation/topdocs/NEWS.tely (Top): typo.
2855
2856 2006-05-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
2857
2858         * lily/include/beam.hh (struct Beam_stem_segment): add gapped_ for
2859         tremolo beams.
2860
2861 2006-05-05  Erik Sandberg  <mandolaerik@gmail.com>
2862         * lily/context.cc, lily/global-context.cc: Added 'unique' member,
2863         used by music streams.
2864
2865         * lily/dispatcher.cc, lily/dispatcher-scheme.cc,
2866         lily/stream-event.cc, lily/stream-event-scheme.cc,
2867         lily/listener.cc, lily/scheme-listener.cc,
2868         lily/scheme-listener-scheme.cc, lily/include/dispatcher.hh,
2869         lily/include/stream-event.hh, lily/include/listener.hh,
2870         lily/include/scheme-listener.hh, scm/define-event-classes.scm:
2871         Created data structures for music streams.
2872         
2873 2006-05-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
2874
2875         * lily/beam.cc (get_beam_segments): new function. Reorganise the
2876         construction of a beam. 
2877         (print): rewrite. 
2878
2879         * flower/include/std-vector.hh (default_compare): use only one comparison.
2880
2881         * scm/define-markup-commands.scm (note-by-number): remove debug display.
2882         (note-by-number): further attachment fixes.
2883
2884         * scm/lily-library.scm (ordered-cons): new function.
2885         (interval-index): new function
2886
2887         * lily/note-head-scheme.cc (LY_DEFINE): new file.
2888
2889         * lily/note-head.cc (get_stem_attachment): new function.
2890
2891         * scm/define-markup-commands.scm (note-by-number): read 'style
2892         property. 
2893
2894         * input/regression/markup-note.ly: show note-head style option.
2895
2896         * mf/feta-bolletjes.mf (overdone_heads): fix attachment points for
2897         triangle head.
2898
2899 2006-05-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
2900
2901         * mf/GNUmakefile (NCSB_OTFS): remove old ncsb detection further.
2902
2903         * configure.in (LINK_GXX_STATICALLY): fix for ncsb detection.
2904
2905         * lily/include/constrained-breaking.hh: GCC 4 fix.
2906
2907 2006-05-04  Joe Neeman  <joeneeman@gmail.com>
2908
2909         * lily/simple-spacer.cc: Remove class Simple_spacer_wrapper.
2910         Replace it with functions get_line_forces and get_line_configuration.
2911         (class Simple_spacer): Make data private.
2912         Rewrite compression algorithm to be faster and simpler.
2913
2914         * lily/simple-spacer-scheme.cc (ly_solve_rod_and_spring_problem):
2915         * lily/gourlay-breaking.cc (solve):
2916         * lily/constrained_breaking.cc (space_line):
2917         Change it to the new simple-spacer code.
2918
2919         * lily/paper-score.cc (get_paper_systems):
2920         (Paper_score):
2921         (process):
2922         Delay breaking the systems until they are requested.
2923         (find_break_indices):
2924         Use vsize for indices.
2925         (calc_breaking):
2926         Move the "Calculating line breaks" message here.
2927
2928         * lily/system.cc (pre_processing):
2929         Move the "Calculating line breaks" message away from here.
2930         (break_into_pieces):
2931         Allow multiple calls to this function in sequence (with touching-but-
2932         not-overlapping breakpoints).
2933
2934         * lily/constrained-breaking.cc:
2935         Replace most of the get_XXXX functions with get_line_details.
2936         Only calculate the force for each line. Calculate configurations only
2937         for the lines we will actually use.
2938         Replace cols_ with lines_.
2939
2940 2006-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
2941
2942         * mf/GNUmakefile (depth): remove FC_FIND.
2943
2944         * config.make.in (NCSB_SOURCE_FILES): subst NCSB_SOURCE_FILES
2945
2946         * configure.in (LINK_GXX_STATICALLY): call fc-match from within configure.
2947
2948         * scm/framework-ps.scm (write-preamble): new function.
2949         (write-preamble): load mac fonts via fondu, even if gs-font-load
2950         is set.
2951
2952 2006-05-03  Werner Lemberg  <wl@gnu.org>
2953
2954         * mf/GNUmakefile (FC_FIND): Fix typo.
2955
2956 2006-05-03  Erlend Aasland  <erlenda@gmail.com>
2957
2958         * stepmake/stepmake/generic-targets.make (cvs-clean): also remove out-www dirs.
2959
2960 2006-05-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2961
2962         * stepmake/aclocal.m4: run python-config for crosscompiling
2963         flags. 
2964
2965         * scripts/lilypond-book.py (Lilypond_file_snippet.my_system): add
2966         -f png for HTML, TEXINFO formats. 
2967
2968         * input/tutorial/lbook-html-test.html: new file.
2969
2970         * lily/include/tie-formatting-problem.hh (class
2971         Tie_formatting_problem): index Chord_outline_map by Tuple2 for
2972         [column, direction]. This fixes laissez vibrer ties.
2973  
2974         * flower/include/tuple.hh (struct Tuple2): new file.
2975
2976         * mf/GNUmakefile (FC_FIND): new function. Find ncsb using
2977         $(FCMATCH), only if $(NCSB_DIR) not set. 
2978
2979         * configure.in (LINK_GXX_STATICALLY): only warn if $NCSB_DIR set.
2980
2981         * config.make.in (DOCUMENTATION): set FCMATCH.  
2982
2983         * autogen.sh (srcdir): don't set --with-ncsb-dir. 
2984
2985 2006-05-03  Graham Percival  <gpermus@gmail.com>
2986
2987         * Documentation/user/ various: final round of reorg.
2988
2989         * Documentation/user/instrument-notation.itely: some more
2990         fixes from Eduardo, thanks!
2991
2992 2006-05-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2993
2994         * VERSION (PACKAGE_NAME): release 2.9.3
2995
2996         * flower/file-path.cc (is_dir): canonicalize file name before stat'ing.
2997
2998         * lily/relocate.cc (framework_relocation): remove old relocation stuff.
2999
3000 2006-05-01  Mats Bengtsson  <mabe@s3.kth.se>
3001
3002         * scm/define-grob-properties.scm (all-user-grob-properties):
3003         Correct typo, thanks to Eduardo.
3004
3005 2006-05-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
3006
3007         * scripts/GNUmakefile (SEXECUTABLES): remove lilypond-ps2png.scm
3008
3009         * buildscripts/lilypond-words.py (F): indent fix.
3010
3011         * input/regression/tie-arpeggio-collision.ly: new file.
3012
3013         * lily/tie-formatting-problem.cc (set_column_chord_outline): new
3014         function: store outlines per column rank.
3015
3016         * lily/include/tie-configuration.hh (class Tie_configuration): add
3017         column_ranks_ to specification and configuration, to distinguish
3018         between ties for different heads in arpegiated chords.
3019
3020         * lily/relocate.cc (framework_relocation): use INSTALLER_PREFIX.
3021
3022         * *.py: more 4 space indents.
3023
3024         * autogen.sh (conf_flags): set sensible default for with-ncsb-dir
3025
3026 2006-05-01  Joe Neeman  <joeneeman@gmail.com>
3027
3028         * scm/lily-library.scm: Fix guile 1.6 compatibility in inf? and nan?
3029
3030 2006-05-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
3031
3032         * buildscripts/pfx2ttf.fontforge (err): create OTF files.
3033
3034         * scripts/abc2ly.py (dump_score): indent of 4 for python code. 
3035
3036         * configure.in (LINK_GXX_STATICALLY): remove locate() call.
3037
3038 2006-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3039
3040         * python/convertrules.py (conv): indent 4 for python files.
3041
3042 2006-04-29  Mats Bengtsson  <mabe@s3.kth.se>
3043
3044         * Documentation/user/changing-defaults.itely (Creating contexts):
3045         Clarify \new semantics.
3046
3047 2006-04-28  Graham Percival  <gpermus@gmail.com>
3048
3049         * Documentation/user/ various: major new sections in the
3050         Learning manual, slight reorg elsewhere.
3051
3052 2006-04-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
3053
3054         * mf/GNUmakefile (MFTRACE_FLAGS): add $(outdir) to $(ENCODING_FILE) 
3055
3056         * scm/framework-ps.scm (output-framework): remove PageMedia
3057
3058 2006-04-27  Graham Percival  <gpermus@gmail.com>
3059
3060         * Documentation/user/ tweaks.itely, working.itely: new
3061         files, being more advanced "learning manual" chapters.
3062
3063         * Documentation/user/ tutorial, putting, lilypond: reorg.
3064
3065 2006-04-26  Graham Percival  <gpermus@gmail.com>
3066
3067         * input/regression/lyric-combine-polyphonic.ly: fixed test
3068         (no more "can't find context `one'" error).
3069
3070 2006-04-25  Joe Neeman <joeneeman@gmail.com>
3071
3072         * lily/stem-tremolo.cc (print): fix whole note tremolo placement
3073
3074         * input/regression/stem-tremolo.ly: add 2 more whole note examples
3075         
3076 2006-04-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3077
3078         * lily/relocate.cc (read_relocation_dir): new function.
3079
3080 2006-04-26  Graham Percival  <gpermus@gmail.com>
3081
3082         * Documentation/user/instrument-notation.itely: a few more fixes
3083         from Eduardo, thanks!
3084
3085         * Documentation/user/README.txt: new file; contains info on
3086         style that used to be in lilypond.tely.
3087
3088         * Documentation/user/ various: first round of doc reorg.
3089
3090         * Documentation/user/baer-flat-bw.png: remove alpha bit from
3091         graphic; this probably causes problems on some pdf
3092         viewers, notably Adobe Acrobat.
3093
3094 2006-04-24  Graham Percival  <gpermus@gmail.com>
3095
3096         * Documentation/user/instrument-notation.itely: many alterations
3097         to Vocal music, from Eduardo Viera.
3098
3099 2006-04-23  Graham Percival  <gpermus@gmail.com>
3100
3101         * Documentation/user/instrument-notation.itely: fix \new
3102         instead of \context problem.
3103
3104 2006-04-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3105
3106         * lily/relocate.cc (expand_environment_variables): new function.
3107         (read_line): id.
3108         (read_relocation_file): id.
3109
3110         * scm/stencil.scm (eps-file->stencil): fix EPS PS embedding code 
3111
3112 2006-04-21  Erlend Aasland  <erlenda@gmail.com>
3113
3114         * ly/engraver-init.ly: remove old comments from TabVoice
3115
3116 2006-04-20  Graham Percival  <gpermus@gmail.com>
3117
3118         * Documentation/user/instrument-notation.itely: added Erlend's
3119         latest doc patch, thanks!
3120
3121 2006-04-19  Erlend Aasland <erlenda@gmail.com>
3122
3123         * lily/include/slur.hh:
3124         * lily/slur.cc:
3125         * lily/phrasing-slur-engraver.cc:
3126         * lily/slur-engraver.cc: Fix 'cut & paste' code by merging
3127         acknowledge_extra_object () from Phrasing_slur_engraver:: and
3128         Slur_engraver:: and putting it in
3129         Slur::auxiliary_acknowledge_extra_object ().
3130
3131         * ps/music-drawing-routines.ps (draw_dashed_slur): fix another bug
3132
3133         * lily/note-collision.cc: fix a comment
3134
3135 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
3136
3137         * stepmake/bin/add-html-footer.py: fix footer position in
3138         generated html files: before </body> and </html> tags.
3139
3140 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
3141
3142         * scripts/GNUmakefile: revert last "fix", which rather broke make.
3143         Earlier successive `make' commands finally compiled ok.
3144
3145         * Documentation/topdocs/INSTALL.texi: require mftrace 1.1.19.
3146
3147 2006-04-18  Erlend Aasland <erlenda@gmail.com>
3148
3149         * lily/include/stem-tremolo.hh:
3150         * lily/stem-tremolo.cc: move rotated_box () to Lookup:: and update
3151         callers.
3152
3153         * lily/lookup.cc:
3154         * lily/include/lookup.hh: add rotated_box ()
3155
3156 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
3157
3158         * scripts/GNUmakefile: bugfix: run help2man only after scripts have 
3159         been generated. Fixes "can't get `--help'" bug after make clean.
3160
3161         * THANKS: alphabetize contributors.
3162
3163 2006-04-17  Graham Percival  <gpermus@gmail.com>
3164
3165         * Documentation/user/instrument-notation.itely: added Erlend's
3166         tabs and banjo doc patch.  Thanks!
3167
3168 2006-04-17  Erlend Aasland  <erlenda@gmail.com>
3169
3170         * scm/define-grobs.scm: fix stem-attachment for tablature note heads.
3171
3172         * ps/music-drawing-routines.ps (draw_dashed_line): fix dash pattern bug.
3173
3174         * scm/output-lib.scm: add some more predefined string tunings.
3175
3176         * Documentation/user/instrument-notation.itely: and doc them.
3177
3178 2006-04-16  Jürgen Reuter  <reuter@ipd.uka.de>
3179
3180         * ly/engraver.ly: Remove obsolete comments.
3181
3182         * ly/gregorian-init.ly: Define default layout block.
3183
3184         * input/puer-fragment.ly: Updated and extended.
3185
3186 2006-04-15  Jan Nieuwenhuizen  <janneke@gnu.org>
3187
3188         * lily/lily-parser-scheme.cc: Use them to fix --output=DIR/BASE
3189         pdf conversion behaviour.
3190
3191         * flower/file-name.cc (dir_name)
3192         (get_working_directory): Move from relocate.cc.
3193
3194         * lily/relocate.cc (setup_paths): Remove rogue stat calls.
3195         
3196         * lily/relocate.cc: Encapsulate sys/stat.h in
3197         HAVE_STAT_H.
3198
3199 2006-04-14  Graham Percival  <gpermus@gmail.com>
3200
3201         * Documentation/user/ various: small updates from Cameron
3202         and Juergen, thanks!
3203
3204         * Documentation/user/ various: small updates of my own.
3205
3206         * THANKS: 2.7 -> 2.8.
3207
3208 2006-04-11  Graham Percival  <gpermus@gmail.com>
3209
3210         * scm/define-context-properties.scm: typo.
3211
3212         * Documentation/user/ : many more small updates.
3213
3214 2006-04-13  Jürgen Reuter  <reuter@ipd.uka.de>
3215
3216         * scm/define-music-types.scm: disposed "docme".
3217
3218 2006-04-11  Erlend Aasland  <erlenda@gmail.com>
3219
3220         * lily/hairpin.cc: make niente circles a bit smaller.
3221
3222 2006-04-10  Erlend Aasland  <erlenda@gmail.com>
3223
3224         * mf/GNUmakefile: remove redundant mftrace check. Also remove
3225         get-pfa and get-*-fonts targets.
3226
3227 2006-04-10  Graham Percival  <gpermus@gmail.com>
3228
3229         * THANKS, Documentation/user/ basic-notation, advanced-notation,
3230         music-glossary, programming-interface: more minor fixes
3231         from mailist.
3232
3233         * scm/define-grob-properties.scm: clarified direction, thanks Mats!
3234
3235         * scm/define-context-properties.scm: another old \property update.
3236         This time tested for compiling!
3237
3238 2006-04-10  Erlend Aasland  <erlenda@gmail.com>
3239
3240         * mf/GNUmakefile: fix for mftrace version >= 1.2.0
3241
3242 2006-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
3243
3244         * scm/define-context-properties.scm (all-user-translation-properties): 
3245         * Documentation/user/global.itely (Page formatting): Compile fix.
3246
3247 2006-04-09  Mats Bengtsson  <mabe@s3.kth.se>
3248
3249         * Documentation/user/advanced-notation.itely (Polymetric
3250         notation): Update the example to use the "+" symbol and add link
3251         to input/test/compound-time.ly.
3252
3253 2006-04-08  Graham Percival  <gpermus@gmail.com>
3254
3255         * scm/define-grob-properties.scm: clarify docs for #'direction.
3256
3257         * scm/define-context-properties.scm: update old \property override.
3258
3259         * Documentation/user/ advanced-notation, global, lilypond-book:
3260         more minor doc updates.
3261
3262 2006-04-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
3263
3264         * lily/parser.yy (Generic_prefix_music_scm): append lists, not objects.
3265
3266         * scm/backend-library.scm (search-gs): oops.
3267
3268 2006-04-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
3269
3270         * scripts/lilypond-book.py (output): use base, not filename for href.
3271
3272         * scm/backend-library.scm: only look for gs.
3273
3274         * scripts/lilypond-book.py (output): fix printfilename.
3275
3276         * lily/parser.yy (music_function_musicless_prefix): fold together
3277         definitions of signature (SCM*) (Music|post_event|chord_body_element)
3278
3279         * lily/slur.cc (print): only set font-size if not set yet.
3280
3281         * lily/slur-configuration.cc (add_score): improved layout of debug
3282         scoring output.
3283
3284 2006-04-05  David Feuer  <David.Feuer@gmail.com>
3285
3286         * music-drawing-routines.ps (draw_round_box): removed testing artifact.
3287         (draw_circle): Hopefully fixed regression.
3288         Improved documentation for several procedures.
3289         
3290 2006-03-04  Werner Lemberg  <wl@gnu.org>
3291
3292         * ly/engraver-init.ly (\Score): Add beam-event to quotedEventTypes.
3293
3294 2006-04-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
3295
3296         * scripts/musicxml2ly.py (bindir): add dynamic
3297         relocation. 
3298
3299 2006-04-04  Graham Percival  <gpermus@gmail.com>
3300
3301         * Documentation/user/ basic-notation, advanced-notation, putting,
3302         instrument-notation, invoking, lilypond, THANKS: another ream of small
3303         fixes from the Doc Helpers.
3304
3305 2006-04-03  David Feuer  <David.Feuer@gmail.com>
3306
3307         * music-drawing-routines.ps: remove superfluous gsave/grestore pairs.
3308
3309         * lilyponddefs.ps (set-ps-scale-to-lily-scale): Fixed code duplication.
3310
3311         * Cleaned up interfaces between PostScript and Scheme, and moved
3312         computations from PostScript to Scheme:
3313
3314         * music-drawing-routines.ps
3315         (*SF, stroke_and_fill): new procedures.  Replaced stroke and fill
3316         with stroke_and_fill throughout.
3317         (euclidean_length, print_letter, draw_box): Deleted unused
3318         procedures.  If someone needs draw_box, implement it using
3319         draw_round_box; don't duplicate code.
3320         (print_glyphs, draw_round_box, draw_polygon, draw_repeat_slash):
3321         Refactored/cleaned up interfaces.
3322         (mark_URI): Moved.
3323
3324         * output-ps.scm: reordered arguments to PostScript functions to
3325         match new interfaces
3326         (glyph-string): Rewrote glyph-string.
3327         (grob-cause): Replaced string-append with format.
3328         (repeat-slash): Rewrote to do computation here.
3329         (round-filled-box): Rewrote to do computation here.
3330
3331 2006-04-04  Erlend Aasland  <erlenda@gmail.com>
3332
3333         * stepmake/stepmake/generic-targets.make: add cvs-clean target
3334
3335         * stepmake/stepmake/toplevel- targets.make: print help info about
3336         cvs-clean
3337
3338 2006-04-03  Erlend Aasland  <erlenda@gmail.com>
3339
3340         * input/regression/hairpin-circled.ly: new file
3341
3342 2006-04-03  Erlend Aasland  <erlenda@gmail.com>
3343
3344         * lily/hairpin.cc (print): add support for circled tip
3345
3346         * scm/define-grob-properties.scm: add circled-tip parameter
3347
3348         * scm/define-grobs.scm: init circled-tip to false
3349         
3350 2006-04-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
3351
3352         * scm/music-functions.scm (quote-substitute): set
3353         iterators-ctor. 
3354
3355 2006-03-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
3356
3357         * Documentation/bibliography/GNUmakefile ($(outdir)/%.html): set
3358         BSTINPUTS. 
3359
3360         * Documentation/topdocs/AUTHORS.texi (Top): add David Feuer.
3361
3362         * scm/output-ps.scm (glyph-string): revert cid selectfont.
3363
3364 2006-03-31  David Feuer  <david.feuer@gmail.com>
3365         
3366         * scm/framework-ps.scm:
3367         
3368         * scm/output-ps.scm: glyph-string now produces smaller, more
3369         readable, and probably faster PostScript.  Several findfont
3370         scalefont setfont instances changed to selectfont
3371         Hacked-up string-appends changed to formats.
3372
3373         * ps/music-drawing-routines.ps: add print_letter, print_glyphs.
3374         
3375 2006-03-30  Graham Percival  <gpermus@gmail.com>
3376
3377         * scm/lily-library.scm: make "no version" warning message more polite.
3378
3379         * lily/music.cc: add double quotes to failed octave check.
3380
3381         * Documentation/user/ advanced-notation, changing-defaults,
3382         instrument-notation, invoking, music-glossary: whole bunch of minor
3383         fixes from mailist.
3384
3385 2006-03-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
3386
3387         * Documentation/bibliography/GNUmakefile ($(outdir)/%.html): use
3388         $(buildscriptdir) iso. depth.
3389
3390         * VERSION (PACKAGE_NAME): release 2.9.1
3391
3392 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3393
3394         * lily/pango-font.cc (pango_item_string_stencil): more robustness.
3395
3396         * VERSION (PATCH_LEVEL): bump version number.
3397
3398         * flower/include/guile-compatibility.hh (scm_from_uint32): add
3399         scm_from_uint32 ()
3400
3401         * lily/pango-font.cc (pango_item_string_stencil): use
3402         scm_from_uint32 ()
3403
3404         * mf/GNUmakefile ($(outdir)/emmentaler-%.otf
3405         $(outdir)/emmentaler-%.svg): remove canary.
3406
3407         * lily/pango-font.cc (pango_item_string_stencil): only use uXXX
3408         glyphnames if we have a ttf font.
3409
3410 2006-03-30  Mats Bengtsson  <mabe@s3.kth.se>
3411
3412         * Documentation/user/advanced-notation.itely (Font selection):
3413         Corrected reference to the font-family-override.ly example.
3414
3415 2006-03-30  Joe Neeman  <joeneeman@gmail.com>
3416         
3417         * lily/chord-tremolo-engraver.cc (acknowledge_stem): set the
3418         stem-tremolo object in the stem (or else the stem might not be
3419         long enough).
3420
3421 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3422
3423         * lily/ttf.cc (print_trailer): only print existing glyphs.
3424
3425 2006-03-30  Joe Neeman  <joeneeman@gmail.com>
3426
3427         * lily/stem-tremolo.cc (print): for whole notes (and breves, etc.)
3428         position the tremolo based on the position of the notehead.
3429
3430         * input/regression/stem-tremolo.ly: add example of unbeamed eighth
3431         notes and update the texidoc line with the new positioning rules.
3432         
3433 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3434
3435         * lily/ttf.cc (print_trailer): don't always use uXXX glyphname.
3436
3437         * scripts/lilypond-book.py (Module): set default for linewidth if
3438         preamble not found.
3439
3440 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3441
3442         * VERSION (PACKAGE_NAME): release 2.9.0.
3443
3444         * input/regression/stem-tremolo-position.ly: new file.
3445
3446         * lily/stem-tremolo.cc: remove Stem_tremolo::dim_callback
3447
3448 2006-03-28  Joe Neeman  <joeneeman@gmail.com>
3449
3450         * lily/stem-tremolo.cc (print): position
3451         the tremolo depending only on the end of the stem
3452         and not on the notehead
3453         (raw_stencil): center, on the middle staff line, the
3454         flag that is closest to the end of the stem (previously
3455         the bottom flag)
3456         (calc_width): add this callback to shorten a tremolo when
3457         it is beamed or it is stemup with a flag
3458         (style): add this callback to make a tremolo rectangular when
3459         it is beamed or it is stemup with a flag
3460         (rotated_box): this is like Lookup::beam but makes a rotated
3461         rectangle instead of a parallelogram
3462
3463         * lily/stem.cc (calc_stem_info): make sure the stem
3464         is long enough to fit the tremolo
3465         (calc-length): reduce the length of tremolo stems since the
3466         tremolo code is now capable of better positioning
3467
3468         * scm/define-grobs.scm: make calc_width the default beam-width
3469         callback for stem-tremolo and add the style callback
3470                 
3471 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3472
3473         * lily/tuplet-bracket.cc (calc_control_points): handle suicide
3474         case. 
3475
3476 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3477
3478         * lily/ttf.cc (make_index_to_charcode_map): restore old
3479         cmap. 
3480
3481 2006-03-28  Werner Lemberg  <wl@gnu.org>
3482
3483         * lily/pango-font.cc (get_unicode_name): Fix `uXXXXX' glyph names.
3484
3485 2006-03-28  Graham Percival  <gpermus@gmail.com>
3486
3487         * THANKS: update for 2.9, add section for Documentation helpers.
3488
3489         * Documentation/topdocs/NEWS.tely: compile fix.
3490
3491         * Documentation/user/ basic-notation, global, advanced-notation,
3492         examples.itely: minor fixes from mailist.
3493
3494 2006-03-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
3495
3496         * mf/feta-bolletjes.mf: match width of solfa notes with normal
3497         note heads. 
3498
3499         * lily/ttf.cc (print_trailer): use it.
3500
3501         * lily/pango-font.cc (get_unicode_name): new function.
3502
3503         * lily/ttf.cc (make_index_to_charcode_map): move function from
3504         open-type-font.cc
3505         (print_trailer): substitute uniXXXX name if applicable. 
3506
3507         * lily/pango-font.cc (get_index_to_charcode_map): new function.
3508         (pango_item_string_stencil): use it to generate uniXXXX names.
3509
3510         * mf/feta-bolletjes.mf (overdone_heads): add small style (ugly)
3511         note heads, for uniform widths in shape note output.
3512         (overdone_heads): hmm. remove them again.
3513
3514         * scripts/lilypond-book.py (output): add links to filenames.
3515
3516         * Documentation/topdocs/INSTALL.texi (Top): update versions.
3517
3518         * lily/note-collision.cc (get_clash_groups): only consider when
3519         Note_column::dir <> CENTER. 
3520
3521         * scripts/lilypond-book.py (get_option_parser): init output_name
3522         to ''. 
3523
3524 2006-03-24  Graham Percival  <gpermus@gmail.com>
3525
3526         * Documentation/topdocs/NEWS.tely: add @end itemize
3527
3528         * Documentation/user/ global, advanced-notation: minor
3529         stuff from mailist.
3530
3531 2006-03-23  Graham Percival  <gpermus@gmail.com>
3532
3533         * Documentation/user/ lilypond.tely, music-glossary,
3534         preface: housekeeping; 2005->2006, remove "notes for 2.6"
3535
3536 2006-03-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
3537
3538         * mf/GNUmakefile: don't install .enc files.
3539
3540         * Documentation/topdocs/NEWS.tely: clear for 2.9 cycle.
3541
3542         * VERSION (PATCH_LEVEL): bump to 2.9.0
3543
3544 2006-03-22  Graham Percival  <gpermus@gmail.com>
3545
3546         * Documentation/user/advanced-notation.itely: minor fixes
3547         from mailist.
3548
3549 2006-03-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
3550
3551         * Documentation/topdocs/AUTHORS.texi (Top): add Joe Neeman.
3552
3553         * branch lilypond_2_8
3554
3555 2006-03-22  Han-Wen Nienhuys  <lilydev@localhost.localdomain>
3556
3557         * scripts/lilypond-book.py (samefile): new function, for windoze
3558         compatibility.
3559
3560 2006-03-21  Graham Percival  <gpermus@gmail.com>
3561
3562         * ly/engraver-init.ly: add info about StaffGroup.
3563
3564 2006-03-21  Han-Wen Nienhuys  <lilydev@localhost.localdomain>
3565
3566         * input/regression/stem-direction-context.ly: idem.
3567
3568         * Documentation/topdocs/NEWS.tely (Top): fix interpolation example.
3569
3570         * THANKS: add Mats.
3571
3572         * input/regression/page-layout-twopass.ly: comment out \markup so
3573         tweak-file is left.
3574
3575         * lily/instrument-name-engraver.cc (finalize): add to instrument
3576         name global System. This also fixes chopped instrument names, but
3577         doesn't crash when there are slurs/beams.
3578
3579         * lily/slur-configuration.cc (add_score): disallow negative slur
3580         scores.
3581         
3582 2006-03-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3583
3584         * scm/framework-ps.scm (dump-stencil-as-EPS): remove debugging code.
3585
3586         * lily/instrument-name-engraver.cc (process_music): kludge: add
3587         InstrumentName spanner to axis group of left bound. Fixes chopped
3588         off instrument names in EPS images.
3589
3590         * input/regression/lyric-hyphen-retain.ly: elaborate explanation.
3591
3592         * scripts/abc2ly.py (option_parser): update to 2.7.40
3593
3594 2006-03-20  Graham Percival  <gpermus@gmail.com>
3595
3596         * THANKS: move small doc contributors to SUGGESTIONS.
3597
3598         * Documentation/user/ basic-notation, advanced-notation,
3599         global: small changes from mailist.
3600
3601 2006-03-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3602
3603         * Documentation/user/advanced-notation.itely (Text marks): update
3604         for new rehearsalMarkAlignSymbol convention.
3605
3606         * VERSION (PATCH_LEVEL): bump version.
3607
3608         * input/test/instrument-name-align.ly: new file.
3609
3610         * scm/define-markup-commands.scm (hcenter-in): add hcenter-in.
3611
3612         * input/test/instrument-name-align.ly: new file. Document how to
3613         align instrument names.
3614
3615         * lily/mark-engraver.cc: remove properties.
3616
3617         * scm/define-context-properties.scm
3618         (all-user-translation-properties): remove align symbol properties
3619         for barnumber/reh. mark.
3620
3621         * lily/break-align-interface.cc (self_align_callback): new
3622         interface, new function. Look at complete alignment. This handles
3623         tunable break alignments in case break-align-symbols are missing.
3624
3625         * lily/bar-number-engraver.cc (acknowledge_break_alignment): new function
3626
3627         * lily/mark-engraver.cc (acknowledge_break_alignment): new function.
3628
3629         * python/convertrules.py (conv): mark/bar number alignment rule.
3630
3631         * lily/break-align-interface.cc (calc_positioning_done): also
3632         store offset from last visible break-alignment to its
3633         neighbor. This makes alignment on non-visible objects more reliable.
3634
3635         * po/lilypond.pot (Module): ran po-replace.
3636
3637         * input/regression/tie-single-manual.ly (Module): new file.
3638
3639         * lily/tie-formatting-problem.cc (find_optimal_tie_configuration):
3640         look at has_manual_position_.
3641         (from_ties): set has_manual_position_ if tie has staff-position set.
3642
3643         * lily/tuplet-bracket.cc (calc_positions): idem.
3644
3645         * lily/tuplet-number.cc (print): don't print tupletnumber if it
3646         doesn't span time.
3647
3648 2006-03-19  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3649
3650         * scm/define-markup-commands.scm (smallCaps): new markup command
3651         for turning a text to small caps using smaller font size and upper
3652         casing.
3653
3654 2006-03-17  Graham Percival  <gpermus@gmail.com>
3655
3656         * Documentation/user/ examples, instrument-notation,
3657         advnaced-notation: minor fixes from mailist.
3658
3659 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3660
3661         * Documentation/user/tutorial.itely (First steps): change example
3662         to verbatim.  
3663
3664 2006-03-17  Graham Percival  <gpermus@gmail.com>
3665
3666         * Documentation/user/ examples, advanced: minor changes from mailist.
3667
3668         * THANKS: add Geoff Horton, for documentation stuff.
3669
3670 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3671
3672         * python/lilylib.py (system): revert have_select kludge.
3673
3674         * Documentation/user/tutorial.itely (Commenting input files):
3675         update version numbers in doc. 
3676
3677         * scm/define-grob-interfaces.scm (multi-measure-interface): add
3678         bound-padding to multi-measure-interface
3679
3680 2006-03-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3681
3682         * input/test/engraver-example.ily: update version number.
3683
3684         * VERSION (PACKAGE_NAME): release 2.7.39
3685
3686         * lily/note-spacing.cc (get_spacing): heighten threshold where
3687         accidentals/arpeggios influence previous spacing fully.
3688
3689         * lily/rest.cc (y_offset_callback): only use direction if
3690         staff-position wasn't set before.
3691
3692         * lily/bar-number-engraver.cc: add support for
3693         barNumberAlignSymbol. 
3694         add ADD_ACKNOWLEDGER() call for break_aligned. Fixes bar-number-breathe
3695
3696         * lily/pointer-group-interface.cc (set_ordered): new function. 
3697         (add_unordered_grob): new function.
3698
3699         * lily/grob-array.cc (Grob_array): grob-arrays are always assumed
3700         to ordered, unless the opposite has been proved.  This fixes
3701         random reordering of large object groups across linebreaks,
3702         eg. beams.
3703
3704         * lily/main.cc (do_chroot_jail): printf format fix.
3705
3706         * lily/tie-formatting-problem.cc (generate_configuration):
3707         multiply y-shift for dot with direction.
3708  
3709         * scm/define-markup-commands.scm (note-by-number): put (magstep
3710         size) in y-attach too.
3711
3712         * Documentation/topdocs/NEWS.tely (Top): show override.
3713
3714         * scm/define-grobs.scm (all-grob-descriptions): reinstate neutral
3715         direction for stems.
3716         
3717 2006-03-15  Graham Percival  <gpermus@gmail.com>
3718
3719         * Documentation/user/ changing-defaults, global: minor
3720         fixes from mailist.
3721
3722 2006-03-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3723
3724         * lily/lexer.ll (Lily_lexer): bump required version to 2.7.38
3725
3726         * lily/spacing-spanner.cc (musical_column_spacing): crude fix for
3727         breakable items after uniformly stretched notes.
3728
3729         * lily/tie-formatting-problem.cc (set_chord_outline): initialize
3730         outline with outer edge of note heads. This prevents infinity
3731         problems with tied whole notes.
3732
3733         * scripts/lilypond-book.py (do_file): use os.popen
3734
3735         * python/convertrules.py (conv): add rule for Stem #'beamed-*
3736
3737 2006-03-14 Erik Sandberg  <mandolaerik@gmail.com>
3738
3739         * Documentation/user/invoking.itely: Add ragged-right to bug report
3740         guidelines.
3741
3742 2006-03-14  Graham Percival  <gpermus@gmail.com>
3743
3744         * Documentation/user/global.itely: small fix from mailist.
3745
3746 2006-03-14  Mats Bengtsson  <mabe@s3.kth.se>
3747
3748         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use the
3749         file descriptor returned by tempfile.mkstemp() when writing
3750         to tmpfile and closing it. Solves problem with unlink(tmpfile)
3751         on mingw.
3752
3753 2006-03-14  Jan Nieuwenhuizen  <janneke@gnu.org>
3754
3755         * po/fi.po: newline bugfix.
3756
3757 2006-03-12  Jan Nieuwenhuizen  <janneke@gnu.org>
3758
3759         * scm/paper.scm (paper-alist): Rounding fixes.
3760
3761 2006-03-13  Graham Percival  <gpermus@gmail.com>
3762
3763         * Documentation/user/ changing-defaults, instrument-notation,
3764         tutorial: small fixes from mailist, mostly from Mats.  Thanks!
3765
3766 2006-03-13 Heikki Junes  <hjunes@cc.hut.fi>
3767
3768         * po/fi.po: update.
3769
3770 2006-03-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3771
3772         * stepmake/bin/add-html-footer.py (mail_address_url): don't add
3773         mailto: to http:// 
3774
3775         * python/lilylib.py (print_environment): move ps_page_count to
3776         lilypond-book.py
3777
3778 2006-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3779
3780         * Documentation/user/music-glossary.tely (G clef): fix clef alignments.
3781
3782         * scm/framework-ps.scm (embed-document): new function. Use to
3783         embed PFA files.
3784
3785         * ly/engraver-init.ly: init rehearsalMarkAlignSymbol to staff-bar.
3786
3787 2006-03-12  Mats Bengtsson  <mabe@s3.kth.se>
3788
3789         * Documentation/user/instrument-notation.itely (Setting simple
3790         songs): Added \book{...} around the full example, so the separate
3791         markups are included in the printed example. 
3792
3793 2006-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3794
3795         * scripts/lilypond-book.py (get_latex_textwidth): explicitly close
3796         tmphandle.
3797
3798         * python/lilylib.py (system): rewrite system() using
3799         subprocess. Remove >& redirection trickery.
3800
3801 2006-03-11  Graham Percival  <gpermus@gmail.com>
3802
3803         * Documentation/user/ changing-defaults, global, scheme-tutorial,
3804         notation-appendices.itely: minor fixes from mailist.
3805
3806 2006-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3807
3808         * Documentation/user/GNUmakefile ($(outdir)/lilypond.html):
3809         unsplit man also needs images.
3810
3811         * tex/texinfo.tex (sectionheading, q.v.): relax after \char'15.
3812
3813         * VERSION (PACKAGE_NAME): 2.7.38 released.
3814
3815 2006-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3816
3817         * scripts/lilypond-book.py (get_latex_textwidth): look for latex
3818         log in output dir.
3819
3820 2006-03-08  Johannes Schindelin  <Johannes.Schindelin@gmx.de>
3821
3822         * lily/audio-column.cc, lily/score-performer.cc: MIDI output now
3823         respects the Score.skipTypesetting property.
3824         
3825 2006-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3826
3827         * scm/framework-ps.scm (ps-embed-cff): no Setup section in
3828         Prolog. No %%EOF after CFF file.
3829
3830 2006-03-08  Joe Neeman  <joeneeman@gmail.com>
3831         
3832         * lily/constrained-breaking.cc (get_max_systems): used to return a
3833         much too big value
3834         (combine_demerits): use pointers to reduce copying data
3835         (calc_subproblem): idem
3836         (get_page_penalty): add page turn penalties
3837         
3838 2006-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3839
3840         * Documentation/user/invoking.itely (Invoking lilypond): better
3841         explanation of -e usage.
3842
3843         * lily/main.cc (main_with_guile): don't append to
3844         init_scheme_code_string
3845
3846         * tex/texinfo.tex (sectionheading, q.v.): don't center @image.
3847
3848         * Documentation/user/invoking.itely: add note about MacOS X scripts.
3849
3850         * scripts/convert-ly.py (do_options): don't print help for
3851         --show-rules rule.
3852
3853         * tex/texinfo.tex: patch texinfo.tex to leave single quotes in
3854         @code and @example. Update from texinfo.tex from CVS.
3855
3856 2006-03-08  Graham Percival  <gpermus@gmail.com>
3857
3858         * Documentation/user/scheme-tutorial.itely: clarifies distances
3859         measured in staff-spaces.
3860
3861 2006-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3862
3863         * lily/slur.cc (outside_slur_callback): only calculate offsets if
3864         consider[k] is true.
3865
3866         * scm/output-ps.scm (grob-cause): put numbers to ~$ (Thanks Johannes!)
3867
3868         * lily/spacing-basic.cc (standard_breakable_column_spacing): also
3869         consider columns that have originals.  Unifies spacing for mm
3870         rests around line breaks.
3871
3872         * lily/multi-measure-rest.cc (set_spacing_rods): read bound-padding.
3873         (set_text_rods): idem.
3874         (calculate_spacing_rods): new function: share code between
3875         set_text_rods and set_spacing_rods.
3876         (set_text_rods): take extents of bounds into account.  
3877
3878 2006-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3879
3880         * Documentation/user/basic-notation.itely (Writing music in
3881         parallel): don't use relative.
3882
3883 2006-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3884
3885         * ly/music-functions-init.ly (Module): add shiftDurations
3886
3887         * ly/drumpitch-init.ly (drumPitchNames): add tamtam.
3888
3889         * scm/paper.scm (paper-alist): no decimals for Ax paper sizes. 
3890
3891         * ly/engraver-init.ly: init vocalName to nil.
3892
3893 2006-03-05 Erik Sandberg  <mandolaerik@gmail.com>
3894
3895         * scm/music-functions.scm (music->make-music): bugfix,
3896         KeyChangeEvents are now handled correctly.
3897
3898         * scripts/lilypond-book.py: Add --debug option.
3899
3900 2006-03-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3901
3902         * python/lilylib.py: add tempfile.
3903
3904 2006-03-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3905
3906         * VERSION (PACKAGE_NAME): release 2.7.37
3907
3908         * python/lilylib.py (ps_page_count): remove make_ps_images().
3909         (ps_page_count): remove mkdir_p
3910         (system): remove cleanup_temp.
3911         (exit): remove lilypond_version_(check)
3912         (error_log): remove pseudo_filter_p
3913         remove read_pipe
3914         remove cp_to_dir
3915         remove identify
3916
3917         * scripts/lilypond-book.py (Lilypond_snippet.compose_ly): don't
3918         use __main__
3919
3920         * lily/accidental-engraver.cc (make_standard_accidental): only add
3921         support for side-axis is X_AXIS. Fixes text-spacing-accidental.ly
3922
3923         * mf/GNUmakefile ($(outdir)/emmentaler-%.otf
3924         $(outdir)/emmentaler-%.svg): rewrite without functions; too many
3925         Make incompatibilities.
3926
3927         * scm/output-ps.scm (grob-cause): replace backslashes by /
3928         (glyph-string): use ~$ for less decimals for glyph-string and grob-cause.
3929
3930 2006-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
3931
3932         * cygwin/GNUmakefile: Install fixes.
3933
3934         * scripts/GNUmakefile (SEXECUTABLES): Install fix: remove mup2ly.
3935
3936         * lily/note-head.cc (head::get_balltype): Compile fix.
3937
3938         * flower/file-name.cc (dos_to_posix): Flower string fix.
3939
3940 2006-03-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3941
3942         * python/lilylib.py: pychecker cleanups.
3943
3944         * scripts/lilypond-book.py
3945         (Lilypond_snippet.output_print_filename): pychecker cleanups
3946
3947         * scripts/midi2ly.py (Key.dump): pychecker cleanups.
3948
3949         * python/lilylib.py (underscore): remove identify() , warranty()
3950
3951         * ps/music-drawing-routines.ps: change Border routine for GSView
3952         compatibility.
3953
3954         * lily/stem.cc (height): use quantize-positions.  This triggers
3955         set_stem_lengths, so scripts on beamed stems are handled correctly.
3956
3957         * lily/side-position-interface.cc (aligned_side): check if edges
3958         of script are inside staff. Fixes accent of edge of the staff.
3959
3960         * input/regression/staccato-pos.ly: more examples.
3961
3962         * stepmake/aclocal.m4 (depth): fix bashism.
3963
3964         * lily/lyric-combine-music-iterator.cc: move from
3965         new-lyric-combine-iterator.cc
3966         (process): add pending_grace_lyric_ member to delay lyrics on
3967         grace notes.
3968
3969         * lily/system-start-text.cc (print): suicide if we don't have any
3970         elements. Fixes hara kiri'd instrument names.
3971
3972         * scripts/mup2ly.py (Module): remove.
3973
3974 2006-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3975
3976         * Documentation/user/global.itely (A single music expression):
3977         close @lilypond properly
3978
3979         * lily/volta-bracket.cc (modify_edge_height): change from
3980         after_line_breaking_callback. Suicide last bracket if appropriate.
3981  
3982         * python/lilylib.py: strip getopt support
3983
3984         * scripts/etf2ly.py (do_options): use optparse
3985
3986         * scripts/midi2ly.py: optparse, strip lilylib copy. 
3987
3988         * scripts/abc2ly.py (voices): use optparse.
3989
3990         * stepmake/stepmake/generic-vars.make: new function absdir.
3991
3992         * scripts/convert-ly.py (bindir): use optparse, argv[0] relocation.
3993
3994         * scripts/lilypond-book.py (find_file): use global_options for
3995         include path
3996
3997         * scm/ps-to-png.scm (ps-page-count): prevent null characters
3998         entering C code.
3999
4000 2006-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4001
4002         * python/lilylib.py (get_global_option): ughness for extracting
4003         global options from lilylib.
4004         (NonDentedHeadingFormatter.format_heading): move from musicxml2ly
4005
4006         * scripts/lilypond-book.py (get_option_parser): use optparse for
4007         option handling.  Put options in global_options variable.
4008
4009 2006-02-28  Heikki Junes  <hjunes@cc.hut.fi>
4010
4011         * Documentation/index.html.in: clarify.
4012
4013 2006-02-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4014
4015         * scm/layout-page-layout.scm (write-page-breaks): add a
4016         music-system-heights property to the page layout output.
4017
4018         * scm/page.scm (make-page-stencil): take footer into account when
4019         computing the 'space-left page property
4020         (annotate-space-left): take footer into account when annonating
4021         space left.
4022
4023 2006-02-28  Graham Percival  <gpermus@gmail.com>
4024
4025         * Documentation/user/ advanced-notation, global: more (final)
4026         docs for music expressions, removed special fermatas.
4027
4028 2006-02-27  Graham Percival  <gpermus@gmail.com>
4029
4030         * Documentation/user/ basic-notation, global: minor changes
4031         from mailist.
4032
4033 2006-02-26  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4034
4035         * scm/framework-ps.scm:         
4036         * scm/lily-library.scm (nan?, inf?): Move guile 1.6 compatibility
4037         layer for inf? and nan? from framework-ps to lily-library.
4038
4039 2006-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4040
4041         * mf/GNUmakefile ($(outdir)/emmentaler-$(1).otf
4042         $(outdir)/emmentaler-$(1).svg): remove backslashes from define endef.
4043
4044         * buildscripts/substitute-encoding.py (Module): remove file.
4045
4046         * mf/GNUmakefile: more PFA strippage.
4047
4048         * mf/aybabtu.pe.in (i): remove PFAaybabtu generation
4049
4050         * buildscripts/gen-emmentaler-scripts.py (i): remove PFAemmentaler
4051         generation
4052
4053         * scm/framework-ps.scm: remove font name munging.
4054
4055         * Documentation/topdocs/INSTALL.texi (Top): bump GS requirement.
4056
4057 2006-02-25  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4058
4059         * scm/markup.scm (define-markup-command): change
4060         def-markup-command to define-markup-command
4061
4062         * scm/music-functions.scm (define-music-function): change
4063         def-music-function to define-music-function.
4064
4065         * python/convertrules.py (conv): rules for def-music-function
4066         and def-markup-commands
4067
4068         * Documentation/user/programming-interface.itely,
4069         input/no-notation/display-lily-tests.ly,
4070         input/regression/lily-in-scheme.ly,
4071         input/regression/markup-user.ly,
4072         input/regression/music-function.ly, input/regression/tie-chord.ly,
4073         scm/fret-diagrams.scm, ly/music-functions-init.ly,
4074         ly/gregorian-init.ly: use new macro names (define-music-function,
4075         define-markup-command).
4076
4077 2006-02-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4078
4079         * scripts/lilypond-book.py (main): write Makefile dependencies file. 
4080         (output): add comments to lp-book latex output.
4081
4082         * GNUmakefile.in (footifymail): use gmane address for webpage bug
4083         address.
4084
4085 2006-02-23  Graham Percival  <gpermus@gmail.com>
4086
4087         * Documentation/user/ tutorial, global: minor changes.
4088
4089 2006-02-23  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4090
4091         * mf/GNUmakefile: add '\' in multi-line "define ... endef"
4092         blocks (for make 3.80)
4093
4094         * scm/parser-ly-from-scheme.scm (ly:parse-string-result): add
4095         \notemode so that user should not have to explicitely type it.
4096
4097         * scm/define-music-display-methods.scm: various
4098         fixes (ApplyOutputEvent, ApplyContext; \new, \context and derived
4099         constructs)
4100
4101         * input/no-notation/display-lily-tests.ly: new tests for
4102         \applyOutput and \applyContext
4103
4104 2006-02-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4105
4106         * lily/constrained-breaking.cc: patch by Joe Neeman: "I have
4107         changed it slightly so that the number of systems returned by
4108         solve () will be the same as the last value passed to resize
4109         (). I've also added more documentation, removed casts, fixed style
4110         problems and put in some recovery if constraints aren't satisfied."
4111
4112 2006-02-23  Jan Nieuwenhuizen  <janneke@gnu.org>
4113
4114         * elisp/lilypond-mode.el (count-matches-as-number): New funtion
4115         for emacs < 22 compatibility.
4116         (count-rexp): Use it.
4117         (LilyPond-string-current-midi, LilyPond-string-all-midi): Remove
4118         substring juggling (Milan Zamazal).
4119
4120 2006-02-23  Graham Percival  <gpermus@gmail.com>
4121
4122         * Documentation/user/ basic-notation, advanced-notation,
4123         global.itely, invoking.itely, tutorial,itely:
4124         minor fixes from mailist.
4125
4126         * scm/define-markup-commands.scm: improve docs of \filled-box.
4127
4128 2006-02-23  Heikki Junes  <hjunes@cc.hut.fi>
4129
4130         * Documentation/index.html.in: changes concern the previous release.
4131
4132         * input/regression/+.ly: cultivate typographical terminology.
4133
4134 2006-02-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4135
4136         * scm/define-grob-interfaces.scm (parentheses-interface): add
4137         padding to parentheses-interface.
4138
4139         * Documentation/user/GNUmakefile: remove $(CROSS) support from
4140         Documentation/user/GNUmakefile. Use --disable-documentation for that.
4141
4142         * VERSION (PATCH_LEVEL): release 2.7.36
4143
4144         * lily/slur.cc: add avoid-slur (ugh.)
4145         
4146         * lily/slur-configuration.cc (fit_factor): oops, skip point if
4147         intersection gets smaller. This fixes slurs over extreme points.
4148
4149         * lily/melody-engraver.cc (stop_translation_timestep): ignore
4150         stems with neutral-direction set.
4151
4152         * lily/piano-pedal-engraver.cc (create_text_grobs): idem.
4153
4154         * lily/open-type-font.cc (load_table): format error.
4155
4156         * lily/change-iterator.cc (process): format fix.
4157
4158         * flower/include/international.hh (_f): idem.
4159
4160         * flower/include/std-string.hh: add format printf attribute.
4161
4162         * scm/define-grobs.scm (all-grob-descriptions): height of all
4163         PedalLineSpanner is Y-extent property. Fixes pedal-ped.ly
4164
4165         * lily/ambitus-engraver.cc (finalize): use grob_array. This fixes
4166         ambitus lines.
4167
4168         * input/regression/beam-cross-staff-slope.ly: remove decrescendo.
4169
4170 2006-02-22 Erik Sandberg  <mandolaerik@gmail.com>
4171
4172         * input/regression/: upgraded syntax for some files.
4173
4174         * THANKS: Add bughunters.
4175
4176 2006-02-22  Graham Percival  <gpermus@gmail.com>
4177
4178         * Documentation/user/ invoking.itely, advanced-notation.itely,
4179         global.itely: long-awaited "let's make chapter 10 not suck"
4180         update.  Rearrange chapter 10; now called "global issues",
4181         addresses file structure, etc.  Some info from other files
4182         moved into global.itely.
4183
4184 2006-02-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4185
4186         * lily/accidental-engraver.cc (acknowledge_rhythmic_head): also
4187         catch trill-span-event notes.
4188
4189         * Documentation/user/examples.itely (Ancient notation templates): typo.
4190         (Jazz combo): typo.
4191
4192         * scripts/lilypond-book.py (main): scrap invokes_lilypond(). 
4193
4194         * Documentation/user/basic-notation.itely (Ties): document \repeatTie.
4195
4196         * Documentation/topdocs/NEWS.tely (Top): document \repeatTie.
4197
4198         * scm/define-music-types.scm (music-descriptions): add RepeatTieEvent
4199
4200         * lily/repeat-tie-engraver.cc (acknowledge_note_head): new file. cut & paste
4201         froum Laissez_vibrer_engraver.
4202
4203         * ly/declarations-init.ly (repeatTie): add \repeatTie
4204
4205         * scm/define-grobs.scm (all-grob-descriptions): add RepeatTie, RepeatTieColumn
4206
4207         * scm/define-grob-properties.scm (all-user-grob-properties): add
4208         head-direction property.
4209
4210         * lily/tie-formatting-problem.cc (from_semi_ties): rename from
4211         from_lv_ties. Take head direction argument.
4212
4213         * lily/semi-tie-column.cc: rename from
4214         laissez-vibrer-tie-column.cc. Rename class too.
4215
4216         * lily/semi-tie.cc: rename from laissez-vibrer-tie.cc. Rename
4217         class too.
4218
4219         * lily/paper-score.cc (find_break_indices): move from Break_algorithm.
4220
4221         * lily/break-algorithm.cc (find_break_indices): remove linewidth <
4222         0 case.
4223         (find_breaks): idem.
4224
4225 2006-02-21  Graham Percival  <gpermus@gmail.com>
4226
4227         * Documentation/user/advanced-notation.itely: fixed make-moment]
4228         example.
4229
4230         * Documentation/user/basic-notation.itely: more clarification to
4231         transpose.
4232
4233 2006-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4234
4235         * lily/include/constrained-breaking.hh (class
4236         Constrained_breaking): new file.
4237
4238         * lily/constrained-breaking.cc (resize): new file.
4239
4240         * lily/gourlay-breaking.cc (do_solve): ragged-last iso raggedlast
4241
4242         * Documentation/user/advanced-notation.itely (Clusters): insert
4243         end ignore too.
4244
4245         * lily/tie-column.cc (calc_positioning_done): support for
4246         tie-score debugging
4247
4248         * lily/tie-formatting-problem.cc
4249         (generate_extremal_tie_variations): factor out.
4250         (score_ties_configuration): annotate all tie 
4251         (print_ties_configuration): new routine.
4252         (generate_configuration): nudge extremal ties outside of the head
4253         Y extents.
4254         (score_ties_configuration): oops. convert to staff-space before
4255         determining position symmetry.
4256
4257 2006-02-20  Graham Percival  <gpermus@gmail.com>
4258
4259         * Documentation/user/*-notation.itely: misc minor editing,
4260         shifting doc sections around.
4261
4262         * Documentation/user/*-notation-itely, global.itely,
4263         changing-defaults.itely: added new stuff from NEWS.
4264
4265 2006-02-20  Heikki Junes  <hjunes@cc.hut.fi>
4266
4267         * po/fi.po: update.
4268
4269 2006-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4270
4271         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): don't run
4272         lilypond --verbose for lp-book.
4273
4274         * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
4275         $(outdir)/%.ly $(outdir)/%.ps): use $(srcdir) iso $(shell pwd).
4276
4277         * make/lysdoc-rules.make ($(outdir)/collated-files.tely): use
4278         $(buildscript-dir) iso. absolute depth.
4279
4280         * buildscripts/genicon.py (dir): thinko.
4281
4282         * Documentation/pictures/GNUmakefile ($(outdir)/%.ico): typo.
4283
4284 2006-02-19 Erik Sandberg  <mandolaerik@gmail.com>
4285
4286         * scm/output-lib.scm: swap darkcyan/darkyellow
4287
4288         * THANKS: Add bughunters.
4289
4290 2006-02-19  Graham Percival  <gpermus@gmail.com>
4291
4292         * Documentation/user/programming-interfaces.itely: fixed example.
4293
4294         * Documentation/user/instrument-notation.itely: fix @{ @}.
4295
4296         * scm/script.scm: add avoid-slur for \open.
4297
4298 2006-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4299
4300         * lily/tie-formatting-problem.cc (score_configuration): use
4301         sliding score for min-length. 
4302
4303         * Documentation/pictures/GNUmakefile (local-dist): loose the rule
4304         spaghetti for icons.
4305
4306         * buildscripts/genicon.py (program_name): new file.
4307
4308         * lily/tie-formatting-problem.cc (set_chord_outline): put dots
4309         in outline too.  
4310         (generate_configuration): for small ties, also look for collisions
4311         at Y + DIR*h + DELTA_Y.
4312         (get_variations): consider variation for dot positions too.
4313
4314         * lily/side-position-interface.cc (aligned_side): take abs for
4315         quantized rounded position. Fixes tenuto below staff.
4316
4317         * scm/stencil.scm (annotate-y-interval): robustify: print nan/inf
4318         markers when necessary.
4319
4320         * lily/program-option.cc (internal_set_option): add
4321         strict_infinity_checking option.
4322
4323         * scm/output-lib.scm (cyan): swap yellow and cyan.
4324
4325 2006-02-19  Graham Percival  <gpermus@gmail.com>
4326
4327         * darwin.patch: trivial linenumber update.
4328
4329         * Documentation/user/ {various}: `\context foo = named' changed
4330         to `\new foo = "name"' in docs.
4331
4332 2006-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4333
4334         * scm/stencil.scm (annotate-y-interval): use it.
4335
4336         * scm/lily-library.scm (interval-sane?): new function.
4337
4338         * buildscripts/mf-to-table.py (Char_metric.__init__): remove
4339         tfm_checksum stuff.
4340
4341         * lily/tie-formatting-problem.cc (from_lv_ties): add heads for
4342         common refpoint.
4343
4344         * flower/include/std-vector.hh (iterof): add iterof macro.
4345
4346         * lily/enclosing-bracket.cc (width): new function.
4347
4348         * lily/align-interface.cc (align_elements_to_extents): reinstate
4349         warning.
4350
4351 2006-02-18  Heikki Junes  <hjunes@cc.hut.fi>
4352
4353         * Documentation/index.html.in: fix spelling: thankyous.
4354
4355 2006-02-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4356
4357         * lily/lyric-hyphen.cc: typo.
4358
4359 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4360
4361         * stepmake/stepmake/c++-rules.make ($(outdir)/%.cc
4362         $(outdir)/%.hh): generate h and c in one rule; otherwise -jX
4363         builds don't work. 
4364
4365         * VERSION: release 2.7.35
4366
4367         * lily/beam.cc (get_default_dir): oops. Take abs () for
4368         extremes[DOWN].
4369         (get_default_dir): use extreme position criterion only in absence
4370         of forced stem directions.
4371
4372         * VERSION (PATCH_LEVEL): bump VERSION.
4373
4374         * mf/GNUmakefile: explicit rules for emmentaler/aybabtu
4375         dependencies. Necessary for -jX builds.  
4376
4377 2006-02-17  Jan Nieuwenhuizen  <janneke@gnu.org>
4378
4379         * lily/relocate.cc (setup_paths): Yet another const fix.
4380
4381 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4382
4383         * configure.in (HOST_ARCH): determine HOST_ARCH in configure.
4384
4385         * lily/relocate.cc (setup_paths): oops.
4386
4387 2006-02-17  Heikki Junes  <hjunes@cc.hut.fi>
4388
4389         * Documentation/index.html.in: order links: html before PDF.
4390
4391 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4392
4393         * lily/tie-column-format.cc (Module): remove.
4394
4395         * lily/relocate.cc (setup_paths): GCC 4.2 fixes: const correctness.
4396
4397         * lily/text-spanner.cc (print): idem.
4398
4399         * lily/dynamic-text-spanner.cc (print): only print line if longer
4400         than dash-period.
4401
4402         * lily/auto-change-iterator.cc (change_to): formatting.
4403
4404         * lily/beam.cc (get_default_dir): take extreme note head as input
4405         for stem direction.
4406
4407         * lily/tie.cc (get_default_dir): only look directions for visible
4408         stems. 
4409
4410         * lily/side-position-interface.cc (aligned_side): oops. Don't
4411         mutiply with direction. This fixes quantized (staccato, tenuto)
4412         scripts below notes.
4413
4414         * lily/lyric-hyphen.cc (set_spacing_rods): oops. Multiply with
4415         direction. Fixes c-lyrics-center-align.ly
4416
4417 2006-02-16  Jan Nieuwenhuizen  <janneke@gnu.org>
4418
4419         * flower/include/std-vector.hh[!HAVE_STL_DATA_METHOD]: Add copy
4420         constructor.
4421
4422         * lily/std-string.cc:
4423         * lily/include/std-vector.hh (split_string): Move and rename from
4424         lily/include/misc.hh, lily/misc.cc.  Update callers.
4425
4426 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4427
4428         * lily/include/pango-font.hh: HAVE_PANGO_FT2 iso. HAVE_PANGO_16
4429
4430 2006-02-16  Jan Nieuwenhuizen  <janneke@gnu.org>
4431
4432         * flower/test-file.cc: New file.
4433
4434         * stepmake/stepmake/test-vars.make (TEST_MODULE_LIBES): Fixes for
4435         libraries.
4436
4437         * flower/GNUmakefile (TEST_MODULE_LIBS): Link to flower lib.
4438
4439 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4440
4441         * flower/include/file-storage.hh: remove file.
4442
4443         * lily/include/midi-item.hh (class Midi_track): idem.
4444
4445         * lily/include/source.hh (class Sources): idem.
4446
4447         * lily/include/performance.hh (class Performance): use vector
4448         iso. Cons<>
4449
4450         * flower/include/cons.hh (class Cons): remove file.
4451
4452         * flower/include/flower-proto.hh: remove template cruft.
4453
4454         * lily/include/font-metric.hh: use size_t not vsize for indices.
4455
4456         * flower/include/flower-proto.hh (Module): remove std-vector.hh
4457         from proto.
4458
4459         * lily/include/all-font-metrics.hh: use HAVE_PANGO_FT2
4460
4461         * lily/include/paper-book.hh (class Paper_book):
4462         make get_system_specs() public.
4463
4464         * scm/layout-page-layout.scm (optimal-page-breaks): only consider
4465         the force=10000 case if we don't have a current-best. 
4466
4467         * lily/tuplet-bracket.cc (get_bounds): don't do (size() - 1) for
4468         vsize 
4469
4470         * flower/include/flower-proto.hh: remove outdated templates.
4471
4472         * scm/page.scm: use annotate-spacing
4473
4474 2006-02-15  Graham Percival  <gpermus@gmail.com>
4475
4476         * scm/translation-functions.scm: circle patch from Erlend, thanks!
4477
4478         * THANKS: moved Erlend Aasland to contributors.
4479
4480 2006-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4481
4482         * config.hh.in: remove HAVE_PANGO_16
4483
4484         * lily/tuplet-bracket.cc (calc_positions): multiply with
4485         staff-space for beam case. This fixes tuplets+beams on scaled
4486         staves.
4487
4488         * config.hh.in: remove all Kpathsea related defines.
4489
4490         * lily/dot-column.cc (side_position): reach stem via dots->
4491         head->stem. Inspect all stems for dot collisions. 
4492
4493         * lily/dot-column-engraver.cc (class Dot_column_engraver): excise
4494         stem handling.
4495
4496         * lily/bar-number-engraver.cc (process_music): document function
4497         of whichBar.
4498
4499         * lily/score.cc (default_rendering): add pscore, not systems
4500         themselves.
4501
4502         * lily/paper-book.cc (get_system_specs): separate generation of
4503         titles and systems.
4504
4505         * flower/include/std-vector.hh: don't include config.hh
4506
4507 2006-02-15  Jan Nieuwenhuizen  <janneke@gnu.org>
4508
4509         * flower/include/std-vector.hh: Better wrapper compatibility with
4510         std::vector.
4511
4512         * flower/include/flower-proto.hh: Remove cheap forward declaration
4513         attempts.
4514
4515         * stepmake/aclocal.m4 (STEPMAKE_STL_DATA_METHOD): Bugfix.
4516
4517 2006-02-14  Graham Percival  <gpermus@gmail.com>
4518
4519         * Documentation/user/invoking.itely: add warning about command line.
4520
4521 2006-02-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4522
4523         * lily/include/lily-proto.hh: add Prob, rm Page.
4524
4525         * flower/include/std-vector.hh (VPOS): use 64 bit-proof version.
4526
4527         * VERSION: release 2.7.34
4528
4529         * lily/relocate.cc (framework_relocation): show canary if
4530         GHOSTSCRIPT_VERSION undefined.
4531
4532         * GNUmakefile.in: remove $(VERSION) symlink.
4533
4534         * lily/relocate.cc (setup_paths): add + 
4535
4536 2006-02-13  Heikki Junes  <hjunes@cc.hut.fi>
4537
4538         * Documentation/index.html.in: specify sizes for all big HTML pages.
4539
4540 2006-02-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4541
4542         * config.hh.in: remove @FRAMEWORKDIR@
4543
4544         * lily/system-start-text.cc (get_stencil): new file: separate out
4545         system-start-delimiter text support.
4546
4547         * input/**ly: replace \context with \new where appropriate.
4548         
4549         * THANKS: add Don.
4550
4551         * lily/slur-scoring.cc (get_base_attachments): use
4552         robust_relative_extent. This fixes problems with empty paper-columns. 
4553
4554 2006-02-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4555
4556         * Documentation/topdocs/NEWS.tely (Top): document \new syntax.
4557
4558         * scm/define-music-properties.scm (all-music-properties):
4559         create-new property.
4560
4561         * lily/context-specced-music-iterator.cc (construct_children):
4562         inspect 'create-new property iso. magical $uniqueContextId context
4563         id.
4564
4565         * lily/parser.yy (optional_id): allow \new "Bar" = "foo" too.
4566
4567         * lily/context-key-manager.cc (Module): new file. Encapsulate
4568         object key generation.
4569
4570         * lily/include/context-key-manager.hh (Module): new file.
4571
4572 2006-02-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4573
4574         * scm/define-grobs.scm (all-grob-descriptions): center instrument
4575         names vertically
4576
4577         * configure.in (LINK_GXX_STATICALLY): strip -DSTRING_UTILS_INLINED
4578         options.
4579         (reloc_b): excise --enable-framework-dir
4580
4581         * lily/relocate.cc (framework_relocation): use getenv
4582         LILYPOND_GS_VERSION or -DGHOSTSCRIPT_VERSION to set GS version.
4583
4584 2006-02-11  Jan Nieuwenhuizen  <janneke@gnu.org>
4585
4586         * flower/include/std-string.hh: 
4587         * flower/include/std-vector.hh: Finish std:: conversion; move
4588         flower extensions from std:: namespace.  Update users.
4589
4590         * lily/include/lily-proto.hh: Replace Link_array__*_ macros by
4591         their expansion to vector<*>.  Update users.
4592
4593 2006-02-10  Graham Percival  <gpermus@gmail.com>
4594
4595         * Documentation/user/invoking.itely: add example to File structure.
4596
4597         * Documentation/user/ instrument-notation.itely, cheatsheet.itely,
4598         examples.itely, putting.itely: {\new|\context} Lyrics \lyricsto.
4599
4600 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4601
4602         * ly/paper-defaults.ly: typo.
4603
4604         * lily/parenthesis-engraver.cc (acknowledge_grob): don't do
4605         set_parent() for parentheses. This will make it show up in bbox
4606         calculations.
4607
4608         * scm/output-lib.scm (parentheses-item::print): rewrite, using
4609         ly:grob-common* functions.
4610
4611         * lily/grob-scheme.cc (LY_DEFINE):
4612         ly:grob-common-refpoint-of-array: new function 
4613         ly:grob-common-refpoint: new function 
4614         ly:grob-relative-coordinate: new function 
4615
4616         * lily/instrument-name-engraver.cc (process_music): use
4617         Text_interface::is_markup(). This fixes \markup on instrument names.  
4618
4619         * scm/define-grobs.scm (all-grob-descriptions): set line-thickness
4620         for ties and slurs.
4621
4622         * lily/slur.cc (print): idem.
4623
4624         * lily/tie.cc: add line-thickness for ties. 
4625
4626 2006-02-10  Jan Nieuwenhuizen  <janneke@gnu.org>
4627
4628         * scm/output-svg.scm: Document diversion from GNU coding standards
4629         as a workaround for a bug in Microsoft Internet Explorer.
4630
4631 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4632
4633         * lily/instrument-name-engraver.cc (process_music): use
4634         is_markup() iso. is_string()
4635
4636         * Documentation/user/changing-defaults.itely (Module): add menu entry.
4637
4638         * lily/percent-repeat-engraver.cc (process_music): only look at
4639         main_part_ for % repeats.
4640
4641         * lily/stem-tremolo.cc (get_beam_translation): new function.
4642         (calc_slope): new function.
4643         (height): don't use real slope.
4644
4645 2006-02-10  Jürgen Reuter  <reuter@ipd.uka.de>
4646
4647         * scm/define-grobs.scm (LigatureBracket): Maintenance bugfix: add
4648         new connect-to-neighbor, control-points and staff-padding
4649         properties to make ligature brackets showing up again.
4650
4651 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4652
4653         * VERSION: release 2.7.33
4654
4655         * lily/relocate.cc (prefix_relocation): oops. One TOPLEVEL_VERSION
4656         too many.
4657
4658         * Documentation/user/changing-defaults.itely (Difficult tweaks):
4659         remove applyOutput example.
4660         (Objects connected to the input): document \tweak, \parenthesize
4661
4662         * lily/relocate.cc (prefix_relocation): allow "current"
4663         iso. TOPLEVEL_VERSION for share/lilypond/ suffix. This makes
4664         changing VERSION in a lily tree less painful.
4665
4666         * input/regression/parenthesize.ly: new file. 
4667
4668         * scm/output-lib.scm (parenthesize-element): new function.
4669
4670         * scm/define-grobs.scm (all-grob-descriptions): add ParenthesesItem.
4671
4672         * lily/parenthesis-engraver.cc (acknowledge_grob): new file.
4673
4674         * lily/accidental-engraver.cc (make_standard_accidental): reroute
4675         cause: accidentals are caused by note heads, not note events. 
4676
4677 2006-02-08  Graham Percival  <gpermus@gmail.com>
4678
4679         * darwin.patch: small patch from Erlend, thanks!
4680
4681         * Documentation/user/basic-notation.itely: add stem-neutral example.
4682
4683         * Documentation/user/putting.itely: clarifications.
4684
4685 2006-02-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4686
4687         * Documentation/topdocs/NEWS.tely (Top): remove internal cleanup
4688         note, add more guidelines to what should go into NEWS.
4689
4690         * input/sakura-sakura.ly: document how to override font.
4691
4692         * input/regression/font-family-override.ly:  doc -dshow-available-fonts
4693
4694 2006-02-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4695
4696         * lily/midi-item.cc (to_string): truncate time sig at 255 beats.
4697
4698 2006-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
4699
4700         * scripts/convert-ly.py (lilypond_version_re_str): Move from
4701         convertrules.  Add explicit grouping, needed for python2.2.
4702
4703 2006-02-07  Jan Nieuwenhuizen  <janneke@gnu.org>
4704
4705         * Documentation/topdocs/NEWS.tely (Top): Mention code cleanup.
4706
4707 2006-02-07  Graham Percival  <gpermus@gmail.com>
4708
4709         * Documentation/user/global.itely: fix line-width in (text) docs.
4710
4711         * Documentation/user/lilypond-book.itely: same.
4712
4713 2006-02-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4714
4715         * VERSION (PACKAGE_NAME): release 2.7.32
4716
4717         * Documentation/topdocs/NEWS.tely (Top): document new variable
4718         naming.
4719
4720         * flower/include/array.icc (Message): remove file.
4721
4722         * flower/include/std-vector.hh: make sure vsize and VPOS are
4723         defined for binary_search_bounds().
4724
4725         * flower/std-string.cc (std): add to_string(long unsigned).
4726
4727         * configure.in (gui_b): excise std_string option.
4728         (gui_b): excise std_vector option.
4729
4730         * flower/string.cc (Module): excise flower array & string
4731
4732         * flower/include/std-string.hh: excise flower string.
4733
4734         * {ly,lily,scm}/*: use dashes in \paper and \layout variables
4735
4736         * python/convertrules.py (lilypond_version_re_str): require
4737         only numbers and dots in \version string.
4738
4739 2006-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4740
4741         * lily/system-start-delimiter.cc (print): allow style = text too.
4742
4743         * lily/system-start-delimiter-engraver.cc
4744         (acknowledge_system_start_text): new function, also add add to
4745         support of system-start-text (instrument names). This fixes
4746         instrument names on piano staves.
4747
4748         * lily/instrument-name-engraver.cc: rewrite. Use
4749         system-start-delimiter approach. This save memory and cpu.
4750
4751         * scm/define-grobs.scm (all-grob-descriptions): remove
4752         instrument-name from break-alignment.
4753
4754         * mf/GNUmakefile ($(NCSB_TTFS)): depend on pfx2ttf script too.
4755
4756 2006-02-05  Jan Nieuwenhuizen  <janneke@gnu.org>
4757
4758         * stepmake/stepmake/generic-vars.make (LOOP): Add PLUS to keep -j
4759         jobserver going.
4760
4761         * configure.in (std_vector): On by default.
4762
4763         * lily/include/font-metric.hh:
4764         * lily/include/tfm-reader.hh: 
4765         * lily/include/spanner.hh: Use unsigned for indices and sizes.
4766         Update users.
4767
4768         * Documentation/user/changing-defaults.itely: Fix link v2.5, out-www.
4769
4770 2006-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4771
4772         * VERSION (PACKAGE_NAME): 2.7.31
4773
4774         * scm/framework-ps.scm (dump-stencil-as-EPS): don't hardcode left
4775         EPS edge at 0, but take minimum with left-overshoot. This fixes
4776         cut off system start delims. 
4777
4778         * lily/instrument-name-engraver.cc (stop_translation_timestep):
4779         hack: add to axis group if not added yet. This fixes hara kiri'd
4780         piano staves.
4781
4782         * lily/hara-kiri-group-spanner.cc
4783         (force_hara_kiri_in_y_parent_callback): fix signatures.
4784
4785         * lily/hairpin.cc (print): check next hairpin to see whether or
4786         not to be continuing.
4787
4788 2006-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
4789
4790         * Remove trailing whitespace from makefiles.
4791         
4792         * flower/include/std-vector.hh: Add binary_search_bounds workaround
4793         for earlier gcc.
4794
4795         * .cvsignore: Add out*, out-www, config-*.  Remove lots of cruft.
4796
4797         * flower/include/std-vector.hh[!HAVE_STL_DATA_METHOD]: Workaround.
4798
4799         * config.hh.in (HAVE_STL_DATA_METHOD): Add.
4800
4801         * stepmake/aclocal.m4 (STEPMAKE_STL_DATA_METHOD): New function.
4802
4803         * configure.in: Use it.
4804
4805 2006-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4806
4807         * scm/music-functions.scm (pitch-of-note): new function.
4808
4809         * ly/music-functions-init.ly: add \octave and \addquote
4810
4811         * lily/parser.yy (music_function_chord_body): softcode \octave.
4812         (lilypond_header): softcode \addquote
4813
4814 2006-02-03  Jan Nieuwenhuizen  <janneke@gnu.org>
4815
4816         * flower/include/std-vector.hh[STD_VECTOR]: Do not include
4817         array.hh, parray.hh at all.  Getting ready to flip the
4818         configure default.
4819
4820         * lily/include/lily-proto.hh (Link_array__char_): Bugfix.
4821
4822         * lily/source-file.cc (file::get_line): Help binary_search_bounds
4823         a bit.
4824
4825         * lily/include/lily-proto.hh (Link_array__char_): Bugfix.
4826
4827 2006-02-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4828
4829         * flower/include/array.hh: typo. 
4830
4831 2006-02-02  Graham Percival  <gpermus@gmail.com>
4832
4833         * Documentation/user/advanced-notation.itely: doc "\#" in text.
4834
4835 2006-02-03  Jan Nieuwenhuizen  <janneke@gnu.org>
4836
4837         * flower/include/pqueue.hh: Derive from std::vector.
4838
4839         * flower/include/parray.hh: Conform to std::vector interface.
4840         Update users.
4841
4842 2006-02-02  Graham Percival  <gpermus@gmail.com>
4843
4844         * Documentation/topdocs/NEWS.itely: grammar fix from Laura.
4845
4846 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4847
4848         * flower/file-path.cc (is_file): remove if 0 section.
4849
4850         * buildscripts/pfx2ttf.fontforge (err): robustness fix for
4851         selecting afii61352.
4852
4853 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4854
4855         * flower/include/std-vector.hh (boundary): Oops, reverse.
4856
4857         * flower/string-convert.cc (convert::unsigned_string): Bugfix:
4858         remove superfluous `d'.
4859
4860         * flower/include/std-vector.hh (boundary, top): Detach from class.
4861         Remove empty vector shell.
4862
4863         * flower/include/array.hh (reverse, swap): Detach from class.
4864         Update users.
4865         
4866         * flower/include/std-vector.hh
4867         * flower/include/array.hh (concat): Globally change to insert ().
4868
4869         
4870         * flower/include/std-vector.hh
4871         * flower/include/parray.hh
4872         * flower/include/array.hh (elem, elem_ref): Globally replace by
4873         at ().
4874
4875 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4876
4877         * Documentation/topdocs/NEWS.tely (Top): use ly: prefix for members.
4878
4879         * python/convertrules.py (FatalConversionError.sub_cxx_id):
4880         anticipate on identifier substitutions.
4881
4882 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4883
4884         * flower/include/std-vector.hh (insert): Remove, replace by
4885         std::vector interface.  Update callers.
4886
4887         * flower/include/array.icc (insert): Change signature to
4888         match std::vector interface.
4889         
4890         * flower/include/array.icc (vector_sort): Bugfix.
4891
4892 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4893
4894         * lily/parser.yy (output_def_head_with_mode_switch): new
4895         production. Result: dashes and underscores may be used in the
4896         \paper block.
4897
4898         * lily/lexer.ll: add DASHED_WORD.  Accept in INITIAL mode.
4899
4900         * python/convertrules.py (conv): oops. One slash too much.
4901
4902 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4903
4904         * flower/include/std-vector.hh (sort): Remove, replace by
4905         ::vector_sort.  Update callers.
4906
4907         * flower/include/std-vector.hh (slice): Remove.  Update callers.
4908         (sort): Bugfix.
4909
4910         * flower/test-std.cc (vector_sort): New test.
4911
4912 2006-02-01  Graham Percival  <gpermus@gmail.com>
4913
4914         * Documentation/user/putting.itely: fixes from Erik.
4915
4916 2006-02-01  Jan Nieuwenhuizen  <janneke@gnu.org>
4917
4918         * flower/test-std.cc: Add simple unit test for vector migration.
4919
4920         * stepmake/stepmake/test*: Unit test support.
4921
4922         * flower/include/std-vector.hh (del): Remove.  Use erase (),
4923         update callers.
4924
4925         * flower/include/array.hh (begin, end): Add.
4926         (del, get): Remove.
4927
4928 2006-02-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4929
4930         * lily/include/lily-guile-macros.hh (MAKE_SCHEME_CALLBACK): use
4931         std::string not String. 
4932
4933         * lily/context-def.cc (path_to_acceptable_context): use INT_MAX
4934         iso UINT_MAX.
4935
4936         * lily/prob.cc (Prob): copy type_ too.
4937
4938         * lily/lily-guile.cc (mangle_cxx_identifier): new
4939         function. Class_bla::foo_bar_[px] ->
4940         ly:class-bla::foo-bar[?!]. Changes throughout
4941
4942 2006-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4943
4944         * flower/include/guile-compatibility.hh (scm_from_unsigned): add scm_from_unsigned().
4945
4946         * lily/beam.cc (calc_direction): take dir from visible stem in
4947         degenerate case.
4948
4949 2006-01-31  Jan Nieuwenhuizen  <janneke@gnu.org>
4950
4951         * lily/melody-spanner.cc (spanner::calc_neutral_stem_direction):
4952         Fix -1, >=0 boundary checks for unsigned vsize.
4953
4954         * lily/separating-group-spanner.cc (spanner::find_rods): Fix >=0
4955         loop for unsigned vsize.
4956
4957         * configure.in (--enable-std-vector): New option.
4958         (--enable-std-string): On by default.
4959
4960         * flower/include/std-vector.hh: New file.  Enable switch to
4961         std::vector, update client code.
4962
4963 2006-01-30  Graham Percival  <gpermus@gmail.com>
4964
4965         * scm/document-translation.scm: clarify "this context is also
4966         known as".  Thanks, Werner!
4967
4968         * Documentation/user/putting.itely: small fixes from Don Blaheta.
4969
4970         * Documentation/user/invoking.itely: small fix from Don.
4971
4972 2006-01-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4973
4974         * scm/lily.scm (define-scheme-options): rename option
4975         preview-include-book-title to book-title-preview
4976         (define-scheme-options): move force-eps-font-include (from paper
4977         block) to eps-font-include -d option.
4978
4979         * VERSION (PATCH_LEVEL): release 2.7.30
4980
4981         * input/bach-schenker.ly (staffPiano): new file.
4982
4983         * buildscripts/pfx2ttf.fontforge: remove No. glyph from TTF file.
4984
4985         * Documentation/topdocs/NEWS.tely (Top): simplify NEWS entry, add
4986         credits to Nicolas.
4987
4988         * scm/define-markup-commands.scm (epsfile): add scaling to \epsfile.
4989
4990         * ps/lilyponddefs.ps: remove start-system, stop-system,
4991         start-page fluff. This saves putting { } code on the stack, fixing
4992         stack overflows when including EPS files.
4993
4994 2006-01-29  Graham Percival  <gpermus@gmail.com>
4995
4996         * Documentation/user/putting.itely: minor fixes (comments on -devel).
4997
4998 2006-01-29  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4999
5000         * Documentation/topdocs/NEWS.tely (Top): add \parallelMusic news.
5001
5002 2006-01-28  Graham Percival  <gpermus@gmail.com>
5003
5004         * Documentation/user/putting.itely: minor fixes (mostly tab->space).
5005
5006 2006-01-28  Jan Nieuwenhuizen  <janneke@gnu.org>
5007
5008         * input/mutopia/claop.py: Update.
5009
5010 2006-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5011
5012         * input/regression/completion-heads.ly (texidoc): fix.
5013
5014         * lily/staff-symbol-referencer.cc (on_staff_line): idem.
5015
5016         * lily/tie-formatting-problem.cc
5017         (set_ties_config_standard_directions): use abs iso fabs for ints.
5018
5019         * Documentation/topdocs/INSTALL.texi (Top): document ncsb requirement.
5020
5021         * mf/feta-bolletjes.mf (overdone_heads): solfa_noteheight, a
5022         little less than noteheight, to prevent overlaps in chords.
5023
5024         * lily/note-collision.cc (check_meshing_chords): wipe upper FA
5025         head, and fudge stem-attachment.
5026
5027         * scm/lily-library.scm (not): define hash-for-each for guile 1.6
5028
5029         * lily/slur-scoring.cc (get_best_curve): handle opt_idx < 0 case.
5030
5031 2006-01-27  Jan Nieuwenhuizen  <janneke@gnu.org>
5032
5033         * lily/main.cc (main): Debugging aid: catch exceptions.
5034
5035         * flower/std-string.cc (to_string): Robustification.  Fixes midi
5036         output with std::string.
5037
5038 2006-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5039
5040         * Documentation/topdocs/INSTALL.texi (Top): remove libkpathsea notes.
5041
5042 2006-01-26  Jan Nieuwenhuizen  <janneke@gnu.org>
5043
5044         * Fix -DSTRING_UTILS_INLINED.
5045
5046 2006-01-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5047
5048         * VERSION (PATCH_LEVEL): release 2.7.29
5049
5050         * lily/relocate.cc (setup_paths): mingw uses std string too.
5051
5052         * lily/*.cc: various fixes for substr(ARG).
5053
5054         * lily/sustain-pedal.cc (print): 
5055
5056         * flower/file-name.cc (slashify): use std strings.
5057
5058         * flower/string-convert.cc: remove publib.h
5059
5060         * scm/define-markup-commands.scm (verbatim-file): new markup
5061         command \verbatim-file
5062
5063         * Documentation/topdocs/NEWS.tely: fixup URLs
5064
5065         * input/regression/alignment-vertical-manual-setting.ly (Module):
5066         new file.
5067
5068         * lily/align-interface.cc (align_elements_to_extents): overwrite
5069         translations with numbers in alignment-offsets from left bound
5070
5071         * scm/page.scm (make-page-stencil): read X-offset from paper-system.
5072         (page-translate-systems): new function: take into account Y-offset.
5073
5074         * Documentation/topdocs/NEWS.tely (Top): document new features.
5075
5076         * input/regression/page-layout-manual-position.ly (Module): new
5077         file.
5078
5079 2006-01-26  Jan Nieuwenhuizen  <janneke@gnu.org>
5080
5081         * flower/file-path.cc (path::parse_path): Oops.
5082
5083         * Finish std::string interface.  For now, use std:: marker
5084         throughout for easy s/r.
5085
5086 2006-01-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5087
5088         * Documentation/user/putting.itely (Score is a single musical
5089         expression): typo.
5090         (Score is a single musical expression): more typos.
5091
5092         * scm/page.scm (annotate-space-left): thinko.
5093         (annotate-page): more thinkos.
5094
5095 2006-01-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5096
5097         * scm/layout-page-layout.scm (write-page-breaks): record tweaks
5098         for different \score blocks separately.
5099         (post-process-pages): put write-page-layout into paper block.
5100
5101         * lily/output-def.cc (get_parser): new file.
5102
5103         * lily/output-def-scheme.cc (LY_DEFINE): ly:output-def-parser, new
5104         file.
5105
5106         * lily/include/output-def.hh (class Output_def): add parser_ member.
5107
5108         * input/regression/page-layout-twopass.ly (Module): new file.
5109
5110         * scm/lily.scm: remove cpp hack.
5111
5112         * lily/lyric-engraver.cc (get_voice_to_lyrics): use NPOS everywhere.
5113
5114 2006-01-25  Jan Nieuwenhuizen  <janneke@gnu.org>
5115
5116         * GNUmakefile.in (c-clean): New target.
5117
5118         * flower/include/std-string.hh: String/std::string compatibility:
5119         Use NPOS for `not found' (iso -1), use ssize for length () and pos
5120         type.
5121
5122         * flower/rational.cc: 
5123         * flower/include/rational.hh: 
5124
5125         * flower/offset.cc: 
5126         * flower/include/offset.hh: 
5127
5128         * flower/interval.cc: 
5129         * flower/include/interval.hh: 
5130
5131         * flower/string-convert.cc: 
5132         * flower/include/string-convert.hh: Use std::string [interface].
5133         Update callers.
5134
5135 2006-01-25  Heikki Junes  <hjunes@cc.hut.fi>
5136
5137         * Documentation/index.html.in: clean up.
5138
5139 2006-01-25  Graham Percival  <gpermus@gmail.com>
5140
5141         * Documentation/user/putting.itely: another new untested doc section.
5142
5143 2006-01-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5144
5145         * scm/layout-page-layout.scm (write-page-breaks): write
5146         \spacingTweaks #ALIST. Handle grace timing.
5147
5148         * scm/: more imports.
5149
5150         * scm/page.scm (make-page): add footer/header.
5151         (annotate-space-left): revise: only take page argument.
5152         (layout->page-init): new function.
5153
5154         * scm/layout-page-layout.scm (write-page-breaks): preliminary
5155         version of the system/spacing/linebreak hack writing to the output
5156
5157         * lily/prob-scheme.cc (LY_DEFINE): take optional 'key val args in
5158         ly:make-prob.
5159
5160         * lily/grob-scheme.cc (LY_DEFINE): ly:spanner-get-bound ->
5161         ly:spanner-bound
5162
5163 2006-01-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5164
5165         * scm/stencil.scm (annotate-y-interval): move from layout-page-layout.scm
5166
5167         * scm/paper-system.scm (paper-system-annotate): new file. Handle paper-system.
5168
5169         * scm/layout-page-layout.scm (optimal-page-breaks): move all page
5170         handling to page.scm
5171
5172         * lily/prob-scheme.cc (LY_DEFINE): new file.
5173         (LY_DEFINE): functions ly:make-prob , ly:prob-type? , ly:prob-(set-)property(!)
5174
5175         * lily/music-scheme.cc (LY_DEFINE): rewrite get/set property using
5176         prob functions.
5177
5178         * lily/music.cc (derived_mark): derive Music from Prob.
5179
5180         * lily/paper-system.cc (LY_DEFINE): derive from Prob.
5181
5182         * lily/prob.cc (Module): Implement Prob (Property Object), object
5183         with shared and r/w property alists.  
5184
5185         * lily/include/prob.hh (Module): new file. Declare Prob.
5186
5187         * flower/string.cc: remove is_empty().
5188
5189         * flower/include/string.hh (class String): remove String:: qualifier.
5190
5191         * buildscripts/analyse-cxx-log.py: new file. Read compile log to
5192         substitute appropriate functions.
5193
5194         * flower/include/string.hh (class String): remove to_str0 and
5195         is_empty(). S&R everywhere.
5196
5197 2006-01-23  Graham Percival  <gpermus@gmail.com>
5198
5199         * Documentation/user/basic-notation.itely: add hairpin
5200         after-linebreak tweak to commonprop.
5201
5202         * Documentation/user/putting.itely: added two new sections.
5203
5204 2006-01-23  Jan Nieuwenhuizen  <janneke@gnu.org>
5205
5206         * flower/international.cc: 
5207         * flower/include/international.hh: 
5208
5209         * flower/getopt-long.cc: 
5210         * flower/include/getopt-long.hh: Use std::string [interface].
5211         Update callers.
5212
5213         * flower/include/std-string.hh: Oops, bugfix for --disable-std-string.
5214
5215         * stepmake/stepmake/executable-rules.make: Add dependency on
5216         module libraries.
5217
5218 2006-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
5219
5220         * flower/file-path.cc: 
5221         * flower/include/file-path.hh: Use std::string [interface].
5222         Update callers.
5223
5224         * flower/direction.cc: 
5225         * flower/axis.cc: Unused.  Remove.
5226
5227         * configure.in (--enable-std-string): New option.
5228
5229         * flower/std-string.cc: 
5230         * flower/include/std-string.hh: New file.
5231
5232         * flower/file-name.cc[STD_STRING]:
5233         * flower/include/file-name.hh[STD_STRING]: Use it.  Update callers.
5234
5235 2006-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5236
5237         * scm/output-svg.scm (placebox): no GNU coding standards in SVG output. 
5238
5239         * scm/define-markup-commands.scm (with-dimensions):
5240         with-dimensions markup command.
5241
5242         * input/test/font-table.ly: use it.
5243
5244         * lily/open-type-font.cc (glyph_list): new function.
5245
5246         * lily/open-type-font-scheme.cc (LY_DEFINE): ly:otf-glyph-list function.
5247
5248         * lily/ttf.cc: remove ly:font-glyph-list scheme function
5249
5250 2006-01-22  Nicolas Sceaux  <nicolas.sceaux@free.fr>
5251
5252         * ly/music-functions-init.ly (parallelMusic): new music function
5253         for parallel music entry.
5254
5255         * scm/define-music-properties.scm (all-music-properties): new
5256         'void music property
5257
5258         * scm/music-functions.scm (ly:music-message): make public, to be
5259         used in music function definitions
5260
5261         * scm/lily-library.scm (collect-music-for-book): discard music
5262         when the 'void property is set.
5263
5264 2006-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5265
5266         * lily/ttf.cc (LY_DEFINE): store name before destroying face.
5267
5268         * mf/GNUmakefile: idem.
5269
5270         * buildscripts/mf-to-table.py (help): excise fetaXXlist.ly support.
5271
5272         * stepmake/bin/install.py (dest): Only chmod/chown just created directories
5273
5274         * Documentation/user/notation-appendices.itely (The Feta font):
5275         use it.
5276
5277         * input/test/font-table.ly: new file. Generate font table within lily.
5278
5279         * Documentation/user/notation-appendices.itely (The Feta font):
5280         use new font-table.ly file. 
5281
5282         * stepmake/stepmake/install-out-targets.make
5283         (local-install-outfiles): only create directory if
5284         $(INSTALLATION_OUT_DIR) is defined. This fixes install on Gentoo.
5285
5286 2006-01-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5287
5288         * lily/ttf.cc (LY_DEFINE): new function ly:font-glyph-list.
5289
5290         * VERSION (PACKAGE_NAME): release 2.7.28
5291
5292         * scm/framework-ps.scm (write-preamble): use it to pick exactly
5293         the right font from a Mac dfont.
5294         (write-preamble): don't forget directory, only look at files.
5295
5296         This fixes problems with TTF files in dfonts that don't match
5297         their PostScript names.
5298          
5299         * lily/ttf.cc (LY_DEFINE): ly:ttf-ps-name: new routine to extract
5300         PS name from TTF font.
5301
5302         * input/regression/tie-manual.ly: document new feature.
5303
5304         * Documentation/topdocs/NEWS.tely (Top): add tie NEWS.
5305
5306         * VERSION (MY_PATCH_LEVEL): bump to .28
5307
5308         * Documentation/user/basic-notation.itely (Ties): add tie examples
5309         refs.
5310
5311         * lily/tie-formatting-problem.cc (score_ties_configuration):
5312         symmetry penalties for outer ties.
5313
5314 2006-01-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5315
5316         * lily/tie-formatting-problem.cc (generate_configuration) 
5317         (set_manual_tie_configuration): skip non-pair manual
5318         tie-configuration, so you can set individual ties as
5319
5320           #'tie-configuration = #'((7 . 1) #t (-3 . 1))
5321
5322         * input/regression/tie-chord.ly: use generateTiePattern to
5323         simplify file.
5324
5325         * lily/tie-formatting-problem.cc (peak_around): new function.
5326         (score_configuration): use sliding criterion for staff line collisions. 
5327         (score_configuration): idem for dot collisions.
5328         (generate_configuration): use separate stem_gap for gap to stem.
5329
5330         * lily/include/tie-formatting-problem.hh (struct Tie_details):
5331         separate penalty factors for x and y distance.
5332         (struct Tie_details): separate penalties for tip and center line collisions.
5333
5334 2006-01-19 Han-Wen Nienhuys  <hanwen@xs4all.nl>
5335
5336         * lily/tie-formatting-problem.cc (generate_configuration): make
5337         large ties avoid stafflines in the horizontal section.
5338         (score_configuration): use softcoded penalties
5339         (score_aptitude): idem.
5340
5341         * lily/tie-helper.cc (from_grob): softcode tie details
5342
5343         * lily/staff-symbol-referencer.cc (on_staff_line): new function
5344
5345         * lily/staff-symbol-referencer.cc (on_line): rename from
5346         on_staffline 
5347
5348 2006-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5349
5350         * ly/music-functions-init.ly: remove duplicate tag.
5351
5352         * lily/include/*.hh: GCC 4.1 fixes.
5353
5354 006-01-16  Erlend Aasland  <erlenda@gmail.com>
5355
5356         * Documentation/user/global.itely: fix typos; @bugs -> @refbugs
5357
5358         * scm/define-music-types.scm: fix bug in desc. string
5359         for OverrideProperty
5360
5361 2006-01-15 Erik Sandberg  <mandolaerik@gmail.com>
5362
5363         * scripts/lilypond-book.py: bugfix
5364
5365         * scm/define-music-types.scm: fix typos.
5366
5367 2006-01-14  Graham Percival  <gpermus@gmail.com>
5368
5369         * Documentation/user/ basic-notation.itely, global.itely,
5370         advanced-notation.itely, instrument-notation.itely: small
5371         additions (bugs and commonly tweaked properties).
5372
5373 2006-01-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5374
5375         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): generic
5376         detection of mingw build.
5377         (MINGW_BUILD): opps.
5378
5379 2006-01-12  Jan Nieuwenhuizen  <janneke@gnu.org>
5380
5381         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): Add
5382         i686-mingw32.
5383
5384 2006-01-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5385
5386         * scm/music-functions.scm (skip->rest): add skip->rest
5387
5388 2006-01-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5389
5390         * lily/font-config.cc (init_fontconfig): call FcConfigBuildFonts()
5391         explicitly.
5392
5393         * lily/font-config-scheme.cc (LY_DEFINE): also display font and
5394         config dirs. Aids debugging. 
5395         (display_config): also display config files.
5396
5397 2006-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5398
5399         * VERSION: release 2.7.27
5400
5401         * lily/bar-line.cc (calc_bar_size): inspect staff->extent (Y_AXIS)
5402         for determining bar size.
5403
5404         * lily/staff-symbol.cc (print): place lines at distance line-positions
5405
5406         * scm/define-grob-properties.scm (all-user-grob-properties): add
5407         line-positions.
5408
5409         * lily/staff-symbol.cc (height): new function.
5410
5411         * input/regression/staff-line-positions.ly:  new file.
5412
5413 2006-01-06  Graham Percival  <gpermus@gmail.com>
5414
5415         * input/test/add-staccato.ly: remove reference to old file.
5416
5417 2006-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5418
5419         * scripts/lilypond-book.py (invokes_lilypond): allow . in path to
5420         lilypond binary too.
5421
5422 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5423
5424         * make/mutopia-rules.make (Module): use LILYPOND_BINARY
5425
5426 2006-01-06  Jan Nieuwenhuizen  <janneke@gnu.org>
5427
5428         * scripts/midi2ly.py: Bugfix: Declare datadir.
5429
5430         * make/ly-rules.make:
5431         * make/mutopia-rules.make: Use LILYPOND_BINARY (WAS: LILYPOND, but
5432         that seems to be gone). Fixes make web.
5433
5434         * The grand 2005-2006 replace.
5435
5436         * VERSION (MY_PATCH_LEVEL): Stay on .26 for now.
5437
5438 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5439
5440         * make/lilypond-vars.make: set LILYPOND_BINARY variable
5441         (LILYPOND_BOOK_LILYPOND_FLAGS): new variable
5442         LILYPOND_BOOK_LILYPOND_FLAGS to hold system dependent settings,
5443         like -dgs-font-load.
5444
5445         * Documentation/user/GNUmakefile ($(outdir)/interfaces.itexi):
5446         remove absolute path to lilypond binary.
5447         
5448 2006-01-05 Pedro Kroeger    <kroeger@pedrokroeger.net>
5449
5450         * configure.in (NCSB_DIR): fix --with-ncsb-dir option.
5451
5452 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5453
5454         * make/lilypond-vars.make: support LILYPOND_EXTERNAL_BINARY variable.
5455
5456         * mf/GNUmakefile: remove broken dvips map symlink.
5457
5458 2006-01-04  Jan Nieuwenhuizen  <janneke@gnu.org>
5459
5460         * lily/main.cc: 
5461         * configure.in: Cosmetic fixes.
5462
5463 2006-01-04  Mats Bengtsson  <mabe@s3.kth.se>
5464
5465         * Documentation/user/music-glossary.tely (Pitch names): Added
5466         Spanish pitch names and durations, thanks to Ernesto Gancedo
5467
5468 2006-01-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5469
5470         * scm/lily.scm (define-scheme-options): use quasi-quote for option
5471         init. Fixes verbose printing of .scm files.
5472
5473         * stepmake/aclocal.m4: add spaces before - options.
5474         
5475 2006-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
5476
5477         * lily/relocate.cc (setup_paths): Bugfix: do not store result
5478         of path search in local block variable.
5479
5480 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5481
5482         * configure.in (NCSB_DIR): --enable-ncsb-dir
5483         (LINK_GXX_STATICALLY): denko.
5484
5485         * mf/GNUmakefile ($(NCSB_TTFS)): NCSB_DIR iso. NCSB_PATH. 
5486
5487         * configure.in (LINK_GXX_STATICALLY): --enable-ncsb-path option. 
5488         use locate to find c059033l.pfb. 
5489         
5490 2006-01-02  Jan Nieuwenhuizen  <janneke@gnu.org>
5491
5492         * lily/tie-formatting-problem.cc
5493         (problem::generate_base_chord_configuration): Use my_round (was
5494         round).
5495
5496         * lily/source-file.cc (file::get_counts)[!HAVE_MBRTOWC]: Bugfix,
5497         do not invoke mbrtowc.
5498
5499         * lily/relocate.cc (setup_paths): Add more debugging verbosity.
5500
5501 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5502
5503         * scm/lily.scm (lilypond-all): oops. remove debugging hack.
5504
5505 2005-01-02  Heikki Junes  <hjunes@cc.hut.fi>
5506
5507         * Documentation/user/invoking.itely (svg): revise.
5508
5509 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5510
5511         * lily/lexer.ll: use sourcefilename iso. renameinput.
5512
5513 2006-01-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5514
5515         * mf/GNUmakefile ($(NCSB_TTFS)): revise rule. Create
5516         <PostScriptName>.ttf instead of c059XXXttf.
5517
5518         * lily/program-option.cc (LY_DEFINE): special support for
5519         --verbose, so it works before option init too.
5520  
5521         * mf/GNUmakefile (local-install): oops.
5522
5523         * lily/lyric-hyphen.cc (print): oops.
5524
5525         * buildscripts/pfx2ttf.fontforge: new file.
5526         
5527         * mf/GNUmakefile (NCSB_PATH): add vars for NCSB.
5528         ($(outdir)/%.ttf): new rule. 
5529
5530         * scm/define-grobs.scm (all-grob-descriptions): add font-interface
5531         to LyricHyphen.
5532
5533         * lily/lyric-hyphen.cc (print): multiply hyphen height by
5534         font-size
5535
5536 2005-12-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5537
5538         * VERSION: release 2.7.26
5539         
5540         * mf/GNUmakefile (install-fc-cache): remove old font.cache-1 files.
5541
5542 2005-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5543
5544         * lily/font-config.cc (init_fontconfig): verbosity.
5545
5546         * THANKS: add Muziekacademie Lede. 
5547
5548         * scripts/musicxml2ly.py (print_voice_definitions): new function 
5549         (print_score_setup): new function
5550         (convert): read part definition to output staves properly.
5551
5552         * python/musicxml.py (Measure.get_notes): new class. Wrap lists of
5553         Music_xml notes.
5554
5555         * python/musicexp.py (Output_printer.__init__): use _ in data
5556         members.
5557         (Output_printer.unformatted_output): new function: no formatting,
5558         but count braces.
5559         (Duration.get_length): remove isinstance() checks for
5560         Output_printer everywhere.
5561
5562         * input/regression/lyrics-bar.ly (texidoc): add
5563         Separating_line_group_engraver.
5564
5565 2005-12-29  Jan Nieuwenhuizen  <janneke@gnu.org>
5566
5567         * lily/relocate.cc (framework_relocation): New function,
5568         factored from set_relocation ().
5569         (prefix_relocation): Rename from set_relocation ().
5570         (setup_paths): Use it.
5571
5572 2005-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5573
5574         * scm/*.scm: use LEFT/RIGHT/UP/DOWN etc. iso. magical
5575         numbers. Patch by Erlend Aasland.
5576
5577 2005-12-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5578
5579         * lily/font-config.cc (init_fontconfig): print warning if cache
5580         file is not existant.
5581
5582         * lily/main.cc: don't use #ifdef but #if
5583
5584 2005-12-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5585
5586         * lily/grob-property.cc (internal_set_property): don't abort on
5587         calculation-in-progress.
5588
5589         * lily/beam.cc (get_default_dir): robustness: don't divide by zero.
5590
5591         * lily/tuplet-bracket.cc (calc_control_points): oops: typo. Read
5592         connect-to-neighbor property not connect-to-other
5593
5594         * lily/program-option.cc (LY_DEFINE): remove Protected_scm global variable.
5595         (LY_DEFINE): oops. don't forget protection.
5596
5597         * flower/parse-afm.cc (Module): strip AFM handling completely.
5598
5599         * lily/stencil-expression.cc: idem.
5600
5601         * lily/grob-interface-scheme.cc (LY_DEFINE): idem.
5602
5603         * lily/function-documentation.cc (ly_add_function_documentation):
5604         use static member iso. Protected_scm
5605
5606         * lily/main.cc: use ifdef ARGV0_RELOCATION iso. MINGW
5607
5608         * config.make.in (prefix): remove HAVE_KPATHSEA_SO
5609
5610 2005-12-27  Jan Nieuwenhuizen  <janneke@gnu.org>
5611
5612         * lily/relocate.cc (set_env_dir): New function.
5613         (set_relocation): Use it to fix setting PANGO_PREFIX.
5614
5615 2005-12-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5616
5617         * input/regression/stem-direction-context.ly: remove rest.
5618
5619         * lily/melody-engraver.cc (process_music): restart for bar lines.
5620         (acknowledge_slur): restart for slurs.
5621
5622 2005-12-27  Heikki Junes  <hjunes@cc.hut.fi>
5623
5624         * Documentation/user/invoking.itely: describe how to view SVG 
5625         output using Inkscape which replace embedded fonts with OTF fonts.
5626
5627 2005-12-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5628
5629         * lily/relocate.cc (set_relocation): set PANGO_PREFIX
5630
5631 2005-12-23  Jan Nieuwenhuizen  <janneke@gnu.org>
5632
5633         * lily/melody-engraver.cc (class Melody_engraver): Remove lying
5634         comment.
5635
5636 2005-12-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5637
5638         * VERSION (PACKAGE_NAME): release 2.7.25
5639
5640         * Documentation/topdocs/NEWS.tely (Top): document new feature.
5641
5642         * input/regression/stem-direction-context.ly: new file.
5643
5644         * lily/relocate.cc (set_relocation): add PANGO_PREFIX
5645
5646         * lily/melody-engraver.cc (acknowledge_stem): restart MelodyItem
5647         on rest.
5648
5649         * ly/engraver-init.ly: add Melody_engraver
5650
5651         * lily/beam.cc (calc_direction): use default-direction
5652         iso. get_default_direction()
5653
5654         * scm/define-grob-properties.scm (all-user-grob-properties): add
5655         default-direction property.
5656
5657         * scm/define-grobs.scm (all-grob-descriptions): add MelodyItem.
5658
5659         * lily/stem.cc (calc_default_direction): remove
5660         Stem::get_default_direction, use default-direction with callback
5661         instead.
5662
5663         * lily/melody-spanner.cc (calc_neutral_stem_direction): 
5664
5665         * lily/melody-engraver.cc: new file. Acknowledge stems for
5666         interpolated stem directions. 
5667
5668         * lily/melody-spanner.cc: new file. Interpolate stem directions.
5669
5670         * scm/define-grobs.scm (all-grob-descriptions): add MelodyItem
5671
5672         * lily/slur-configuration.cc (fit_factor): more robust check for
5673         point in curve X-extent.
5674
5675         * lily/slur.cc (outside_slur_callback): return offset_scm, not 0.
5676         (outside_slur_callback): check for 'outside avoidance.
5677
5678         * lily/slur-configuration.cc (score_extra_encompass): don't use
5679         bound->column() == avoid->column() for checking extents, as this
5680         doesn't work for accidentals. 
5681
5682         * lily/slur-engraver.cc (acknowledge_extra_object): remove
5683         DynamicText hardcoding.
5684
5685         * lily/slur-scoring.cc (enumerate_attachments): robustness: don't
5686         crash if bound stem is NULL
5687
5688         * lily/piano-pedal-performer.cc: patch by MWD for enabling piano
5689         pedals.
5690
5691 2005-12-22  Graham Percival  <gpermus@gmail.com>
5692
5693         * scm/define-markup-commands.scm: typo.  @code{\raise}
5694         => @code{\\raise}.
5695
5696         * darwin.patch: now used again, includes a
5697         required patch from fink.
5698
5699 2005-12-21  Heikki Junes  <hjunes@cc.hut.fi>
5700
5701         * po/TODO: mention gtranslator along with kbabel.
5702         * po/fi.po: update translations.
5703
5704 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5705
5706         * lily/relocate.cc (setup_paths): Bugfix.
5707
5708 2005-12-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5709
5710         * lily/slur-configuration.cc (score_extra_encompass): don't use
5711         "avoid" choice for avoid-slur.
5712
5713         * stepmake/bin/install.py (dest): don't create existing dir.
5714
5715 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5716
5717         * stepmake/bin/install.py: Remove file before copying.
5718
5719         * config.make.in: 
5720         * stepmake/aclocal.m4: Do not substitute INSTALL.
5721
5722 2005-12-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5723
5724         * GNUmakefile.in ($(tree-share-prefix)/mf-link-tree link-mf-tree):
5725         depend on link-tree.
5726
5727         * lily/relocate.cc (setup_paths): only check path for non-absolute
5728         dir without directory part.
5729
5730         * flower/file-name.cc (is_absolute):  new method.
5731         (is_absolute): check root_ too.
5732
5733 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5734
5735         * lily/relocate.cc (setup_paths) [__MINGW32__]: Comment-out broken
5736         relocation code.  Oops, don't comment out too much.
5737
5738         * stepmake/stepmake/generic-vars.make (INSTALL): Assign INSTALL_PY
5739         iso itself.
5740
5741         * lily/relocate.cc [HAVE_GETTEXT]: Include libintl.h.  Fixes mingw
5742         compile.
5743
5744 2005-12-20  Jan Nieuwenhuizen  <janneke@gnu.org>
5745
5746         * .cvsignore: Add install-sh.
5747
5748         * autogen.sh (srcdir): Typo.
5749
5750 2005-12-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5751
5752         * autogen.sh (srcdir): urg. Touch install-sh.
5753
5754         * stepmake/bin/install-sh (Module): remove.
5755
5756         * stepmake/stepmake/generic-vars.make (INSTALL): add $(INSTALL).
5757
5758         * lily/include/relocate.hh: new file.
5759
5760         * lily/relocate.cc: new file. Contain relocation logic.
5761
5762         * lily/main.cc (setup_paths): fix: LILYPOND_RELOCATE_PREFIX.
5763         (main): read LILYPOND_VERBOSE as the first thing.
5764
5765         * stepmake/aclocal.m4: remove INSTALL variable.
5766
5767         * GNUmakefile.in ($(tree-share-prefix)/mf-link-tree link-mf-tree):
5768         separate target for making font symlinks.
5769         (documentation-dir): use $(if $(findstring )) for switching off
5770         Documentation.
5771
5772         * stepmake/stepmake/help2man-vars.make (OUT_DIST_FILES): only do
5773         something if DOCUMENTATION is no.
5774
5775 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5776
5777         * VERSION: release 2.7.24
5778
5779         * lily/script-column-engraver.cc (stop_translation_timestep):
5780         delay adding to script-column.
5781
5782         * lily/tuplet-bracket.cc (print): suicide if no control-points. 
5783
5784         * python/convertrules.py (conv): rule for number-visibility
5785
5786         * lily/slur-configuration.cc (score_extra_encompass): different
5787         distance measure for avoid and inside avoidance.
5788         (score_extra_encompass): use 1/(distance+eps) as penalty.
5789
5790         * lily/slur-scoring.cc (generate_avoid_offsets): use 'inside
5791         encompass objects for generating slur curves.
5792
5793         * lily/slur.cc: use details iso. slur-details property.
5794
5795         * input/regression/slur-tuplet.ly: new file.
5796
5797         * lily/slur-engraver.cc (acknowledge_tuplet_number): new function.  
5798
5799         * flower/include/offset.hh (class Offset): new operator /=
5800
5801         * lily/tuplet-number.cc (print): new file, new interface.
5802
5803         * scm/define-grob-properties.scm (all-user-grob-properties):
5804         remove number-visibility property.
5805
5806         * lily/tuplet-bracket.cc (calc_control_points): new function
5807         (calc_connect_to_neighbors): new function.
5808         (print): remove text handling for tuplet numberdef.
5809
5810         * lily/tuplet-engraver.cc (struct Tuplet_description): create
5811         TupletNumbers too. 
5812
5813         * lily/lily-guile.cc (robust_scm2booldrul): new function
5814
5815         * scm/define-grobs.scm (all-grob-descriptions): new grob TupletNumber
5816
5817         * lily/tuplet-bracket.cc (calc_position_and_height): use
5818         staff-padding to control whether tuplet brackets are over staves.
5819
5820         * lily/grob.cc (suicide): clear dim_caches_.
5821
5822         * lily/dimension-cache.cc (clear): new function.
5823
5824         * lily/grob.cc (extent): swap order of min-extent and extent
5825         calculations. This fixes hara kiri staves. 
5826
5827 2005-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
5828
5829         * lily/main.cc: Nitpick: relocation is not based on path, but on
5830         directory (location).
5831
5832 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5833
5834         * lily/main.cc (setup_paths): read LILYPOND_RELOCATE_PREFIX
5835
5836         * stepmake/stepmake/install-targets.make (local-uninstall): idem.
5837
5838         * stepmake/stepmake/install-out-targets.make (local-install-outfiles): idem.
5839
5840         * stepmake/stepmake/help2man-targets.make (install-help2man): idem.
5841
5842         * stepmake/stepmake/generic-vars.make (Module): idem.
5843
5844         * stepmake/stepmake/executable-targets.make (default): use it.
5845
5846         * stepmake/bin/install.py (create_dir): new file. Replace install-sh.
5847
5848         * make/GNUmakefile: don't install make rules.
5849
5850         * lily/main.cc (setup_paths): don't inspect $PATH for argv0 with
5851         slashes.
5852         (prepend_env_path): more verbosity.
5853
5854 2005-12-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5855
5856         * GNUmakefile.in: add dir argument for find command.
5857
5858         * lily/parser.yy (bass_figure): set_spot() for bass figures. This
5859         fixes weird line numbers for point & click.
5860
5861         * lily/source-file.cc (get_counts): init line/column/char counts.
5862
5863 2005-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5864
5865         * lily/main.cc: remove ARGV0_RELOCATION, instead use --relocate.
5866
5867 2005-12-16  Graham Percival  <gpermus@gmail.com>
5868
5869         * Documentation/user/basic-notation.itely, advanced-notation.itely:
5870         minor fixes from Fredric.  Thanks!
5871
5872 2005-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5873
5874         * ly/music-functions-init.ly: add \bar and \clef music function 
5875
5876         * lily/lily-lexer.cc: idem.
5877
5878         * lily/parser.yy (FIXME): remove BAR and CLEF.
5879
5880 2005-12-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5881
5882         * Documentation/topdocs/NEWS.tely (Top): doc string argument change.
5883
5884         * lily/parser.yy (Generic_prefix_music_scm): allow strings as
5885         function arguments too
5886
5887         * lily/main.cc (set_relocation): new function.
5888
5889         * scripts/musicxml2ly.py (convert): add \version
5890
5891         * lily/tie.cc: remove get_default_attachments()
5892
5893         * VERSION (PACKAGE_NAME): release 2.7.23
5894         
5895         * lily/chord-tremolo-engraver.cc (acknowledge_stem): use
5896         ultimate_music_cause(). This fixes core dumps in unfold-all-repeats.ly
5897
5898         * Documentation/topdocs/NEWS.tely (Top): document new feature.
5899
5900         * lily/tie-formatting-problem.cc (score_ties): new function
5901         (get_variations): new function. Try flipping dirs for collisions.
5902         (generate_optimal_chord_configuration): new function. 1-opt search
5903         for better configuration.
5904
5905         * lily/tie-configuration.cc: new file.
5906
5907         * lily/tie.cc: junk Tie::get_configuration()
5908
5909         * lily/tie-formatting-problem.cc (score_ties_aptitude): new function.
5910         (score_ties_configuration): new function.
5911         (generate_ties_configuration): new function.
5912         (generate_base_chord_configuration): new function.
5913         (set_ties_config_standard_directions): Move body from tie-column-format.cc 
5914         (set_manual_tie_configuration): Move body from tie-column-format.cc 
5915
5916         * input/regression/tie-dot.ly: new file.
5917
5918         * lily/tie-formatting-problem.cc (score_configuration): score
5919         tie/dot collisions.
5920
5921         * lily/tie-helper.cc (get_transformed_bezier): new function
5922
5923         * Documentation/topdocs/NEWS.tely (Top): strip out-www.
5924
5925         * stepmake/stepmake/python-module-vars.make (SHARED_FLAGS): use
5926         -undefined suppress iso. -framework Python 
5927
5928         * scm/define-grobs.scm (all-grob-descriptions): set
5929         springs-and-rods (thanks Joe Neeman!)
5930
5931 2005-12-12  Nicolas Sceaux  <nicolas.sceaux@free.fr>
5932
5933         * input/no-notation/display-lily-tests.ly (test): 
5934         * scm/display-lily.scm (tag->lily-string): the syntax for tags has
5935         changed from \tag #'(a b) to \tag #'a \tag #'b
5936
5937 2005-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5938
5939         * Documentation/topdocs/NEWS.tely: strip out-www.
5940
5941         * lily/include/grob-interface.hh: include lily-guile.hh not libguile.h
5942
5943         * config.make.in (AR): add AR and RANLIB
5944
5945         * flower/libc-extension.cc: include cassert
5946
5947         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): more robust
5948         darwin check.
5949
5950 2005-12-11  Graham Percival  <gpermus@gmail.com>
5951
5952         * stepmake/stepmake/generic-vars.make: define DARWIN_BUILD.
5953
5954         * stepmake/stepmake/python-modules-vars.make: define
5955         SHARED_FLAGS for OSX.  Thanks Johannes Schindelin!
5956
5957         * THANKS: added Johannes Schindelin.
5958
5959 2005-12-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5960
5961         * python/midi.c (pymidi_parse): use memcmp() iso. strcmp().
5962
5963         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
5964         Span_arpeggio_engraver, add Tweak_engraver to Score context. 
5965
5966         * lily/parser.yy: reorganize file layout.
5967
5968         * ly/music-functions-init.ly: add tweak music function.
5969
5970         * lily/grob-info.cc (ultimate_music_cause): new function:
5971         recursively lookup causes. 
5972
5973         * lily/parser.yy (chord_body_element): allow music functions for
5974         post-events, allow music functions for chord elements. 
5975  
5976         * lily/font-config-scheme.cc (display_fontset): add cast.
5977
5978         * python/convertrules.py (FatalConversionError.sub_syms): \tag
5979         #'(a b) -> \tag #'a \tag #'b rule.
5980
5981         * python/musicexp.py (Output_printer.dump_version): new function
5982
5983 2005-12-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5984
5985         * lily/parser.yy (FIXME): remove \tag
5986         (FIXME): remove tag_music() function.
5987
5988         * lily/lily-lexer.cc: remove \tag
5989
5990         * ly/music-functions-init.ly: define music-function "tag"
5991
5992         * lily/parser.yy (chord_body_element): allow tags in chord bodies.
5993
5994 2005-12-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5995
5996         * VERSION (PATCH_LEVEL): release 2.7.22
5997
5998         * input/regression/lyric-hyphen-retain.ly: renew.
5999
6000         * scm/define-grobs.scm (all-grob-descriptions): add LyricSpace
6001         grob
6002
6003         * lily/lyric-hyphen.cc (set_spacing_rods): use minimum-distance
6004         iso. minimum-length property for rods.
6005
6006         * lily/hyphen-engraver.cc (acknowledge_lyric_syllable): create
6007         LyricSpace item to keep lyrics spaced apart.
6008
6009         * ly/engraver-init.ly: remove Separating_line_group_engraver
6010
6011         * Documentation/user/music-glossary.tely: do setfilename before
6012         music-glossary.
6013
6014 2005-12-07  Heikki Junes  <hjunes@cc.hut.fi>
6015
6016         * Documentation/user/lilypond-book.itely: use `,´ after xref:
6017         See xref documentation, for example.
6018
6019 2005-12-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6020
6021         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): use
6022         pending_skip iso. ly_voice[-1]
6023         (main): add if __main__ for debugging.
6024
6025         * python/musicxml.py (Accidental.__init__): new class.
6026
6027         * scripts/musicxml2ly.py (progress): new function
6028         (musicxml_key_to_lily): don't barf on modeless keys.
6029         (create_skip_music): new function.
6030         (musicxml_spanner_to_lily_event): new function. Handle beams too.
6031         (musicxml_note_to_lily_main_event): new function.
6032
6033         * python/musicexp.py (Music.__init__): add comment field.
6034         (NestedMusic.append): new routine.
6035         (SequentialMusic.print_ly): print comment.
6036         (ArpeggioEvent.ly_expression): new class
6037         (BeamEvent.ly_expression): new class
6038         (NoteEvent.__init__): support for cautionary/forced accs.
6039
6040         * lily/lookup.cc (slur): normal order for array loop.
6041
6042         * scm/framework-ps.scm (dump-stencil-as-EPS): set left X of bbox
6043         to 0.0.
6044
6045         * ly/engraver-init.ly: set bar-size, so bar-lines aren't
6046         collapsed.
6047
6048 2005-12-06 Erik Sandberg  <mandolaerik@gmail.com>
6049
6050         * scm/music-functions.scm: Make phrasing slurs follow voice direction
6051
6052         * scripts/lilypond-book.py: Introduce option
6053             --preserve-line-breaks, for usage with srcltx
6054
6055 2005-12-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6056
6057         * scm/output-lib.scm (print-circled-text-callback): draw circle
6058         around text using make-circle-markup.
6059
6060         * Documentation/user/*: strip out-www from file names.
6061
6062 2005-12-05  Heikki Junes  <hjunes@cc.hut.fi>
6063
6064         * Documentation/user/lilypond.tely (direntry): remove empty lines;
6065         fixes invalid info entry issue with makeinfo 4.8 in debian sid.
6066
6067 2005-12-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6068
6069         * Documentation/user/GNUmakefile: idem.
6070
6071         * Documentation/user/macros.itexi: strip out-www
6072
6073         * python/rational.py: python 2.3 compat.
6074
6075         * VERSION (PATCH_LEVEL): release 2.7.21
6076
6077         * scripts/musicxml2ly.py (NonDentedHeadingFormatter.format_headi):
6078         option formatting, lilypond style.
6079
6080         * python/musicexp.py: grab from Ikebana: a library for composing
6081         ly music expressions. 
6082         (Output_printer): class for advanced .ly printing.
6083         (eg. tupletting) 
6084
6085         * python/musicxml.py: new file. Read MusicXML MiniDOM tree, and
6086         convert to pythonesque structure.
6087
6088         * python/rational.py: PD rational number class.
6089
6090         * Documentation/user/converters.itely (Invoking musicxml2ly):  new node.
6091
6092 2005-12-04  Erik Sandberg  <mandolaerik@gmail.com>
6093
6094         * lily/part-combine-iterator.cc: Minor bugfix
6095         
6096         * THANKS: Update bughunters
6097
6098 2005-12-02  Werner Lemberg  <wl@gnu.org>
6099
6100         * mf/README: Document process for proper mf2pt1 conversion.
6101
6102         * mf/feta-beugel.mf (draw_brace): Fix path to assure clean
6103         overlapping.
6104
6105         * mf/feta-harmonica.mf: Removed.  Unused.
6106
6107 2005-12-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6108
6109         * scripts/lilypond-book.py (do_file): fix thinkos.
6110
6111 2005-12-01  Jan Nieuwenhuizen  <janneke@gnu.org>
6112
6113         * lily/GNUmakefile ($(outdir)/FlexLexer.h):
6114         ($(outdir)/parser.cc): 
6115         ($(outdir)/lexer.cc): Bugfix: depend on config.h.
6116
6117 2005-11-30  Pedro Kröger  <kroeger@pedrokroeger.net>
6118
6119         * ly/titling-init.ly (tagline): it should be a space between
6120         "Music engraving by LilyPond" and the version number.
6121
6122 2005-12-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6123
6124         * VERSION (PACKAGE_NAME): release 2.7.20
6125
6126 2005-11-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6127
6128         * scm/define-markup-commands.scm (pad-to-box): new markup command.
6129
6130         * scm/define-grobs.scm (all-grob-descriptions): set thickness to
6131         1.0.
6132         (all-grob-descriptions): don't shift RehearsalMark arbitrarily.
6133
6134 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6135
6136         * configure.in (LINK_GXX_STATICALLY): remove kpathsea checks.
6137
6138         * kpath-guile/: remove directory
6139
6140         * scm/kpathsea.scm (ly:kpathsea-expand-variable): new
6141         file. Encapsulate kpathsea using commandline tools.
6142
6143         * lily/all-font-metrics.cc (kpathsea_find_file): use (scm
6144         kpathsea) module.
6145
6146 2005-11-29  Mats Bengtsson  <mabe@s3.kth.se>
6147
6148         * Documentation/user/advanced-notation.itely (Setting automatic
6149         beam behavior): Correct a few typos. Thanks to David Bobroff.
6150
6151         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use
6152         \usepackage instead of \RequirePackage. Thanks to Bernard Hurley.
6153
6154 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6155
6156         * scripts/*.py: gmane address for bugs.
6157
6158 2005-11-28 Pal Benko <benkop@freestart.hu>
6159         
6160         * make/ly-rules.make: add -f switch to mv
6161
6162         * scm/output-libs.scm: add new bar symbol "." for punctus divisionis
6163
6164         * lily/bar-line.cc: interpret it
6165
6166 2005-11-28  Jan Nieuwenhuizen  <janneke@gnu.org>
6167
6168         * configure.in (--disable-documentation): New switch.
6169
6170         * GNUmakefile.in: Use it.
6171
6172         * stepmake/aclocal.m4: Use AC_ARG_ENABLE for kpatsea.
6173
6174 2005-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6175
6176         * scripts/lilypond-book.py (do_file): search chunks for
6177         \\begin{document}
6178
6179         * GNUmakefile.in: add copy step in between so we can lose the
6180         out-www directories.
6181
6182 2005-11-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6183
6184         * lily/pango-font.cc (pango_item_string_stencil): put
6185         geometry.width into glyph-string too.
6186
6187 2005-11-26  Nicolas Sceaux  <nicolas.sceaux@free.fr>
6188
6189         * scm/define-music-display-methods.scm (RevertProperty):
6190         (OverrideProperty): Use grob-property-path property, a list of
6191         symbols, instead of grob-property, which used to be a single
6192         symbol.
6193         (BassFigureEvent): a figure can be a plain number, not necessarily a
6194         markup.
6195
6196 2005-11-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6197
6198         * VERSION: release 2.7.19
6199         
6200         * lily/figured-bass-engraver.cc (process_music): check
6201         figuredBassCenterContinuations first.
6202
6203         * scm/translation-functions.scm (format-bass-figure): make double
6204         sharp larger. 
6205
6206         * lily/mark-engraver.cc: read rehearsalMarkAlignSymbol to
6207         determine X-parent.
6208
6209         * lily/system-start-delimiter-engraver.cc: move from
6210         Nested_system_start_delimiter_engraver, rename
6211         Nested_system_start_delimiter_engraver ->
6212         System_start_delimiter_engraver.
6213
6214         * lily/nested-system-start-delimiter-engraver.cc (from_list): read
6215         bracket type from hierarchy.
6216
6217 2005-11-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6218
6219         * lily/rest.cc (y_offset_callback): read staff-position.
6220
6221         * scm/define-grob-properties.scm (all-user-grob-properties): don't
6222         mark after-line-breaking-callback as internal.
6223
6224         * lily/self-aligment-interface.cc: remove self-[XY]-offset.
6225
6226 2005-11-25  Werner Lemberg  <wl@gnu.org>
6227
6228         * mf/feta-banier.mf ("d3"): Make `flare' equal to `staff_space'.
6229
6230 2005-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6231
6232         * stepmake/bin/add-html-footer.py (do_file): add google
6233
6234         * lily/staff-symbol-engraver.cc (process_music): bugfix: stop
6235         staff if first_start_ is true.
6236
6237 2005-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6238
6239         * scripts/midi2ly.py (split_track): add __repr__ members.
6240         (track_first_item): only return Item if not None. This fixes a
6241         problem when dumping a track that starts with an empty channel.
6242
6243         * python/midi.c: doc module.
6244
6245 2005-11-22  Mats Bengtsson  <mabe@s3.kth.se>
6246
6247         * Documentation/user/global.itely (Creating MIDI files): Fix
6248         compilation problem.
6249
6250 2005-11-22  Graham Percival  <gpermus@gmail.com>
6251
6252         * Documentation/user/basic-notation.itely: clarify dynamic
6253         padding text.
6254
6255         * Documentation/user/advanced-notation.itely: add unicode
6256         escape control example, whatever that is.  :)
6257
6258         * Documentation/user/global.itely: added "removing dynamics
6259         from MIDI" code.
6260
6261 2005-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6262
6263         * VERSION (PATCH_LEVEL): release 2.7.18
6264
6265         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): replace
6266         System_start_delimiter_engraver by
6267         Nested_system_start_delimiter_engraver.
6268
6269         * lily/nested-system-start-delimiter-engraver.cc (struct
6270         Bracket_nesting_node): new class.
6271         (struct Bracket_nesting_group): new class
6272         (struct Bracket_nesting_staff): new class.
6273         (process_music): create hierarchy of grobs. This allows separate
6274         tuning of different SSDs. 
6275
6276         * scm/define-grobs.scm (all-grob-descriptions): new Grob SystemStartSquare
6277         (all-grob-descriptions): remove old NestedSystemStartDelimiter.
6278
6279 2005-11-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6280
6281         * lily/side-position-interface.cc (aligned_side): multiply
6282         staff_radius by 2.
6283
6284         * lily/script-engraver.cc (make_script_from_event): allow setting
6285         values to '()
6286
6287 2005-11-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6288
6289         * lily/system-start-delimiter.cc (line_bracket): don't shorten height.
6290
6291         * scm/define-grobs.scm (all-grob-descriptions): new grob
6292         NestedSystemStartDelimiter.
6293
6294         * input/regression/system-start-heavy-bar.ly: new file.
6295
6296         * lily/nested-system-start-delimiter-engraver.cc: new file.
6297
6298         * lily/nested-system-start-delimiter.cc: new file.
6299
6300         * input/regression/system-start-nesting.ly: new file.
6301
6302         * scm/define-grobs.scm (all-grob-descriptions): use X side
6303         positioning for positioning braces for nested contexts.
6304
6305         * lily/system-start-delimiter.cc (print): don't divide extent by
6306         staff_space.
6307         (print): use style iso. glyph.
6308         (staff_bracket): translate glyph inside routine already.
6309
6310 2005-11-18  Michael Welsh Duggan <md5i@cs.cmu.edu>
6311
6312         * lily/vaticana-ligature-engraver.cc: fixed 2 typos in glyph
6313         names.
6314
6315 2005-11-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6316
6317         * scm/define-context-properties.scm
6318         (all-user-translation-properties): rename figuredBassFormatter
6319         from newFiguredBassFormatter.
6320
6321         * scm/define-grobs.scm (all-grob-descriptions): move from NewBassFigure
6322
6323         * lily/figured-bass-engraver.cc: move from new-figured-bass-engraver.cc
6324
6325         * lily/stem.cc (calc_stem_info): trigger beaming calculation.
6326
6327         * lily/beam.cc (calc_beaming): new function.
6328         (calc_shorten): new function.
6329
6330         * THANKS: add Edward Neeman.
6331
6332         * input/regression/accidental-clef-change.ly: new file.
6333
6334         * lily/note-collision.cc (check_meshing_chords): don't merge fa heads.
6335
6336         * scm/define-grobs.scm (all-grob-descriptions): add Y-offset property.
6337
6338         * lily/clef-engraver.cc (inspect_clef_properties): reset
6339         localKeySignature for clef changes.
6340
6341 2005-11-17  Mats Bengtsson  <mabe@s3.kth.se>
6342
6343         * python/midi.c: PyMIDINIT_FUNC isn't defined in Python < 2.3 
6344         add dummy definition that works in Linux and add information in
6345         INSTALL.texi on the specific Python requirements for Cygwin/Mingw.
6346
6347         * Documentation/user/changing-defaults.itely (Modifying context
6348         plug-ins): Add index for \with.
6349
6350         * Documentation/user/music-glossary.tely (dal segno): Updated
6351         example to version >=2.6.
6352
6353 2005-11-16  Mats Bengtsson  <mabe@s3.kth.se>
6354
6355         * Documentation/user/instrument-notation.itely (Printing chord
6356         names): Reorder \chordmode and \repeat in one example.
6357
6358 2005-11-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6359
6360         * VERSION: release 2.7.17
6361         
6362         * Documentation/topdocs/NEWS.tely (Top): add note about
6363         refactoring.
6364
6365         * lily/tie-formatting-problem.cc (find_optimal_tie_configuration):
6366         new function. Search region of 3 positions for best tie.
6367         (score_configuration): new function.
6368         (score_aptitude): new function.
6369         (generate_configuration): new function.
6370         (get_configuration): new function.
6371         (Tie_formatting_problem): new function
6372
6373         * input/regression/page-top-space.ly: a6 for page-top-space demo. 
6374
6375         * stepmake/aclocal.m4: use $(if ) for config-FOOF.make
6376
6377         * THANKS: add Eduardo Vieira & Ralph Little
6378
6379         * mf/feta-bolletjes.mf (solfa_quarter_width): make solfa heads
6380         narrower.
6381
6382         * lily/include/tie-formatting-problem.hh (class
6383         Tie_formatting_problem): add Tie_details to
6384         Tie_formatting_problem. Update calling conventions.
6385
6386         * stepmake/aclocal.m4: oops. Include $CONFIGFILE.make, not
6387         config.make.
6388
6389         * Documentation/user/lilypond.tely: remove musedata2ly entry.
6390
6391 2005-11-16  Jürgen Reuter  <reuter@ipd.uka.de>
6392
6393         * lily/ligature-engraver.cc, lily/include/ligature-engraver.hh,
6394         scm/define-context-properties.scm: Maintenance bugfix: make
6395         ligature brackets work again by removing obsolete ligature
6396         primitive callback push/pop.
6397
6398         * scm/define-grobs.scm (LigatureBracket): Maintenance bugfix: do
6399         not call Tuplet_bracket::calc_direction.  Removed obsolete gap
6400         value.
6401
6402 2005-11-15  Jan Nieuwenhuizen  <janneke@gnu.org>
6403
6404         * stepmake/aclocal.m4 (depth): Explain why absolute directory is
6405         used and do not call it a path.
6406         (FLEXLEXER_FILE): Rename from FLEXLEXER_PATH and add file name.
6407
6408 2005-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6409
6410         * lily/include/tie-formatting-problem.hh (class
6411         Tie_formatting_problem): new file.
6412
6413         * lily/tie-formatting-problem.cc (common_x_refpoint): new file.
6414
6415         * Documentation/misc/ChangeLog-2.3:  new file.
6416
6417         * lily/audio-staff.cc (output): degarianize.
6418
6419 2005-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
6420
6421         * stepmake/stepmake/python-module-rules.make ($(outdir)/%.pyc):
6422         Unset PYTHONOPTIMIZE.  Fixes install if set.
6423
6424 2005-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6425
6426         * python/convertrules.py (conv): add warning about drums. 
6427
6428         * make/stepmake.make: include toplevel-version.make after config.make.
6429
6430         * stepmake/aclocal.m4 (depth): make sure $srcdir is absolute.
6431         also allow python2.4
6432
6433         * config.make.in (configure-srcdir): remove GXX GCC vars.
6434
6435         * stepmake/aclocal.m4: don't do non-srcdir build with
6436         symlinks. Use inclusion, so the src directory name can be changed.
6437
6438 2005-11-13  Jan Nieuwenhuizen  <janneke@gnu.org>
6439
6440         * make/mutopia-vars.make:
6441         * make/ly-vars.make: Use src-wildcard iso wildcard for source
6442         files.
6443
6444 2005-11-13  Werner Lemberg  <wl@gnu.org>
6445
6446         * mf/feta-arrow.mf: For all glyphs, don't mirror `currentpicture'
6447         but the affected path.  This ensures that the (overlapping) outlines
6448         have the same direction, which is a necessary prerequisite for
6449         FontForge's algorithm to remove overlaps.
6450         Formatting.
6451
6452         * mf/feta-haak.mf: Formatting.
6453         (draw_bracket): Slightly modify outline to avoid an unnecessary
6454         corner.
6455         Don't use ad-hoc values for `leave_angle' and `tip_angle' but derive
6456         them from the affected paths.
6457
6458 2005-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6459
6460         * mf/README: remove xpm / accordion notes.
6461
6462         * lily/tie-column-format.cc (set_chord_outline): add dots into
6463         skyline extents. This fixes tie formatting if the left head has dots.
6464
6465         * lily/tie.cc (get_configuration): only shift tie by a whole staff
6466         space inside the staff.
6467         (get_configuration): shift another position if necessary in case
6468         of left head tie  
6469
6470 2005-11-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6471
6472         * stepmake/stepmake/texinfo-vars.make (GENERATE_OMF): use
6473         buildscript-dir iso. $(depth)/buildscripts.
6474
6475         * tex/GNUmakefile (local-uninstall): remove
6476         music-drawing-routines.ps juggling.
6477
6478         * stepmake/stepmake/install-targets.make (local-install-files):
6479         prepend src-dir to install targets.
6480
6481         * lily/system-start-delimiter-engraver.cc
6482         (acknowledge_system_start_delimiter): use
6483         add_offset_callback(). This fixes translation of nested
6484         staffgroups.
6485
6486         * lily/grob-closure.cc (add_offset_callback): only encaps in
6487         simple_closure if it's a procedure.
6488         
6489         * lily/span-bar.cc (calc_glyph_name): read glyph-name, not glyph
6490         from bar-line.
6491
6492         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
6493         remove-empty where pertinent.
6494
6495 2005-11-12  Graham Percival  <gpermus@gmail.com>
6496
6497         * Documentation/user/instrument-notation.itely: added
6498         Cameron Horsburgh's multiple stanzas docs.  Thanks!
6499
6500 2005-11-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6501
6502         * lily/GNUmakefile
6503         ($(top-build-dir)/Documentation/pictures/$(outbase)/lilypond.ico):
6504         make picture in builddir, not srcdir.
6505
6506 2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6507
6508         * VERSION: release 2.7.16
6509         
6510         * scripts/lilypond-book.py (main): use commands.mkarg () to quote
6511         shell arguments. 
6512
6513 2005-11-10  Mats Bengtsson  <mabe@s3.kth.se>
6514
6515         * Documentation/user/examples.itely (Piano templates): Minor
6516         modification to the Piano centered lyrics example.
6517
6518 2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6519
6520         * scripts/lilypond-invoke-editor.scm (run-browser): look at
6521         $BROWSER.
6522
6523         * Documentation/user/point-and-click.itely: simplify p&c
6524         instruction: don't configure firefox. Put lilypond-invoke-editor
6525         in front of the browser.
6526
6527         * scripts/lilypond-invoke-editor.scm (run-editor): new function.
6528         (run-browser): new function.
6529
6530         * lily/parser.yy (Lily_lexer): recognize Book
6531
6532         * lily/book.cc (clone): new function
6533
6534         * lily/parser.yy (book_body): allow BOOK_IDENTIFIER.
6535
6536 2005-11-10  Jürgen Reuter  <reuter@ipd.uka.de>
6537
6538         * lily/vaticana-ligature.cc, lily/vaticana-ligature-engraver.cc:
6539         Maintenance bugfix: reduce number of font related warnings by
6540         updating naming conventions for glyph-name.
6541
6542 2005-11-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6543
6544         * scm/define-grobs.scm (all-grob-descriptions): add
6545         rhythmic-grob-interface to TabNoteHead.
6546
6547         * scm/layout-beam.scm (check-quant-callbacks): remove
6548         set_stem_lengths()
6549
6550 2005-11-08  Jürgen Reuter  <reuter@ipd.uka.de>
6551
6552         * ly/gregorian-init.ly (divisiones): Maintenance bugfix: vertical
6553         alignment of centered divisiones.
6554
6555         * scm/scripts.scm (articulations): Maintenance bugfix:
6556         follow-into-staff -> quantize-position.
6557
6558         * lily/vaticana-ligature-engraver.cc (transform_heads): Bugfix:
6559         plica head in porrectus deminutus.
6560
6561 2005-11-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6562
6563         * make/lilypond.fedora.spec.in (Group): add %clean section.
6564
6565         * lily/tuplet-bracket.cc (print): change check: remove bracket if
6566         less then 1/5th of total length.  
6567         (print): use gap too.  Fixes tupletUp-single-bracket.ly
6568
6569         * scm/music-functions.scm (glue-mm-rest-texts): also put other
6570         events into EventChord. This fixes textspanners on mm rests. Fixes
6571         spanner-rest.ly
6572
6573         * lily/side-position-interface.cc (get_axis): read side-axis
6574         (set_axis): set side-axis.
6575
6576         * scm/define-grobs.scm (all-grob-descriptions): add side-axis
6577         properties everywhere.
6578
6579         * lily/spacing-spanner.cc (breakable_column_spacing): add
6580         average-spacing-wishes. Take maximum if not set.
6581         (musical_column_spacing): idem. Fixes: spacing-keysig-note.ly
6582
6583         * scm/define-grobs.scm (all-grob-descriptions): add
6584         average-spacing-wishes.
6585
6586         * lily/grob-closure.cc (add_offset_callback): bugfix: properly add
6587         offset callbacks. This fixes alignment for Fingering objects.
6588
6589         * scm/define-grobs.scm (all-grob-descriptions): tiny bit less
6590         space for key - timesig combination. 
6591
6592         * input/regression/script-stem-tremolo.ly (Module): new file.
6593
6594         * scm/define-grobs.scm (all-grob-descriptions): decrease distance
6595         to key sig.
6596
6597         * lily/dynamic-engraver.cc (acknowledge_stem_tremolo): new function.
6598         Fixes: c-tremolo-script.ly.
6599         
6600         * lily/text-engraver.cc (acknowledge_stem_tremolo): new function.
6601
6602         * lily/script-engraver.cc (acknowledge_stem_tremolo): new function.
6603         
6604         * scm/define-grobs.scm (all-grob-descriptions): remove
6605         self-X-offset. Fixes alignment of octavate-8.
6606
6607         * scripts/lilypond-book.py (datadir): look in
6608         LILYPONDPREFIX/share/lilypond/current/
6609
6610         * GNUmakefile.in: symlink current to <VERSION>. 
6611
6612 2005-11-07  Pedro Kroger  <kroeger@pedrokroeger.net>
6613
6614         * lily/main.cc: eps listed as a backend.
6615
6616 2005-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6617
6618         * scm/lily-library.scm (print-music-as-book): quote $defaultpaper.
6619
6620 2005-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6621
6622         * lily/include/score.hh (class Score): remove texts_ member.
6623
6624         * lily/beam.cc (set_stem_lengths): force direction callback.
6625         (print): read quantized-positions, so we can force
6626         Beam::set_stem_lengths to occur.
6627         (rest_collision_callback): use common X parent. 
6628
6629 2005-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
6630
6631         * flower/file-path.cc (find): Bugfix: Return name of file found.
6632
6633         * lily/main.cc (setup_paths): Bugfix for argv0 logic.
6634         (setup_paths)[__CYGWIN__ || __MINGW32__]: Normalize argv0.
6635         (setup_paths)[__MINGW32__]: Also look for argv0 + .exe.
6636
6637 2005-11-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6638
6639         * flower/offset.cc: idem.
6640
6641         * mf/*.mf: update email address.
6642
6643         * lily/font-config-scheme.cc:  new file.
6644
6645         * GNUmakefile.in (SUBDIRS): remove debian/ directory.
6646
6647         * lily/*:  cs.uu.nl -> xs4all.nl
6648
6649         * VERSION (PATCH_LEVEL): release 2.7.15
6650
6651         * make/lilypond.mandrake.spec.in (Module): remove Mandrake & Suse
6652         spec files.
6653
6654         * make/lilypond.fedora.spec.in: add %{libdir}/lilypond/
6655
6656 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6657
6658         * GNUmakefile.in: bugfix: encapsulate mkdir && cd in parens.   
6659
6660         * lily/staff-performer.cc (process_music): add audio
6661         elements. This makes MIDI instrument changes work once again.
6662
6663         * lily/main.cc (LY_DEFINE): add gmane address.
6664
6665         * lily/beam.cc: remove calc_positions()
6666
6667         * lily/include/grob.hh (class Grob): move pscore, dim_cache_,
6668         original_ in private scope.
6669         (class Grob): drop pscore_ pointer, change to output_def pointer.
6670         (class Grob): cleanup class definition.
6671
6672         * ly/spanners-init.ly (assertBeamQuant): use make-simple-closure.
6673
6674 2005-11-02  Jan Nieuwenhuizen  <janneke@gnu.org>
6675
6676         * lily/main.cc (setup_paths)[__MINGW32__]: Do not assume argv0 is
6677         absolute.  Better diagnostics.
6678
6679         * GNUmakefile.in: Add bin/ to tree and populate with some links.
6680         This makes lilypond run from the build directory using argv0
6681         relocation (without any --prefix or LILYPONDPREFIX setting).
6682
6683 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6684
6685         * Documentation/topdocs/NEWS.tely (Top): document new backend design.
6686
6687         * scm/define-grobs.scm: purge self-[XY]-offset variables, replace
6688         with simple-closure.
6689
6690         * lily/self-aligment-interface.cc (set_align_self): new function
6691         (set_center_parent): new function.
6692
6693         * lily/side-position-interface.cc (set_axis): new function.
6694
6695         * lily/new-fingering-engraver.cc (position_scripts): use drul for
6696         generic code. 
6697
6698         * scm/define-grob-properties.scm (all-user-grob-properties):
6699         remove [XY]-offset-callbacks add [YX]-offset
6700         
6701 2005-11-02  Mats Bengtsson  <mabe@s3.kth.se>
6702
6703         * scm/define-grobs.scm (all-grob-descriptions): Added space-alist
6704         entry for time signatures after breathing signs. Bug report by
6705         Scott Russell.
6706
6707 2005-11-01  Jan Nieuwenhuizen  <janneke@gnu.org>
6708
6709         * lily/main.cc (setup_paths)[!__MINGW32__]: Bugfix: if argv0 is
6710         not absolute, make it absolute using PATH.
6711
6712 2005-10-28  Jan Nieuwenhuizen  <janneke@gnu.org>
6713
6714         * python/midi.c (initmidi): Fix type for mingw.
6715
6716 2005-10-27  Jan Nieuwenhuizen  <janneke@gnu.org>
6717
6718         * stepmake/stepmake/compile-vars.make (SHARED_FLAGS): Support mingw.
6719
6720         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): Detect mingw
6721         cross compiling.
6722
6723         * stepmake/aclocal.m4: Support python cross compiling.
6724
6725         * stepmake/stepmake/python-module-vars.make (SHARED_MODULE_SUFFIX):
6726         Add mingw section.
6727
6728 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6729
6730         * scm/output-lib.scm (chain-grob-member-functions): replace
6731         chained-callback.cc
6732
6733         * lily/chained-callback.cc (Module): remove file.
6734
6735         * lily/rest-collision.cc (force_shift_callback_rest): change to
6736         chained callback.
6737
6738         * lily/rest.cc (y_offset_callback): merge function of 3 callbacks. 
6739
6740         * lily/grob.cc (y_parent_positioning): remove axis argument from
6741         parent_positioning callbacks.
6742         (Grob): junk init code
6743         (get_offset): use generic property callbacks for
6744         X-offset, Y-offset. Remove Grob::{add,has}_offset_callback.
6745         (axis_parent_positioning): new function
6746         (axis_offset_symbol): new function
6747         (chain_offset_callback): new function
6748         (add_offset_callback): new function
6749
6750         * lily/beam.cc (rest_collision_callback): change signature; this
6751         is now a chained callback.
6752
6753         * lily/include/dimension-cache.hh (class Dimension_cache): remove
6754         callback administration.
6755
6756         * lily/simple-closure.cc: new file. Smob type that allows "grob
6757         member functions",
6758
6759             (ly:make-simple-closure FUNC A B)
6760
6761         is evaluated as (FUNC grob A B). This allows chaining of callbacks
6762         in various ways.
6763
6764         * lily/slur-engraver.cc (acknowledge_extra_object): use chained
6765         callbacks.
6766
6767         * lily/slur.cc (outside_slur_callback): take 2 arguments.
6768
6769         * lily/rest.cc (polyphonic_offset_callback): remove.
6770
6771         * lily/script-engraver.cc (try_music): remove bool* argument.
6772
6773         * scm/script.scm (default-script-alist): set quantize-position
6774         appropriately.
6775
6776         * lily/script-engraver.cc: remove follow_into_staff_ special coding. 
6777
6778         * lily/side-position-interface.cc (aligned_side): move staff
6779         position quantization from
6780         Side_position_interface::quantised_position().
6781         (quantised_position): remove
6782         
6783 2005-10-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6784
6785         * input/regression/beam-quant-standard.ly: reindent, set
6786         debug-beam-quanting to #t.
6787
6788         * lily/beam-concave.cc (calc_concaveness): set concaveness to
6789         10000 if this is a "hard" concave beam.
6790
6791         * lily/beam.cc (calc_least_squares_positions): change from
6792         calc_least_squares_dy
6793         (set_stem_lengths): this is now a chained callback.
6794
6795         * lily/context-property.cc (execute_general_pushpop_property):
6796         bugfix override with procedure should have effect.
6797
6798         * scm/define-grob-properties.scm (all-internal-grob-properties):
6799         remove position-callbacks.
6800
6801         * scm/define-grobs.scm (all-grob-descriptions): use
6802         ly:make-callback-chain for positions property.
6803
6804         * scm/layout-beam.scm (check-quant-callbacks): return list of
6805         chained callbacks.
6806
6807         * scm/lily.scm (type-p-name-alist): add callback-chain
6808
6809         * lily/lily-guile.cc (type_check_assignment): type check failure
6810         is warning not message.
6811
6812         * lily/grob-property.cc (try_callback): walk callback chain if
6813         appropriate.
6814
6815         * lily/chained-callback.cc: new file. new smob type.
6816
6817         * lily/lily-guile.cc (procedure_arity): new function.
6818
6819 2005-10-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6820
6821         * Documentation/topdocs/INSTALL.texi (Top): add perl flex bison.
6822
6823 2005-10-25  John Mandereau  <john.mandereau@free.fr>
6824  
6825         * Documentation/user/instrument-notation.itely (Figured bass):
6826         describe new features
6827
6828 2005-10-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6829
6830         * lily/beam.cc (calc_least_squares_dy): use property callback.
6831
6832         * lily/beam-concave.cc (calc_concaveness): use property callback.
6833
6834         * ly/paper-defaults.ly: move fixed dimensions from paper.scm 
6835
6836 2005-10-25  Jan Nieuwenhuizen  <janneke@gnu.org>
6837
6838         * HACKING: Update.
6839
6840 2005-10-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6841
6842         * scm/layout-page-layout.scm (page-headfoot): annotate
6843         pagetopspace too.
6844
6845         * scm/stencil.scm (dimension-arrows): shorten arrowed lines a bit. 
6846
6847         * scm/layout-page-layout.scm (annotate-y-interval): y-annotation
6848         doesn't take y-space.
6849
6850         * scm/paper.scm (paper-alist): fix A7 dimensions. 
6851
6852 2005-10-24  Jan Nieuwenhuizen  <janneke@gnu.org>
6853
6854         * stepmake/stepmake/generic-vars.make (DIST_FILES): Fix
6855         src-wildcard, remove $(wildcard).
6856
6857         * po/GNUmakefile (PO_FILES): 
6858         * ps/GNUmakefile (PS_FILES): 
6859         * tex/GNUmakefile (TEX_FILES): 
6860         * cygwin/GNUmakefile (POSTINSTALLS):
6861         * vim/GNUmakefile (EXTRA_DIST_FILES): Bugfix: [etags sr?] missed
6862         some wildcard calls.
6863
6864 2005-10-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6865
6866         * THANKS: add Thomas Bushnell.
6867
6868 2005-10-23  Jan Nieuwenhuizen  <janneke@gnu.org>
6869
6870         * scm/lily.scm: Remove horrendous running-from-gui? kludge.
6871         (lilypond-main): Redirect to gui-main if 'gui is set.
6872
6873         * scripts/midi2ly.py (datadir): Add libdir iso datadir to path,
6874         for alternative installations kludging s/share/lib/g
6875         LILYPONDPREFIX. 
6876
6877         * SConstruct (libdir_package_version): Define.
6878
6879         * python/SConscript: 
6880         * python/GNUmakefile (INSTALLATION_OUT_DIR): Install binary .so
6881         module in libdir.  
6882
6883 2005-10-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6884
6885         * lily/main.cc: clarify --safe.
6886
6887 2005-10-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6888
6889         * VERSION: release 2.7.14
6890         
6891         * Documentation/user/*.itely: remove minimumVerticalExtent.
6892
6893         * scm/define-grobs.scm (all-grob-descriptions): remove
6894         RemoveEmptyVerticalGroup
6895
6896         * lily/hara-kiri-engraver.cc (get_spanner): create VerticalAxisGroup.
6897
6898         * lily/include/lily-guile.hh (GUILE_ELLIPSIS): define to get clean
6899         compile on MOSX
6900
6901         * python/convertrules.py (conv): add rules.
6902
6903         * lily/grob.cc: remove is_empty()
6904
6905         * lily/grob-property.cc: remove add_to_list_property().
6906
6907         * scripts/convert-ly.py (datadir): add prefix switching hack to
6908         .py too.
6909
6910         * input/mutopia/W.A.Mozart/mozart-hrn3-defs.ily (cresc): remove
6911         space-function tweak.
6912
6913         * lily/grob.cc: remove X-extent-callback / Y-extent-callback.
6914
6915         * scm/define-grob-properties.scm (all-user-grob-properties):
6916         remove callback property.
6917
6918         * lily/include/grob.hh (class Grob): remove property_callbacks_
6919         member. Properties of procedure type are assumed to be callbacks.
6920
6921         * lily/ligature-engraver.cc (override_stencil_callback):
6922         rewrite. Use noteHeadLigaturePrimitive as source.
6923
6924         * scm/define-grob-properties.scm (all-internal-grob-properties):
6925         remove ligature-primitive-callback
6926
6927         * lily/include/dimension-cache.hh (class Dimension_cache): make
6928         class, with Grob as friend.
6929
6930         * lily/grob.cc: remove set_extent_callback(), set_extent() and
6931         has_extent_callback()
6932
6933         * scm/translation-functions.scm (format-new-bass-figure): read
6934         figuredBassPlusDirection
6935
6936         * scm/define-context-properties.scm
6937         (all-user-translation-properties): add figuredBassPlusDirection.
6938
6939         * lily/staff-spacing.cc (next_notes_correction): oops. Init wishes.
6940
6941         * lily/align-interface.cc (set_ordered): new function.
6942
6943         * lily/grob.cc (flush_extent_cache): rewrite.
6944
6945         * lily/dimension-cache.cc (Dimension_cache): cache extent as
6946         Interval pointer directly.
6947
6948         * lily/main.cc (setup_paths): insert extra / .
6949         (setup_paths): junk cff entry.
6950
6951         * lily/font-config.cc (init_fontconfig): only add type1 / otf
6952         directories.
6953
6954         * lily/axis-group-engraver.cc (finalize): remove
6955         extraVerticalExtent, minimumVerticalExtent verticalExtent.
6956
6957         * lily/grob.cc (Grob): don't set extent from ctor.
6958         (extent): use property callbacks. 
6959
6960         * lily/axis-group-interface.cc: remove set_axes() function.
6961
6962         * lily/grob-property.cc (del_property): new function.
6963
6964 2005-10-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6965
6966         * lily/font-config.cc (init_fontconfig): resurrect mf/out/ check.
6967         
6968 2005-10-20  Jan Nieuwenhuizen  <janneke@gnu.org>
6969
6970         * stepmake/stepmake/script-vars.make (PYTHON_SCRIPTS_IN): Oops.  Add.
6971
6972 2005-10-19  Jan Nieuwenhuizen  <janneke@gnu.org>
6973
6974         * mf/SConscript: Updates.
6975
6976         * lily/GNUmakefile (OUT_DIST_FILES): Bugfix.
6977
6978         * stepmake/stepmake/*:
6979         * */GNUmakefile:
6980         * config.make.in:
6981         * GNUmakefile.in:
6982         * stepmake/aclocal.m4: Friendlier --srcdir build, allowing `make'
6983         from any directory in build-dir.  Cleanups.
6984
6985         * make/srcdir.make.in: Remove.
6986
6987         * lily/main.cc (setup_paths): Fix and document build-dir hack.
6988
6989         * SConstruct (CheckYYCurrentBuffer): Use TryCompile (there is no
6990         main).
6991
6992         * lily/SConscript: Remove ttftools.
6993
6994         * SConstruct: Resurrect.
6995
6996 2005-10-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6997
6998         * lily/tuplet-bracket.cc (print): use dy iso. positions[RIGHT] for
6999         Y coordinate. 
7000
7001         * lily/paper-book.cc (add_score_title): put Paper_score title into
7002         systems_ list.
7003
7004         * scm/translation-functions.scm (format-new-bass-figure): also
7005         allow plus in combination with _
7006
7007 2005-10-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7008
7009         * VERSION: 2.7.13 released.
7010
7011         * lily/note-collision.cc (check_meshing_chords): don't wipe
7012         stencil, merely set transparent.
7013
7014         * Documentation/topdocs/NEWS.tely (Top): mention John Mandereau. 
7015         (Top): document #'callbacks.
7016         (Top): document nested \override.
7017
7018         * input/regression/figured-bass.ly: update for slash and pluses.
7019
7020         * input/regression/figured-bass-continuation-forbid.ly (Module):
7021         new file.
7022
7023         * scm/translation-functions.scm (format-new-bass-figure): use
7024         slashed-digit if diminished is set.
7025         (format-new-bass-figure): add + if 'augmented is set.
7026
7027         * scm/define-markup-commands.scm (slashed-digit): new command slashed-digit.
7028
7029         * input/test/piano-staff-distance.ly: remove file.
7030
7031         * Documentation/user/advanced-notation.itely (Formatting cue
7032         notes): use length-fraction for making stems/beams smaller.
7033
7034         * lily/parser.yy (bass_figure): accept \+ \! and / as figured bass
7035         modifications.
7036
7037         * lily/new-figured-bass-engraver.cc: new property
7038         centerFiguredBassContinuations
7039
7040         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7041         use callbacks.
7042
7043         * lily/context-property.cc (execute_general_pushpop_property):
7044         robustness checks.
7045
7046         * input/regression/override-nest.ly: new file.
7047
7048         * python/convertrules.py (FatalConversionError.subber): conversion
7049         rule for #'callbacks
7050
7051         * input/regression/override-nest.ly: new function.
7052
7053         * lily/parser.yy (music_property_def): allow \override #'a #'b =
7054         #c too. 
7055
7056         * lily/context-property.cc (lookup_nested_property): new function.
7057         (evict_from_alist): new function.
7058         (general_pushpop_property): new function.
7059         (execute_general_pushpop_property): rewrite. Support nested
7060         properties too.
7061
7062 2005-10-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7063
7064         * lily/beam.cc: use length-fraction too.
7065
7066         * scm/define-grob-properties.scm (all-user-grob-properties):
7067         remove property flag-width-function
7068         (all-user-grob-properties): remove space-function.
7069
7070         * scm/layout-beam.scm: remove flag-width-function.
7071
7072         * lily/beam.cc: remove flag-width-function
7073
7074         * scm/layout-beam.scm: remove beam dir functions.
7075
7076         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): use length-fraction.
7077
7078         * lily/stem.cc (calc_length): multiply with length_fraction. Makes
7079         for easier grace tweaks.
7080
7081         * lily/beam.cc: remove dir-function.
7082
7083         * lily/system.cc (pre_processing): use callback to trigger spacing procedures.
7084
7085         * lily/grob.cc: remove spacing-procedure.
7086
7087         * lily/note-head.cc (calc_stem_attachment): new function.
7088         (internal_print): use callback to get glyph-name.
7089
7090         * lily/grob-property.cc (get_interfaces): new function.
7091
7092         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-interfaces
7093
7094         * lily/stem.cc (calc_stem_end_position): new function.
7095         (calc_length): new function.
7096         document details for stem.
7097         remove Stem::get_direction()
7098
7099         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-set-callback! 
7100
7101         * lily/grob-property.cc (set_callback): new function.
7102
7103         * lily/script-engraver.cc (make_script_from_event): don't trigger callback.
7104
7105         * lily/item-scheme.cc: new file.
7106
7107         * lily/bar-line.cc (before_line_breaking): remove function.
7108         remove bar-size-procedure, break-glyph-function
7109
7110         * lily/clef-engraver.cc (set_glyph): use glyph iso. glyph-name
7111
7112         * lily/clef.cc (before_line_breaking): change to calc_glyph_name.
7113
7114         * lily/system-start-delimiter.cc (print): suicide from
7115         here. Remove after_line_breaking_callback.
7116
7117         * lily/script-interface.cc (calc_direction): use callback for direction.
7118
7119         * lily/side-position-interface.cc (aligned_side): don't use
7120         Side_position_interface::get_direction directly. Use callback. 
7121
7122         * lily/grob.cc (get_stencil): simplify: use callback mechanism to
7123         calculate stencil.
7124         (get_print_stencil): rename from get_stencil: create stencil with
7125         transparency, color and cause. 
7126
7127         * scm/define-grobs.scm: change print-function to stencil callback everywhere.
7128
7129         * python/convertrules.py (conv): insert temporary warning rule.
7130
7131         * lily/multi-measure-rest.cc (set_text_rods): use stencil directly.
7132
7133         * lily/grob-property.cc (try_callback): remove marker if applicable.
7134
7135         * lily/grob.cc: elucidate doc about after/before-line-breaking
7136
7137         * lily/slur-scoring.cc (enumerate_attachments): robustness fix.
7138
7139         * lily/stem.cc (height): idem.
7140
7141         * lily/stem-tremolo.cc: idem.
7142
7143         * lily/slur.cc (height): don't use get_uncached_stencil()
7144
7145         * lily/rest.cc (y_offset_callback): use offset callback
7146         iso. after-line-breaking callback.
7147
7148         * lily/grob.cc: change after/before-line-breaking-callback to
7149         after/before-line-breaking dummy properties.
7150
7151         * lily/include/grob.hh: remove Grob_status.
7152
7153         * scm/define-context-properties.scm
7154         (all-user-translation-properties): remove verticalAlignmentChildCallback
7155
7156         * lily/tuplet-bracket.cc: use positions property iso. left,right-position.
7157         (calc_direction): use callback
7158         (calc_positions): use callback.
7159
7160         * lily/tie.cc (calc_direction): use callback. Only call parent
7161         positioning for more than one tie.
7162
7163         * lily/tie-column.cc (calc_positioning_done): use callback
7164
7165         * lily/slur-scoring.cc (calc_control_points): use callback
7166
7167         * lily/slur.cc (calc_direction): use callback.
7168
7169         * lily/note-collision.cc (force_shift_callback): remove.
7170
7171         * lily/dot-column.cc (force_shift_callback): remove. Use
7172         other_axis_parent_positioning.
7173
7174         * lily/grob.cc (other_axis_parent_positioning): new function.
7175         (same_axis_parent_positioning): new function
7176
7177         * lily/align-interface.cc (alignment_callback): remove function.
7178
7179         * lily/note-collision.cc (calc_positioning_done): use callback.
7180
7181         * lily/laissez-vibrer-tie.cc (calc_control_points): use callback.
7182         (calc_direction): idem.
7183         remove print function.
7184
7185         * lily/laissez-vibrer-tie-column.cc (calc_positioning_done): use callback.
7186
7187         * lily/dot-column.cc (calc_positioning_done): use callback.
7188
7189         * lily/break-align-interface.cc (calc_positioning_done): use callback.
7190
7191         * lily/beam.cc (calc_direction): use pseudo-property for beam
7192         direction callback.
7193         (calc_positions): use callback 
7194
7195         * lily/align-interface.cc (calc_positioning_done): use
7196         callback. Fold fixed  distance and normal alignment in one function.
7197
7198         * lily/stem.cc (calc_stem_end_position): use callback.
7199         (calc_positioning_done): idem.
7200         (calc_direction): idem.
7201         (calc_stem_end_position): idem
7202         (calc_stem_info): idem.
7203
7204         * lily/grob-property.cc (get_property_data): new function: 
7205         (try_callback): new function.
7206
7207         * scm/define-grob-properties.scm (all-user-grob-properties): doc
7208         callbacks property.
7209
7210         * lily/break-align-interface.cc: remove Break_align_interface::alignment_callback.
7211
7212 2005-10-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7213
7214         * lily/tie.cc (get_position): robustness fix. Don't crash if a
7215         tie
7216         has no heads.
7217         
7218         * lily/include/*.hh (Module): compile fixes.
7219
7220 2005-10-14  Heikki Junes <hjunes@cc.hut.fi>
7221
7222         * elisp/lilypond-font-lock.el, elisp/lilypond-indent.el: Avoid nil 
7223         as an argument for char-syntax: use (char-syntax (or nil 0)) 
7224         instead of (char-syntax nil), thanks to Milan Zamazal.
7225
7226 2005-10-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7227
7228         * make/lilypond.fedora.spec.in (Group): add lilypond-internals to
7229         dist.
7230
7231         * lily/tuplet-bracket.cc: check columns of bounds, not bounds
7232         themselves.
7233
7234 2005-10-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7235
7236         * flower/include/virtual-methods.hh (VIRTUAL_COPY_CONSTRUCTOR):
7237         add class_name() method.
7238
7239         * lily/music-scheme.cc: remove ly:music-name.
7240
7241 2005-10-11  Jan Nieuwenhuizen  <janneke@gnu.org>
7242
7243         * cygwin/postinstall-lilypond.sh: Remove cruft.
7244
7245         * cygwin/postremove-lilypond.sh: Remove.
7246
7247         * cygwin/GNUmakefile (default): Remove postremove rules.
7248
7249 2005-10-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7250
7251         * ly/titling-init.ly (evenHeaderMarkup): use space in header on
7252         even header too.
7253         
7254         * scm/define-markup-commands.scm (wordwrap-string): bugfix for
7255         MacOS 9 users.
7256
7257         * lily/hara-kiri-group-spanner.cc (consider_suicide): only
7258         consider break index for broken spanner.
7259
7260         * scm/define-markup-commands.scm (wordwrap-string): remove \r
7261         characters from string before splitting.
7262
7263 2005-10-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7264
7265         * scm/framework-ps.scm (output-preview-framework): use
7266         is-book-title to determine whether to chop off the booktitle.
7267
7268         * lily/paper-book.cc (systems): init from book-title-properties
7269         (add_score_title): init score-title-properties.
7270
7271         * ly/paper-defaults.ly: add {score,book}-title-properties.
7272
7273         * scm/document-backend.scm (lookup-interface): error message if
7274         using unknown interface.
7275
7276         * lily/volta-bracket.cc (after_line_breaking): new function. Set
7277         edge-height.
7278
7279         * lily/horizontal-bracket.cc (make_enclosing_bracket): rename from
7280         make_bracket.
7281         (make_bracket): new function.
7282
7283         * scm/lily.scm (define-scheme-options): add paper-size option.
7284
7285         * ly/declarations-init.ly (laissezVibrer): get paper size from
7286         -dpaper-size
7287
7288         * scm/translation-functions.scm: use \fontsize for changing the
7289         fontsize.
7290
7291         * scm/define-grobs.scm (all-grob-descriptions): set
7292         between-length-limit to 1.0
7293
7294         * lily/tie-helper.cc: add between_length_limit_ detail property.
7295
7296         * mf/feta-bolletjes.mf: typos.
7297
7298         * lily/note-head.cc (internal_print): don't shadow idx
7299         parameter. This fixes wrong attachment for do shape heads.
7300
7301 2005-10-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7302
7303         * scm/parser-ly-from-scheme.scm: rename from ly-from-scheme.scm
7304
7305         * scm/parser-clef.scm (supported-clefs): rename from clef.scm
7306
7307         * scm/layout-slur.scm: rename from slur.scm
7308
7309         * scm/layout-page-layout.scm: rename from page-layout.scm
7310
7311         * scm/layout-beam.scm: rename from beam.scm
7312
7313         * scm/define-grob-interfaces.scm (bass-figure-interface): add
7314         bass-figure-interface
7315
7316         * lily/new-figured-bass-engraver.cc (process_music): add
7317         implicitBassFigures property.
7318         
7319         * scm/define-markup-commands.scm (pad-x): new markup.
7320
7321         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): set
7322         minimumVerticalExtent on FiguredBass context.
7323
7324         * lily/figured-bass-continuation.cc (center_on_figures): kludge in
7325         case the continuation crosses a line break.
7326
7327 2005-10-09  Jan Nieuwenhuizen  <janneke@gnu.org>
7328
7329         * flower/file-name.cc (dos_to_posix)[__CYGWIN__]: Return
7330         unconverted value if cygwin_conv_to_posix_path () fails.  Fixes
7331         absolute file name bug.  
7332
7333 2005-10-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7334
7335         * VERSION (PACKAGE_NAME): release 2.7.12
7336
7337         * input/regression/figured-bass-continuation-center.ly: new file.
7338
7339         * input/regression/beam-outside-beamlets.ly: new file.
7340
7341         * lily/beam.cc (set_beaming): don't clip edges.
7342         (connect_beams): don't clip edges.
7343
7344         * lily/beaming-info.cc (clip_edges): new function.
7345
7346         * lily/enclosing-bracket.cc (struct Enclosing_bracket): new file.
7347
7348         * Documentation/user/instrument-notation.itely (Figured bass):
7349         demonstrate extenders, update seealso links.
7350
7351         * scm/titling.scm (marked-up-headfoot): change tagline
7352         handling. tagline = ##f will blank the tagline as well.
7353
7354 2005-10-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7355
7356         * Documentation/topdocs/NEWS.tely: add entry for Figured bass.
7357
7358         * lily/new-figured-bass-engraver.cc (struct
7359         New_figured_bass_engraver): add new_music_found_ member.
7360
7361         * lily/lilypond-version.cc (Lilypond_version): deal with
7362         incorrectly formatted version strings. 
7363
7364         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): switch on
7365         New_figured_bass_engraver by default.
7366
7367         * lily/ttf.cc (print_trailer): only define glyph names when
7368         FT_Face has FT_FACE_FLAG_GLYPH_NAMES
7369
7370 2005-10-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7371
7372         * lily/horizontal-bracket.cc (make_bracket): new function.
7373
7374         * scm/define-grobs.scm (all-grob-descriptions): new grobs
7375         NewBassFigure, BassFigureBracket, BassFigureContinuation,
7376         BassFigureLine, BassFigureAlignment
7377
7378         * lily/new-figured-bass-engraver.cc (process_music): new file.
7379
7380         * lily/figured-bass-continuation.cc: new file.
7381
7382         * lily/include/horizontal-bracket.hh (struct Horizontal_bracket):
7383         new file.
7384
7385 2005-10-04  Mats Bengtsson  <mabe@s3.kth.se>
7386
7387         * scripts/lilypond-book.py: Bug fix, put the quote around the
7388         actual score for LaTeX documents.
7389
7390         * scm/define-grobs.scm (all-grob-descriptions): Change
7391         collapse-height of the SystemStartBracket grob to 5.0, 
7392         so the bracket disappears for single stave score lines (similarly
7393         to SystemStartBraces). 
7394
7395         * Documentation/user/advanced-notation.itely (Polymetric
7396         notation): Clarify the use of compressMusic.
7397
7398         * Documentation/user/basic-notation.itely (Grace notes): Clarify
7399         that the grace spacer note in other staves need the same duration
7400         and document the stroke-style property.
7401
7402 2005-10-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7403
7404         * Documentation/user/global.itely (Vertical spacing): document
7405         alignment-extra-space and fixed-alignment-extra-space.
7406
7407         * Documentation/topdocs/NEWS.tely (Top): add entry.
7408
7409         * input/regression/alignment-vertical-spacing.ly: new file.
7410
7411         * python/convertrules.py (conv): add rule.
7412
7413         * ly/music-functions-init.ly: rename outputProperty to overrideProperty
7414
7415         * lily/align-interface.cc (stretch_after_break): new
7416         function. Read fixed-alignment-extra-space property.
7417         (align_elements_to_extents): read alignment-extra-space property.
7418
7419         * lily/lily-guile.cc (robust_scm2dir): new function.
7420
7421         * scm/page-layout.scm (page-headfoot): annotate headsep and footsep.
7422         (annotate-space-left): new function. Annotate space left on page. 
7423         (annotate-y-interval): new function.
7424         (paper-system-annotate-last): new function. Annotate bottom-space.
7425
7426         * mf/feta-beugel.mf (y): 
7427
7428 2005-10-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7429
7430         * VERSION (PACKAGE_NAME):  release 2.7.11
7431
7432         * scm/lily-library.scm (interval-translate): new function
7433         (interval-center): new function. 
7434
7435         * scm/page-layout.scm (paper-system-annotate): new function. Add
7436         arrows for dimensions.
7437  
7438         * scm/stencil.scm (dimension-arrows): new function.
7439
7440         * Documentation/user/global.itely (Vertical spacing): mention annotatespacing
7441
7442         * input/regression/page-spacing.ly: add annotatespacing
7443
7444         * lily/paper-system-scheme.cc (LY_DEFINE): remove ly:paper-system-{extent,stencil}
7445         (LY_DEFINE): new function ly:paper-system-set-property!
7446
7447         * Documentation/user/global.itely (Paper size): explain how to add
7448         sizes.
7449
7450         * scm/paper.scm (paper-alist): rename tabloid paper to 11x17 to
7451         correspond to GS's definition.
7452
7453         * lily/tuplet-bracket.cc (after_line_breaking): suicide empty
7454         tuplet bracket.
7455         (print): only connect to next bracket if the next one is alive.
7456         (print): set padding to 0.0 if the bound is a breakable
7457         column. This makes tupletFullLength brackets reach up to the staff
7458         line if it doesn't connect to the next line.
7459
7460 2005-09-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7461
7462         * lily/bar-number-engraver.cc: correct docs.
7463
7464         * scm/output-lib.scm (first-bar-number-invisible): rename from
7465         default-bar-number-visibility
7466
7467 2005-09-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7468
7469         * scm/define-music-properties.scm (all-music-properties): remove
7470         predicate property.
7471
7472 2005-09-28  Heikki Junes  <hjunes@cc.hut.fi>
7473
7474         * po/fi.po: refresh.
7475
7476 2005-09-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7477
7478         * input/regression/hara-kiri-pianostaff.ly (disappear): remove
7479         superfluous s1.
7480         (disappear): bugfix.
7481
7482         * lily/stem-tremolo.cc (raw_stencil): read slope property.
7483
7484         * lily/include/paper-system.hh (class Paper_system): remove
7485         staff_extents_ member.
7486
7487         * lily/paper-system-scheme.cc (LY_DEFINE): remove.
7488
7489         * lily/include/paper-system.hh (class Paper_system): remove
7490         number_ variable. Remove is_title_. Remove break_before_penalty_
7491
7492         * lily/paper-book.cc (systems): use 'number property iso. number_
7493         member.
7494
7495         * lily/paper-system-scheme.cc: remove ly:paper-system-break-before-penalty
7496         remove ly:paper-system-number.
7497
7498         * scm/lily-library.scm (paper-system-title?): new function.
7499
7500         * lily/book.cc (process): bugfix: flip ?: cases. 
7501
7502         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7503         add outputProperty.
7504
7505         * ly/music-functions-init.ly: add outputProperty music function.
7506
7507         * scm/paper.scm (set-paper-dimension-variables): add pagetopspace
7508
7509         * scm/page-layout.scm (ly:optimal-page-breaks): read next-space
7510         and next-padding.
7511         (optimal-page-breaks): rename from ly:optimal-page-breaks.
7512
7513         * lily/paper-system-scheme.cc (LY_DEFINE): new function.
7514
7515         * lily/paper-system.cc (internal_get_property): new function.
7516
7517         * Documentation/user/global.itely (Vertical spacing): refer to
7518         page-spacing.ly
7519
7520         * scm/page-layout.scm (ly:optimal-page-breaks): add support for
7521         pagetopspace
7522
7523         * input/regression/page-spacing.ly: new file.
7524
7525         * input/regression/page-top-space.ly: new file.
7526
7527         * lily/spacing-spanner.cc: cmath -> math.h
7528
7529         * lily/paper-system.cc (read_left_bound): new function. Read
7530         line-break-system-details from left bound to determine extents.
7531  
7532         * Documentation/user/programming-interface.itely (Using LilyPond
7533         syntax inside Scheme): change applyxxx -> applyXxx.
7534
7535         * ly/music-functions-init.ly: add outputProperty music function.
7536
7537         * lily/parser.yy (Generic_prefix_music_scm): add scm-scm-scm signature.
7538
7539         * lily/grob-scheme.cc (LY_DEFINE): add ! to ly:grob-suicide! name.
7540
7541         * python/convertrules.py (conv): rule
7542
7543         * ly/music-functions-init.ly: applyxxx -> applyXxx
7544
7545         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): alias
7546         TabVoice to Voice.
7547
7548 2005-09-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7549
7550         * flower/include/real.hh: include <math.h> iso. <cmath>
7551
7552         * flower/include/offset.hh: include real.hh
7553
7554 2005-09-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7555
7556         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7557         fix example, now that 'interfaces is no longer directly available.
7558
7559         * lily/book.cc (process): don't crash if paper == NULL.
7560
7561         * po/fr.po: update.
7562
7563 2005-09-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7564
7565         * scm/define-music-types.scm (music-descriptions): set length and
7566         start-callback for QuoteMusic
7567
7568 2005-09-15  Mats Bengtsson  <mabe@s3.kth.se>
7569
7570         * lily/tie.cc (get_configuration): Replace fabs -> abs for integer
7571         arguments. Fixes compilation error with gcc 3.3.
7572
7573 2005-09-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7574
7575         * VERSION: release 2.7.10
7576
7577         * stepmake/stepmake/python-module-rules.make
7578         ($(outdir)/%$(SHARED_MODULE_SUFFIX)): SHARED_FLAGS at the end.  
7579
7580         * lily/*.cc: remove <cmath> everywhere. <cmath> is included from
7581         real.hh
7582
7583 2005-09-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7584
7585         * stepmake/stepmake/c++-vars.make (#EXTRA_CXXFLAGS): don't add
7586         -Werror. Otherwise GCC barfs over various optimizations.
7587
7588         * scm/define-grob-properties.scm (all-internal-grob-properties):
7589         add note-head property
7590
7591         * Documentation/user/instrument-notation.itely (Laissez vibrer
7592         ties): new node.
7593
7594         * input/regression/laissez-vibrer-ties.ly: new file.
7595
7596         * lily/laissez-vibrer-engraver.cc: new file.    
7597
7598         * lily/include/tie-column-format.hh: new file.
7599
7600         * lily/tie-column-format.cc: new file. 
7601
7602         * lily/tie-column.cc (set_manual_tie_configuration): new function.
7603
7604         * lily/laissez-vibrer-tie.cc: new file.
7605
7606         * lily/include/laissez-vibrer-tie.hh: new file.
7607
7608         * ly/engraver-init.ly: add Laissez_vibrer_engraver
7609
7610         * ly/declarations-init.ly (laissezVibrer): add \laissezVibrer
7611
7612         * scm/define-grobs.scm (all-grob-descriptions): add
7613         LaissezVibrerTie, LaissezVibrerTieColumn
7614
7615         * lily/tie-column.cc (set_tie_config_directions): new function
7616         (final_shape_adjustment): new function.
7617         (shift_small_ties): new function.
7618
7619         * scm/define-music-types.scm (music-descriptions): add LaissezVibrerEvent
7620
7621         * lily/include/tie.hh (struct Tie_details): add x_gap_
7622         (struct Tie_configuration): add head_position_
7623
7624         * lily/tie-column.cc (set_chord_outline): new function.
7625
7626         * mf/cmr.enc.in:  remove file.
7627
7628 2005-09-11  Graham Percival  <gpermus@gmail.com>
7629
7630         * Documentation/user/examples.itely: typo fix.  Thanks, Matevž
7631
7632 2005-09-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7633
7634         * mf/feta-banier.mf: make vertical stem 1/2 stemthickness wide to
7635         reduce aliasing effects.
7636
7637         * lily/tie-column.cc (set_chord_outlines): bugfix: insert complete
7638         box in skyline.
7639
7640 2005-09-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7641
7642         * lily/tie.cc (get_configuration): don't crash if left_dot is NULL.
7643
7644         * flower/include/real.hh: std::fabs too.
7645
7646 2005-09-08  Jan Nieuwenhuizen  <janneke@gnu.org>
7647
7648         * Documentation/user/lilypond.tely: Spell Baßtuba in UTF-8 (Werner). 
7649
7650         * lily, flower: Include C++ iso C headers.  Import namespace std
7651         throughout.
7652
7653         * lily/side-position-interface.cc: 
7654         * lily/scm-hash.cc: 
7655         * lily/note-head.cc: 
7656         * lily/include/includable-lexer.hh: 
7657         * flower/include/string-data.icc: Remove using std::*.
7658
7659         * lily, flower: Include C++ iso C headers.  Import namespace std
7660         throughout.
7661
7662         * lily/side-position-interface.cc: 
7663         * lily/scm-hash.cc: 
7664         * lily/note-head.cc: 
7665         * lily/include/includable-lexer.hh: 
7666         * flower/include/string-data.icc: Remove using std::*.
7667
7668         * Documentation/user/instrument-notation.itely (Entering lyrics):
7669         Multiple latin-1->utf-8 conversion fix.
7670
7671         * Documentation/user/*tely: Update Emacs cookie to utf-8.
7672
7673 2005-09-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7674
7675         * lily/tie.cc (get_configuration): also avoid dots for non-space
7676         situations.
7677
7678 2005-09-07  Jan Nieuwenhuizen  <janneke@gnu.org>
7679
7680         * Documentation/user/instrument-notation.itely: Bugfix.
7681
7682 2005-09-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7683
7684         * tex/GNUmakefile: don't install texinfo.tex
7685
7686         * tex/ : cleanup: remove unused files.
7687
7688         * lily/general-scheme.cc: remove my_{isinf,isnan}.
7689
7690         * flower/include/real.hh: using std::{isnan,isinf}
7691         
7692         * VERSION (PATCH_LEVEL): release 2.7.9
7693
7694 2005-09-05  Graham Percival  <gpermus@gmail.com>
7695
7696         * Documentation/user/ instrument-notation.itely,
7697         advanced-notation.itely: minor tweaks.
7698
7699         * input/test/script-chart.ly: add item padding.
7700
7701 2005-09-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7702
7703         * flower/offset.cc: use math.h iso. <cmath>
7704
7705         * scm/ps-to-png.scm (make-ps-images): use png16m again, for sake
7706         of IE users.
7707
7708         * scm/framework-eps.scm (dump-stencils-as-EPSes): cleanup.
7709         (widen-left-stencil-edges): new function. Fix alignment problems
7710         with LaTeX includegraphics.
7711
7712         * lily/text-interface.cc (interpret_markup): use abort().
7713
7714 2005-09-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7715
7716         * input/regression/tie-chord.ly (testLong): add a chord in 4ths
7717
7718         * lily/tie.cc (get_configuration): update bezier shape as we
7719         change Y positions.
7720         (get_configuration): don't move large ties if we're outside of the
7721         staff.
7722
7723 2005-09-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7724
7725         * scm/define-markup-commands.scm (strut): swap X and Y dims.
7726         
7727 2005-09-03  Jan Nieuwenhuizen  <janneke@gnu.org>
7728
7729         * .cvsignore: Add auto-generated configure files and then some.
7730
7731 2005-09-02  Jan Nieuwenhuizen  <janneke@gnu.org>
7732
7733         * scm/define-grobs.scm (DynamicLineSpanner): Add
7734         X-extent-callback.  Fixes hairpin-slur collision.
7735
7736 2005-08-31  Graham Percival  <gpermus@gmail.com>
7737
7738         * Documentation/user/advanced-notation.itely,
7739         basic-notation.itely: minor changes.
7740
7741 2005-08-31  Mats Bengtsson  <mabe@s3.kth.se>
7742
7743         * scm/framework-eps.scm (dump-stencils-as-EPSes): Insert a
7744         \linebreak between each .eps file if \betweenLilyPondSystem is
7745         undefined. 
7746
7747         * Documentation/user/lilypond-book.itely (Integrating LaTeX and
7748         music): Document the \linebreak
7749
7750         * Documentation/user/lilypond-book.itely,
7751         input/tutorial/lbook-latex-test.tex,
7752         Documentation/user/examples.itely: Remove \usepackage{graphics}
7753
7754 2005-08-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7755
7756         * mf/aybabtu.pe.in (i): don't merge alphabet into aybabtu.
7757
7758         * lily/ly-module.cc (make_stand_in_procs_weak): 1.6.4 and earlier
7759         compat bugfix.
7760
7761         * scripts/lilypond-book.py (PREAMBLE_LY): define
7762         inside-lilypond-book
7763         (modify_preamble): new function. Insert \RequirePackage{graphics}
7764         when no {graphics found in preamble.  
7765
7766 2005-08030  Graham Percival  <gpermus@gmail.com>
7767
7768         * Documentation/user/basic-notation.itely, global.itely,
7769         tutorial.itely: misc small changes.
7770
7771 2005-08-30  Jan Nieuwenhuizen  <janneke@gnu.org>
7772
7773         * stepmake/aclocal.m4: Include MY_PATCH_LEVEL in config.make's
7774         VERSION.
7775
7776 2005-08-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7777
7778         * lily/tie-column.cc (new_directions): put Tie down on center
7779         staff line. 
7780
7781         * lily/script-interface.cc (before_line_breaking): use
7782         Grob::programming_error
7783
7784         * scm/ps-to-png.scm (make-ps-images): use pngalpha device.
7785
7786         * scripts/lilypond-book.py (get_latex_textwidth): oops. Take [0]
7787         of splitext.
7788
7789 2005-08-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7790
7791         * VERSION (PACKAGE_NAME): VERSION release 2.7.8
7792
7793 2005-08-29  Werner Lemberg  <wl@gnu.org>
7794
7795         * mf/GNUmakefile: Add `-f' flag to `rm' command while removing
7796         the `*.scale.pfa' files to avoid warnings.
7797
7798 2005-08-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7799
7800         * lily/tempo-performer.cc (process_music): idem.
7801
7802         * lily/midi-def.cc (get_tempo): Rational to int conversion bug.
7803
7804 2005-08-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7805
7806         * Documentation/user/advanced-notation.itely (Text markup): not a
7807         fragment.
7808
7809         * lily/midi-item.cc (to_string): use to_int() iso. int cast.
7810
7811         * lily/staff-performer.cc (initialize): add tempo/name to
7812         audio_staff_
7813
7814
7815 2005-08-26  Graham Percival  <gpermus@gmail.com>
7816
7817         * Documentation/user/advanced.itely: add text-only example.
7818
7819         * Documentation/user/invoking.itely: add index entries for
7820         convert-ly.
7821
7822         * Documentation/user/ tutorial.itely, basic-notation.itely:
7823         small fixes suggested by Steve D.  Thanks!
7824
7825 2005-08-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7826
7827         * input/regression/markup-bidi-pango.ly: new file.
7828
7829         * lily/pango-font.cc (pango_item_string_stencil): make Mingw code
7830         standard. Remove #ifdef. Remove memleak.
7831         (text_stencil): use text_dir to decide how to composite items.
7832         (text_stencil): determine uniform text direction for the entire
7833         string.
7834
7835         * scripts/lilypond-book.py (output_name): remove
7836         latex_filter_cmd. Non-portable to non-Unix systems. 
7837         (get_latex_textwidth): use File.write and os.unlink() instead.
7838
7839         * THANKS: add Vicente & Trevor.
7840
7841         * lily/grob.cc (discretionary_processing): look up origin for
7842         programming_error too. 
7843
7844         * input/regression/tie-broken.ly: new file.
7845
7846         * lily/tie-column.cc (set_chord_outlines): set outline for line
7847         break case too.
7848         
7849 2005-08-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7850
7851         * lily/pango-font.cc (text_stencil): don't translate glyphs in
7852         unscaled transform, just translate stencils.
7853
7854         * ly/performer-init.ly: init timing to #t.  Fixes bar checks in
7855         MIDI.
7856
7857         * scm/define-markup-commands.scm (wordwrap-string): use
7858         text-direction
7859         (wordwrap-stencils): idem.
7860         (line): idem.
7861         (fill-line): idem.
7862         (wordwrap-stencils): translate last line to right for
7863         text-direction = LEFT.
7864
7865         * scm/define-grob-properties.scm (all-user-grob-properties): add
7866         text-direction.
7867
7868 2005-08-25  Nicolas Sceaux  <nicolas.sceaux@free.fr>
7869
7870         * lily/lily-parser.cc (Lily_parser): also copy output_basename_
7871         when copying a Lily_parser object.
7872
7873 2005-08-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7874
7875         * scm/define-markup-commands.scm (null): add null markup.
7876
7877 2005-08-25  Mats Bengtsson  <mabe@s3.kth.se>
7878
7879         * lily/item.cc: Add documentation of center-invisible
7880
7881 2005-08-24  Graham Percival  <gpermus@gmail.com>
7882
7883         * Documentation/user/advanced-notation.itely: add info about
7884         raising text.
7885
7886         * Documentation/user/programming-interface.itely: fix example
7887         involving raised text.
7888
7889 2005-08-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7890
7891         * lily/beam.cc (print): fix X start/end points of isolated
7892         beamlets.
7893
7894         * scm/output-ps.scm (grob-cause): escape spaces in URLs.
7895
7896         * lily/multi-measure-rest.cc (set_text_rods): new function.
7897
7898         * lily/vertical-align-engraver.cc (process_music): call
7899         Align_interface::set_axis(). This forces #'elements to be ordered,
7900         preventing random vertical reordering of staves.
7901
7902         * scm/define-grob-interfaces.scm (dynamic-line-spanner-interface):
7903         add avoid-slur property. 
7904
7905         * Documentation/user/basic-notation.itely (Measure repeats): add
7906         countPercentRepeats example.
7907
7908         * Documentation/user/advanced-notation.itely (Other text markup
7909         issues): remove remark about normal-font.  We have \normal-text
7910
7911         * input/regression/tie-chord.ly: add note about remaining bugs.
7912
7913         * lily/tie.cc (print): try Tie_column::set_directions () if
7914         control-points not yet defined.
7915
7916 2005-08-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7917
7918         * lily/system-start-delimiter.cc (staff_brace): don't remove brace
7919         extent. This fixes braces falling out of the EPS bbox.
7920
7921         * mf/feta-beugel.mf (braces_per_font): make brace glyph align
7922         exactly to bbox.
7923
7924 2005-08-23  Graham Percival  <gpermus@gmail.com>
7925
7926         * {various} : change #up->#UP and #down->#DOWN.
7927
7928         * ly/titling-init.ly: Spacing fix when using printallheaders=##t.
7929
7930         * Documentation/user/advanced-notation.itely: clarify
7931         what objects handles text on a multimeasure rest.
7932
7933 2005-08-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7934
7935         * VERSION (PATCH_LEVEL): release 2.7.7
7936
7937 2005-08-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7938
7939         * make/lilypond-vars.make: set -dgs-font-load for "make web" 
7940
7941         * Documentation/topdocs/INSTALL.texi (Top): add GS bugfix requirement.
7942
7943         * input/regression/*.ly: formatting clean-up. Default layout
7944         before music expression.
7945
7946         * input/mutopia/R.Schumann/GNUmakefile (examples): switch off
7947         romanze28-2 example.
7948
7949         * scm/ps-to-png.scm: remove dir-re function.
7950         (make-ps-images): generate page names, instead of globbing them.
7951         This brings down LilyPond memory usage for make web by a factor
7952         10. 
7953
7954         * scripts/lilypond-book.py (Lilypond_snippet.png_is_outdated):
7955         don't use glob. With 3000 files, globbing
7956         Documentation/user/out-www/ can take too much time. 
7957         
7958         * lily/lily-guile.cc (gulp_file_to_string): take size argument.
7959
7960         * lily/general-scheme.cc (LY_DEFINE): take optional size argument.
7961
7962         * input/regression/tie-manual.ly: new file
7963
7964         * input/regression/tie-chord.ly: update.
7965
7966         * flower/include/interval.hh (struct Interval_t): 
7967
7968         * lily/tie.cc (distance): new function 
7969         (height): new function.
7970         (init): new function
7971         (Tie_details): new struct.
7972
7973         * lily/skyline.cc (skyline_height): new function.
7974
7975         * lily/tie-column.cc (set_chord_outlines): new function.
7976         (new_directions): read tie-configuration
7977
7978         * lily/skyline.cc: fix ASCII art.
7979         
7980 2005-08-22  Mats Bengtsson  <mabe@s3.kth.se>
7981
7982         * python/convertrules.py (string_or_scheme): Fix spelling error
7983
7984 2005-08-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7985         
7986         * lily/tie-column.cc (set_directions): set directions only once.
7987         (add_configuration): new function.
7988
7989         * lily/tie.cc (set_control_points): new function
7990
7991         * lily/tie-column.cc (new_directions): new function.
7992
7993         * ly/music-functions-init.ly: set 'pitch property
7994         iso. trill-pitch. This makes \relative work with \pitchedTrill
7995
7996         * lily/tie.cc (get_configuration): new function. Don't generate
7997         control points, rather, generate configuration.
7998         remove head-pair property.
7999
8000         * lily/include/tie.hh (struct Tie_configuration): new struct.
8001
8002 2005-08-22  Heikki Junes  <hjunes@cc.hut.fi>
8003
8004         * Documentation/topdocs/NEWS.tely: clarify.
8005
8006 2005-08-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8007
8008         * lily/tie.cc: remove minimum-length
8009
8010         * scm/define-grob-properties.scm (all-user-grob-properties):
8011         remove staffline-clearance, y-offset 
8012
8013         * input/regression/tie-dots.ly (Module): remove.
8014
8015         * lily/tie.cc (get_control_points): rewrite. Put short ties in
8016         staff-spaces, make long ties cross staff lines. Avoid flags and dots.
8017
8018         * input/regression/tie-single.ly: new file.
8019
8020 2005-08-21  Graham Percival  <gpermus@gmail.com>
8021
8022         * ly/bagpipe.ly: fix compile problem.
8023
8024 2005-08-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8025
8026         * lily/midi-item.cc (name): new method.
8027
8028         * lily/staff-performer.cc (acknowledge_audio_element): use
8029         signature of baseclass.
8030
8031         * lily/engraver-group.cc (do_announces): move recursion call out
8032         of while loop. 
8033
8034         * lily/drum-note-performer.cc (class Drum_note_performer): use
8035         process_music everywhere.
8036
8037         * ly/performer-init.ly: add default children everywhere.
8038
8039         * lily/paper-book.cc (output): call paper-book-write-midis
8040         directly: always write MIDI, even if no \layout {} block. 
8041
8042 2005-08-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8043
8044         * VERSION (PACKAGE_NAME): release 2.7.6
8045
8046         * lily/percent-repeat-engraver.cc (try_music): don't print warning
8047         about not being able to handle repeat.
8048
8049 2005-08-19  Jan Nieuwenhuizen  <janneke@gnu.org>
8050
8051         * Documentation/user/examples.itely (Piano templates):
8052         * lily/include/performer-group.hh: Remove last traces of
8053         Performer_group_performer.  Fixes make web.
8054
8055 2005-08-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8056
8057         * Documentation/user/examples.itely (Piano templates): change
8058         Engraver_group_engraver -> Engraver_group
8059
8060         * lily/ly-module.cc (make_stand_in_procs_weak): only kludge if
8061         scm_stand_in_procs is not weak_any.
8062
8063         * lily/volta-bracket.cc (print): don't use strcmp().
8064
8065         * lily/volta-engraver.cc (process_music): use
8066         Text_interface::is_markup() for setting the 'text property of the
8067         volta bracket.
8068
8069         * input/mutopia/claop.py (accents): update syntax to 2.6
8070
8071         * scm/define-context-properties.scm
8072         (all-user-translation-properties): add countPercentRepeats.
8073
8074         * Documentation/user/basic-notation.itely (Measure repeats): add
8075         isolated percent example.
8076
8077 2005-08-18  Graham Percival  <gpermus@gmail.com>
8078
8079         * input/ {various}: change direction #1, #-1 to
8080         #up/#down or \fooUp, \fooDown.
8081
8082         * Documentation/user/music-glossary.tely: #-1 to #down.
8083
8084         * ly/bagpipe.ly, engraver-init.ly, property-init.ly: #1
8085         to #up, #-1 to #down.
8086
8087 2005-08-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8088
8089         * lily/include/engraver-group.hh: rename.
8090
8091         * lily/include/performer-group.hh: rename.
8092
8093 2005-08-18  Mats Bengtsson  <mabe@s3.kth.se>
8094
8095         * input/test/script-abbreviations.ly: Removed some old LaTeX
8096         left overs.
8097
8098 2005-08-18  Jan Nieuwenhuizen  <janneke@gnu.org>
8099
8100         * python/convertrules.py (conv): inside-slur -> avoid-slur.
8101         Remove functions.  Remove if 1: constructs, reindent.
8102
8103         * scripts/convert-ly.py (add_version): Add functions from
8104         convertrules.py
8105
8106         * scm/script.scm (default-script-alist):
8107         s/priority/script-priority.  Fixes script stacking.  Backportme.
8108         (Fermata): Very low priority.
8109
8110 2005-08-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8111
8112         * input/regression/*.ly: remove superfluous \score blocks. Reindent.
8113
8114         * input/regression/slur-script.ly: remove padding tweaks. Add
8115         comment strings.
8116
8117         * lily/note-spacing.cc (get_spacing): remove kludge for EOL wide
8118         time sigs and related stuff.
8119
8120         * scm/define-grob-properties.scm (all-user-grob-properties): add
8121         @code{} tags to property description.
8122
8123         * lily/include/line-group-group-engraver.hh (Module): remove file.
8124
8125         * python/convertrules.py (conv): add rule for
8126         Engraver_group_engraver -> Engraver_group.
8127
8128         * lily/include/performer-group-performer.hh: analogous.
8129
8130         * lily/include/engraver-group-engraver.hh: rename to Engraver_group.
8131
8132         * lily/context-def.cc (instantiate): check for
8133         Engraver_group_engraver and Performer_group_performer not
8134         Engraver/Performer. Fixes crashes when doing \with { \consists .. }
8135  
8136 2005-08-18  Jan Nieuwenhuizen  <janneke@gnu.org>
8137
8138         * input/les-nereides.ly: Remove three fingering tweaks, update
8139         remaining one.
8140
8141         * input/regression/slur-script-inside.ly: Update, fix doc.
8142
8143         * scm/script.scm: Update to avoid-slur.
8144
8145         * scm/define-grob-properties.scm (avoid-slur): New property.
8146
8147         * lily/phrasing-slur-engraver.cc (acknowledge_extra_object):
8148         * lily/slur-engraver.cc (acknowledge_extra_object): Invoke
8149         outside_slur_callback if avoid-slur != #'inside.
8150
8151         * scm/define-grobs.scm (Fingering, Textscript): No
8152         inside-slur/outside-slur preference.
8153         (DynamicLineSpanner): Always outside slur.
8154
8155         * input/regression/slur-script.ly: More tests.
8156
8157 2005-08-17  Graham Percival  <gpermus@gmail.com>
8158
8159         * Documentation/user/lilypond-book: fix notime entry.
8160
8161         * Documentation/user/advanced-notation.itely: add info on
8162         getting an I rehearsal mark.
8163
8164         * Documentation/user/putting.itely: reinstate "I", re-enforce
8165         the fact that \override numbers are the result of
8166         experimentation and personal taste.
8167
8168         * Documentation/user/invoking.itely: update convert-ly bugs.
8169
8170 2005-08-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8171
8172         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): set timing
8173         to #t.
8174
8175         * lily/timing-translator.cc (initialize): don't initialize timing.
8176
8177         * input/regression/stem-spacing.ly (Module): remove file.
8178
8179         * input/regression/spacing-stick-out.ly: specify Score context for
8180         \override
8181
8182         * input/regression/clefs.ly: remove spurious {}s 
8183
8184 2005-08-17  Heikki Junes  <hjunes@cc.hut.fi>
8185
8186         * Documentation/topdocs/NEWS.tely,
8187         input/regression/repeat-percent-count.ly: clarify a bit.
8188
8189 2005-08-16  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8190
8191         * input/no-notation/display-lily-tests.ly: delete
8192         display-lily-init call.
8193
8194         * ly/music-functions-init.ly (displayLilyMusic): move
8195         display-lily-init call at top level, so that the user should not
8196         have to call it.
8197
8198         * scm/define-music-display-methods.scm (note-name->lily-string):
8199         retrieve note names directly from pitchnames using new function `rassoc'.
8200         (display-lily-init): note names list construction removed.
8201
8202 2005-08-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8203
8204         * THANKS: spello.
8205
8206         * lily/lily-parser.cc (get_header): copy module, instead of
8207         returning it.
8208
8209         * Documentation/topdocs/NEWS.tely (Top): add entry for percent
8210         counters.
8211
8212         * Documentation/user/basic-notation.itely (Measure repeats): add
8213         links to Counter grobs.
8214
8215         * scm/define-grobs.scm (all-grob-descriptions): add
8216         DoublePercentRepeatCounter
8217         (all-grob-descriptions): add PercentRepeatCounter
8218
8219         * lily/percent-repeat-engraver.cc (class Percent_repeat_engraver):
8220         also create counter grobs.
8221
8222         * lily/separation-item.cc (extremal_break_aligned_grob): don't
8223         return grob without space-alist.
8224
8225         * input/proportional.ly: tune staff-padding.
8226
8227         * input/regression/repeat-percent-count.ly: new file. 
8228
8229 2005-08-16  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8230
8231         * input/no-notation/display-lily-tests.ly: moved from
8232         input/regression/ to input/no-notation. Be sure to call
8233         `display-lily-init' before trying to use the display function.
8234
8235 2005-08-16  Mats Bengtsson  <mabe@s3.kth.se>
8236
8237         * scripts/lilypond-book.py (option_definitions): Don't localize
8238         the empty string. Fixes bug when --psfonts was used with
8239         non-English locale.
8240
8241 2005-08-15  Graham Percival  <gpermus@gmail.com>
8242
8243         * lily/tuplet-bracket.cc: simple build fix.
8244
8245         * Documentation/user/putting.itely: use "we" instead of "I".
8246
8247         * Documentation/user/basic-notation.itely: cautionary accidentals
8248         work with naturals, too.
8249
8250 2005-08-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8251
8252         * lily/tuplet-bracket.cc (calc_position_and_height): add
8253         staff-padding support.
8254
8255         * input/proportional.ly: set staff-padding.
8256         
8257         * VERSION (PATCH_LEVEL): release 2.7.5
8258
8259         * input/mutopia/J.S.Bach/wtk1-fugue2.ly (bassdux): text formatting
8260         fixes. Remove tweaks.
8261
8262         * input/regression/tuplet-slope.ly: add a test case.
8263
8264         * lily/tuplet-bracket.cc (calc_position_and_height): revert
8265         erroneous fix. Add spanner bounds to offset array with relative X
8266         positions.
8267
8268         * ly/engraver-init.ly: add Rest_engraver only once.
8269
8270         * scm/define-music-display-methods.scm (KeyChangeEvent): only do
8271         (*parser*) lookup if (*parser*) != #f.
8272
8273 2005-08-15  Jan Nieuwenhuizen  <janneke@gnu.org>
8274
8275         * lily/phrasing-slur-engraver.cc (acknowledge_extra_object):
8276         Cut-and paste update.
8277
8278         * input/regression/slur-script.ly: Add example of reverting
8279         inside-slur for fingering.
8280
8281         * scm/define-grobs.scm (DynamicLineSpanner, Fingering,
8282         TextScript): Explicitly set inside-slur #f, forcing these out of slur.
8283
8284         * lily/slur-engraver.cc (acknowledge_extra_object): Only invoke
8285         outside_slur_callback if inside-slur == #f (as opposed to unset).
8286
8287 2005-08-14  Jan Nieuwenhuizen  <janneke@gnu.org>
8288
8289         * tex/GNUmakefile (INSTALLATION_FILES): Remove enc symlink setup,
8290         encoding files are already removed.
8291
8292 2005-08-15  Mats Bengtsson  <mabe@s3.kth.se>
8293
8294         * Documentation/user/advanced-notation.itely (Instrument names):
8295         Document a workaround for instrument names that collide with
8296         system start braces/brackets.
8297
8298 2005-08-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8299
8300         * lily/rest-collision.cc (do_shift): spello.
8301
8302         * input/proportional.ly: use #'used property. Set break-overshoot
8303         property.
8304
8305         * mf/feta-arrow.mf: center on arrow tip center, iso. tip edge.
8306
8307         * lily/paper-column.cc: add #'used property
8308
8309         * lily/mark-engraver.cc (stop_translation_timestep): set grob
8310         array for staves found.
8311
8312         * lily/metronome-engraver.cc (stop_translation_timestep): set grob
8313         array for stavesFound.
8314
8315         * lily/staff-spacing.cc (next_note_correction): add fixed and
8316         space to calling convention. This fixes spacing of accidentals
8317         after barlines.
8318
8319         * input/regression/spacing-accidental-stretch.ly: add barline -
8320         accidental case.
8321
8322         * scm/framework-ps.scm (page-header): add version number to
8323         creator
8324         (eps-header): idem.
8325
8326         * mf/feta-bolletjes.mf: swap d0 and u0 fa heads.
8327         
8328 2005-08-13  Graham Percival  <gpermus@gmail.com>
8329
8330         * Documentation/user/global.itely: add "fit as much as
8331         possible onto this page" example (Vertical spacing).
8332
8333 2005-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
8334
8335         * *: Nitpick run.
8336
8337         * buildscripts/fixcc.py: Fixes.
8338
8339 2005-08-12  Graham Percival  <gpermus@gmail.com>
8340
8341         * Documentation/user/advanced-notation.itely: add markup
8342         example to Text spanners.
8343
8344 2005-08-12  Mats Bengtsson  <mabe@s3.kth.se>
8345
8346         * Documentation/user/basic-notation.itely (Ties): Add example of
8347         tying a tremolo to a chord. Thanks to Steve Doonan. 
8348
8349         * lily/tie-engraver.cc: Add tieWaitForNote to the list of read
8350         properties and move tieMelismaBusy to the list of written
8351         properties. 
8352
8353 2005-08-12  Heikki Junes  <hjunes@cc.hut.fi>
8354
8355         * po/TODO: suggest to use a dedicated tool like kbabel.
8356
8357         * po/fi.po: update using kbabel.
8358
8359 2005-08-12  Jan Nieuwenhuizen  <janneke@gnu.org>
8360
8361         * *: Remove obsolete files.  Nitpick run.
8362
8363         * lily/lily-guile.cc (parse_symbol_list): Bugfix.
8364
8365 2005-08-11  Jan Nieuwenhuizen  <janneke@gnu.org>
8366
8367         * mf/GNUmakefile (get-*-fonts): Rename from get-*-pfa.  Copy SVG
8368         too.
8369
8370         * Documentation/topdocs/NEWS.tely (Top): Add slur script feature.
8371
8372         * lily/lily-guile.cc (parse_symbol_list): Rewrite.  Grok multiple
8373         whitespace as symbol separator.
8374
8375         * lily/side-position-interface.cc: Add slur-padding.
8376
8377         * input/regression/slur-script.ly: Fixed.  Backportme?  This is
8378         quite a large fix, and it never worked in a stable release; so not
8379         really a regression.
8380
8381         * lily/phrasing-slur-engraver.cc (class Phrasing_slur_engraver):
8382         Update cut and paste code from Slur_engraver.
8383
8384         * scm/define-grob-interfaces.scm (dynamic-line-spanner-interface):
8385         Add.
8386
8387         * scm/define-grobs.scm (DynamicLineSpanner): Add
8388         dynamic-line-spanner-interface.
8389         (DynamicLineSpanner, TextScript, Fingering): Add slur-padding.
8390
8391 2005-08-09  Jan Nieuwenhuizen  <janneke@gnu.org>
8392
8393         * lily/slur-engraver.cc (acknowledge_extra_object): Bugfix: use
8394         to_boolean () so that non-set 'inside-slur means false.
8395
8396         * lily/slur.cc (outside_slur_callback): Bugfixes: make sure that
8397         slur has control-points.  Skip script without direction.  Always
8398         do_shift if script inside slur, even if slur not contained in
8399         script y-extent.  Increment k in loop.
8400
8401 2005-08-11  Mats Bengtsson  <mabe@s3.kth.se>
8402
8403         * scm/define-markup-commands.scm: Improved regexp to search for
8404         EPS bounding boxes and corrected call to ly:warning.
8405
8406 2005-08-10  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8407
8408         * Documentation/user/programming-interface.itely (Displaying music
8409         expressions): doc for \displayLilyMusic. Also some precisions in
8410         "Markup construction in Scheme"
8411
8412 2005-08-10  Mats Bengtsson  <mabe@s3.kth.se>
8413
8414         * scm/define-markup-commands.scm (normal-text): Added 2 new
8415         markup commands, \normal-text and \medium (the latter thanks to
8416         Bruce Fairchild). 
8417
8418 2005-08-08  Graham Percival  <gpermus@gmail.com>
8419
8420         * Documentation/user/programming-interface.itely: fix @{ @}.
8421
8422         * scm/define-markup-commands.scm: add linewidth info to
8423         \justify and \wordwrap, add "upright is the opposite of italic".
8424
8425         * Documentation/user/advanced-notation.itely: shaped->shape,
8426         add (cons (markup "foo")) type of example to text markup,
8427         reword multi-measure rests section.
8428
8429         * lily/note-heads-engraver.cc: changed Shaped->Shape in a
8430         comment.  No actual code was touched.
8431
8432         * Documentation/user/invoking.itely: add more info about
8433         \include.  Thanks, Bruce!
8434
8435         * THANKS: add Bruce Fairchild, alphabetise.
8436
8437         * Documentation/user/global.itely: document \score{\header{}}
8438         behavior.
8439
8440         * Documentation/user/basic-notation.itely: reword multi-measure
8441         rest discussion in Rests.
8442
8443 2005-08-08  Mats Bengtsson  <mabe@s3.kth.se>
8444
8445         * Documentation/user/programming-interface.itely (Markup
8446         construction in Scheme): Corrected example and tried to clarify
8447         the implicit \line in the table.
8448
8449 2005-08-07  Graham Percival  <gpermus@gmail.com>
8450
8451         * Documentation/user/instrument-notation.itely: moved
8452         some bagpipe info back into the bagpipe section.  Somehow
8453         it ended up in the "other vocal issues" section?!  :o_O
8454
8455 2005-08-07  Jan Nieuwenhuizen  <janneke@gnu.org>
8456
8457         * scm/framework-ps.scm (dir-join): Rename from path-join (joins
8458         directories, not paths).
8459
8460 2005-08-06  Jan Nieuwenhuizen  <janneke@gnu.org>
8461
8462         * scm/framework-ps.scm (munge-lily-font-name): Bugfix: Munge only
8463         plain emmentaler/aybabtu.  Backportme.
8464
8465         * lily/tuplet-bracket.cc (calc_position_and_height): Bugfix:
8466         missing dir correction.
8467
8468 2005-08-05  Graham Percival  <gperlist@shaw.ca>
8469
8470         * scm/define-markup-commands: fix reversed justify/wordwrap
8471         doc strings.
8472
8473 2005-08-05  Jürgen Reuter  <reuter@ipd.uka.de>
8474
8475         * lily/ligature-engaver.cc, lily/coherent-ligature-engaver.cc,
8476         lily/gregorian-ligature-engaver.cc,
8477         lily/include/ligature-engraver.hh,
8478         lily/include/coherent-ligature-engraver.hh,
8479         lily/include/gregorian-ligature-engraver.hh: make these classes
8480         truely abstract.  This should fix some internal oddities such as
8481         duplicate as well as dead translator/property declarations, and
8482         also some dead code.
8483
8484         * lily/ligature-bracket-engraver.cc, lily/ligature-engraver.cc:
8485         bugfix: avoid message "junking empty ligature" on ligature
8486         brackets by collecting dummy grobs.
8487
8488 2005-08-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8489
8490         * lily/tuplet-bracket.cc (print): default right overshoot to 0.0
8491
8492         * input/proportional.ly (staffKind): bugfix.
8493         (staffKind): updates by Trevor Baca.
8494
8495         * scm/define-grobs.scm (all-grob-descriptions): remove arrows as
8496         default layout. 
8497
8498         * lily/tuplet-bracket.cc (print): check whether edge-text is a
8499         pair.
8500
8501         * lily/beam.cc (rest_collision_callback): call position_beam() if
8502         necessary.
8503
8504         * VERSION: release 2.7.4
8505
8506         * input/regression/spacing-uniform-stretching.ly: new file.
8507
8508         * lily/spacing-loose-columns.cc (set_loose_columns): use robust_relative_extent().
8509
8510         * Documentation/topdocs/NEWS.tely (Top): add Nicolas as
8511         contributor.
8512
8513         * lily/include/ly-module.hh: define MODULE_GC_KLUDGE globally.
8514
8515         * input/proportional.ly: new file.
8516
8517         * lily/tuplet-bracket.cc (after_line_breaking): don't suicide if
8518         columns is empty
8519
8520         * lily/tuplet-engraver.cc (finalize): new function. Reset right
8521         bounds to currentCommandColumn for the last step.
8522         (start_translation_timestep): if tupletFullLength is set, set
8523         bound to Paper Column
8524
8525         * input/regression/tuplet-full-length.ly (indent): new file.
8526
8527         * lily/spacing-loose-columns.cc (set_loose_columns): space a whole
8528         clique of loose columns, eg. a set of grace notes in strict
8529         notespacing.
8530
8531         * input/regression/spacing-strict-spacing-grace.ly: new file.
8532
8533         * lily/key-signature-interface.cc: change property name to
8534         alteration-alist
8535
8536         * lily/key-engraver.cc (read_event): read keyAlterationOrder, not
8537         keyAccidentalOrder
8538
8539         * python/convertrules.py (conv): keyAccidentalOrder ->
8540         keyAlterationOrder
8541
8542         * lily/key-engraver.cc (create_key): always print a cancellation
8543         for going to C-major/A-minor, regardless of printKeyCancellation.
8544         (create_key): remove typecheck for visibility. This fixes key
8545         signature not being printed.
8546
8547         * lily/spacing-determine-loose-columns.cc: new file.
8548
8549         * input/regression/spacing-strict-notespacing.ly: new file.
8550
8551         * lily/spacing-spanner.cc (generate_springs): rename from
8552         do_measure. 
8553         (generate_pair_spacing): new function.
8554         (init, generate_pair_spacing): set between-cols for floating
8555         nonmusical columns.
8556
8557         * lily/spaceable-grob.cc (get_spring): new function. 
8558
8559         * lily/tuplet-bracket.cc (print): on the left, the overshoot is
8560         relative to the right edge of the prefatory matter.
8561
8562         * lily/beam.cc (print): read break-overshoot to determine where to
8563         stop/start broken beams.
8564
8565         * input/regression/spanner-break-overshoot.ly: new file.
8566
8567 2005-08-04  Graham Percival  <gperlist@shaw.ca>
8568
8569         * ly/bagpipe.ly: updated.
8570
8571         * Documentat/user/instrument.itely: un-comment out bagpipe example.
8572
8573 2005-08-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8574
8575         * lily/dynamic-engraver.cc (acknowledge_slur): add slur to
8576         support: now (de)crescs avoid slurs as well.
8577
8578         * Documentation/user/instrument-notation.itely (Bagpipe example):
8579         comment out non-functioning bagpipe example.
8580         (Bagpipe definitions): idem.
8581
8582         * Documentation/topdocs/NEWS.tely (Top): add uniform-stretching example.
8583         (Top): add proportionalNotationDuration example.
8584
8585         * input/regression/spacing-proportional.ly: new file.
8586
8587         * lily/tuplet-bracket.cc (parallel_beam): broken bracket never is
8588         synched to a beam.
8589
8590         * lily/beam.cc (shift_region_to_valid): divide by zero fix. This
8591         fixes beams with a single stem (eg. beams across linebreaks.)
8592
8593         * lily/parser.yy (simple_string): allow \new STRING_IDENTIFIER.
8594
8595         * flower/rational.cc (operator +): prevent overflow. This fixes
8596         heavily nested tuplets.
8597
8598         * lily/auto-beam-engraver.cc (derived_mark): new method. Yes. We
8599         have to protect even those unlikely to be corrupted data members.  
8600
8601 2005-08-04  Graham Percival  <gperlist@shaw.ca>
8602
8603         * ly/bagpipe.ly: new file.
8604
8605         * THANKS: added Sven Axelsson.
8606
8607 2005-08-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8608
8609         * lily/spacing-engraver.cc (stop_translation_timestep): directly
8610         copy proportionalNotationDuration into currentMusicalColumn if
8611         set.
8612
8613         * lily/spacing-spanner.cc (musical_column_spacing): if
8614         uniform-stretching set, fixed space is 0.0
8615
8616         * input/regression/spacing-multi-tuplet.ly: show
8617         uniform-stretching property.
8618
8619         * lily/spacing-spanner.cc (effective_shortest_duration): new function.
8620
8621         * lily/include/spacing-spanner.hh (class Spacing_spanner): new file.
8622         (struct Spacing_options): new struct.
8623
8624         * lily/spacing-basic.cc: new file.
8625
8626         * lily/spacing-spanner.cc (note_spacing): remove outdated code:
8627         delta_t doesn't have to be smaller than shortest_playing_len
8628
8629 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8630
8631         * input/regression/markup-arrows.ly:  new file.
8632
8633         * lily/tuplet-bracket.cc: document new behavior.
8634
8635         * input/regression/tuplet-broken.ly: new file. Demonstrate tuplets
8636         with line breaks.
8637
8638         * scm/define-markup-commands.scm (arrow-head): arrow-head markup command.
8639
8640         * scm/define-grobs.scm (all-grob-descriptions): set arrows as
8641         default 
8642
8643         * lily/tuplet-bracket.cc: add edge-text property.
8644         add break-overshoot.
8645         (print): read break-overshoot.
8646         (print): read edge-text, add stencils.
8647
8648         * mf/feta-arrow.mf: new file.
8649
8650         * mf/feta-generic.mf: add feta-arrow.
8651
8652 2005-08-03  Mats Bengtsson  <mabe@s3.kth.se>
8653
8654         * Documentation/user/lilypond-book.itely (An example of a
8655         musicological document): Added flag -o to dvips for people who use
8656         the default setting in teTeX where output is sent to the printer. 
8657
8658         * Documentation/user/global.itely (Vertical spacing): Added
8659         reference to the Axis_group_engraver which documents the *Extent
8660         properties.
8661
8662 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8663
8664         * Documentation/user/basic-notation.itely (Tuplets): add note
8665         about nested tuplets. Remove BUG. 
8666
8667         * input/regression/tuplet-nest.ly: update: remove manual hack. 
8668
8669         * lily/tuplet-bracket.cc (print): use robust_scm2drul
8670         (print): manually call print() for subtuplets.
8671         (calc_position_and_height): add subtuplets to the
8672         support. Vertically shift outer tuplet 
8673
8674         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): set
8675         remove-first for Lyrics, ChordNames and FiguredBass
8676
8677         * scm/define-grob-properties.scm (all-internal-grob-properties):
8678         use ly:grob-array? iso. grob-list?
8679         (all-internal-grob-properties): add tuplets grob-array.
8680
8681         * lily/tuplet-bracket.cc (add_tuplet_bracket):
8682         new function
8683
8684 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8685
8686         * input/test/time-signature-staff.ly: new file.
8687
8688         * ly/declarations-init.ly (center): escape to Scheme. Fixes
8689         spurious #<Music FingerEvent> errors. Backportme.
8690
8691 2005-08-03  Mats Bengtsson  <mabe@s3.kth.se>
8692
8693         * Documentation/user/programming-interface.itely (Markup
8694         construction in Scheme): Corrected markup syntax in the
8695         translation table.
8696
8697 2005-08-03  Graham Percival  <gperlist@shaw.ca>
8698
8699         * Documentation/user/instrument-notation.itely: small update
8700         to bagpipe notation docs; thanks Sven!
8701
8702         * Documentation/user/basic-notation.itely: add link about trills.
8703
8704 2005-08-02  Graham Percival  <gperlist@shaw.ca>
8705
8706         * Documentation/user/music-glossary: remove accidentally committed
8707         fink patch.
8708
8709 2005-08-02  Yoshinobu Ishizaki  <isizaki@mte.biglobe.ne.jp>
8710
8711         * lily/lily-parser.cc (get_header): new function. Enable multiple
8712         \header definitions.
8713
8714         * lily/parser.yy (lilypond_header_body): use get_header.
8715
8716         * ly/init.ly:
8717         * scm/lily-library.scm (print-score-with-defaults): renamed
8718         $globalheader to $defaultheader
8719             
8720         * Documentation/user/global.itely (Creating titles): added short
8721         explanation that multiple headers are useable.
8722
8723
8724 2005-08-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8725
8726         * lily/module-scheme.cc (LY_DEFINE): new file. 
8727
8728         * Documentation/user/advanced-notation.itely (Font selection): add
8729         doco for make-pango-font-tree.
8730
8731 2005-07-31  Graham Percival  <gperlist@shaw.ca>
8732
8733         * Documentation/user/music-glossary: more languages
8734         for tenuto.
8735
8736         * Docuemntation/user/instrument-notation.itely: minor
8737         update for bagpipe example.
8738
8739 2005-07-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8740
8741         * input/regression/+.ly (TODO): add some text.
8742
8743 2005-07-28  Graham Percival  <gperlist@shaw.ca>
8744
8745         * Documentation/user/invoking.itely: \score begins with music.
8746
8747         * Documentation/user/ basic-notation.itely,
8748         instrument-notation.itely: minor changes.
8749
8750         * Documentation/user/music-glossary.itely: began tenuto entry.
8751
8752 2005-07-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8753
8754         * scm/output-socket.scm (bezier-sandwich): add bezier-sandwich
8755
8756         * mf/feta-bolletjes.mf: swap up and down for aiken heads.
8757
8758 2005-07-27  Graham Percival  <gperlist@shaw.ca>
8759
8760         * Documentation/user/examples.itely: remove bagpipe template.
8761
8762         * Documentation/user/instrument-notation.itely: add bagpipe
8763         section, maybe fix quotes in lyrics.  I hate text encoding.
8764         Clarify chord durations, more bagpipe stuff.
8765
8766 2005-07-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8767  
8768         * lily/accidental-engraver.cc: formatting fixes.
8769
8770         * lily/spacing-spanner.cc (prune_loose_columns): right-items is a
8771         grob-array.
8772
8773         * lily/arpeggio.cc (print): suicide arpeggio for single notehead.
8774
8775         * lily/note-column.cc (arpeggio): new function.
8776
8777         * lily/note-spacing.cc (get_spacing): also take arpeggio into
8778         account for spacing.
8779
8780 2005-07-25  Jan Nieuwenhuizen  <janneke@gnu.org>
8781
8782         * lily/main.cc (sane_setenv)[!ARGV0_RELOCATION]: Also define.
8783         (setup_guile_env): Use it instead of nonstandard setenv.  Fixes
8784         mingw build.
8785         
8786 2005-07-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8787
8788         * scm/lily.scm (lilypond-all): clear anonymous modules after
8789         processing files.
8790
8791 2005-07-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8792
8793         * flower/include/guile-compatibility.hh (SCM_I_CONSP): add
8794         SCM_I_CONSP
8795
8796         * VERSION: 2.7.3 released
8797
8798         * Documentation/user/invoking.itely (Invoking lilypond): add
8799         LILYPOND_GC_YIELD documentation.
8800
8801         * lily/*: cleanups: use scm_from_int iso. scm_int2num. Idem for
8802         scm_from_real / scm_make_real.
8803
8804         * lily/main.cc (setup_guile_env): new function. Set GC min_yields
8805         higher. This increases memory footprint, but provides overall
8806         speedup of 15 to 20%. 
8807
8808         * lily/include/translator.hh (class Translator): remove
8809         PRECOMPUTED_VIRTUAL everywhere.
8810
8811         * lily/include/lily-guile.hh: inline scm_c[ad]r, scm_is_pair.
8812
8813         * lily/context.cc (now_mom): non-recursive now_mom() 
8814
8815         * lily/include/profile.hh: new file.
8816
8817         * lily/profile.cc: new file.
8818
8819         * lily/grob.cc (Grob::Grob): look properties up directly.
8820
8821         * lily/open-type-font.cc (get_indexed_char): cache index -> bbox
8822         lookups.
8823
8824         * lily/include/box.hh (class Box): smob Box type.
8825
8826         * lily/smobs.cc (protect_smob): O(1) GC (un)protection.
8827
8828         * lily/include/smobs.hh (DECLARE_BASE_SMOBS): add methods
8829         protect() and unprotect(). Use throughout.
8830
8831 2005-07-24  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8832
8833         * Documentation/topdocs/NEWS.tely: new item for \displayLilyMusic
8834
8835         * scm/define-music-display-methods.scm (markup->lily-string):
8836         markup elements can also be strings (without simple-markup
8837         appended)
8838
8839 2005-07-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8840
8841         * lily/context.cc (where_defined): also assign value in
8842         where_defined().
8843
8844         * lily/bezier.cc (get_other_coordinate): use curve_coordinate
8845         (curve_coordinate): new function
8846
8847         * lily/simple-spacer.cc (add_columns): only add rods between
8848         column i and begin/end if keep-inside-line is set (this repleces
8849         allow-outside-line as default)
8850
8851 2005-07-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8852
8853         * lily/tuplet-engraver.cc (start_translation_timestep): only read
8854         tupletSpannerDuration if applicable.
8855
8856         * lily/font-size-engraver.cc (process_music): read fontSize only
8857         once per timestep.
8858
8859         * lily/engraver*cc: use throughout.
8860         
8861         * lily/include/translator.icc (ADD_ACKNOWLEDGER): new macro.
8862
8863         * lily/translator.cc (add_acknowledger): new file. Directly jump
8864         into an Engraver::acknowledge_xxx () method based on a grobs
8865         interface-list.
8866
8867         * lily/include/translator-dispatch-list.hh (class
8868         Engraver_dispatch_list): new struct, new file.
8869
8870         * scm/define-context-properties.scm
8871         (all-internal-translation-properties): remove acceptHashTable,
8872         acknowledgeHashTable
8873
8874         * lily/translator-group.cc (mark_smob): idem for acceptHashTable.
8875
8876         * lily/engraver-group-engraver.cc (Engraver_group_engraver):
8877         change acknowledgeHashTable to C++ member. 
8878
8879         * lily/rest-collision.cc (do_shift): use extract_grob_set().
8880
8881 2005-07-22  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8882
8883         * scm/display-lily.scm: new file. Define a `display-lily-music'
8884         function, that displays the music expression given as an argument,
8885         using LilyPond notation.
8886
8887         * scm/define-music-display-methods.scm: new file. Implementation
8888         of display methods for each music type.
8889
8890         * ly/music-functions-init.ly (displayLilyMusic): new function for
8891         displaying music with LilyPond notation.
8892
8893         * input/regression/display-lily-tests.ly: new regression test file
8894         for `display-lily-music'.
8895
8896         * scm/markup.scm: remove obsolete debugging code (for printing
8897         markups with LilyPond notation).
8898
8899         * scm/define-music-types.scm (music-name-to-property-table):
8900         * scm/clef.scm (supported-clefs): export, in order to be accessible
8901         from the (scm display-lily) module.
8902
8903 2005-07-22  Jan Nieuwenhuizen  <janneke@gnu.org>
8904
8905         * Documentation/topdocs/NEWS.tely (Top): Typo.
8906
8907 2005-07-22  Heikki Junes  <hjunes@cc.hut.fi>
8908
8909         * Documentation/index.html.in, Documentation/texinfo.css,
8910           stepmake/bin/text2html.py, buildscripts/mutopia-index.py,
8911           Documentation/bibliography/index.html.in,
8912           Documentation/bibliography/html-long.bst: revert css-width patch,
8913           it does not work with IE6.
8914
8915 2005-07-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8916
8917         * Documentation/texinfo.css: revert 760px hack. 
8918
8919         * VERSION: release 2.7.2
8920
8921         * Documentation/topdocs/NEWS.tely (Top): mention barNumberCheck
8922
8923         * Documentation/user/basic-notation.itely (Barnumber check): add
8924         section.
8925
8926         * scm/music-functions.scm (skip-to-last): new function. Show only
8927         last showLastLength part of the \score.
8928
8929         * lily/moment-scheme.cc (LY_DEFINE): new function ly:moment-sub
8930
8931         * python/convertrules.py (conv): add ly:x-moment rule
8932
8933         * lily/moment-scheme.cc (LY_DEFINE): rename ly:X-moment  -> ly:moment-X
8934
8935         * Documentation/topdocs/NEWS.tely (Top): add new feature.
8936
8937         * Documentation/user/instrument-notation.itely (Flexibility in
8938         alignment): options in subsections.
8939
8940         * lily/lyric-engraver.cc (process_music): don't typeset text for _
8941         syllable text. Instead, assume that the previous lyric text is a
8942         melismated text.
8943
8944         * Documentation/index.html.in: revert 800x600 change.
8945
8946 2005-07-19  Jan Nieuwenhuizen  <janneke@gnu.org>
8947
8948         * lily/main.cc (main): Remove invalid handle kludge.
8949
8950         * scm/lily.scm (running-from-gui?): WINDOWS: check -dgui.
8951         (lambda): add gui define.
8952
8953 2005-07-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8954
8955         * Documentation/topdocs/NEWS.tely (Top): add note about Musica ficta.
8956
8957         * Documentation/user/instrument-notation.itely (Musica ficta
8958         accidentals): add section Musica ficta accidentals
8959
8960         * lily/accidental-engraver.cc (make_suggested_accidental): new
8961         function.
8962         (make_standard_accidental): move into new function.
8963         (create_accidental): new function.
8964
8965         * scm/define-grobs.scm (all-grob-descriptions): new Grob
8966         AccidentalSuggestion
8967
8968         * lily/output-def-scheme.cc (LY_DEFINE): take default  argument.
8969
8970         * lily/output-def.cc (lookup_variable): return SCM_UNDEFINED if
8971         undefined.
8972
8973         * Documentation/user/global.itely (Page formatting): document
8974         horizontalshift.
8975
8976         * scm/page-layout.scm (default-page-music-height):
8977         horizontalshift: new variable, shift all systems by
8978         horizontalshift to the right, to make space for instrument names.
8979
8980         * scm/paper.scm (set-paper-dimension-variables): add horizontalshift
8981
8982         * lily/input-scheme.cc (LY_DEFINE): take format commands.
8983
8984 2005-07-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8985
8986         * lily/note-column.cc (dir): idem.
8987
8988         * lily/spacing-spanner.cc (Module): idem.
8989
8990         * lily/script-column.cc (before_line_breaking): use extract_grob_set()
8991
8992         * lily/include/paper-column.hh (class Paper_column): add
8993         non-static get_rank() member.
8994
8995         * VERSION: release 2.7.1
8996         
8997         * scm/framework-null.scm: new file, used for benchmarking.
8998
8999 2005-07-20  Heikki Junes  <hjunes@cc.hut.fi>
9000
9001         * Documentation/topdocs/INSTALL.texi, configure.in: fix
9002         version dependencies for fontforge and gs.
9003
9004         * Documentation/index.html.in, Documentation/texinfo.css,
9005         stepmake/bin/text2html.py, buildscripts/mutopia-index.py,
9006         Documentation/bibliography/index.html.in, 
9007         Documentation/bibliography/html-long.bst: optimize width of
9008         html for a 800x600 screen (width:760), increases printability
9009         when 'fit to page' is not set and readability in wide screens.
9010
9011         * stepmake/bin/add-html-footer.py: add missing </p>.
9012
9013 2005-07-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9014
9015         * scm/define-markup-commands.scm (beam): use polygon in beam
9016         command.
9017
9018         * lily/grob-pq-engraver.cc (stop_translation_timestep): save up
9019         all acknowledged grobs, and do potentially expensive merge and
9020         write in one go.
9021
9022         * buildscripts/mf-to-table.py (write_fontlist): enforce noBreak.
9023
9024         * configure.in (reloc_b): add --enable-static-gxx to statically
9025         link to libstdc++
9026
9027         * lily/GNUmakefile (static-gxx-libs): new target
9028         static-gxx-libs. Create symlink to libstdc++.a
9029
9030         * lily/new-lyric-combine-music-iterator.cc: rename to
9031         Lyric_combine_music_iterator
9032
9033         * lily/lyric-combine-music-iterator.cc
9034         (Old_lyric_combine_music_iterator): rename to
9035         Old_lyric_combine_music_iterator
9036
9037         * lily/*-engraver.cc (various): remove double use of
9038         PRECOMPUTED_VIRTUAL function: only use
9039         start_translation_timestep() and stop_translation_timestep(), not
9040         both.
9041
9042         * lily/break-substitution.cc (fast_substitute_grob_array): do
9043         fast_substitute_grob_array for all unordered grob_arrays.
9044         (substitute_grob): return Grob *. Saves packing/unpacking SCMs.
9045         (substitute_grob_array): optimize.
9046
9047         * lily/align-interface.cc (set_axis): set ordered_ for 'elements
9048
9049         * lily/include/grob-array.hh (class Grob_array): ordered_ member.
9050
9051         * lily/parser.yy: revert $globalheader patch.
9052         
9053         * lily/include/translator.icc
9054         (IMPLEMENT_FETCH_PRECOMPUTABLE_METHODS): directly jump into
9055         Translator methods, without _static helper.
9056  
9057         * lily/grob-smob.cc (derived_mark): rename from
9058         do_derived_mark(). Return void.
9059
9060         * scm/define-context-properties.scm
9061         (all-internal-translation-properties): remove tweakCount/tweakRank.
9062
9063         * scm/output-lib.scm (begin-of-line-invisible): use vectors for
9064         predefined break-visibilities.
9065
9066         * lily/item.cc (handle_prebroken_dependencies): use a vector of 3
9067         booleans for break-visibility.
9068
9069         * Documentation/topdocs/NEWS.tely (Top): add note about engravers.
9070
9071         * python/convertrules.py (conv): rule for Timing_translator. 
9072
9073         * lily/include/translator.icc: new file. 
9074
9075         * lily/paper-column-engraver.cc (process_music): new
9076         file. Separate Paper_column factory from Score_engraver.
9077
9078         * lily/vertically-spaced-context-engraver.cc: administer
9079         spaceable-staves property of System.
9080
9081         * lily/translator-group-ctors.cc: new file.
9082
9083         * lily/context-property.cc (make_grob_from_properties): construct
9084         the right Grob class programmatically, looking at the class entry
9085         for the meta property.
9086
9087         * lily/break-align-engraver.cc (stop_translation_timestep): call
9088         Break_align_interface::add_element() directly.
9089
9090         * lily/context.cc (measure_position): measure_position() is now a
9091         normal function.
9092
9093         * lily/include/translator.hh (class Translator): rename
9094         process_acknowledged_grobs() to process_acknowledged() and move to
9095         Translator.
9096
9097         * scm/define-grobs.scm (all-grob-descriptions): add a 'class meta
9098         field for each grob description.
9099
9100         * lily/include/translator-group.hh (class Translator_group):
9101         change to base class. Separate class from Translator. This gets
9102         rid of virtual inheritance for Engravers/Performers.
9103
9104         * lily/staff-performer.cc (class Staff_performer): derive
9105         Staff_performer from Performer, not Performer_group_performer 
9106
9107         * Lily/translator-group.cc (precomputed_recurse_over_translators):
9108         new function.
9109         (precompute_method_bindings): new function. Precompute lists of
9110         Translators, so we only call methods (process_music,
9111         start_translation_timestep, etc.) for Translators needing
9112         it. Also: dispose of pointer-to-member-function calls.
9113
9114         * lily/engraver-group-engraver.cc: remove engraver_each,
9115         recurse_down_engravers ()
9116
9117         * lily/note-head.cc (internal_print): only call
9118         glyph-name-procedure if style != default. 
9119
9120 2005-07-16  Graham Percival  <gperlist@shaw.ca>
9121
9122         * ly/titling-init.ly: add printallheaders option.
9123
9124         * Documentation/user/global.itely: document printallheaders.
9125
9126 2005-07-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9127
9128         * lily/system.cc (do_derived_mark): don't mark from object_alist_
9129         anymore, but do it centrally.  
9130
9131         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
9132         hammer hack.
9133
9134         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-object
9135
9136         * scm/output-lib.scm: remove hammer-print-function.
9137
9138         * lily/include/pointer-group-interface.hh (extract_grob_set): new
9139         macro. Declare a Link_array<Grob> and fill it from a grob.
9140         (extract_item_set): idem for item.
9141
9142         * lily/break-substitution.cc: add header.
9143         (fast_substitute_grob_array): rewrite for Grob_arrays.
9144         (substitute_grob_array): idem.
9145
9146         * lily/group-interface.cc (add_thing): remove file.
9147
9148         * flower/include/parray.hh (class Link_array): slice() is const.
9149
9150         * lily/include/grob-array.hh: new file.
9151
9152         * lily/grob-array.cc (spanner): new file.
9153
9154         * lily/beam-quanting.cc (fill): read details property from beam.
9155
9156         * lily/beam.cc: support details property.
9157
9158         * total speedups below: approx 10%.
9159
9160         * lily/include/beam.hh: new struct, softcode beam quanting parameters
9161
9162         * lily/include/grob.hh (class Grob): add interfaces_ member.
9163
9164         * lily/bezier.cc (init_polynomial_cache): new function: cache
9165         binom(3,j) t^j (1-t)^{3-j}
9166         (curve_point): opps, actually use the cache for t^j , (1-t)^j! 
9167
9168         * lily/*.cc: substitution throughout.
9169
9170         * lily/grob-property.cc (internal_get_object): new routine.
9171         (internal_set_object): idem. Store grob refrences in separate
9172         alist. This saves processing time, since properties aren't
9173         break-substituted, and the per grob namespace is smaller, both for
9174         grobs and non-grob properties.
9175
9176         * scm/define-grob-properties.scm (all-internal-grob-properties):
9177         remove center-element.
9178
9179         * lily/grob.cc: remove tweak-count, tweak-rank.
9180
9181 2005-07-15  Graham Percival  <gperlist@shaw.ca>
9182
9183         * Documentation/user/lilypond-book.itely: fixes example.
9184
9185 2005-07-15  Nicolas Sceaux  <nicolas.sceaux@free.fr>
9186
9187         * Documentation/user/global.itely (Creating titles):    
9188         * Documentation/user/examples.itely (All headers): change the
9189         place of \header in \score blocks (after music block) to make
9190         examples compile (cf. changes on parser.yy on 2005-07-10)
9191
9192 2005-07-13  Graham Percival  <gperlist@shaw.ca>
9193
9194         * python/convertrules.py: add exc -> ecc rule.
9195
9196         * scripts/convert-ly.py: add location of convertrules.py
9197         in a comment.
9198
9199         * Documentation/user/changing-defaults.itely: fix language.
9200
9201 2005-07-12  Jan Nieuwenhuizen  <janneke@gnu.org>
9202
9203         * lily/lily-parser-scheme.cc (LY_DEFINE): Guile 1.6 fix.
9204
9205 2005-07-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9206
9207         * scm/output-socket.scm (grob-bbox): don't use inf? 
9208
9209         * flower/include/rational.hh: add operator bool() 
9210
9211         * scm/define-music-types.scm (music-descriptions): remove
9212         internal-class-name properties.
9213
9214         * lily/include/event.hh: remove file.
9215
9216         * lily/include/music-constructor.hh: remove file.
9217
9218         * lily/parser.yy (Lily_lexer): check EVENT_IDENTIFIER using 'event
9219         in 'types property.
9220
9221         * lily/music.cc (duration_length_callback): new function.
9222
9223         * lily/event.cc: remove file.
9224
9225         * lily/music-constructor.cc: remove file.
9226
9227         * lily/music-scheme.cc (LY_DEFINE): rename to ly:make-music
9228
9229         * lily/context.cc (get_grob_key): nop if use_object_keys not set.
9230         (get_context_key): idem.
9231
9232         * scm/lily.scm (lambda): new option object-keys (default to #f)
9233
9234         * scm/output-svg.scm (utf-8-string): rename  from utf8-string.
9235
9236         * scm/output-gnome.scm: remove beam routine.
9237
9238         * scm/output-ps.scm (scm): idem.
9239
9240         * scm/output-svg.scm: remove beam.
9241
9242         * ps/music-drawing-routines.ps: remove draw_beam.
9243
9244         * lily/lookup.cc (beam): use round_filled_polygon() for beam.
9245
9246         * flower/include/guile-compatibility.hh (scm_from_locale_string):
9247         add scm_from_locale_string compatibility glue. 
9248
9249 2005-07-13  Yoshinobu Ishizaki  <isizaki@mte.biglobe.ne.jp>
9250
9251         * scripts/lilypond-book.py: Prevent occuring error when
9252         'lilypond-book --output=foo/ somefile.ly' is executed multiple
9253         times and target file shoud be overwritten.  (Error message said
9254         'input file and output file is same'.)
9255
9256 2005-07-13  Graham Percival  <gperlist@shaw.ca>
9257
9258         * input/regression/slur-extreme.ly,
9259         input/regression/slur-scoring.ly, lily/slur-configuration.cc,
9260         lily/slur.cc, mf/feta-din-code.mf, mf/feta-timesig.mf,
9261         mf/parmesan-heads.mf, scm/define-grob-properties.scm: Change
9262         "excentricity" to "eccentricity".
9263
9264         * Documentation/user/converters.itely: fix URL for Noteedit and
9265         Rosegarden.
9266
9267         * THANKS: added Yoshinobu Ishizaki.
9268
9269 2005-07-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9270
9271         * scm/define-markup-commands.scm (justify-field): add. 
9272
9273         * scm/define-grobs.scm (all-grob-descriptions): decrease font size.
9274
9275 2005-07-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9276
9277         * lily/lookup.cc (filled_box): express filled_box with
9278         round_filled_box
9279
9280         * scm/midi.scm (paper-book-write-midis): new function. Write all
9281         performances in numbered MIDI files.
9282
9283         * lily/performance-scheme.cc (LY_DEFINE): new file.
9284         (LY_DEFINE): new function ly:performance-write.
9285
9286         * lily/lily-parser-scheme.cc (LY_DEFINE): ly:parser-output-name:
9287         new function.
9288         (LY_DEFINE): change name ly:parser-define -> ly:parser-define!
9289
9290         * scm/framework-*.scm: use port arguments throughout.
9291
9292         * lily/include/lily-guile.hh: rename ly_c_X_p -> ly_is_X
9293
9294         * lily/paper-outputter.cc (Paper_outputter): take port argument.
9295
9296         * lily/paper-outputter-scheme.cc (LY_DEFINE): take port argument.
9297
9298         * scm/framework-texstr.scm (output-framework): 
9299
9300         * input/regression/repeat-fold.ly (texidoc): remove TeX strings.
9301
9302         * scm/output-lib.scm (tablature-stem-attachment-function):
9303         tablature stem attachment fix. 
9304
9305 2005-07-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9306
9307         * lily/bezier.cc: hardcode binomial coefficients of order 3.
9308
9309         * lily/include/music-wrapper.hh: remove Music_wrapper as Music subtype.
9310
9311         * scm/define-music-types.scm (music-descriptions): don't use
9312         Music_wrapper type.
9313
9314         * lily/paper-column.cc (print): print moment too.
9315
9316         * scripts/mup2ly.py (cp_to_dir): remove 1.5.2 compat glue.  
9317         remove compatibility cruft.
9318
9319         * lily/parser.yy (score_body): \score can only begin with Music. 
9320
9321         * lily/score-scheme.cc (LY_DEFINE): rename scorify to
9322         make-score. Take music argument only. Move parser interaction to
9323         Scheme.
9324
9325         * scm/lily-library.scm (scorify-music): new function.
9326
9327         * python/lilylib.py (datadir): remove 2.1 compat kludge.
9328         (datadir): remove resource import.
9329         (print_environment): remove get_bbox()
9330         (cp_to_dir): remove pre 1.5.2 compat glue.
9331
9332 2005-07-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9333
9334         * lily/include/simple-spacer.hh (Module): idem.
9335
9336         * lily/include/spring.hh (struct Spring): store inverse
9337         strength. This prevents division by zero.
9338
9339         * VERSION: release 2.7.0
9340         
9341         * lily/include/music.hh (class Music): remove Music::duration_log()
9342
9343         * lily/stem-engraver.cc (make_stem): take duration log from event.
9344
9345         * lily/chord-tremolo-engraver.cc: don't ack note-head-interface.
9346
9347 2005-07-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9348
9349         * scm/lily.scm (ly:load): load autochange.scm
9350
9351         * Documentation/user/tutorial.itely (Running LilyPond for the
9352         first time): remove reference to DVI/TeX
9353
9354         * scm/define-markup-commands.scm (text): add \text markup command.
9355
9356         * configure.in (reloc_b): bump requirement to Python 2.2.
9357
9358         * lily/include/dots.hh (class Dots): make has_interface() static.
9359
9360         * python/convertrules.py (conv): add rule for ly:grob-default-font
9361
9362         * scm/define-grobs.scm (all-grob-descriptions): reorganize in
9363         alphabetical order.
9364
9365         * input/regression/trill-spanner-pitched.ly: new file.
9366
9367         * lily/font-interface-scheme.cc (LY_DEFINE): function
9368         ly:grob-default-font (changed from get-default-font).
9369
9370         * lily/axis-group-interface-scheme.cc (LY_DEFINE): new file.
9371
9372         * lily/note-head.cc (internal_print): if style is not a symbol,
9373         set style to 'default. 
9374         (internal_print): no style suffix if glyph-name-procedure not
9375         set. Default to quarter head.
9376
9377         * scm/define-grobs.scm (Module): new grob TrillPitchHead.
9378
9379         * scm/define-music-properties.scm (all-music-properties): add trill-pitch.
9380
9381         * ly/music-functions-init.ly: \pitchedTrill
9382
9383         * lily/pitched-trill-engraver.cc (acknowledge_grob): new file.
9384
9385         * ly/Welcome_to_LilyPond.ly: update to 2.6.0
9386
9387         * lily/trill-spanner-engraver.cc (finalize): rename req -> event
9388
9389         * scm/define-markup-commands.scm (pad-markup): pad-markup command.
9390
9391         * po/fr.po: update
9392
9393         * po/de.po: update.
9394
9395 2005-07-06  Graham Percival  <gperlist@shaw.ca>
9396
9397         * Documentation/user/changing-defaults.itely: add link
9398         to grob-iterface.
9399
9400         * Documentation/user/advanced-notation.itely: add material
9401         to Setting automatic beam behaviour.  Thanks, Joe!
9402
9403         * Documentation/user/lilypond.itely: change encoding to utf-8.
9404
9405 2005-07-01  Mats Bengtsson  <mabe@s3.kth.se>
9406
9407         * Documentation/user/advanced-notation.itely (Setting automatic
9408         beam behavior): Correct the documentation of
9409         revert-auto-beam-setting (backportme)
9410
9411 2005-07-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9412
9413         * lily/ly-module.cc (ly_make_anonymous_module): define
9414         %module-public-interface of module. 
9415
9416         * lily/lily-parser.cc (print_smob): allow printing of parser smob
9417         without lexer.
9418
9419 2005-07-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9420
9421         * input/regression/fret-diagrams.ly: stretch example.
9422
9423 2005-06-30  Jan Nieuwenhuizen  <janneke@gnu.org>
9424
9425         * cygwin/GNUmakefile ($(outdir)/%.sh): Bugfix: use TAB (Bertalan
9426         Fodor).
9427
9428 2005-06-30  Graham Percival  <gperlist@shaw.ca>
9429
9430         * Documentation/topdocs/AUTHORS.texi: update personal web address.
9431
9432         * Documentation/user/examples.itely, lilypond-book.itely:
9433         change \RequirePackage to \usepackage.
9434
9435         * Documentation/user/global.itely: document copyright and tagline.
9436
9437 2005-06-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9438
9439         * Documentation/user/basic-notation.itely (Transpose): remove link
9440         to nonexistent UntransposableMusic.
9441
9442         * scm/output-svg.scm: remove old definitions.
9443
9444         * scripts/lilypond-book.py (do_file): search for kpsewhich before
9445         invoking.
9446
9447         * python/lilylib.py (search_exe_path): new function.
9448
9449 2005-06-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9450
9451         * python/lilylib.py (mkdir_p): remove setup_environment()
9452         (backportme)
9453
9454         * buildscripts/mutopia-index.py (headertext): trim text.
9455
9456         * Documentation/topdocs/NEWS.tely (Top): refresh.
9457
9458         * scm/define-markup-commands.scm (wordwrap-string): new function:
9459         split string in paras and words.
9460         (wordwrap-markups): new function.
9461         (wordwrap-stencils): new function. 
9462         (justify): use it.
9463         (wordwrap): use it.
9464         (wordwrap-string): use it
9465         (justify-string): use it.
9466
9467         * scm/lily-library.scm (regexp-split): new function.
9468
9469         * scm/define-markup-commands.scm: remove encoded-simple. 
9470         remove font-markup.
9471         (fontsize): remove old version  of fontsize.
9472         (wordwrap): new markup function. Wrap into paragraphs.
9473
9474         * VERSION: Branch lilypond_2_6
9475         (MINOR_VERSION): go to 2.7.0
9476
9477 2005-06-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9478
9479         * po/zh_TW.po: update from translation project.
9480
9481 2005-06-28  Graham Percival  <gperlist@shaw.ca>
9482
9483         * scm/midi.scm: compile fix.
9484
9485 2005-06-28  Mats Bengtsson  <mabe@s3.kth.se>
9486
9487         * scripts/lilypond-book.py : Fix embarrassing bug in my previous
9488         patch. Now, the tempfile module is loaded too, not only used.
9489
9490 2005-06-28  Stephen Charles McCarthy  <stecmccarthy@hotpop.com>
9491
9492         * scm/midi.scm: changed midi volumes in absolute-volume-alist from
9493         0.05 - 1.00 to 0.25 - 1.00
9494
9495         * scm/midi.scm: moved the default-instrument-equalizer procedure
9496         to just under the insturment-equalizer-alist it takes as an
9497         argument.
9498
9499 2005-06-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9500
9501         * Documentation/user/advanced-notation.itely (Font selection):
9502         remove CMR note.
9503
9504         * scm/framework-ps.scm (write-preamble): ly:warning iso. ly:warn 
9505
9506 2005-06-28  Jan Nieuwenhuizen  <janneke@gnu.org>
9507
9508         * THANKS: Add UTF-8 marker.
9509
9510         * Documentation/user/point-and-click.itely (http): Update: use
9511         lilypond-invoke-editor.  Fix: instruct to use user.js.
9512
9513 2005-06-27  Graham Percival  <gperlist@shaw.ca>
9514
9515         * ly/titling-init.ly: implements printpagenumber, increases
9516         space between dedication and title (to avoid collisions with
9517         "g" and "q" in dedication), and nicer logic about copyright
9518         and instrument fields being printed on the first page.
9519         Thanks Vincent!
9520
9521         * Documentation/user/global.itely: document printpagenumber.
9522
9523 2005-06-27  Jan Nieuwenhuizen  <janneke@gnu.org>
9524
9525         * Documentation/topdocs/NEWS.tely: Update to 2.6.
9526
9527 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9528
9529         * THANKS: update to 2.6
9530
9531         * VERSION: 2.6.0 released.
9532
9533 2005-06-27  Jan Nieuwenhuizen  <janneke@gnu.org>
9534
9535         * cygwin/GNUmakefile (OUT_POSTREMOVES): Reinclude install script
9536         rule, errorneously removed probably because of misleading comment.
9537
9538 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9539
9540         * python/lilylib.py (datadir): py2exe comments.
9541
9542         * Documentation/topdocs/INSTALL.texi (Top): remove EC fonts requirement.
9543
9544         * configure.in (reloc_b): make fontconfig REQUIRED.
9545
9546 2005-06-27  Heikki Junes <hjunes@cc.hut.fi>
9547
9548         * po/fi.po: add latest translations.
9549
9550 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9551
9552         * ChangeLog: recode utf-8
9553
9554         * Documentation/pictures/lilypond.xpm (Module): edited photo as
9555         logo.
9556
9557         * Documentation/user/examples.itely (Module): 2.4.0 -> 2.6.0
9558
9559         * input/*.ly (Module): 2.4 -> 2.6 grand convert-ly s/r. 
9560
9561         * python/convertrules.py (do_conversion): don't print program_name
9562         from within a module
9563
9564         * configure.in (reloc_b): bump fontforge requirement to 20050624.
9565
9566         * python/convertrules.py (conv): add 2.6.0 dummy rule.
9567
9568 2005-06-23  Graham Percival  <gperlist@shaw.ca>
9569
9570         * Documentation/user/lilypond-book.itely,
9571         Documentation/user/examples.itely: add \RequirePackage{graphics}.
9572
9573         * ly/titling.ly: checks printfirstpagenumber, adds meter, and
9574         fixes baseline-skip.  Thanks Vincent!
9575
9576         * Documentation/user/advanced-notation.itely, global.itely:
9577         moved "Selecting font sizes" to global, since it deals with
9578         notation font size, not text fonts.
9579
9580 2005-06-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9581
9582         * buildscripts/gen-emmentaler-scripts.py (notice): add GPL notice
9583         to fonts.
9584
9585 2005-06-23  Mats Bengtsson  <mabe@s3.kth.se>
9586
9587         * scripts/lilypond-book.py (LATEX_DOCUMENT): More or less ugly
9588         workaround since /dev/stdin doesn't work on Cygwin. Using a
9589         temporary file in the current directory since latex doesn't
9590         understand the path name to the default TMP in Cygwin (at least on
9591         win XP).
9592         
9593         * Documentation/user/global.itely (Creating titles): Correct
9594         misprint in example. Thanks to Rob Vlasaty.
9595
9596 2005-06-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9597
9598         * VERSION (PATCH_LEVEL): release 2.5.32
9599
9600         * lily/lily-parser-scheme.cc (LY_DEFINE): don't set 'parser
9601         variable in lily module
9602
9603         * scm/framework-ps.scm (output-classic-framework): error message
9604         regarding the classic framework.
9605
9606         * Documentation/user/henle-flat-gray.png (Module): new file.
9607
9608         * Documentation/user/baer-flat-gray.png (Module): new file.
9609
9610         * scm/output-lib.scm (fret-number-tablature-format): vcenter and
9611         whiteout for markups.
9612
9613         * buildscripts/substitute-encoding.py (note_glyph): include _ in
9614         regex too. This fixes change clef appearance in PDF. 
9615
9616         * ttftool/include/*: remove.
9617
9618         * configure.in (reloc_b): remove TTFTOOL_ENDIAN
9619
9620         * config.make.in (WINDRES): remove TTFTOOL_ENDIAN.
9621
9622         * lily/GNUmakefile (MODULE_INCLUDES): remove ttftool
9623
9624         * ttftool/*: remove ttftool subdirectory.
9625
9626         * GNUmakefile.in (SUBDIRS): remove ttftool subdirectory.
9627
9628         * lily/ttf.cc (print_header): new file. Convert to type42, using
9629         FreeType to parse the TTF. 
9630
9631         * ttftool/parse.c (readPostTable): ugh. Kludge: nglyphs in maxp
9632         and post table may differ. Pass around post_nglyphs as well.
9633
9634 2005-06-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9635
9636         * ly/music-functions-init.ly (musicMap): new music function
9637         musicMap. 
9638         
9639 2005-06-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9640
9641         * make/mutopia-rules.make: anti-alias-factor = 2
9642
9643         * scm/ps-to-png.scm (make-ps-images): cleanup multipage vs. single
9644         page switch.
9645
9646         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): set
9647         anti-alias-factor for lilypond-book runs.
9648
9649         * scm/ps-to-png.scm (scale-down-image): new function.
9650         (my-system): new function.
9651         (make-ps-images): blow up GS resolution by anti-alias-factor,
9652         scale down image by anti-alias-factor.  This improves appearance
9653         of bitmaps
9654         (make-ps-images): remove showpage. Fixes spurious empty png at
9655         end.
9656
9657         * scm/framework-ps.scm (write-preamble): downcase filename before
9658         string-matching. Should fix .TTF files (as opposed to ttf files)  
9659
9660         * Documentation/user/tutorial.itely (Running LilyPond for the
9661         first time): separate subsections for windows, macos and unix.  
9662
9663         * Documentation/user/invoking.itely (Updating files with
9664         convert-ly): add MacOS X note.
9665
9666 2005-06-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9667
9668         * Documentation/user/introduction.itely (Engraving): don't include
9669         file optical-spacing, add directly.
9670
9671         * lily/paper-outputter.cc (file): open file in binary mode. This
9672         fixes OTF embedding on windows.
9673
9674 2005-06-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9675
9676         * scm/framework-ps.scm (write-preamble): remove debugging output.
9677
9678         * mf/aybabtu.pe.in (i): don't generate aybabtu.cff
9679
9680         * mf/GNUmakefile ($(outdir)/fonts.cache-1): create font cache for
9681         outdir.
9682         (install-fc-cache): install font cache in installation directories.
9683
9684 2005-06-17  Jan Nieuwenhuizen  <janneke@gnu.org>
9685
9686         * scm/editor.scm (editor-command-template-alist): Use char iso
9687         column, except for Emacs.
9688         (get-editor-command): Substitute char too (Bertalan Fodor).
9689
9690 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
9691
9692         * scm/ps-to-png.scm (make-ps-images): Use ~S instead of single
9693         quoted ~s.  This should fix PNG output on Windows; single quotes
9694         are regular characters on Windows.
9695
9696 2005-06-16  Graham Percival  <gperlist@shaw.ca>
9697
9698         * Documentation/user/basic-notation.itely: include ChoirStaff
9699         in System start delimiters.
9700
9701         * Documentation/user/putting.itely: new doc section on
9702         fixing overlapping notation.
9703
9704 2005-06-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9705
9706         * Documentation/user/global.itely (Paper size): \paper is in
9707         \book, not \score.
9708
9709         * make/mutopia-rules.make: -ddelete-intermediate-files
9710
9711         * ly/engraver-init.ly: make Staff default child of ChoirStaff.
9712
9713 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
9714
9715         * ChangeLog: Recode utf-8.
9716
9717         * python/GNUmakefile (INSTALLATION_OUT_DIR): Install .so module in
9718         datadir with .py modules.
9719
9720 2005-06-15  Heikki Junes  <hjunes@cc.hut.fi>
9721
9722         * Documentation/user/basic-notation.itely (Ties): add tieDashed.
9723
9724 2005-06-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9725
9726         * make/mutopia-rules.make: switch off ps, p&c for lilypond runs.
9727         
9728         * scm/framework-ps.scm (write-preamble): remove status check.
9729
9730         * Documentation/user/invoking.itely (Updating files with
9731         convert-ly): remove -o option.
9732
9733         * VERSION (PACKAGE_NAME): release 2.5.31
9734
9735         * scm/framework-ps.scm (write-preamble): use ly:system.
9736         (write-preamble): verbosity.
9737
9738         * scripts/convert-ly.py: cleanup. Use lilylib. Use convertrules.
9739
9740         * python/convertrules.py: new file. Store conversion rules
9741         separately.
9742
9743 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9744
9745         * scm/backend-library.scm (postprocess-output): remove debugging gobs.
9746
9747 2005-06-14  Mats Bengtsson  <mabe@s3.kth.se>
9748
9749         * Documentation/topdocs/NEWS.tely (Top): Corrected name of
9750         \musicDisplay 
9751
9752         * Documentation/user/instrument-notation.itely (More stanzas): Add
9753         reference to StanzaNumber.
9754
9755 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9756
9757         * THANKS: separate section for website translators.
9758
9759 2005-06-14  Graham Percival  <gperlist@shaw.ca>
9760
9761         * Documentation/topdocs/INSTALL.texi: update vim info;
9762         thanks Simon Bailey!
9763
9764         * Documentation/user/advanced-notation.itely: included
9765         color names.
9766
9767         * Documentation/user/advanced-notation.itely,
9768         Documentation/usr/notation-appendices.itely: moved
9769         color names into an appendix.
9770
9771 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9772         
9773         * lily/program-option.cc (LY_DEFINE): new function ly_add_option.
9774
9775         * scm/lily.scm (lambda): initialize program options from here.
9776
9777         * scm/framework-*.scm: add header info.
9778
9779         * lily/main.cc (parse_argv): only set output format to pdf if no
9780         other format specified.
9781
9782         * scm/backend-library.scm (postprocess-output): process
9783         'delete-intermediate-files after running convert-to-*. This fixes
9784         PNG generation when 'delete-intermediate-files is set.
9785         
9786 2005-06-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9787
9788         * buildscripts/mutopia-index.py (list_item): thinko. Fixes png
9789         links on website. 
9790
9791 2005-06-13  Graham Percival  <gperlist@shaw.ca>
9792
9793         * Documentation/topdocs/INSTALL.texi,
9794         Documentation/user/lilypond-book.itely: typos.
9795
9796 2005-06-12  Pal Benko  <benkop@freestart.hu>
9797
9798         * elisp/lilypond-mode.el (LilyPond-command-alist: 2PS): space
9799         added between program name and switch; -b changed to -f not
9800         to generate pdf
9801
9802 2005-06-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9803
9804         * elisp/lilypond-mode.el (LilyPond-command-alist): remove 2midi
9805         (LilyPond-command-alist): use -f ps (thanks to Pal Benko)
9806
9807         * input/sakura-sakura.ly: add \midi.
9808
9809         * buildscripts/mutopia-index.py (find): use /usr/bin/find
9810         iso. python find. 
9811
9812         * ttftool/test.c (main): cosmetics.
9813
9814         * ttftool/util.c (surely_lseek): use stdio FILE's for I/O 
9815
9816         * ttftool/test.c: new file. If compiled with -DTEST_TTFTOOL,
9817         create a ttf2ps binary.
9818
9819         * scm/ps-to-png.scm (make-ps-images): fix rename-page-1 functionality.
9820
9821         * scm/backend-library.scm (postscript->png): set rename-page-1 to
9822         true.
9823
9824 2005-06-11  Graham Percival <gperlist@shaw.ca>
9825
9826         * Documentation/user/lilypond-book.itely: add warning about
9827         the font warnings in dvips.
9828
9829 2005-06-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9830
9831         * THANKS: typo
9832
9833         * mf/GNUmakefile ($(outdir)/$(redhat-package)): Fedora-4 url.
9834
9835         * GNUmakefile.in: remove links for .map, .enc
9836         don't fail if out/ doesn't exist yet.
9837
9838 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9839
9840         * ttftool/util.c (surely_read): return nbytes
9841
9842         * stepmake/bin/text2html.py (txt2html): add utf-8 marker. 
9843
9844         * VERSION (PACKAGE_NAME): release 2.5.30
9845
9846         * flower/string-convert.cc (precision_string): >? fix.
9847
9848         * scm/ps-to-png.scm (make-ps-images): search-gs for multipage too.
9849         (make-ps-images): add verbose -q too.
9850
9851         * lily/default-actions.cc (Module): new file. default
9852         {book,score}-print functions.
9853
9854         * scm/ly-from-scheme.scm (ly:parse-string-result): use new setup:
9855         pass results via parseStringResult, lookup via ly:parser-lookup.  
9856
9857         * lily/lily-parser.cc (Lily_parser): only clone lexer in
9858         constructors.
9859         (parse_file): encapsulate do_yyparse() in scm_set_current_module()
9860         (parse_string): idem.
9861
9862         * ly/spanners-init.ly (assertBeamQuant): don't use #{ #} in init.
9863
9864         * lily/main.cc (main_with_guile): copy be_verbose_global into
9865         ly_set_option()
9866
9867 2005-06-10  Jan Nieuwenhuizen  <janneke@gnu.org>
9868
9869         * scm/backend-library.scm (postscript->pdf):
9870         * scm/ps-to-png.scm (make-ps-images): Do not use gs -q switch in
9871         verbose mode.  Search for several names of gs executable.
9872
9873 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9874
9875         * lily/ly-module.cc (ly_make_anonymous_module): call make-module
9876         directly. This fixes a massive memory leak, provided you use CVS
9877         GUILE.
9878
9879 2005-06-10  Erik Sandberg  <ersa9195@student.uu.se>
9880
9881         * ly/property-init.ly: Added tieDashed.
9882
9883         * THANKS: Added some bughunters for 2.5.
9884
9885 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9886
9887         * lily/program-option.cc: add debug-gc option.
9888
9889         * lily/include/lily-guile-macros.hh: don't protect exported module
9890         objects.
9891
9892         * lily/include/lily-parser.hh (class Lily_parser): remove beam_check().
9893
9894         * scm/backend-library.scm (postscript->pdf): use
9895         delete-intermediate-files iso. running-from-gui? 
9896
9897         * ttftool/util.c (surely_read): robustness. Allow read() to return
9898         less bytes than requested, as per posix standards.
9899
9900         * lily/pfb.cc (LY_DEFINE): set ttf_verbosity from ttf-verbosity
9901         program option.
9902
9903         * ttftool/include/ttftool.h ("C"): rename verbosity to
9904         ttf_verbosity. Add to public interface.
9905
9906         * scm/music-functions.scm (unfold-repeats): remove debugging display.
9907
9908         * lily/program-option.cc: rename from scm-option.cc
9909
9910         * lily/scm-option.cc (LY_DEFINE): handle no-foobar option setting.
9911         (get_help_string): Print pretty help string.
9912
9913         * scripts/lilypond-book.py (PREAMBLE_LY): add no-point-and-click
9914         to snippet preamble.
9915
9916         * lily/scm-option.cc: remove command-line-settings option. Fold
9917         all command-line options plus default settings in a generic
9918         interface. 
9919
9920         * flower/getopt-long.cc (table_string): indent 2nd lines of help
9921         texts too.
9922
9923 2005-06-09  Jan Nieuwenhuizen  <janneke@gnu.org>
9924
9925         * flower/file-name.cc: Bugfix: only append DIRSEP if BASE_
9926         or EXT_ components non-empty.
9927
9928 2005-06-08  Jan Nieuwenhuizen  <janneke@gnu.org>
9929
9930         * scm/lily.scm (running-from-gui?): Export.
9931
9932         * lily/lily-parser-scheme.cc (ly:parse-file): Use it to generate
9933         output in .ly source directory.
9934
9935 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9936
9937         * ttftool/util.c (surely_lseek): more verbosity.
9938
9939         * lily/include/lily-proto.hh: add Context_def. This fixes FC4
9940         compile.
9941
9942         * lily/parser.yy (Repeated_music): remove >? 
9943
9944         * scm/backend-library.scm (postscript->pdf): Support for
9945         -dgs-font-load=1
9946
9947         * scm/framework-ps.scm (write-preamble): make font loading
9948         switchable to GS via --define-default gs-font-load=1
9949
9950 2005-06-09  Graham Percival  <gperlist@shaw.ca>
9951
9952         * Documentation/user/global.itely: added \layout docs.
9953
9954 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9955
9956         * lily/lily-parser-scheme.cc: add unistd.h
9957
9958 2005-06-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9959
9960         * scm/editor.scm: add char argument.
9961
9962         * scripts/lilypond-invoke-editor.scm (dissect-uri): add char. 
9963
9964         * ttftool/util.c (syserror): use errno for better error reporting.
9965
9966         * lily/source-file.cc (get_counts): new function. Calc column,
9967         line and char count in one go.
9968
9969         * lily/binary-source-file.cc (quote_input): rename to quote_input
9970
9971         * lily/input.cc (set): new function.
9972
9973 2005-06-08  Jan Nieuwenhuizen  <janneke@gnu.org>
9974
9975         * flower/file-path.cc (find): Bugfix.  Append rather than prepend
9976         directory part of file name to search directory.
9977
9978         * lily/lily-parser-scheme.cc (ly:parse-file): Prepend cwd to
9979         search path and chdir to DIR if --outname=DIR used.
9980
9981         * lily/main.cc (prepend_env_path): Bugfix: Check directory
9982         existence before appending original path.
9983
9984 2005-06-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9985
9986         * ttftool/parse.c (readNamingTable): verbosity for "bad TTF
9987         file" massage.
9988
9989         * Documentation/user/GNUmakefile (TEXINPUTS): set TEXINPUTS so our
9990         texinfo.tex is always used.
9991         
9992 2005-06-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9993
9994         * flower/include/axis.hh: rename from axes.hh
9995
9996         * lily/include/text-interface.hh (Module): rename from text-item.hh
9997
9998         * VERSION (PATCH_LEVEL): release 2.5.29
9999
10000         * ttftool/parse.c (readNamingTable): handle Apple/8bit encoding too.
10001
10002         * scm/framework-ps.scm (font-file-as-ps-string): new function.
10003         (handle-macfont): new function. Call fondu for Native mac fonts.
10004
10005         * scm/define-markup-commands.scm (fill-line): handle text-widths =
10006         '() case.
10007
10008 2005-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
10009
10010         * scm/ps-to-png.scm (make-ps-images): Bugfix: `Pages: 1\n' is not
10011         multi-page.  Fix .eps regular expression.
10012
10013 2005-06-07  Graham Percival  <gperlist@shaw.ca>
10014
10015         * Documentation/user/putting.itely: add info on modifying templates.
10016
10017         * Documentation/user/lilypond.itely, converters.itely, invoking.itely:
10018         misc small changes.
10019
10020 2005-06-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10021
10022         * scm/ps-to-png.scm (make-ps-images): no paper size for multi-page.
10023
10024         * scripts/lilypond-ps2png.scm
10025
10026         * VERSION (PACKAGE_NAME): release 2.5.28
10027
10028 2005-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
10029
10030         * lily/main.cc (prepend_env_path): Do not append /, that does not
10031         work.  Localedir lives in datadir, not in prefix.
10032
10033         * scm/framework-ps.scm (write-preamble): Remove load-font-via-GS
10034         hack for windows.
10035
10036         * flower/include/file-cookie.hh: Compile fix.
10037
10038 2005-06-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10039
10040         * ly/engraver-init.ly: add \defaultchild to InnerStaffGroup. 
10041
10042         * scm/ps-to-png.scm (gulp-port): rename from read. Don't redefine
10043         system primitives.
10044         (gulp-port): using read-string!/partial. We don't want to read an
10045         entire PS file  (GUILE 1.6 limits strings to 16M) 
10046
10047         * scm/define-grobs.scm (all-grob-descriptions): remove arch-*
10048         properties. Add font-interface. 
10049
10050         * scm/define-grob-properties.scm (all-user-grob-properties):
10051         remove old bracket properties.
10052
10053         * scm/x11-color.scm: reformat. 
10054
10055         * lily/ledger-line-engraver.cc (acknowledge_grob): create new
10056         LedgerLineSpanner if new StaffSymbol is found. 
10057
10058         * lily/staff-symbol-engraver.cc (acknowledge_grob): also set
10059         staff-symbol for finishing staff. 
10060
10061         * lily/GNUmakefile (OUT_DIST_FILES): don't dist Flex output
10062
10063         * scm/output-svg.scm (setcolor): implement (re)setcolor with <g>
10064         change black to currentColor everywhere. This fixes color support
10065         in SVG.
10066
10067 2005-06-06  Carl Sorensen  <carldsorensen@comcast.net>
10068
10069         * input/regression/fret-diagrams.ly: new file to test fret diagram
10070         capability
10071
10072         * scm/output-tex.scm: remove white-dot and white-text
10073
10074         * scm/output-ps.scm: remove white-dot and white-text
10075
10076         * scm/fret-diagrams.scm (sans-serif-stencil-white): removed -- 
10077         using ly:stencil-in-color instead
10078         (draw-dots) : remove call to white-dot
10079
10080 2005-06-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10081
10082         * flower/memory-stream.cc (Memory_out_stream): remove fopencookie
10083         support.
10084
10085         * ttftool/ttfps.c: use lily_cookie functions everywhere. 
10086
10087         * flower/include/file-cookie.hh: new file. lily_cookie extension 
10088
10089         * flower/file-cookie.cc: new file. lily_cookie extension.
10090         
10091 2005-06-06  Jan Nieuwenhuizen  <janneke@gnu.org>
10092
10093         * scm/editor.scm (editor-command-template-alist): Add syn
10094         editor (Jaap [de Vos]).
10095
10096 2005-06-05  Jan Nieuwenhuizen  <janneke@gnu.org>
10097
10098         * scripts/lilypond-ps2png.scm:
10099         * scm/ps-to-png.scm: New file.
10100
10101         * scm/backend-library.scm (postscript->png): Use it.
10102
10103         * scripts/lilypond-ps-to-png.py: Remove file.
10104
10105         * python/lilylib.py (get_bbox, make_ps_images): Remove.
10106
10107 2005-06-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10108
10109         * lily/auto-beam-engraver.cc (acknowledge_grob): remove dead code.
10110
10111         * scm/auto-beam.scm (default-auto-beam-check): only forbid beam
10112         start on grace moment. Fixes autobeam-grace.ly.
10113
10114         * lily/auto-beam-engraver.cc (process_acknowledged_grobs): don't
10115         process anything unless we're at the end of a pending beam. Fixes
10116         syncopated 8ths beamed across a beat.
10117
10118 2005-06-03  Jan Nieuwenhuizen  <janneke@gnu.org>
10119
10120         * scm/editor.scm (editor-command-template-alist): Start emacs if
10121         emacslient fails.
10122
10123         * lily/main.cc (setup_localisation): Listen to LILYPOND_LOCALEDIR.
10124
10125         * flower/file-path.cc (is_file, is_dir): Export.
10126
10127         * lily/main.cc (prepend_env_path, set_env_file): Use them.
10128
10129 2005-06-02  Mats Bengtsson  <mabe@s3.kth.se>
10130
10131         * lily/easy-notation.cc: Added include cctype to correct
10132         compilation error.
10133
10134 2005-06-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10135
10136         * scm/backend-library.scm (postscript->pdf): set resolution to
10137         1200, so bitmap fonts aren't that ugly. 
10138
10139         * Documentation/topdocs/NEWS.tely (Top): add entry about font family.
10140
10141         * lily/dynamic-engraver.cc (acknowledge_grob): only center on
10142         parent if we have a notehead. Fixes incorrect offsets when
10143         Paper_column is very wide in the X direction.
10144
10145         * input/regression/font-family-override.ly (Module): new file.
10146
10147         * scm/font.scm (make-pango-font-tree): new function.
10148
10149         * lily/beam.cc (before_line_breaking): remove warning about less
10150         than 2 visible stems. We still get a warning when there is only
10151         one stem.
10152
10153 2005-06-01  Werner Lemberg  <wl@gnu.org>
10154
10155         * buildscripts/substitute-encoding.py: Handle PFAemmentaler-xx.pfa
10156         correctly.
10157
10158 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10159
10160         * lily/slur-scoring.cc (generate_avoid_offsets): new
10161         function. Generate avoid offsets once per slur.
10162
10163         * lily/slur.cc (add_extra_encompass): add dependency to
10164         extra-encompass object. This fixes bugs/c-phrasing-slur.ly
10165
10166         * lily/stencil.cc (is_empty): check dim_ field for is_empty()
10167         too. Fixes inf error with added bass notes.
10168
10169         * scripts/lilypond-book.py (do_options): --psfonts doesn't take
10170         argument anymore.
10171
10172         * make/ly-vars.make (DVIPS_FLAGS): use .psfonts as extension.
10173
10174         * input/tutorial/lbook-latex-test.tex: add line length test.
10175
10176         * scripts/lilypond-book.py (set_default_options): new
10177         function. Call this before dissecting snippets, so linewidth
10178         settings reach the snippets.
10179
10180 2005-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
10181
10182         * scm/lily.scm (PLATFORM, slashify): Remove double slashes.
10183
10184 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10185
10186         * input/mutopia/R.Schumann/romanze-op28-2.ly (leftb): bugfix.
10187
10188 2005-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
10189
10190         * stepmake/aclocal.m4: More autopackage friendliness.
10191
10192 2005-05-31  Graham Percival  <gperlist@shaw.ca>
10193
10194         * Documentation/index.html.in: remove link to LSR.
10195
10196         * Documentation/user/global.itely: remove duplicate
10197         "dedication" \header{} section.
10198
10199 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10200
10201         * VERSION (PACKAGE_NAME): release 2.5.27.
10202
10203         * lily/lily-parser-scheme.cc (LY_DEFINE): unprotect paper
10204         too. Plugs memory leak.
10205
10206         * make/lilypond.fedora.spec.in (Group): remove
10207         lilypond-pdfpc-helper.
10208
10209         * scripts/GNUmakefile (SEXECUTABLES): remove
10210         lilypond-pdfpc-helper. Use lilypond-invoke-editor instead.
10211
10212         * scm/font.scm (make-century-schoolbook-tree): add Mono as
10213         'typewriter family.
10214
10215         * lily/score.cc (Score): unprotect copy of Output_def. Plugs
10216         memory leak.
10217
10218         * lily/parser.yy (score_body): don't clone Score, that's done in
10219         Lily_lexer::try_special_identifiers(). This fixes a memory leak.
10220
10221         * lily/score-engraver.cc (derived_mark): new function.
10222         (initialize): unprotect Paper_score. This fixes a memory leak.
10223
10224         * lily/score-performer.cc (derived_mark): new function.
10225
10226         * lily/score-translator.cc (get_output): use SCM for get_output() call.
10227
10228         * stepmake/aclocal.m4: put FlexLexer.h test in conftest.cc. Fixes
10229         spurious warning.
10230
10231         * scm/font.scm (make-century-schoolbook-tree): use Sans for sans
10232         serif.
10233
10234 2005-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
10235
10236         * configure.in (reloc_b): Add --enable-relocation.
10237
10238 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10239
10240         * lily/pfb.cc (LY_DEFINE): show file name when loading PFB. 
10241
10242         * input/regression/alignment-order.ly: add Staff example.
10243
10244 2005-05-31  John Mandereau   <john.mandereau@free.fr>
10245
10246         * po/fr.po: update.
10247
10248 2005-05-31  Graham Percival  <gperlist@shaw.ca>
10249
10250         * Documentation/index.html.in: add link to LSR.
10251
10252 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10253
10254         * scm/define-stencil-commands.scm (Module): new file. Register all
10255         allowed stencil expression heads in a central place.
10256
10257         * lily/stencil-scheme.cc (LY_DEFINE): check is_stencil_head in
10258         ly:make-stencil
10259
10260         * lily/stencil-expression.cc (all_stencil_heads): registering
10261         stencil expressions.
10262
10263         * lily/stencil-interpret.cc: new file. Stencil expression
10264         interpreting.
10265
10266         * input/xiao-haizi-guai-guai.ly: move file back.
10267
10268 2005-05-30  Graham Percival  <gperlist@shaw.ca>
10269
10270         * Documentation/user/advanced.itely, converters.itely,
10271         instrument-notation.itely, lilypond-book.itely: misc small
10272         changes.
10273
10274 2005-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
10275
10276         * lily/lexer.ll: Skip UTF-8 BOM at BOF.
10277
10278         * make/lilypond.fedora.spec.in: Fix source url.
10279
10280         * cygwin: Update from mingw patches.
10281
10282         * scm/editor.scm (editor-command-template-alist): Use jedit
10283         -reuseview (Bertalan), add uedit (Patrick Huberts).
10284
10285         * input/xiao-hai-zi-guai-guai.ly: Rename from
10286         xiao-haizi-guai-guai.ly.
10287
10288         * input/*: Reindent, do not use TAB.
10289
10290         * Documentation/pictures/ly.xpm: Bugfix: do not anti-alias against
10291         white background.
10292
10293 2005-05-29  Jan Nieuwenhuizen  <janneke@gnu.org>
10294
10295         * scm/framework-ps.scm (dump-stencil-as-EPS): Add silly fix for
10296         numerical overflow error.
10297
10298 2005-05-29 Laura Conrad <lconrad@laymusic.org>
10299         
10300         * abc2ly.py: fix to syntax error in multi-part output.
10301
10302 2005-05-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10303
10304         * lily/span-bar.cc (print): sort bar line extents. Fixes problem
10305         with disappearing span bars when alignAboveContext is active
10306
10307         * lily/property-iterator.cc (check_grob): use is-grob?
10308         object-property. Fixes crash-key-sig-font-size.ly. 
10309
10310 2005-05-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10311
10312         * lily/bar-line.cc (print): don't round barlines; this produces
10313         odd aliasing effects in Acroread.
10314
10315         * lily/timing-engraver.cc (process_music): robustness fix.
10316
10317         * lily/context-def.cc (filter_engravers): bugfix.
10318
10319 2005-05-28  Jan Nieuwenhuizen  <janneke@gnu.org>
10320
10321         * lily/lilypond.rc.in: Add ly-icon.
10322
10323         * lily/GNUmakefile: 
10324         * Documentation/pictures/GNUmakefile (OUT_DIST_FILES): Add ly-icon
10325         rules.
10326
10327 2005-05-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10328
10329         * lily/stencil-scheme.cc (LY_DEFINE): ly:stencil-in-color
10330
10331         * ps/music-drawing-routines.ps: 
10332
10333         * scm/output-ps.scm: remove draw ez_ball.
10334
10335         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
10336         EasyNotation context definition.
10337
10338         * lily/easy-notation.cc (brew_ez_stencil): new file. Use
10339         Text_interface and color for making easy note heads.
10340
10341         * lily/stencil.cc (with_color): new function.
10342
10343         * ps/music-drawing-routines.ps: remove draw_zigzag_line
10344
10345         * lily/line-spanner.cc (zigzag_stencil): rewrite to use draw-line
10346         output routine. Zigzag now works in SVG too.
10347
10348         * scm/output-tex.scm (filledbox): idem.
10349
10350         * scm/output-svg.scm (filledbox): idem.
10351
10352         * scm/output-ps.scm (lily-def): remove horizontal-line. 
10353
10354         * lily/lookup.cc (horizontal_line): use draw-line. 
10355
10356         * lily/system-start-delimiter.cc: remove old staff bracket code.
10357
10358         * mf/feta-haak.mf: further tweaks.
10359
10360         * lily/system-start-delimiter.cc (staff_bracket): use glyphs.
10361
10362         * mf/feta-generic.mf: include feta-haak.
10363
10364         * mf/feta-haak.mf: rewrite. Make separate glyphs for the tips 
10365
10366         * scm/framework-ps.scm (write-preamble): only load fonts if their
10367         filename is a string. 
10368
10369 2005-05-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10370
10371         * scm/output-svg.scm (circle): support circle.
10372         (bracket): stub for bracket.
10373
10374         * scripts/lilypond-book.py (main): make sure --psfonts warning is
10375         correct.
10376
10377 2005-05-26  Graham Percival  <gperlist@shaw.ca>
10378
10379         * Documentation/user/lilypond.tely, advanced-notation.itely,
10380         basic-notation.itely, instrument-notation.itely, global.itely,
10381         introduction.itely, tutorial.itely: rearranging, editing,
10382         clean-up.
10383
10384         * mf/GNUmakefile: change a "make -C" to "${MAKE} -C", required
10385         for compiling on FreeBSD.
10386
10387 2005-05-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10388
10389         * lily/pfb.cc (LY_DEFINE): progress indication for opening ttf and
10390         otf files.
10391
10392         * input/mutopia/E.Satie/petite-ouverture-a-danser.ly (lower):
10393         bugfixes.
10394
10395         * VERSION: 2.5.26 released.
10396
10397         * scm/titling.scm (marked-up-headfoot): revert Pedro's patch. 
10398
10399 2005-05-25  Pedro Kroger  <kroeger@pedrokroeger.net>
10400
10401         * scm/titling.scm (marked-up-headfoot): doesn't print pagenumbers
10402         if printpagenumber is false.
10403
10404 2005-05-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10405
10406         * lily/font-config.cc (init_fontconfig): comment out FontConfig
10407         cache warning.
10408
10409         * lily/tie.cc (print): support dotted ties.
10410         
10411 2005-05-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10412
10413         * scm/define-grobs.scm (all-grob-descriptions): switch off
10414         debugging
10415         (all-grob-descriptions): Arpeggio has Y-extent.
10416
10417         * scm/define-music-properties.scm (all-music-properties): document
10418         length-callback and start-callback as "read-only".
10419
10420         * scm/music-functions.scm (unfold-repeats): rewrite. Cannot set
10421         length-callback after creation. 
10422
10423         * scripts/convert-ly.py (conv): unfoldrepeats -> unfoldRepeats,
10424         compressmusic -> compressMusic.
10425
10426         * ly/music-functions-init.ly (oldaddlyrics): idem.
10427
10428         * lily/parser.yy: NewLyricCombineMusic ->
10429         LyricCombineMusic. LyricCombineMusic -> OldLyricCombineMusic.
10430
10431 2005-05-24  Pedro Kroger  <kroeger@pedrokroeger.net>
10432
10433         * ly/Welcome_to_LilyPond.ly: typo.
10434
10435 2005-05-24  Graham Percival  <gperlist@shaw.ca>
10436
10437         * Documentation/user/lilypond.tely: move changing-defaults to be
10438         before global issues.
10439
10440         * Documentation/user/basic-notation.itely: move Transpose section
10441         here from advanced/Other.
10442
10443         * Documentation/user/changing-defaults.itely,
10444         advanced-notation.itely: move Fonts to advanced, edit.
10445
10446 2005-05-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10447
10448         * lily/parser.yy (bare_int): remove rule.  From now on, we require
10449         # before negative integers.
10450
10451 2005-05-23  Graham Percival  <gperlist@shaw.ca>
10452
10453         * ly/property.ly: Update tieDotted to have the same form as slurDotted.
10454
10455         * Documentation/user/lilypond.tely: change Unified index to
10456         LilyPond index.
10457
10458         * Documentation/user/advanced-notation.itely,
10459         instrument-notation.itely: editing.
10460
10461 2005-05-23  Jan Nieuwenhuizen  <janneke@gnu.org>
10462
10463         * scm/lily.scm (lilypond-all): Bugfix: return failed.
10464
10465         * lily/main.cc (setup_paths)[__MINGW32__]: Normalize LILYPONDPREFIX.
10466
10467 2005-05-21  Jan Nieuwenhuizen  <janneke@gnu.org>
10468
10469         * lily/general-scheme.cc (ly:stderr-redirect): Rename from
10470         ly:port-move.  Needs to be stderr-specific on mingw.
10471         Run fixcc.
10472
10473 2005-05-20  Jan Nieuwenhuizen  <janneke@gnu.org>
10474
10475         * lily/general-scheme.cc (ly:port-move): Remove.
10476
10477         * scm/backend-library.scm (postscript->pdf): Remove -dSAFER in
10478         windows.
10479
10480         * lily/main.cc (setup_paths) [ARGV0_RELOCATION]: Reinstate GS_*
10481         variables.  This eliminates the need for a gs.bat wrapper, which
10482         opens a console.
10483
10484         * scripts/lilypond-invoke-editor.scm (running-from-gui?): 
10485         * scm/lily.scm (running-from-gui?): 
10486         * lily/main.cc[MINGW]: Remove isatty inversion, this is an
10487         artifact of not compiling with -mwindows.
10488
10489         * scm/editor.scm: Define PLATFORM.
10490
10491 2005-05-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10492
10493         * scripts/lilypond-book.py (PREAMBLE_LY): add marker, where people
10494         can start to cut & paste lilypond-book fragments.  
10495
10496         * scm/define-music-types.scm (music-descriptions): remove
10497         UntransposableMusic
10498
10499 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10500
10501         * scm/output-ps.scm (glyph-string): remove / before CIDs.
10502
10503 2005-05-20  Graham Percival  <gperlist@shaw.ca>
10504
10505         * Documentation/user/instrument-notation.itely: remove *Engraver.
10506
10507         * Documentation/user/advanced-notation.itely: edit, rearrange.
10508
10509 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10510
10511         * scm/output-ps.scm (glyph-string): take cid? argument. Use
10512         findresource iso. findfont for CID CFF fonts.
10513
10514         * VERSION (PACKAGE_NAME): release 2.5.25
10515
10516         * ly/Welcome_to_LilyPond.ly: add  \version
10517
10518 2005-05-20  Graham Percival  <gperlist@shaw.ca>
10519
10520         * Documentation/user/programming-interface.itely: move
10521         \displayMusic into its own section.
10522
10523         * Documentation/user/basic-notation.itely: finish editing.
10524
10525 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10526
10527         * flower/file-path.cc (find): don't throw away file_name.dir, but
10528         append to it. Fixes \include with directories.
10529
10530         * flower/include/file-path.hh (class File_path): don't derive from
10531         Array<String>.
10532
10533         * flower/include/file-name.hh (class File_name): remove to_str0()
10534
10535         * lily/hara-kiri-engraver.cc (acknowledge_grob): split
10536         Hara_kiri_engraver in separate file.
10537
10538         * lily/slur-configuration.cc (score_encompass): oops, <? to min()
10539         translation went wrong. Fixes vertically translated slurs.
10540
10541 2005-05-19  Graham Percival  <gperlist@shaw.ca>
10542
10543         * Documentation/user/basic-notaton.itely: editing.
10544
10545 2005-05-18  Graham Percival  <gperlist@shaw.ca>
10546
10547         * Documentation/user/macros.itexi, basic-notation.itely:
10548         add @commonprop (commonly used properties) macro.
10549
10550 2005-05-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10551
10552         * ly/Welcome_to_LilyPond.ly: talk about icon, not program.
10553
10554         * scripts/lilypond-book.py (invokes_lilypond): new function
10555         (main): only run fontextract if invokes_lilypond() is true.
10556
10557         * lily/function-documentation.cc (ly_add_function_documentation):
10558         duh, use !=
10559
10560         * Documentation/topdocs/INSTALL.texi (Top): add MacOS command.
10561
10562         * stepmake/aclocal.m4: remove kpathsea warning, change to OPTIONAL.
10563
10564         * scm/lily.scm (running-from-gui?): lowercase Darwin.
10565
10566         * lily/function-documentation.cc (ly_add_function_documentation):
10567         use scm_hash_table_p() for checking.
10568
10569 2005-05-18  Jan Nieuwenhuizen  <janneke@gnu.org>
10570
10571         * Documentation/user/advanced-notation.itely (Text scripts):
10572         Change nonexisting @internalsref{Text markup} to @ref{Text
10573         markup}.  Change @internalsref{Text script} to
10574         @internalsref{TextScript}.
10575
10576         * lily/main.cc (setup_paths): Bugfix: pangorc is not pango.modules.
10577
10578 2005-05-17  Graham Percival  <gperlist@shaw.ca>
10579
10580         * Documentation/user/tutorial.itely, basic-notation.itely,
10581         changing-defaults.itely: remove duplicate cindex entries
10582         that appear on the same page.
10583
10584         * scm/define-grobs.scm: change default padding for TextSpanner.
10585
10586         * Documentation/topdocs/AUTHORS.texi: update email address.
10587
10588         * Documentation/user/global.itely: add info about \include.
10589
10590 2005-05-17  Jan Nieuwenhuizen  <janneke@gnu.org>
10591
10592         * scm/backend-library.scm (postscript->pdf): Remove (useless) .ps
10593         when running-from-gui.
10594
10595         * scm/editor.scm (get-editor): Add platform defaults.
10596
10597         * scm/backend-library.scm (postscript->pdf): Typo.
10598
10599 2005-05-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10600
10601         * scm/lily.scm (running-from-gui?): Darwin never runs from GUI.
10602
10603         * lily/font-config.cc (init_fontconfig): add warning about cache.
10604
10605 2005-05-16  Jan Nieuwenhuizen  <janneke@gnu.org>
10606
10607         * lily/main.cc (setup_paths)[ARGV0_RELOCATION]: Remove GS_*.
10608
10609 2005-05-16  Mats Bengtsson  <mabe@s3.kth.se>
10610
10611         * lily/horizontal-bracket.cc (print): Take care of the direction
10612         property so brackets above the stave point downwards. 
10613
10614         * scm/define-grobs.scm (all-grob-descriptions): Set staff-padding
10615         for HorizontalBracket so it doesn't end up within the stave.
10616
10617 2005-05-16  Jan Nieuwenhuizen  <janneke@gnu.org>
10618
10619         * lily/GNUmakefile (default): Typo.
10620
10621         * scm/lily.scm (PLATFORM): Export.
10622
10623         * scm/framework-ps.scm (write-preamble)[MINGW]: Use
10624         load-font-via-GS, ttftool or fopencookie is broken on windows.
10625         
10626         * scm/backend-library.scm (postscript->pdf)[MINGW]: Do not use
10627         -dSAFER, that is broken on windows.
10628
10629 2005-05-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10630
10631         * lily/GNUmakefile ($(outdir)/FlexLexer.h): conditional dependency
10632         for FlexLexer.h
10633
10634         * scripts/lilypond-invoke-editor.scm: remove stray -
10635
10636 2005-05-15  Jan Nieuwenhuizen  <janneke@gnu.org>
10637
10638         * lily/lily-guile.cc (ly_scm2newstr): Use scm_i_string_length.
10639         Fixes deprecation warning.
10640
10641         * flower/include/string.icc (to_string): Only inline if
10642         -DSTRING_UTILS_INLINED.
10643
10644         * lily/pango-font.cc (pango_item_string_stencil): Normalize file
10645         name.  Remove windows comment.
10646
10647         * scm/editor.scm (slashify): New function.
10648         (get-editor-command): Use it.
10649         (get-command-template): Do not alter editor command if
10650         environment value includes `%(file)s' magic.
10651
10652         * scripts/lilypond-invoke-editor.scm (unquote-uri): New function.
10653         (dissect-uri): Use it.
10654         (unquote-uri): Bugfix.
10655
10656 2005-05-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10657
10658         * scm/framework-ps.scm (write-preamble): add TTF rule.
10659
10660         * Documentation/topdocs/README.texi (Top): remove note about
10661         xdelta.
10662
10663         * Documentation/topdocs/INSTALL.texi (Top): remove Flex
10664         requirement.
10665
10666         * stepmake/aclocal.m4: STEPMAKE_FLEXLEXER_LOCATION: new
10667         function. Figure out where FlexLexer.h lives
10668
10669         * lily/GNUmakefile (OUT_DIST_FILES): dist lexer.cc and FlexLexer.h
10670         
10671 2005-05-14  Jan Nieuwenhuizen  <janneke@gnu.org>
10672
10673         * scripts/lilypond-invoke-editor.scm (dissect-uri): Handle URIs
10674         with Windows root in file name.
10675
10676         * scm/backend-library.scm (ly:system): Only redirect output (using
10677         system and shell, ugh) if /dev/null is writable.
10678
10679         * Documentation/pictures/GNUmakefile [PLATFORM_WINDOWS]: Build
10680         windows icon.
10681
10682         * scm/lily.scm (is-absolute?): New function.  Fixes absolute files
10683         on Mingw.
10684
10685         * scm/output-ps.scm (grob-cause): Use it.  Fixes PDF point and
10686         click.
10687
10688         * flower/file-path.cc (is_dir, is_file): New function.  Actually
10689         use result of stat when available.
10690
10691         * flower/file-path.cc (find): Use it.  Refactor.  Fixes Mingw,
10692         absolute file name and root.
10693
10694         * scm/lily.scm (PLATFORM): On mingw, slashify getcwd.
10695
10696         * scm/editor.scm (get-editor-command): Typo: do not apply editor.
10697
10698         * flower/file-name.cc (slashify): Bugfix, do substitute if no
10699         slashes in file name.
10700
10701 2005-05-13  Jan Nieuwenhuizen  <janneke@gnu.org>
10702
10703         * Documentation/user/preface.itely (Preface): Run
10704         texinfo-all-menus-update.
10705
10706         * scm/editor.scm (get-editor-command): Bugfix: allow full
10707         LYEDITOR setting, partial XEDITOR setting.  With typo fix.
10708
10709         * Documentation/pictures/lilypond-48.xpm: New file.
10710
10711         * flower/file-path.cc (to_string): Bugfix: use PATHSEP.
10712
10713         * ly/Welcome_to_LilyPond.ly: New file.
10714
10715         * lily/main.cc (main): Only identify if we have a terminal.
10716
10717         * scm/backend-library.scm (postscript->png)
10718         (postscript->pdf): Fix file name quoting for GS/MINGW (ie,
10719         non-/bin/sh).
10720
10721 2005-05-13  Heikki Junes  <hjunes@cc.hut.fi>
10722
10723         * Documentation/topdocs/AUTHORS.texi: polish, update.
10724
10725 2005-05-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10726
10727         * Documentation/user/preface.itely (Notes for version 2.6): new
10728         notes for 2.6
10729
10730         * lily/dynamic-engraver.cc (stop_translation_timestep): first set
10731         finished_span_, then call typeset_all(). Fixes spurious "Hairpin
10732         is not fully contained" warnings.
10733
10734         * lily/slur-scoring.cc (get_bound_info): remove warning.
10735
10736         * lily/staff-symbol-engraver.cc (process_music): start initial
10737         spanner in process_music(). This fixes overrides of StaffSymbol
10738         properties.
10739
10740         * scm/framework-pdf.scm (Module): remove.
10741
10742         * Documentation/topdocs/AUTHORS.texi (AUTHORS): clean up, update.
10743
10744         * lily/ambitus-engraver.cc: formatting cleanups.
10745
10746         * mf/feta-solfa.mf (Module): remove.
10747
10748         * ChangeLog: more details about contributions.
10749
10750 2005-05-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10751
10752         * lily/align-interface.cc (align_elements_to_extents): warn if
10753         called too early. Fixes: disappearing-staff-lines.ly
10754
10755         * VERSION (PACKAGE_NAME): release 2.5.24
10756
10757 2005-05-12  Jan Nieuwenhuizen  <janneke@gnu.org>
10758
10759         * stepmake/aclocal.m4: Typo.
10760
10761         * flower/string.cc (substitute): Take two strings or two
10762         characters.  Update callers.
10763
10764 2005-05-11  Jan Nieuwenhuizen  <janneke@gnu.org>
10765
10766         * flower/file-name.cc (File_name): Slashify.
10767
10768         * scm/lily.scm: Use gui-main iso lilypond-main on MINGW.
10769
10770         * scripts/GNUmakefile (SEXECUTABLES): Add lilypond-invoke-editor.
10771
10772         * stepmake/aclocal.m4 (STEPMAKE_WINDOWS): New function.
10773
10774         * configure.in (gui_b): Use it.
10775
10776         * lily/lilypond.rc.in: New file.
10777
10778         * lily/GNUmakefile[PLATFROM_WINDOWS]: Compile it into executable.
10779
10780 2005-05-12  Graham Percival  <gperlist@shaw.ca>
10781
10782         * Documentation/user/advanced-notation.itely: edit of Text
10783         section; clarify text scripts vs. text markup.
10784
10785 2005-05-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10786
10787         * lily/multi-measure-rest-engraver.cc
10788         (Multi_measure_rest_engraver): init bar_seen_ to true. Notice
10789         separation items on start. Fixes mm rests in start of score.
10790
10791         * lily/slur-scoring.cc (move_away_from_staffline): robustness,
10792         don't access StaffSymbol if not there.
10793         Fixes: crash-staff-symbol-engraver.ly.
10794
10795         * lily/instrument-name-engraver.cc (class
10796         Instrument_name_engraver): data member first_. Create
10797         InstrumentName on start. 
10798
10799 2005-05-12  Graham Percival  <gperlist@shaw.ca>
10800
10801         * Documentation/user/instrument-notation.itely: add guitar
10802         position.
10803
10804         * Documentation/user/introduction.itely,
10805         Documentation/user/lilypond.tely,
10806         Documentation/user/tutorial.itely: begin pruning
10807         unused (duplicated) cindex entries and misc cleanup.
10808
10809 2005-05-12  Mats Bengtsson  <mabe@s3.kth.se>
10810
10811         * input/test/volta-chord-names.ly: Bring the explanation up to
10812         date.
10813
10814 2005-05-11  Heikki Junes  <hjunes@cc.hut.fi>
10815
10816         * Documentation/topdocs/{AUTHORS.texi,INSTALL.texi,README.texi}:
10817         Specify `@documentencoding utf-8' for html, ignore warnings.
10818
10819 2005-05-11  Erik Sandberg  <ersa9195@student.uu.se>
10820
10821         * THANKS: Added bughunters.
10822
10823 2005-05-11  Heikki Junes  <hjunes@cc.hut.fi>
10824
10825         * lily/main.cc: update help string for `lilypond -H'.
10826
10827         * po/fi.po: update.
10828         
10829 2005-05-10  Graham Percival  <gperlist@shaw.ca>
10830
10831         * Documentation/user/advanced-notation.itely: minor fixes.
10832
10833 2005-05-10  Jan Nieuwenhuizen  <janneke@gnu.org>
10834
10835         * scm/editor.scm: New module.
10836
10837         * scm/lily.scm (gui-main): Use it.
10838
10839         * scm/framework-gnome.scm (spawn-editor): Use it.
10840
10841         * scripts/lilypond-invoke-editor.scm: Use it in new script.
10842
10843 2005-05-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10844
10845         * scm/framework-ps.scm (load-font-via-GS):  new function.
10846
10847         * lily/pango-font.cc (pango_item_string_stencil): add support for
10848         CID keyed font.
10849
10850         * scm/output-ps.scm (glyph-string): add support for CID keyed font.
10851
10852 2005-05-10  Graham Percival  <gperlist@shaw.ca>
10853
10854         * Documentation/user/basic-notation.itely: add @ref.
10855
10856         * Documentation/user/advanced-notation.itely: add example
10857         of 5/8 beaming.
10858
10859 2005-05-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10860
10861         * scripts/lilypond-pdfpc-helper.py (ly_pc_editor): robustness fixes.
10862
10863         * scm/backend-library.scm (postscript->pdf): Invoke gs instead of
10864         going through ps2pdf wrappers.
10865
10866 2005-05-09  Jürgen Reuter  <reuter@ipd.uka.de>
10867
10868         * Documentation/user/instrument-notation.itely: petrucci note
10869         heads: updated docu
10870
10871         * input/regression/note-head-style.ly: updated regression test;
10872         indentation fixes
10873
10874         * ly/engraver-init.ly: MensuralVoiceContext: use petrucci note
10875         heads as default
10876
10877         * mf/parmesan-heads.mf: minor editing; use musicological names
10878         (rather than optical description) as note head names
10879
10880         * scm/output-lib.scm: complete petrucci heads
10881
10882 2005-05-09  Pal Benko  <benkop@freestart.hu>
10883
10884         * mf/parmesan-heads.mf: add petrucci heads (like neo-mensural
10885         heads, but bigger)
10886
10887 2005-05-09  Jan Nieuwenhuizen  <janneke@gnu.org>
10888
10889         * lily/main.cc (main_with_guile): Remove no files check.
10890
10891         * lily/main.cc (ly:usage): Export to Scheme.
10892
10893         * scm/lily.scm (no-files-handler): New function.
10894
10895         * scm/lily.scm (lilypond-main): Use it.
10896
10897         * configure.in (gui_b): Add mbrtowc checking.
10898         Resurrect [utf8/]wchar.h checking.
10899
10900 2005-05-09  Mats Bengtsson  <mabe@s3.kth.se>
10901
10902         * Documentation/user/advanced-notation.itely (Metronome marks):
10903         Add link to the program reference for MetronomeMark
10904
10905         * Documentation/user/lilypond-book.itely (An example of a
10906         musicological document): Correct the example using psfonts 
10907
10908 2005-05-09  Heikki Junes  <hjunes@cc.hut.fi>
10909
10910         * po/fi.po: update after a lesson how to update entries against
10911         source.
10912         
10913         * po/TODO: document the lesson.
10914
10915 2005-05-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10916
10917         * configure.in (gui_b): remove wcrtomb checking.
10918
10919         * lily/general-scheme.cc (LY_DEFINE): hand-convert utf8 to 32
10920         bits. Patch by Matthias Neeracher. <neeracher@mac.com>
10921
10922 2005-05-09  Mats Bengtsson  <mabe@s3.kth.se>
10923
10924         * scripts/convert-ly.py: In the conversion to version 1.9.0, 
10925         keep Scheme expressions and strings unmodified when doing the
10926         conversion to postfix notation for slurs and beams. Should
10927         hopefully solve most related conversion problems. 
10928
10929         * Documentation/user/lilypond-book.itely : Clarify and correct how
10930         to call dvips with -h psfonts.
10931
10932 2005-05-09  Jan Nieuwenhuizen  <janneke@gnu.org>
10933
10934         * Documentation/user/instrument-notation.itely (Entering lyrics):
10935         Typo.  Fixes build.
10936
10937 2005-05-09  Graham Percival  <gperlist@shaw.ca>
10938
10939         * Documentation/user/lilypond-book.itely: document PSFONTS file.
10940
10941         * Documentation/user/lilypond.tely, lilypond-book.itely,
10942         tutorial.itely: change references to 2.5.x to 2.6.x.
10943
10944         * Documentation/user/instrument-notation.itely: clarified \addlyrics
10945         vs \lyricmode.
10946
10947         * Documentation/user/invoking.itely: remove old info about
10948         lilypond-profile.
10949
10950         * Documentation/topdocs/INSTALL.texi: remove old info about
10951         lilypond-profile, add warning about needing international fonts
10952         to build docs.
10953
10954 2005-05-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10955
10956         * lily/include/grob-info.hh (class Grob_info): make data member
10957         private. Changes throughout.
10958
10959         * input/regression/alignment-order.ly: new file. 
10960
10961         * lily/vertical-align-engraver.cc (acknowledge_grob): read
10962         alignAboveContext and alignBelowContext
10963
10964 2005-05-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10965
10966         * lily/pfb.cc (LY_DEFINE): add cast.
10967
10968         * scm/framework-ps.scm (write-preamble): embed CFFs if file name
10969         matches .otf
10970         (write-preamble): warn about unknown fonts.
10971
10972         * lily/pfb.cc (Module): new function ly:otf->cff
10973
10974         * lily/open-type-font.cc (get_otf_table): use ::get_otf_table
10975         (get_otf_table): new function.
10976
10977 2005-05-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10978
10979         * scm/backend-library.scm (postscript->png): call lilypond-ps2png
10980         iso. ps2png.
10981
10982 2005-05-06  Heikki Junes  <hjunes@cc.hut.fi>
10983
10984         * po/fi.po: apply second round of update.
10985
10986 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10987
10988         * scm/x11-color.scm (make-x11-color-handler): don't use
10989         #\sp. Apparently doesn't work on all platforms. 
10990
10991 2005-05-06  Graham Percival  <gperlist@shaw.ca>
10992
10993         * Documentation/user/advanced-notation.itely, putting.itely,
10994         tutorial.itely, global.itely, introduction.itely: really minor fixes.
10995
10996 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10997
10998         * VERSION (PACKAGE_NAME): release 2.5.23
10999
11000 2005-05-06  Jan Nieuwenhuizen  <janneke@gnu.org>
11001
11002         * Documentation/topdocs/AUTHORS.texi: Remove texinfo @accents,
11003         convert to utf-8.
11004
11005         * THANKS: Add translators for this release, convert to utf-8.
11006
11007         * mf/GNUmakefile (MFTRACE_FLAGS):
11008         * buildscripts/substitute-encoding.py (outdir): Build fix: pass
11009         outdir as option (WAS: hardcoded).
11010
11011 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11012
11013         * lily/staff-symbol-engraver.cc (Staff_symbol_engraver): init
11014         finished_span_
11015
11016         * THANKS: add Hans Forbrich.
11017
11018         * Documentation/topdocs/NEWS.tely (Top): document new feature.
11019
11020         * Documentation/user/basic-notation.itely (Staff symbol): document
11021         start/stop staff. Reference to ossia.ly
11022
11023         * input/test/ossia.ly: new example using stop and startStaff.
11024
11025         * lily/timing-engraver.cc: remove Timing_engraver::initialize(),
11026         in other words, don't create "|" barline at start of the score.
11027         (start_translation_timestep): don't set whichBar for start of score.
11028
11029         * input/regression/staff-halfway.ly: use new functionality.
11030
11031         * lily/staff-symbol-engraver.cc (try_music): take StaffSpanEvents,
11032         start and stop staff based on events.
11033
11034         * scm/define-music-types.scm (music-descriptions): add StaffSpanEvent
11035
11036         * ly/declarations-init.ly (startStaff, stopStaff): new identifiers.
11037
11038 2005-05-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11039
11040         * Documentation/user/programming-interface.itely (How markups work
11041         internally ): remove \encoding reference.
11042
11043 2005-05-04  Mats Bengtsson  <mabe@s3.kth.se>
11044
11045         * scripts/convert-ly.py: Attempt to do a smarter update of 
11046         text markups from versions < 1.9.0 with arbitrary nesting.
11047
11048 2005-05-04  Heikki Junes  <hjunes@cc.hut.fi>
11049
11050         * po/fi.po: convert to utf-8, and update.
11051
11052 2005-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11053
11054         * make/lilypond.suse.spec.in: update from suse 2.4 package.
11055
11056         * lily/*.cc: more <? >? to min/max changes
11057
11058         * lily/include/interpretation-context-handle.hh: rename
11059         Interpretation_context_handle to Context_handle.
11060
11061 2005-05-04  Heikki Junes  <hjunes@cc.hut.fi>
11062
11063         * input/regression/GNUmakefile (local_delete): use `find` together 
11064         with `xargs` to avoid too long argument-lists in cmd line.
11065
11066 2005-05-04  Graham Percival  <gperlist@shaw.ca>
11067
11068         * Documentation/user/introduction.itely: updates "About this manual".
11069
11070         * Documentation/user/advanced-notation.itely,
11071         invoking.itely: minor fixes.
11072
11073 2005-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11074
11075         * COPYING: add font exception. Update FSF address. 
11076
11077         * lily/context-def.cc (path_to_acceptable_context): bugfix, depth
11078         should be taken without child context.
11079
11080         * ly/chord-modifiers-init.ly (blackTriangleMarkup): use it.
11081
11082         * scm/define-markup-commands.scm (triangle): new command, as
11083         robust replacement for unicode Delta/Triangle.
11084
11085 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11086
11087         * ps/music-drawing-routines.ps: add fillp argument.
11088
11089         * lily/lookup.cc (round_filled_polygon): polygon takes filled? argument
11090
11091         * lily/font-config.cc (init_fontconfig): don't add cff/
11092
11093         * VERSION (PACKAGE_NAME): release 2.5.22
11094
11095         * mf/GNUmakefile: remove cff/cff.ps/.map install rules.
11096
11097         * lily/grace-engraver.cc (consider_change_grace_settings): use
11098         is_alias(). Fixes problem with CueVoice grace notes. 
11099
11100         * lily/simultaneous-music-iterator.cc (construct_children): call
11101         Music_iterator::quit() for iterators that start out invalid. This
11102         fixes indefinitely continuing contexts.
11103
11104         * buildscripts/substitute-encoding.py: new file
11105
11106         * Documentation/user/basic-notation.itely (Basic polyphony): fix
11107         missing @end 
11108
11109         * scripts/lilypond-book.py (write_if_updated): print file name.
11110
11111         * Documentation/user/basic-notation.itely (Explicitly
11112         instantiating voices): idem.
11113
11114         * Documentation/user/advanced-notation.itely (Text spanners):
11115         remove stray { } 
11116
11117         * lily/context.cc (default_child_context_name): the default child
11118         is now first in accepts_list_.
11119
11120         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
11121         \defaultchild to all relevant contexts.  This fixes:
11122         drums-pitch.ly.
11123
11124         (Probably also fixes similar problems with ancient
11125         transcriptions getting CueVoices instead of the desired voices.)
11126  
11127         * lily/context-def.cc (get_default_child): new function.
11128         (get_accepted): place default child in front of list.
11129
11130         * lily/parser.yy (FIXME): add DEFAULTCHILD token.
11131
11132         * lily/include/context-def.hh (struct Context_def): add
11133         default_accept_
11134
11135 2005-05-03  Graham Percival  <gperlist@shaw.ca>
11136
11137         * scm/define-grobs.scm: remove "remove-first" line, since
11138         the absent property is set to #f anyway.
11139
11140         * Documentation/user/basic-notation.itely,
11141         advanced-notation.itely, instrument-notation.itely: minor
11142         fixes.
11143
11144         * ly/property-init.ly: add textSpanner{Up,Down,Neutral}.
11145
11146         * Documentation/user/advanced-notation.itely,
11147         changing-defaults.itely: consolidate Text stuff in
11148         advanced notation.
11149
11150         * Documentation/user/global.itely: better docs for \header.
11151
11152         * Documentation/user/putting.itely: new chapter; placeholder
11153         for future expansion.
11154
11155         * Documentation/user/examples.itely: moved "suggestions for
11156         writing LP files" section into putting.itely.
11157
11158         * Documentation/user/lilypond.itely: added new chapter,
11159         fixed the short table of contents.
11160
11161 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11162
11163         * lily/beam-quanting.cc (quanting): robustness fix, don't produce
11164         infinity for unfeasible beams.
11165
11166         * make/lilypond.fedora.spec.in (Group): idem.
11167
11168         * scripts/GNUmakefile (SEXECUTABLES): rename ps2png to lilypond-ps2png
11169
11170         * mf/GNUmakefile (ALL_GEN_FILES): remove .map
11171
11172         * scm/framework-ps.scm (write-preamble): extract CFF from OTF
11173         fonts directly.
11174
11175         * buildscripts/gen-emmentaler-scripts.py (i): idem.
11176
11177         * mf/GNUmakefile: remove all CFF rules.
11178
11179         * scm/framework-ps.scm (ps-embed-cff): reinstate.
11180
11181         * lily/open-type-font-scheme.cc (LY_DEFINE):
11182         new function ly:otf-font-table-data.
11183         (LY_DEFINE): new function otf-font?
11184
11185 2005-05-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11186
11187         * mf/GNUmakefile ($(outdir)/lilypond.map): remove rule.
11188         ($(outdir)/Fontmap.lily): idem.
11189
11190         * buildscripts/gen-emmentaler-scripts.py (i): load fetaXX encoding
11191         for PFAEmmentaler-XXX.pfa. 
11192
11193         * Documentation/user/music-glossary.tely (accidental): NL
11194         translation of accidental.
11195
11196 2005-05-02  Jan Nieuwenhuizen  <janneke@gnu.org>
11197
11198         * flower/include/international.hh: Bugfix: include "string.hh".
11199
11200         * lily/include/mingw-compatibility.hh: New file.
11201
11202         * flower/include/libc-extension.hh (memrev): Rename from strrev.
11203
11204         * configure.in: Search for mingw wcrtomb library.
11205
11206 2005-05-02  Mats Bengtsson  <mabe@s3.kth.se>
11207
11208         * scripts/convert-ly.py: Bug fix
11209
11210         * Documentation/user/changing-defaults.itely (Common tweaks):
11211         Added example where the context has to be specified explicitly
11212         (MetronomeMark). 
11213
11214 2005-05-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11215
11216         * scripts/lilypond-book.py (ly_options): set timing to #f for
11217         notime option.
11218
11219         * scripts/convert-ly.py (conv): typo.
11220
11221         * flower/*.cc: remove <? and >?
11222         
11223         * lily/*.cc: remove <? and >?
11224
11225         * lily/tweak-registration.cc (insert_tweak_from_file): Make sure
11226         that 0x0 isn't passed into scm_cons(). Fixes crash with tweak
11227         editor.
11228
11229 2005-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11230
11231         * lily/part-combine-engraver.cc: add space to variable list.
11232
11233 2005-04-30  Graham Percival  <gperlist@shaw.ca>
11234
11235         * scm/define-grobs.scm: changed RemoveEmptyVerticalGroup's
11236         remove-first to false (matches docs)
11237
11238         * Documentation/user/advanced-notation.itely: corrected docs
11239         concerning remove-first.
11240
11241 2005-04-29  Mats Bengtsson  <mabe@s3.kth.se>
11242
11243         * lily/part-combine-engraver.cc: make sure that the relevant
11244         properties are included in the documentation.
11245
11246 2005-04-28  Graham Percival  <gperlist@shaw.ca>
11247
11248         * Documentation/user/lilypond-book.itely: Bernard's docs
11249         for \betweenLilyPondSystem.
11250
11251 2005-04-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11252
11253         * Documentation/topdocs/INSTALL.texi (Top): remove TeX outdated
11254         remarks.
11255
11256 2005-04-28  Pal Benko  <benkop@freestart.hu>
11257
11258         * lily/mensural-ligature.cc (brew_flexa): apply thickness property
11259         only on vertical lines of flexa shape, and use a constant
11260         thickness value for horizontal lines (patch slightly modified by
11261         Jürgen Reuter)
11262
11263         * lily/include/mensural-ligature.hh: make 2 comments clearer
11264
11265 2005-04-28  Jürgen Reuter  <reuter@ipd.uka.de>
11266
11267         * lily/vaticana-ligature-engraver.cc (need_extra_space): renamed
11268         to need_extra_horizontal_space; bugfix: use class scope to avoid
11269         global namespace pollution
11270
11271         * Documentation/user/instrument-notation.itely (ligatures): added
11272         comment on possible future syntax change and how to work around
11273
11274         * lily/vaticana-ligature-engraver.cc, mf/parmesan-heads.mf
11275         (epiphonus, cephalicus): fine-tune shape of plica head for narrow
11276         intervals (fixes agnus dei example)
11277
11278         * Documentation/user/instrument-notation.itely (white mensural
11279         ligatures): selected a more illustrative example
11280
11281 2005-04-28  Heikki Junes <hjunes@cc.hut.fi>
11282
11283         * Documentation/index.html.in: specify utf-8 charset in meta content.
11284
11285 2005-04-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11286
11287         * python/lilylib.py (make_ps_images): bugfixes; GS can produce
11288         empty 2nd page for single page.
11289
11290         * scm/lily.scm: remove p&c definitions.
11291
11292         * po/zh_TW.po (Module): new translation.
11293
11294         * lily/lily-guile.cc (ly_chain_assoc): remove.
11295
11296         * lily/general-scheme.cc (LY_DEFINE): export ly:chain_assoc_get
11297         (LY_DEFINE): recurse, iso. calling ly_chain_assoc.
11298
11299 2005-04-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11300
11301         * lily/beaming-info.cc: remove infinity_i
11302
11303         * scripts/abc2ly.py (out_filename): fix thinko with \version.
11304
11305 2005-04-26  Graham Percival  <gperlist@shaw.ca>
11306
11307         * Documentation/user/basic-notation.itely,
11308         instrument-notation.itely, advanced-notation.itely,
11309         changing-defaults.itely: minor fixes.  Added docs
11310         for colors to advanced-notation.itely.
11311
11312         * Documentation/user/advanced-notation.itely: fixed compile
11313         problem and added Bernard's x11-color doc patch.
11314
11315 2005-04-25  Jan Nieuwenhuizen  <janneke@gnu.org>
11316
11317         * scm/output-ps.scm (grob-cause): Yet another fix, hope it's
11318         alright this time round.
11319
11320 2005-04-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11321
11322         * Documentation/topdocs/INSTALL.texi (Top): idem.
11323
11324         * Documentation/topdocs/README.texi (Top): remove clean-fonts refs.
11325
11326         * VERSION (MAJOR_VERSION): release 2.5.21
11327
11328         * scm/output-ps.scm (grob-cause): bugfix.
11329
11330 2005-04-25  Jan Nieuwenhuizen  <janneke@gnu.org>
11331
11332         * cygwin/*: Update.
11333
11334         * cygwin/GNUmakefile (INSTALLATION_OUT_SUFFIXES): Remove profile
11335         stuff.
11336
11337         * scm/output-ps.scm (grob-cause): Bugfix.
11338
11339         * scm/lily.scm (ly:load): Remove x11-color.
11340
11341         * stepmake/aclocal.m4 (STEPMAKE_GET_EXECUTABLE): Bugfix: do not
11342         quote executable, fixes getting version from program --with
11343         --options.
11344         (STEPMAKE_KPATHSEA): Bugfix for Cygwin cross building: use
11345         $ac_exeect.
11346
11347         * Documentation/user/GNUmakefile: Only build music-glossary with
11348         rendered lilypond snippets during web.
11349
11350 2005-04-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11351
11352         * po/de.po: update.
11353
11354         * lily/GNUmakefile (OUT_DIST_FILES): don't dist lexer.cc
11355
11356 2005-04-22  Laura Conrad <lconrad@laymusic.org>
11357  
11358         * scripts/abc2ly:
11359         second title line append with punctuation dash character;
11360         encode abc2ly python strings in utf-8
11361        
11362 2005-04-21  Laura Conrad <lconrad@laymusic.org>
11363
11364         * scripts/abc2ly fix chords (again)
11365  
11366 2005-04-22  Bernard Hurley  <bernard@fong-hurley.org.uk>
11367
11368         * scm/x11-color.scm: new file
11369         All x11 color names can be accessed with:
11370         #(x11-color 'ColorName),
11371         #(x11-color "ColorName") or:
11372         #(x11-color "color name")
11373         If the x11 color name is not recognised then it defaults
11374         to black
11375
11376         * scm/lily.scm: amended to call scm/x11-color.scm
11377
11378 2005-04-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11379
11380         * Documentation/user/invoking.itely (Reporting bugs): comment out
11381         reference to online PNG bug repository.
11382
11383 2005-04-21  Jan Nieuwenhuizen  <janneke@gnu.org>
11384
11385         * lily/translator-scheme.cc (ly:translator-property): Remove.
11386         Update callers.
11387
11388         * lily/context-scheme.cc (ly:context-now): Move from translator.
11389         Update callers.
11390
11391 2005-04-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11392
11393         * input/regression/grid-lines.ly (skips): refine example.
11394
11395         * scm/define-context-properties.scm
11396         (all-user-translation-properties): doc autoBeamCheck
11397
11398         * input/regression/grid-lines.ly (Module): new file.
11399
11400         * lily/grid-point-engraver.cc (Module): new file.
11401
11402         * lily/grid-line.cc (Module): new file.
11403
11404         * lily/grid-line-span-engraver.cc (Module): new file.
11405
11406         * lily/grid-line-interface.cc (Module): new file.
11407
11408 2005-04-21  Jan Nieuwenhuizen  <janneke@gnu.org>
11409
11410         * scm/auto-beam.scm (revert-property-setting): Bugfixes: add
11411         missing parameter, actualy cdr through list.  Actually return a
11412         list with ENTRY removed (was '()).
11413
11414         * scripts/convert-ly.py: Update.  Print warning if file cannot be
11415         opened.
11416         (do_conversion): Fix printing of continuation comma.
11417
11418         * Documentation/user/advanced-notation.itely (Beam formatting):
11419         Remove refbugs about compound time and mixed duration.
11420
11421         * scm/auto-beam.scm (default-auto-beam-settings): Write out all
11422         modulo moments explicitely.
11423
11424         * lily/moment.cc (operator %): New function.
11425
11426         * lily/moment-scheme.cc (ly:mod-moment): Wrap it.
11427
11428         * lily/translator-scheme.cc (ly:translator-now,
11429         ly:translator-property): New function.
11430
11431         * scm/auto-beam.scm (default-auto-beam-check): New function.
11432
11433         * lily/auto-beam-engraver.cc (test_moment): Use it.
11434
11435         * flower/rational.cc (operator %): Bugfix.
11436
11437 2005-04-21  Erik Sandberg  <ersa9195@student.uu.se>
11438
11439         * scripts/abc2ly: Bugfix
11440
11441 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11442
11443         * python/fontextract.py (write_extracted_fonts): bugfix, too many
11444         %'s on EndFont comment.
11445
11446         * lily/ledger-line-spanner.cc: some more words of explanation.
11447
11448 2005-04-20  John Williams <williams@tni.com>  
11449         
11450         * scripts/lilypond-book.py: htmlquote bugfix.
11451         Allow snippets to be given distinct filenames.
11452         Allow the default alt text to be overridden.
11453
11454 2005-04-20  Erik Sandberg  <ersa9195@student.uu.se>
11455
11456         * ly/performer-init.ly: Bugfix
11457
11458         * THANKS: Added bughunters.
11459
11460 2005-04-20  Jan Nieuwenhuizen  <janneke@gnu.org>
11461
11462         * SConstruct (test_lib): Bump mftrace requirement to 1.1.9.
11463
11464         * lily/auto-beam-engraver.cc (test_moment): Test exact measure
11465         position (was: use modulo measure length).
11466
11467         * configure.in (no gui_b): Remove optional gtk+ requirement.
11468
11469 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11470
11471         * Documentation/user/basic-notation.itely (Pitches): add
11472         LedgerLineSpanner.
11473
11474         * lily/dynamic-engraver.cc (process_music): set right bound to
11475         script if present. Else, do not set.
11476         (acknowledge_grob): only set right bound of finished spanner to
11477         note column if no other bound is set.
11478
11479         * python/lilylib.py (make_ps_images): switch back to png16m.
11480         
11481 2005-04-19  Jan Nieuwenhuizen  <janneke@gnu.org>
11482
11483         * scripts/lilypond-book.py (write_if_updated): Bugfix for not
11484         writing up to date file.  Add dvips usage suggestion.
11485
11486         * scripts/convert-ly.py: Fix error message.
11487         Print usage if no files on command line.
11488         (usage): Add example usage.
11489
11490         * input/test/compound-time.ly: New file.
11491
11492         * input/test/circle.ly: New file.
11493
11494         * Documentation/topdocs/NEWS.tely: Use them.
11495
11496         * input/test/boxed-stencil.ly: Remove \score.
11497
11498         * buildscripts/mf-to-table.py (base): Add .log dependency.
11499
11500         * mf/GNUmakefile: Add PFAemmentaler and PFAaybabtu dependencies on
11501         pfa's.  Add .log dependency
11502
11503         * scm/define-markup-commands.scm (lower): New command.
11504
11505         * elisp/lilypond-mode.el (LilyPond-pdf-command): New command,
11506         make it default.
11507
11508 2005-04-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11509
11510         * lily/dynamic-engraver.cc (acknowledge_grob): add note-column
11511         also to finished cresc as right bound. This fixes:
11512         skip-string-decresc.ly
11513
11514         * lily/slur-scoring.cc (get_bound_info): robustness: substitute
11515         relative_coordinate if extent is empty.
11516
11517         * lily/stem.cc (width_callback): determine correct extent if flag
11518         is not there. This fixes slur-no-flag.ly
11519
11520         * lily/grace-engraver.cc (consider_change_grace_settings): new
11521         function.
11522         (initialize): also consider_change_grace_settings() on
11523         initialization. Fixes large grace notes at start of score.
11524
11525         * lily/break-align-interface.cc (do_alignment): don't translate if
11526         total_extent is empty.
11527
11528         * buildscripts/lilypond-{login,profile}.sh (Module): remove file.
11529
11530 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11531
11532         * scm/output-ps.scm (grob-cause): don't add cwd if path starts
11533         with slash.
11534
11535 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
11536
11537         * stepmake/aclocal.m4: Remove tfm_path.
11538
11539 2005-04-18  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11540
11541         * scm/music-functions.scm (markup-expression->make-markup): fix
11542         bug with cons arguments of markup commands.
11543         (music->make-music): fix music expression property list building
11544
11545 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
11546
11547         * aclocal.m4: Massage package names.
11548
11549         * SCons updates.
11550
11551 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11552
11553         * VERSION (PACKAGE_NAME): release 2.5.20
11554
11555         * lily/stem.cc (calc_stem_info): add minimum Y extent of
11556         stem-tremolo.  Fixes: bugs/tremolo-stem-length-beamed
11557
11558         * lily/percent-repeat-engraver.cc (try_music): add measure before
11559         next_moment to future processing moment. Fixes:
11560         percent-repeat-mm-rest.ly
11561         (process_music): don't add moment for 2nd time.
11562
11563         * input/regression/repeat-percent.ly: add mmrests as extra test.
11564
11565         * lily/axis-group-engraver.cc (acknowledge_grob): read
11566         keepAliveInterfaces to decide what to kill.
11567
11568         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): add
11569         percent-repeat-interface to keepAliveInterfaces. This fixes
11570         percent-repeat-harakiri.
11571
11572 2005-04-17  Jan Nieuwenhuizen  <janneke@gnu.org>
11573
11574         * SCons updates.
11575
11576 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11577
11578         * config.make.in (TTFTOOL_ENDIAN): rm TFM_PATH
11579
11580         * aclocal.m4: remove --enable-tfm-path configure option
11581
11582         * input/test/ancient-font.ly (lowerStaff): clef name errors.
11583
11584         * scm/backend-library.scm (postscript->png): newline after
11585         finishing command.
11586
11587         * lily/paper-score-scheme.cc (LY_DEFINE): new file.
11588         (LY_DEFINE): ly:paper-score-paper-systems: new function 
11589
11590         * lily/score-scheme.cc (LY_DEFINE): require music argument. 
11591
11592         * lily/score.cc (default_rendering): use Music_output too.
11593
11594         * input/test/chord-names-languages.ly (Module): rename file.
11595
11596         * lily/text-spanner.cc: add bound-padding.
11597
11598         * lily/paper-book.cc (systems): accept Paper_score
11599         iso. Paper_system vector. 
11600
11601         * input/regression/line-arrows.ly: new file.
11602
11603         * lily/paper-score.cc (process): run get_paper_systems() only once.
11604
11605         * lily/line-spanner.cc (line_stencil): add arrows.
11606
11607 2005-04-18  Jonatan Liljedahl  <lijon@kymatica.com>
11608
11609         * lily/line-interface.cc (make_arrow): new function. 
11610         (arrows): idem.
11611
11612 2005-04-18  Mathieu Giraud  <magiraud@free.fr>
11613
11614         * input/test/chord-names-german.ly: update for italian/french
11615         chords.
11616         
11617         * Documentation/user/instrument-notation.itely (Printing chord
11618         names): update.
11619
11620 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11621
11622         * lily/include/paper-score.hh (class Paper_score): remove unused
11623         prototypes.
11624
11625         * lily/book.cc (process): add -COUNT to midi output.
11626
11627         * lily/score.cc (book_rendering): remove outname argument
11628         (book_rendering): return list of Music_outputs. 
11629
11630         * lily/global-context-scheme.cc (LY_DEFINE): remove outname argument.
11631
11632         * lily/book.cc (process): loop over Music_outputs returned from
11633         Score::book_rendering().
11634
11635         * lily/*.cc (width_callback): remove spurious "unused" warnings
11636         for assert (axis==[XY]_AXIS); 
11637
11638         * lily/include/music-output.hh (class Music_output): smobify class.
11639
11640         * lily/include/paper-score.hh (class Paper_score): make members
11641         private.
11642
11643         * lily/performance.cc (process): return #f iso. #<undefined>. This
11644         prevents #<undefined> leaking into GUILE-userspace.
11645
11646 2005-04-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11647
11648         * config.hh.in: remove HAVE_PANGO_FC_FONT_MAP_ADD_DECODER_FIND_FUNC.
11649
11650 2005-04-17  Mathieu Giraud  <magiraud@free.fr>
11651
11652         * scm/chord-name.scm : support for italian and french
11653         chords names.
11654
11655         * scm/chord-ignatzek-names.scm (ignatzek-chord-names): add
11656         a space defined by chordPrefixSpacer when the root name is
11657         direclty followed by a prefix.
11658
11659         * ly/engraver-init.ly : chordPrefixSpacer       
11660         * scm/define-context-properties.scm : chordPrefixSpacer
11661         * ly/property-init.ly : italianChords, frenchChords 
11662
11663 2005-04-17  Jan Nieuwenhuizen  <janneke@gnu.org>
11664
11665         * mf/feta-din.mf: Remove.
11666
11667         * mf/GNUmakefile (fontdir): Bugfix.
11668
11669         * mf/SConstruct: Some updates.
11670
11671         * SConstruct: Require pkg-config.
11672         (test_program): Bugfix for double digit version compares, use
11673         integer (not string-) compare.
11674         Optionally require gs 8.14.
11675
11676         * stepmake/aclocal.m4 (STEPMAKE_PANGO_FT2): Define HAVE_PANGO16 too.
11677
11678         * lily/*: s/ifdef HAVE_*/if have/.
11679
11680         * SConstruct (test_lib): New function.  Update pkg-config and some
11681         other requirements.
11682
11683         * configure.in: Require pkg-config.  Enforce REQUIRE and version for
11684         freetype, pangof2t.
11685
11686 2005-04-16  Jan Nieuwenhuizen  <janneke@gnu.org>
11687
11688         * po/lilypond.pot, ...: Update using bison-CVS.
11689
11690         * python/lilylib.py (make_ps_images): Fixo.
11691
11692 2005-04-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11693
11694         * python/lilylib.py (make_ps_images): typo.
11695
11696         * configure.in (gui_b): make bison optional.
11697
11698         * lily/GNUmakefile (OUT_DIST_FILES): dist parser and lexer.
11699
11700 2005-04-16  Bernard Hurley  <bernard@fong-hurley.org.uk>
11701
11702         * framework-eps.scm: code added so that a macro \betweenLilyPondSystem
11703         with one parameter can be defined in a LaTeX file when processed
11704         by lilypond-book this will be evaluated between the systems of
11705         a multi-system score. The parameter is the number of systems processed.
11706
11707 2005-04-16  Jan Nieuwenhuizen  <janneke@gnu.org>
11708
11709         * python/lilylib.py (make_ps_images): Escape newline.
11710
11711         * Documentation/user/music-glossary.tely: Run
11712         texinfo-all-menus-update.
11713
11714 2005-04-14  Jan Nieuwenhuizen  <janneke@gnu.org>
11715
11716         * scm/lily-library.scm (old-relative-not-used-message)
11717         (version-not-seen-message): Add input-file-name-location to message.
11718
11719         * lily/parser.yy (lilypond): Add token aliases.
11720
11721         * Documentation/user/music-glossary.tely (accidental): Fixes.  Do
11722         not confuse with alteration.
11723         (alteration): Add.
11724
11725 2005-04-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11726
11727         * python/lilylib.py (make_ps_images): use -dEPSCrop
11728
11729         * VERSION (PACKAGE_NAME): release 2.5.19 
11730
11731         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
11732         only put xrefs in info documentation.
11733
11734         * make/ly-rules.make ($(outdir)/%.html.omf): transplant .dvi ->
11735         .pdf rule to tex-rules.make.
11736
11737         * scm/framework-eps.scm (dump-stencils-as-EPSes): remove comments
11738         from -systems.* output.
11739
11740         * stepmake/stepmake/tex-rules.make ($(outdir)/%.pdf): make PDF
11741         directly, remove -$(PAGESIZE) target.
11742
11743         * input/test/embedded-postscript.ly: update.
11744
11745 2005-04-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11746
11747         * make/lysdoc-targets.make (local-WWW): remove ps.gz target.
11748
11749         * Documentation/user/changing-defaults.itely (Font selection):
11750         document font-name.
11751
11752         * input/regression/font-name.ly: show Pango fonts for
11753         font-name. Update example. 
11754
11755         * lily/pango-select.cc (properties_to_pango_description): don't
11756         convert symbol font-size to number, but use to lookup.
11757
11758         * python/fontextract.py (write_extracted_fonts): add VMusage 0.
11759
11760         * scm/framework-ps.scm (write-preamble): use (NAME . CONTENTS) and
11761         (NAME . FILE-NAME) tuples for font descriptions. 
11762         (write-preamble): display BeginFont DSC comments.
11763
11764         * python/fontextract.py (write_extracted_fonts): new file. Extract
11765         font resources from a PS file.
11766
11767         * scripts/lilypond-book.py (option_definitions): --psfonts option.
11768         (Compile_error.process_include): do_file returns chunks.
11769
11770         * make/ly-vars.make (DVIPS_FLAGS): don't load .map file.
11771
11772         * make/lysdoc-targets.make: .texi is .PRECIOUS
11773
11774         * scripts/lilypond-book.py (write_if_updated): new function.
11775
11776 2005-04-13  Jan Nieuwenhuizen  <janneke@gnu.org>
11777
11778         * scm/framework-eps.scm (dump-stencils-as-EPSes): Massage messages.
11779
11780 2005-04-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11781
11782         * scm/framework-eps.scm (dump-stencils-as-EPSes): no massages.
11783
11784         * input/regression/markup-syntax.ly: remove \score.
11785
11786         * scm/define-markup-commands.scm (draw-circle): add fill argument
11787
11788         * scm/stencil.scm (make-circle-stencil): add fill argument
11789
11790         * ps/music-drawing-routines.ps: add fill argument.
11791
11792         * ly/performer-init.ly: add CueVoice to MIDI too.
11793
11794         * ps/music-drawing-routines.ps: new routine BeginEPSF /
11795         EndEPSF.
11796
11797         * input/regression/markup-eps.ly: new file.
11798
11799         * scm/framework-ps.scm (write-preamble): change order: vars should
11800         be inited before procedures.
11801
11802         * scm/output-ps.scm (glyph-string): break lines. 255 chars is max
11803         for EPS files.
11804
11805         * scm/define-markup-commands.scm (epsfile): add epsfile command.
11806
11807 2005-04-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11808
11809         * configure.in (gui_b): add check for ghostscript 8.15
11810
11811 2005-04-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11812
11813         * lily/hairpin.cc (after_line_breaking): suicide the hairpinlet at
11814         start of line. Fixes cresc-after-newline.ly
11815
11816         * lily/source-file.cc (file_line_column_string): use get_column().
11817
11818 2005-04-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11819
11820         * lily/source-file.cc (get_column): utf-8 support for column numbers.
11821
11822 2005-04-12  Jan Nieuwenhuizen  <janneke@gnu.org>
11823
11824         * lily/*: use message () iso progress_indication () for messages.
11825         Revise/uniformise user messages.
11826
11827         * flower/warn.cc (progress_indication): New function.
11828         (message): Use it.  Fixes newline problems.
11829
11830         * config.make.in (webdir): Sort out install dirs.
11831
11832         * stepmake/stepmake/generic-targets.make (final-install): Bugfix.
11833
11834         * python/lilylib.py (command_name): Bugfix.
11835         (make_ps_images):
11836
11837 2005-04-11  Pedro Kroger  <kroeger@pedrokroeger.net>
11838
11839         * lily/main.cc: --help says what types of backends are availabe
11840
11841 2005-04-11  Jan Nieuwenhuizen  <janneke@gnu.org>
11842
11843         Fix ./VERSION dependency, and without need to reconfigure.
11844
11845         * lily/main.cc (setup_paths): Update.
11846
11847         * stepmake/bin/make-version.py (defs): Add TOPLEVEL_VERSION define..
11848
11849         * config.hh.in (LILYPOND_DATADIR): Remove TOPLEVEL_VERSION.
11850
11851         * scripts/convert-ly.py (\markup): Fix too simplistic regexps.
11852         Add \line for some simplistic cases.
11853
11854         * lily/GNUmakefile (main.o): Add missing dependency on version.hh.
11855
11856 2005-04-10  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11857
11858         * elisp/lilypond-mode.el (LilyPond-lilypond-command): command used
11859         to compile LY files (useful for adding eg. "-I" args)
11860         (LilyPond-command-alist): use `LilyPond-lilypond-command'. Add a
11861         2Gnome command for gnome backend.
11862         (LilyPond-command-formatgnome): call the 2Gnome command. key
11863         binding: C-c C-g
11864
11865 2005-04-10  Jan Nieuwenhuizen  <janneke@gnu.org>
11866
11867         * Documentation/user/GNUmakefile (lilypond/index.html): Bugfix:
11868         depend on all PNG images.
11869
11870 2005-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
11871
11872         * GNUmakefile.in: Bugfix: also link .map files.
11873
11874 2005-04-09  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11875
11876         * scm/music-functions.scm (music->make-music): generate 
11877         a (make-music ...) sexpr from a music expression.
11878         (display-scheme-music): use guile pretty printer to display the
11879         make-music sexpr.
11880
11881 2005-04-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11882
11883         * ly/engraver-init.ly: reindent.
11884         Add CueVoice.
11885
11886         * scm/music-functions.scm (music-pretty-string): handle moments
11887         too.
11888         (music-pretty-string): only print non-empty lists.
11889         (cue-substitute): create CueVoice context, which has smaller type.
11890
11891         * lily/moment-scheme.cc (LY_DEFINE): new methods
11892         ly:moment-grace-{numerator,denominator}
11893
11894         * lily/context-handle.cc: remove quit() method. 
11895
11896         * lily/font-config.cc (init_fontconfig): be verbose about font path.
11897         (init_fontconfig): success is 0, not !0
11898
11899 2005-04-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11900
11901         * mf/feta-nummer-code.mf (code): add plus glyph.
11902
11903         * lily/tie.cc (print): idem.
11904
11905         * lily/slur.cc (print): don't use thickness property for
11906         slur shape-thickness.
11907
11908         * lily/stencil-scheme.cc (LY_DEFINE): don't reverse the order
11909         while adding stencils.
11910
11911         * scm/define-markup-commands.scm (with-color): with-color markup
11912         command.
11913         (whiteout): new markup command 
11914         (filled-box): new markup command
11915
11916 2005-04-07  Jan Nieuwenhuizen  <janneke@gnu.org>
11917
11918         * Documentation/topdocs/NEWS.tely (Top): Make tex-able.  Handy
11919         test for PDF docs.
11920
11921         * mf/GNUmakefile (lilypond.map): Add PFAEmmentaler,
11922         PFAAybabtu-Regular.  Fixes feta font in PDFs.
11923         
11924         Notes for tetex-3.0 make web:
11925            psclean.map: s/uhv8a/uhvr8a/
11926            config.ps add:
11927                 p +psfonts_t1.map
11928                 p +psclean.map
11929                 p +typeface.map
11930
11931 2005-04-06  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11932
11933         * scm/music-functions.scm (music-pretty-string): fix bug with
11934         string argument.
11935
11936 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
11937
11938         * stepmake/bin/add-html-footer.py (i18n): Bugfix.
11939
11940 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11941
11942         * scripts/lilypond-book.py (Lilypond_snippet.__init__): 
11943         only process options if they're there.
11944         (write_file_map): add version-seen? to snippet-map.ly
11945
11946 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
11947
11948         * scripts/lilypond-book.py (split_options): Bugfix.  Small code
11949         formatting cleanups.
11950
11951         * mf/GNUmakefile: Rewrite $addprefix, $addsuffix using % short-forms.
11952         Add PFAaybabtu.pfa dependency on aybabtu.subfonts.
11953
11954 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11955
11956         * scm/framework-ps.scm (ps-font-command): don't hash, just use
11957         name directly.
11958
11959         * lily/main.cc (setup_paths): either add mf/out to search path or 
11960         fonts/{otf,type1,etc}
11961         
11962         * lily/font-config.cc (init_fontconfig): either add mf/out to
11963         FontConfig or fonts/{otf,type1,etc}
11964
11965         * GNUmakefile.in: don't put mf/ link in share/ dir.
11966
11967         * lily/staff-spacing.cc: move same-direction-correction to
11968         note-spacing-interface
11969
11970         * scm/lily.scm (lilypond-main): use variable argument count for
11971         exception handler.
11972
11973         * lily/font-config.cc (init_fontconfig): add operator pacification
11974         message.
11975
11976         * mf/aybabtu.pe.in (i): generate PFAAybabtu.pfa
11977
11978         * buildscripts/gen-emmentaler-scripts.py (i): generate
11979         PFAEmmentaler as well.
11980
11981         * scm/framework-ps.scm (munge-lily-font-name): new function
11982         (write-preamble): hack: insert PFA equivalent of CFF into
11983         .PS. This makes LilyPond output printable on normal PS printers
11984         again.
11985
11986         * buildscripts/gen-emmentaler-scripts.py (i): generate
11987         PFAEmmentaler.pfa aswell.
11988
11989 2005-04-06  John Williams <williams@tni.com>  
11990         
11991         * scripts/lilypond-book.py: refactor the compose_ly procedure.
11992         
11993 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11994
11995         * scm/page-layout.scm (default-page-make-stencil): always combine
11996         the header stencil, even if empty. This prevents the body text to
11997         reach up to the margins.
11998
11999         * po/rw.po (Module): new file, for Kinyarwanda.
12000
12001         * input/test/spacing-optical.ly (Module): new file.
12002
12003         * lily/staff-spacing.cc: add same-direction-correction
12004
12005 2005-04-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12006
12007         * Documentation/user/introduction.itely (Engraving): Comment-out
12008         non-existent file.
12009
12010 2005-04-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12011
12012         * scm/define-grob-properties.scm (all-user-grob-properties): add
12013         same-direction-correction
12014
12015         * VERSION: release 2.5.18
12016
12017 2005-04-05  Jan Nieuwenhuizen  <janneke@gnu.org>
12018
12019         * lily/grob.cc (mark_smob): Check pscore->layout_ before
12020         dereferencing.  Fixes make web.
12021
12022         * lily/midi-stream.cc: Handle unwritable midi file.  Include
12023         errno.h.
12024
12025         * Documentation/user/: Fix links.
12026
12027 2005-04-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12028
12029         * lily/text-interface.cc (Module): rename from text-item.cc
12030
12031         * input/regression/apply-output.ly (texidoc): function naming fix.
12032
12033         * lily/time-signature-performer.cc (derived_mark): new function.
12034
12035         * lily/lily-parser-scheme.cc:  print mapped file name for progress
12036
12037         * scripts/lilypond-book.py (find_linestarts): new function.
12038         (find_toplevel_snippets): keep track of line numbers.
12039
12040         * lily/key-performer.cc (try_music): remove FIXME warning, gobble
12041         all key changes.
12042
12043         * ly/declarations-init.ly (partCombineListener): use
12044         ignoreBarChecks. Fixes: warn-partcombine-barcheck.ly
12045
12046         * lily/bar-check-iterator.cc (process): ignoreBarChecks property.
12047
12048 2005-04-04  Jan Nieuwenhuizen  <janneke@gnu.org>
12049
12050         * lily/text-item.cc: Fix link.
12051
12052         * Documentation/user/changing-defaults.itely (Changing defaults):
12053         Fix programs reference links.
12054
12055         * Documentation/user/music-glossary.tely: Convert to utf-8.
12056
12057 2005-04-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12058
12059         * make/lilypond-vars.make: remove TEXMF from variables.
12060         remove DEB_BUILD pk font variables.
12061         remove GUILE_LOAD_PATH
12062         remove TeX memory vars.
12063
12064 2005-04-04  Werner Lemberg  <wl@gnu.org>
12065
12066         * lilypond/scm-option.cc (ly_option_usage): Add final newline.
12067
12068 2005-04-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12069
12070         * ps/lilyponddefs.ps: remove reencode-font
12071
12072         * lily/simple-spacer.cc (add_columns): also compare
12073         directly. Column rank doesn't distinguish between broken and
12074         unbroken columns. This fixes large spaces before time sig changes.
12075
12076         * Documentation/user/point-and-click.itely: document ly:set-option.
12077
12078         * lily/grob.cc (get_uncached_stencil): only set grob-cause if
12079         point_and_click_global is set.
12080
12081         * lily/scm-option.cc (LY_DEFINE): add point-and-click
12082         ly:set-option argument.
12083
12084 2005-04-03  Jan Nieuwenhuizen  <janneke@gnu.org>
12085
12086         * GNUmakefile.in: Include symlinks in webball.
12087
12088         * Documentation/user/GNUmakefile (source-links): Add symlinks to
12089         source dir for split and non-split manuals.
12090
12091         * Documentation/user/*y: Fix @uref/@inputfile links for
12092         split/non-split HTML documents.
12093
12094         * Documentation/user/GNUmakefile (local-WWW): Do not generate
12095         .ps.gz.
12096         
12097 2005-04-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12098
12099         * GNUmakefile.in: Add newline.
12100
12101 2005-04-01  Erlend Aasland  <erlenda@gmail.com>
12102
12103         * tex/lilyponddefs.tex: use color instead of xcolor
12104         * scm/output-tex.scm: minor editing
12105
12106 2005-04-02  Nicolas Sceaux  <nicolas.sceaux@free.fr>
12107
12108         * scm/music-functions.scm (display-scheme-music): pretty printer
12109         for music expressions.
12110
12111 2005-04-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12112
12113         * buildscripts/install-info-html.sh (index_file): Fix link.
12114
12115 2005-04-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12116
12117         * input/test/dynamic-extra.ly (piuf): Use utf-8 iso TeX accent.
12118
12119         * Documentation/index.html.in: Add size estimates with some big pages.
12120
12121         * Documentation/user/tutorial.itely (Running LilyPond for the
12122         first time): Add/replace some @rglos links.  TODO: add more
12123         @rglos links in tutorial, test non-intrusiveness (.css).
12124
12125         * stepmake/bin/add-html-footer.py (do_file): Remove info's
12126         annoying's indication of referencing external document.
12127
12128         * Documentation/user/GNUmakefile: Split version of glossary too.
12129         * Documentation/user/macros.itexi (@rglos): Have makeinfo produce
12130         links, not only for html.
12131
12132         * Documentation/user/introduction.itely: Fix some links for other
12133         than html, do not use `here' as link name.
12134
12135 2005-03-31  Jan Nieuwenhuizen  <janneke@gnu.org>
12136
12137         * scm/documentation-generate.scm (string-append): Fix @usermanref,
12138         @glossaryref.
12139
12140 2005-03-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12141
12142         * scm/page-layout.scm (default-page-make-stencil): only add header
12143         if existing and not empty. Fixes spurious programming error.
12144
12145         * lily/span-bar.cc (print): don't make rounded edges for spanbars.
12146
12147 2005-03-31  Erlend Aasland  <erlenda@gmail.com>
12148
12149         * scm/output-tex.scm: implement {re,}setcolor
12150         * tex/lilyponddefs.tex: use color package
12151
12152 2005-03-31  Jan Nieuwenhuizen  <janneke@gnu.org>
12153
12154         * GNUmakefile.in (local-WWW-post): Restore .htaccess and .html
12155         additions to website.
12156
12157         * Documentation/user/lilypond.tely: Remove reference to ps.gz.
12158
12159         * Documentation/user/macros.itexi: Fix @usermanref html links in
12160         split documents: use @inforef.
12161
12162 2005-03-30  Graham Percival  <gperlist@shaw.ca>
12163
12164         * Documentation/user/programming-interface.itely: minor fix.
12165
12166         * Documentation/user/advanced-notation.itely: added info to
12167         Metronome markings.
12168
12169 2005-03-30  Jan Nieuwenhuizen  <janneke@gnu.org>
12170
12171         * scm/output-lib.scm (make-stencil-boxer): Junk code duplication,
12172         use box-stencil.  Remove y-padding argument.
12173         (make-stencil-circler): New function.
12174
12175         * buildscripts/lilypond-words.py (F): 
12176         * elisp/SConscript (a): 
12177         * elisp/GNUmakefile (LILYPOND_WORDS_DEPENDS):
12178         * vim/SConscript (a): 
12179         * vim/GNUmakefile (LILYPOND_WORDS_DEPENDS): Update.
12180
12181         * lily/general-scheme.cc: Build fix.
12182
12183         * scm/markup.scm:
12184         * input/regression/markup-scheme.ly: 
12185         * input/regression/markup-syntax.ly: Drop 'new-' from name.
12186
12187         * scm/stencil.scm (make-circle-stencil): New function.
12188
12189         * scm/define-markup-commands.scm (draw-circle): Use it.  New
12190         name (was cicle).  Update callers.
12191         (circle): New markup command, similar to box.
12192
12193         * scm/stencil.scm (circle-stencil): New function.
12194
12195 2005-03-29  David Jedlinsky  <lilypond@ipnh.com>
12196
12197         * configure.in: Detect libutf8/wchar.h variant.
12198
12199         * stepmake/aclocal.m4: Modify shared size test.
12200
12201 2005-03-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12202
12203         * make/lilypond.fedora.spec.in (Group): remove texmf profile stuff.
12204
12205 2005-03-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12206
12207         * scripts/convert-ly.py (conv): add stencil-aligned-to! rule.
12208         
12209         * VERSION (PACKAGE_NAME):  release 2.5.17
12210
12211 2005-03-29  Jan Nieuwenhuizen  <janneke@gnu.org>
12212
12213         * scm/backend-library.scm (postscript->png): Fix comment and png
12214         message.
12215
12216         * GNUmakefile.in (link-tree): Fix locales.
12217
12218 2005-03-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12219
12220         * lily/stencil-scheme.cc (LY_DEFINE): change to
12221         ly:stencil-aligned-to, non mutating.
12222
12223         * scm/safe-lily.scm (lambda): remove ly:stencil-set-extent!
12224
12225         * lily/stencil-scheme.cc: remove ly:stencil-set-extent!
12226
12227         * lily/quote-iterator.cc (derived_mark): call
12228         Music_wrapper_iterator::derived_mark() too.
12229
12230         * lily/grace-engraver.cc (derived_mark): change signature, add
12231         const.
12232
12233 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12234
12235         * SConstruct (symlink): 
12236         * GNUmakefile.in (link-tree): Add scripts to prefix.
12237
12238         * lily/general-scheme.cc (ly:effective-prefix): New function.
12239
12240         * scm/backend-library.scm (postscript->png): Use it.
12241
12242 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12243
12244         * lily/paper-score.cc (process): don't delete grobs after
12245         producing stencils. 
12246
12247         * scm/part-combiner.scm (determine-split-list): switch off
12248         debugging info.
12249
12250         * scm/backend-library.scm (postscript->png): explicitly use ps2png.py
12251         if available.
12252
12253         * scm/define-context-properties.scm
12254         (all-user-translation-properties): add stringNumberOrientations.
12255
12256         * lily/new-fingering-engraver.cc (position_scripts): make generic,
12257         so fingering and string-numbers are separately controlled.
12258
12259 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12260
12261         * stepmake/aclocal.m4: Fix shared size test: add missing comma, do
12262         not use debugging.
12263
12264 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12265
12266         * GNUmakefile.in (local-WWW-post): remove UTF8 .htaccess.
12267
12268         * config.hh.in: add HAVE_FONTCONFIG.
12269
12270         * Documentation/user/instrument-notation.itely (String number
12271         indications): new node.
12272
12273         * input/regression/new-markup-syntax.ly (texidoc): add circle.
12274
12275         * lily/new-fingering-engraver.cc (add_string): new function. 
12276         (acknowledge_grob): accept string-number-event as well.
12277
12278         * scm/define-markup-commands.scm (circle): new markup command.
12279
12280         * scm/output-lib.scm (print-circled-text-callback): new function.
12281
12282         * lily/GNUmakefile: move ifeq after include stepmake.make.
12283
12284 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12285
12286         * config.make.in (HAVE_LIBKPATHSEA_SO):
12287         * stepmake/aclocal.m4: Also subst HAVE_LIBKPATHSEA_SO.
12288
12289         * lily/GNUmakefile (MODULE_LDFLAGS): Only if not HAVE_KPATHSEA_SO,
12290         add KPATHSEA_LIBS.
12291
12292         * debian/watch: 
12293         * debian/control: Update.
12294
12295 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12296
12297         * input/test/title-markup.ly (spaceTest): remove.
12298
12299         * input/test/embedded-tex.ly (Module): remove.
12300
12301         * input/test/music-box.ly: use 'name property, not ly:music-name.
12302
12303         * lily/GNUmakefile (MODULE_LDFLAGS): add KPATHSEA_LIBS.
12304
12305         * stepmake/aclocal.m4: STEPMAKE_FONTCONFIG: add.
12306
12307 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12308
12309         * Documentation/topdocs/INSTALL.texi (Top): Remove information
12310         about xdeltas.  Add information about CVS.
12311
12312         * scm/lily.scm (lilypond-main): Fix invocation of handler,
12313         gracefully handle failed files.
12314
12315         * lily/GNUmakefile (MODULE_LDFLAGS): Remove KPATHSEA_LIBS.
12316
12317         * Documentation/topdocs/INSTALL.texi (Top): Whitespace and other
12318         small fixes.
12319
12320         * scm/framework-tex.scm (convert-to-ps): Proper option spacing.
12321         No unnecessarily specific i18n messages.  Remove stray `1'.
12322
12323 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12324
12325         * buildscripts/lys-to-tely.py (strip_extension): add utf-8
12326         documentencoding
12327
12328         * scm/documentation-lib.scm (texi-file-head): set utf-8
12329         documentencoding.
12330
12331         * ly/chord-modifiers-init.ly (whiteTriangleMarkup): use the greek
12332         Delta, not the Symbol one. 
12333
12334         * mf/GNUmakefile ($(outdir)/lilypond.map): add -Regular to Aybabtu
12335         for the .map file.
12336
12337         * Documentation/topdocs/INSTALL.texi (Top): add running
12338         requirement as compilation requirement.
12339
12340 2005-03-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12341
12342         * buildscripts/mutopia-index.py (headertext): add h1 header and
12343         utf-8 charset meta field.
12344
12345         * input/GNUmakefile: prune example list.
12346
12347         * scm/framework-tex.scm (convert-to-ps): add -ofoo.ps to dvips
12348         options.
12349
12350         * lily/slur-scoring.cc (get_base_attachments): only look at stem
12351         extent for visible stems.
12352
12353         * lily/grob.cc (mark_smob): mark \layout block from Grob::mark_smob().
12354
12355 2005-03-27  Jan Nieuwenhuizen  <janneke@gnu.org>
12356
12357         * Documentation/topdocs/INSTALL.texi (Top): Updates.
12358
12359         * scripts/convert-ly.py: Python 2.2 compatibility (thanks Mats).
12360
12361 2005-03-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12362
12363         * lily/slur-scoring.cc (get_base_attachments): robustness. Don't
12364         pass inf/nan into slur scoring.
12365
12366         * ly/titling-init.ly (oddHeaderMarkup): don't show page no. on 1st
12367         page.
12368
12369         * scripts/abc2ly.py (dump_voices): use alphabet().
12370
12371 2005-03-27  Jeff Smith <whydoubt@yahoo.com>
12372         
12373         * mf/GNUmakefile (depth): use $(FONTFORGE). 
12374
12375 2005-03-27 Matthias Neeracher <neeracher@mac.com>
12376         
12377         * flower/include/virtual-methods.hh: simplify. Patch by
12378
12379 2005-03-25  John Williams <williams@tni.com>  
12380
12381         * scripts/lilypond-book.py (main): add png for HTML too, guess
12382         only if necessary. 
12383
12384 2005-03-25  Graham Percival  <gperlist@shaw.ca>
12385
12386         * Documentation/topdocs/INSTALL.texi: now recommends
12387         lexer-gcc-3.1.sh for gcc 3.1.1 or higher.
12388
12389         * Documentation/user/basic-notation.itely,
12390         Documentation/user/tutoria.itely: warn about
12391         only one (phrasing) slur at once.
12392
12393 2005-03-24  Pedro Kroger  <kroeger@pedrokroeger.net>
12394
12395         * ly/music-functions-init.ly (removeWithTag): fixed to return "music".
12396
12397 2005-03-23  Graham Percival  <gperlist@shaw.ca>
12398
12399         * Documentation/user/basic-notation.itely: fixed info about
12400         ending a (de)cresc.
12401
12402         * Documentation/user/lilypond-book.itely: fixed
12403         lilypond-book filter example and warned about not doing
12404         --filter and --process at the same time.
12405
12406 2005-03-23  Mats Bengtsson  <mabe@s3.kth.se>
12407
12408         * lily/parser.yy (bass_number),
12409         Documentation/user/instrument-notation.itely (Figured bass): 
12410         Add the possibility to use text markup in figured bass. 
12411
12412 2005-03-19  Graham Percival  <gperlist@shaw.ca>
12413
12414         * Documentation/user/global.itely: added info about naming
12415         identifiers and breakbefore.
12416
12417         * Documentation/user/invoking.itely: added info about batch
12418         processing files with convert-ly, removed references to TeX
12419         in the jail section.
12420
12421         * Documentation/user/examples.itely: possibly fixed piano
12422         dynamics.
12423
12424         * Documentation/user/advanced-notation.itely: added info
12425         about removing other types of Staff.
12426
12427         * Documentation/user/instrument-notation.itely: possibly
12428         fixed piano staff line switch.
12429
12430         * Documentation/user/changing-defaults.itely: added info
12431         about using normal font in titles.
12432
12433 2005-03-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12434
12435         * VERSION (PATCH_LEVEL): release 2.5.16
12436
12437         * make/ly-vars.make (DVIPS_FLAGS): include lilypond.map path
12438         explicitly.
12439
12440 2005-03-18  Jan Nieuwenhuizen  <janneke@gnu.org>
12441
12442         * scm/framework-tex.scm (convert-to-dvi): Barf if NAME contains
12443         whitespace.
12444
12445         * python/lilylib.py (make_ps_images):
12446         * scm/backend-library.scm (postscript->pdf, postscript->png):
12447         Quote file name.  Use format rather than string-append juggling.
12448
12449 2005-03-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12450
12451         * python/lilylib.py (make_ps_images): add x to -g argument. 
12452
12453         * lily/key-performer.cc (create_audio_elements): don't use
12454         scm_eval_string. Check for minor 3rd directly.
12455   
12456         * input/mutopia/J.S.Bach/baerenreiter-sarabande.ly
12457         (sarabandeCelloGlobal): key is D minor, not F major.
12458
12459 2005-03-17  Jan Nieuwenhuizen  <janneke@gnu.org>
12460
12461         Fix truncated --png output (Peter Danenberg).
12462         
12463         * python/lilylib.py (make_ps_images):
12464         * scripts/ps2png.py (copyright): Grok --papersize option.
12465
12466         * scm/backend-library.scm (postscript->png): Add parameter
12467         PAPERSIZE.  Update callers.
12468
12469         * scm/output-gnome.scm (music-font?): Bugfix: use "Emmentaler".
12470         Fixes symbol placement.
12471
12472         * lily/spanner.cc: 
12473         * lily/stencil.cc: Use "libc-extension.hh" (WAS:
12474         <libc-extension.hh>).
12475
12476 2005-03-16  Jan Nieuwenhuizen  <janneke@gnu.org>
12477
12478         * Nitpick run.
12479
12480         * buildscripts/fixcc.py: Update.
12481
12482         Builddir run fixes.
12483
12484         * HACKING (datadir): Add VERSION.
12485
12486         * GNUmakefile.in (linktree): Bugfix: outconfdirs are one dir
12487         higher up.
12488
12489 2005-03-15  Werner Lemberg  <wl@gnu.org>
12490
12491         * mf/feta-klef.mf (draw_gclef): Move z10' slightly so that the
12492         diagonal stem doesn't become thinner.
12493
12494 2005-03-15  Jan Nieuwenhuizen  <janneke@gnu.org>
12495
12496         * buildscripts/fixcc.py: Fixes (Werner).
12497
12498 2005-03-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12499
12500         * mf/GNUmakefile ($(outdir)/lilypond.map): capitalize
12501         Emmentaler/Aybabtu.
12502
12503         * GNUmakefile.in: fix lilypond-words path.
12504
12505         * po/tr.po: update to 2.3.21
12506
12507         * lily/new-fingering-engraver.cc (position_scripts): take priority
12508         from head position.
12509
12510         * input/regression/finger-chords-order.ly (texidoc): new file.
12511
12512 2005-03-14  Jan Nieuwenhuizen  <janneke@gnu.org>
12513
12514         * make/ly-rules.make: 
12515         * stepmake/aclocal.m4: 
12516         * Documentation/user/GNUmakefile: Remove old makeinfo compatibility.
12517
12518         * buildscripts/fixcc.py (rules): Leave space after operator.
12519
12520 2005-03-14  Werner Lemberg  <wl@gnu.org>
12521
12522         * mf/feta-klef.mf (draw_gclef): Replace `simple_serif' for
12523         top of the glyph with smooth curve.
12524
12525 2005-03-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12526
12527         * Documentation/user/global.itely (Page layout): remove
12528         printpagenumber.
12529
12530 2005-03-13  Jürgen Reuter  <reuter@ipd.uka.de>
12531
12532         * input/regression/mensural-ligatures.ly: new file (with examples
12533         compiled by Pal Benko).
12534
12535         * Documentation/user/instrument-notation.itely: Bugfix: yet some
12536         other "custodes.*-u0" -> "custodes.*.u0" renaming victims in
12537         musicglyph access.  Many small beautifications in ancient
12538         examples.
12539
12540         * input/test/divisiones.ly: fixed indentation; small
12541         beautifications
12542
12543         * ly/engraver-init.ly: added FIXME comment
12544
12545         * scripts/lilypond-book.py,
12546         Documentation/user/lilypond-book.itely: added music fragment
12547         option "packed" to lilypond-book
12548
12549         * Documentation/user/instrument-notation.itely: Bugfix: added
12550         missing LedgerLineSpanner color setting in several places.  Added
12551         music fragment option "packed" to VaticanaContext example.
12552
12553 2005-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12554
12555         * scm/define-grobs.scm (all-grob-descriptions): switch off
12556         Hyphen_spanner::set_spacing_rods 
12557
12558         * lily/lyric-hyphen.cc (print): add padding between syllable and
12559         hyphen.
12560         (print): shorten hyphen in tight situations (determine using
12561         minimum-length)
12562
12563         * scm/paper.scm (layout-set-staff-size): increase blotdiameter to
12564         0.4pt.
12565
12566 2005-03-13  Jan Nieuwenhuizen  <janneke@gnu.org>
12567
12568         * ly/titling-init.ly (bookTitleMarkup): Refinements.
12569
12570         * input/regression/page-breaks.ly (paper): Set not raggedlastbottom,
12571         header/footer markings for regression-test.
12572
12573         * scm/backend-library.scm (output-scopes, header-to-file): Move
12574         from framework-tex.scm.
12575
12576         * scm/framework-ps.scm (output-framework)
12577         (output-preview-framework):
12578         * scm/framework-eps.scm (output-classic-framework)
12579         (output-framework): Use it.  Fixes collated files.
12580
12581 2005-03-12  Jan Nieuwenhuizen  <janneke@gnu.org>
12582
12583         * input/sakura-sakura.ly: 
12584         * input/xiao-haizi-guai-guai.ly: Add from Debian package (Anthony).
12585
12586         * buildscripts/guile-gnome.sh: Update.
12587
12588         * mf/GNUmakefile (aybabtu.otf): Add dependency on .pe.
12589
12590         * mf/aybabtu.pe.in: Capitalize Aybabtu.
12591
12592 2005-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12593
12594         * lily/separating-group-spanner.cc (find_rods): oops. Fix the real
12595         culprit: always exit the loop if we find a rod, even if it has
12596         distance < 0. 
12597
12598         * lily/ledger-line-spanner.cc (set_spacing_rods): rewrite to O(n)
12599         algorithm.
12600
12601         * stepmake/stepmake/metafont-rules.make ($(outdir)/%.pfb
12602         $(outdir)/%.svg $(outdir)/%.pfa): add --simplify.
12603
12604         * scm/output-svg.scm (dashed-line): new  function body.
12605         
12606         * GNUmakefile.in: create .htaccess.
12607
12608 2005-03-11  Jan Nieuwenhuizen  <janneke@gnu.org>
12609
12610         * Documentation/topdocs/NEWS.tely (Top): Fix text example.
12611
12612 2005-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12613
12614         * VERSION (PACKAGE_NAME): release 2.5.15
12615
12616         * scm/output-{pdf,pdftex,sketch}.scm (Module): remove bitrotted files.
12617
12618         * scm/framework-svg.scm (output-framework): put scaling in
12619         document header. Apply scaling only once.
12620         (output-framework): dump page size in px, not mm. 
12621
12622         * scm/lily-library.scm (modified-font-metric-font-scaling): rename
12623         from font-size.
12624
12625         * lily/paper-outputter-scheme.cc (LY_DEFINE):
12626         ly:outputter-output-scheme, new function.
12627
12628         * scm/output-svg.scm (pango-description-to-svg-font): new function
12629
12630 2005-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12631
12632         * Documentation/user/GNUmakefile (deep-symlinks): remove outimages
12633         target.
12634
12635         * input/typography-demo.ly: new file.
12636
12637 2005-03-10  Jan Nieuwenhuizen  <janneke@gnu.org>
12638
12639         * Documentation/user/global.itely (File structure): Add markup blocks
12640         to toplevel expressions.
12641         (Multiple movements, Creating titles): Add markup blocks.
12642
12643         * lily/stencil-scheme.cc: Use "libc-extension.hh" (WAS:
12644         <libc-extension.hh>).
12645
12646         * lily/accidental.cc (accurate_boxes): Compile fix: 1.51 was broken.
12647
12648         * flower
12649         * lily
12650         * kpath-guile: Nitpick run: buildscripts/fixcc.py.
12651
12652 2005-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12653
12654         * lily/accidental.cc: special bboxes for natural. 
12655
12656         * mf/feta-toevallig.mf: make stems heavier.
12657
12658         * lily/dynamic-text-spanner.cc (print): add bound padding for edge
12659         texts as well.
12660
12661         * mf/feta-klef.mf: revise. 
12662
12663         * mf/feta-schrift.mf: make thinning of accent less pronounced.
12664
12665         * mf/feta-klef.mf: add rounded curve at top. 
12666         make thinnib a little heavier.
12667
12668 2005-03-10  Jan Nieuwenhuizen  <janneke@gnu.org>
12669
12670         * lily/parser.yy (book_body): Oops, allow \markup in \book too.
12671
12672         * buildscripts/fixcc.py: New file.
12673
12674         * input/regression/utf8.ly: Update Debian font description.
12675
12676 2005-03-09  Jan Nieuwenhuizen  <janneke@gnu.org>
12677
12678         * stepmake/aclocal.m4: Fix test.
12679
12680 2005-03-09  Graham Percival  <gperlist@shaw.ca>
12681
12682         * Documentation/user/invoking.itely: added Sebastino Vigna's
12683         docs for the --jail option.
12684
12685 2005-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12686
12687         * lily/stem.cc (print): only produce stemlets if there are no
12688         noteheads on this stem.
12689
12690         * lily/note-spacing.cc (stem_dir_correction): robustness fix:
12691         don't crash on stemlet (visible stem without heads).
12692
12693         * scm/define-grobs.scm (all-grob-descriptions): junk LeftEdge for
12694         unbroken situations. 
12695
12696         * scm/output-lib.scm (center-invisible): new function.
12697
12698         * lily/spacing-loose-columns.cc (set_loose_columns): use spacing
12699         wishes to determine loose column space.
12700
12701         * lily/font-config.cc (init_fontconfig): add
12702         fonts/{otf,type1,cff}  to path.
12703
12704         * lily/main.cc (setup_paths): add fonts/{otf,svg,tfm,cff} to path
12705
12706         * mf/GNUmakefile (Module): install all fonts under otf/
12707
12708         * scm/framework-ps.scm (Module): read fonts from fonts/extension,
12709         replace /fonts/otf/ by /ps/ 
12710
12711         
12712 2005-03-09  Jan Nieuwenhuizen  <janneke@gnu.org>
12713
12714         * lily/paper-book.cc (classic_output): Reinstate header_0_ hack.
12715
12716         * lily/book.cc (process): Oops, add score_.header_.
12717
12718         * lily/paper-book.cc: Fold hearders, score and texts into scores_.
12719
12720         * lily/parser.yy: Handle toplevel and book texts as score.
12721
12722         * scm/page-layout.scm (default-page-make-stencil):
12723         Bugfix: (page-properties rename.
12724
12725         * scm/backend-library.scm (ly:system): Typo.
12726
12727 2005-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12728
12729         * stepmake/stepmake/executable-targets.make (installexe): don't
12730         strip installed executables
12731
12732         * lily/font-select.cc (get_font_by_design_size): revert
12733         pango_description_string as well.
12734
12735         * lily/system.cc (set_loose_columns): put loose column just left
12736         of next column.
12737
12738         * lily/include/group-interface.hh (extract_grob_array): rename
12739         from Pointer_group_interface__extract_grobs
12740
12741         * input/regression/ledger-line-minimum.ly (texidoc): new file.
12742
12743         * lily/ledger-line-spanner.cc (set_spacing_rods): new
12744         function. Keep ledgered note heads at a minimum distance.
12745         Introduce minimum-length-fraction
12746         (print): introduce length-fraction property.
12747
12748 2005-03-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12749
12750         * tex/GNUmakefile: remove latin1.enc rules.
12751
12752 2005-03-08  Jan Nieuwenhuizen  <janneke@gnu.org>
12753
12754         * scm/titling.scm: Typo.
12755
12756         * input/regression/score-text.ly: Really add.
12757
12758         * lily/score.cc: Bugfixes for SCM header_ and texts_ members.
12759
12760 2005-03-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12761
12762         * lily/open-type-font-scheme.cc:  new file.
12763
12764 2005-03-08  Jan Nieuwenhuizen  <janneke@gnu.org>
12765
12766         * scm/titling.scm (layout-extract-page-properties): Rename from
12767         page-properties.  Update callers.
12768
12769         * lily/lexer.ll (Lily_lexer):
12770         * lily/parser.yy: Junk lyric_markup state.
12771
12772         * Documentation/topdocs/NEWS.tely (Top): Mention markup text feature.
12773
12774         * scripts/lilypond-book.py (PREAMBLE_LY): toplevel-music-handler:
12775         Add texts parameter.
12776
12777 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
12778
12779         * lily/lexer.ll (lyric_markup): New mode.
12780         (Lily_lexer::push_lyric_markup_state): New method.
12781         (MARKUPCOMMAND): Markup during lyric mode returns LYRIC_MARKUP.
12782
12783         * lily/parser.yy (book_body):
12784         (toplevel_expression): Grok \markup texts.
12785
12786         * lily/score-scheme.cc (ly:music-scorify): 
12787         * scm/lily-library.scm (collect-music-for-book): Take texts
12788         parameter.
12789
12790         * lily/score.cc (texts_): New member.
12791
12792         * lily/paper-book.cc (systems): Format score texts.
12793
12794         * score-text.ly: New file.
12795
12796         * ttftool/SConscript:
12797         * kpath-guile/SConscript: New file.
12798
12799         * lily/SConscript:
12800         * SConstruct: Update.
12801
12802 2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12803
12804         * VERSION (PACKAGE_NAME): release 2.5.14
12805
12806 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
12807
12808         * lily/main.cc: Add dummy xgettext markers.
12809
12810 2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12811
12812         * make/lilypond.fedora.spec.in (Requires): scrap kpathsea/tex
12813         requirements
12814
12815         * stepmake/aclocal.m4: check dynamic link, by checking if kpathsea
12816         executable is < 40k
12817
12818         * lily/main.cc (setup_paths): remove tfm1 tfm2 tfm3 include path
12819         hack.
12820
12821 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12822
12823         * flower/libc-extension.cc:
12824         * flower/include/libc-extension.hh: [Open]BSD simply cast
12825         cookie/funopen declarations.
12826
12827         * stepmake/aclocal.m4: Check for libkpathsea.so.
12828
12829         * kpath-guile/kpath.c (ly_kpathsea_expand_variable): Use
12830         dl_kpse_find_file.
12831
12832 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12833
12834         * kpath-guile/kpath.c (open_library): dlopen libkpathsea.so
12835         (open_library): alternative for static library.
12836
12837 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12838
12839         * configure.in: Set TTFTOOL_ENDIAN iso global CFLAGS.
12840
12841         * ttftool/GNUmakefile (MODULE_CFLAGS): Add $(TTFTOOL_ENDIAN).
12842
12843         Drop run-time dependency on teTeX.
12844
12845         * lily/kpath.cc (initialize_kpathsea): dlopen libkpathsea.
12846
12847         * stepmake/aclocal.m4 (STEPMAKE_KPATHSEA): Do not include
12848         KPATHSEA_LIBS in LIBS.
12849         (STEPMAKE_DLOPEN): New function.
12850
12851         * lily/font-config.cc (init_fontconfig): Use dir for directory,
12852         not path.
12853
12854         * flower/file-path.cc (directories): Rename from paths, as this
12855         return an array of directories (a single path).
12856
12857 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12858
12859         * lily/GNUmakefile (MODULE_LIBS): link with kpath-guile
12860
12861         * lily/all-font-metrics.cc (kpathsea_find_file): wrapper around
12862         new ly:kpathsea-find-file
12863
12864         * kpath-guile/kpath.c: new file. Put kpath bindings in lib.
12865
12866         * kpath-guile/GNUmakefile: new file
12867
12868         * buildscripts/gen-emmentaler-scripts.py (i): generate
12869         emmentaler-X.fontname as well.
12870
12871         * buildscripts/ps-embed-cff.py: new script
12872
12873         * scm/lily-library.scm: remove ps-embed-cff.
12874
12875         * scm/framework-ps.scm (write-preamble): don't use kpathsea for
12876         font loading. 
12877
12878         * scm/font.scm (add-music-fonts): load dynamics/numbers through
12879         fontconfig as well.
12880
12881         * lily/font-config.cc (init_fontconfig): add cff/ too.
12882
12883         * ly/generate-embedded-cff.ly: capitalize.
12884
12885         * lily/pango-select.cc (select_pango_font): use ::find_pango_font,
12886         so as to register the pango font.
12887
12888         * lily/font-config.cc (init_fontconfig): add
12889         prefix/{otf,type1,mf/out} to fontconfig path.
12890
12891         * lily/main.cc: only look at one prefix directory, LILYPONDPREFIX
12892         overrides all. 
12893
12894         * configure.in (gui_b): remove ec mftrace check
12895
12896         * config.hh.in: use lilypond-Major.Minor as data directory.
12897
12898         * scm/framework-ps.scm (dump-page): use output-units for landscape.
12899
12900         * buildscripts/gen-emmentaler-scripts.py (i): lower case file
12901         name.
12902
12903 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12904
12905         * lily/main.cc (do_chroot_jail): Small cleanups.  Avoid constant
12906         error messages.
12907
12908         * flower/libc-extension.cc:
12909         * flower/include/libc-extension.hh: [Open]BSD fixes for
12910         cookie/funopen declarations.
12911
12912 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12913
12914         * buildscripts/gen-emmentaler-scripts.py (outdir): capitalize
12915         emmentaler.
12916
12917         * lily/score-engraver.cc (initialize): remove check for ecrm10 /
12918         lcrm10.
12919
12920         * scm/define-markup-commands.scm (fontsize): new markup
12921         command. Also set baseline-skip
12922
12923 2005-03-06 Sebastiano Vigna <vigna@dsi.unimi.it>.
12924         
12925         * lily/main.cc (do_chroot_jail): paranoia security for webserver
12926         use.
12927
12928 2005-03-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12929
12930         * stepmake/bin/add-html-footer.py (do_file): make wiki link optional.
12931
12932         * lily/pdf.cc: remove PDF related files
12933
12934 2005-03-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12935
12936         * ly/deutsch.ly: add quarter tones, patch by Arno Waschk.
12937         <hamamatsu@gmx.de>
12938
12939 2005-03-05  Graham Percival  <gperlist@shaw.ca>
12940
12941         * Documentation/user/advanced-notation.itely: first draft
12942         of reorg done.
12943
12944         * Documentation/user/global.itely: fixed (sub)section
12945         bits of MIDI.
12946
12947 2005-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12948
12949         * cygwin/mknetrel (extras): Bufix (Bertalan).
12950
12951         * Documentation/user/basic-notation.itely (Chords): @ref fix.
12952         * Documentation/user/instrument-notation.itely (Introducing chord
12953         names): Compile fix: must have unique name.
12954
12955 2005-03-02  Graham Percival  <gperlist@shaw.ca>
12956
12957         * Documentation/user/instrument-notation.itely: reorg.
12958
12959 2005-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12960
12961         * scm/output-gnome.scm:
12962         * scm/output-svg.scm: Fix font scaling.
12963
12964 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12965
12966         * ly/titling-init.ly (tagline): Use Engraving.  Add comment about
12967         what link to use best.
12968
12969         * Documentation/user/instrument-notation.itely (Ancient accidentals): 
12970         * Documentation/user/tutorial.itely (Automatic and manual beams):
12971         Fix @ref.
12972
12973         * lily/tweak-registration.cc (replace_grob_tweak): New function.
12974         * lily/tweak-registration-scheme.cc (LY_DEFINE): Wrap it.
12975         * scm/framework-gnome.scm (tweak): Use it.
12976
12977 2005-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12978
12979         * Documentation/topdocs/NEWS.tely (Top): elucidate GS problem.
12980
12981         * scm/output-ps.scm (white-text): reinstate white-text
12982
12983 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12984
12985         * scm/output-ps.scm (offset-add): Remove.
12986
12987         * scm/lily-library.scm (offset-flip-y): New function.
12988         * scm/framework-gnome.scm (tweak): Use it.
12989
12990         * scm/output-gnome.scm (grob-cause): Add parameter.
12991
12992         * scm/lily.scm (ly:all-stencil-expressions): Add url-link.
12993         * scm/output-ps.scm (url-link): Move.
12994         (white-text): Warn user about brokenness.
12995
12996         * Documentation/topdocs/NEWS.tely: Be more accurate and respectful
12997         wrt ghostscript.
12998
12999 2005-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13000
13001         * lily/slash-repeat-engraver.cc (try_music): always make slashes
13002         if body length smaller than measure length.
13003
13004         * scm/define-markup-commands.scm (with-url): oops. use Y extent
13005         for Y.
13006
13007         * ly/titling-init.ly (tagline): put default tagline in \paper
13008
13009 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13010
13011         * lily/kpath.cc: 
13012         * lily/pdf.cc (Pdf_file): Use more generic error messages.
13013
13014         * scm/lily-library.scm (version-not-seen-message): New function.
13015         * ly/init.ly: Use it.
13016
13017         * scm/page-layout.scm (ly:optimal-page-breaks): Display page
13018         breaks as progess.
13019
13020         * scripts/lilypond-book.py (do_process_cmd): Do not lump
13021         whitespace with l10n message.
13022
13023         * scm/framework-tex.scm (convert-to-ps):
13024         (convert-to-dvi): Do not use overly specific l10n messages.
13025
13026         * ly/titling-init.ly (bookTitleMarkup): Add baseline skips from 2.4.
13027
13028         * tex/GNUmakefile $(outdir)/latin1.enc: Build fix:
13029         merge stderr with stdout.  
13030
13031 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13032
13033         * flower/libc-extension.cc: Tested BSD compile fix (Matthias
13034         Neeracher).
13035
13036 2005-02-29  Graham Percival  <gperlist@shaw.ca>
13037
13038         * Documentation/user/instrument-notation.teily: moved
13039         \arpeggio to Basic.
13040
13041         * Documentation/user/advanced-notation.itely: Articulation to
13042         Basic, a bunch of stuff from Basic moved to Advanced.
13043
13044         * Documentation/user/basic.itely: swapped various sections,
13045         reorganized Basic.
13046
13047 2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13048
13049         * flower/memory-stream.cc: 
13050         * flower/libc-extension.cc: Remove obsolete #undefs.
13051
13052         * flower/include/libc-extension.hh: Bugfix for BSD, place #ifdef
13053         more carefully.
13054
13055 2005-02-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13056
13057         * make/lilypond.fedora.spec.in (Requires): add GS 8.15 as
13058         dependency.
13059
13060         * VERSION (PACKAGE_NAME): release 2.5.13
13061
13062         * GNUmakefile.in (web-ext): don't ship ps.gz
13063
13064         * tex/GNUmakefile ($(outdir)/latin1.enc): redirect stderr to
13065         stdout
13066
13067 2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13068
13069         * lily/general-scheme.cc (LY_DEFINE): Compile fix for systems
13070         without libintl.  Now it compiles too.
13071
13072 2005-02-28  Graham Percival  <gperlist@shaw.ca>
13073
13074         * Documentation/user/basic-notation.itely,
13075         instument-notation.itely, advanced-notation.itely:
13076         split up contents of notation.itely.
13077
13078         * Documentation/user/notation.itely: file removed.
13079
13080         * Documentation/user/invoking.itely, converters.itely:
13081         moved convert-ly info to invoking.itely.
13082
13083         * Documentation/user/global.itely, changing-defaults.itely,
13084         sound-output.itexi: moved global settings, file layout, and
13085         sound into global.itely.
13086
13087         * Documentation/user/sound-output.itexi: file removed.
13088
13089         * Documentation/user/lilypond.tely: removed links to
13090         notation.itely and sound.itely.
13091
13092 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13093
13094         * scm/output-ps.scm (grob-cause): only do mark_URI if non-empty.
13095
13096         * scm/framework-ps.scm (write-preamble): remove pdf-viewer code.
13097  
13098         * THANKS: add sponsor.
13099
13100         * scm/define-markup-commands.scm (with-url): new markup command.
13101
13102         * scm/page-layout.scm (TAGLINE): add www.lilypond.org with URL to
13103         tagline.
13104         
13105         * scm/output-tex.scm (url-link): stub.
13106
13107         * scm/output-ps.scm (url-link): new function.
13108
13109         * lily/lily-parser-scheme.cc (LY_DEFINE): deprecate
13110         ly:set-point-and-click
13111
13112 2005-02-27  Jan Nieuwenhuizen  <janneke@gnu.org>
13113
13114         * ps/music-drawing-routines.ps (mark_file_line): Switch Action
13115         based on pdf-viewer setting.
13116
13117         * scm/framework-ps.scm (write-preamble): Find and set preferred
13118         pdf-viewer.
13119
13120 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13121
13122         * Documentation/user/point-and-click.itely: update for PDF point &
13123         click.
13124
13125         * scripts/lilypond-pdfpc-helper.py: new file. Invoke different
13126         editors based on EDITOR setting.
13127
13128 2005-02-27  Jan Nieuwenhuizen  <janneke@gnu.org>
13129
13130         * scm/*: Oops, more grand 2005 replace bits.
13131
13132 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13133
13134         * ps/music-drawing-routines.ps: new routine: insert PDF mark
13135
13136         * scm/output-ps.scm (grob-cause): point & click support for
13137         PostScript
13138
13139 2005-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13140
13141         * lily/input-scheme.cc (LY_DEFINE): rename to
13142         ly:input-file-line-column
13143
13144 2005-02-26  Graham Percival  <gperlist@shaw.ca>
13145
13146         * Documentation/user/examples.itely: small fix from Steve Doonan.
13147
13148         * Documentation/user/scheme-tutorial.itely: small fix from Steve Doonan.
13149
13150         * THANKS: added Yuval Harel.
13151
13152         * Documentation/user/{various}: inserted two spaces after a period.
13153
13154         * Documentation/user/lilypond.tely: added framework for reorg.
13155
13156         * Documentation/user/basic-notation.itely, instrument-notation.itely,
13157         advanced-notation.itely, global.itely: new files, placeholder for
13158         future reorg.
13159
13160 2005-02-26 Yuval Harel  <yuvalh@hotpop.com>
13161
13162         * Documentation/user/notation.itely: revamped Polyphony section
13163         
13164 2005-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13165
13166         * Documentation/user/lilypond-book.itely (Music fragment options):
13167         doc fontload.
13168
13169         * Documentation/user/changing-defaults.itely (Text encoding): add
13170         fontload option to utf8 include
13171
13172         * scripts/lilypond-book.py (compose_ly): add fontload option
13173
13174         * scm/framework-eps.scm (dump-stencils-as-EPSes): add
13175         force-eps-font-include option.
13176
13177         * ly/chord-modifiers-init.ly (blackTriangleMarkup): reinstate
13178         black triangle
13179
13180         * Documentation/user/invoking.itely (Editor support): remove
13181         lilypond-latex section.
13182
13183         * scripts/lilypond-latex.py (Module): remove script.
13184
13185         * cygwin/lily-wins.py (stat): write to .lylog, so as not to
13186         overwrite .log. 
13187
13188         * lily/main.cc: remove -m, --no-layout
13189
13190         * flower/include/libc-extension.hh: add ALIAS_FILE_TO_FILECOOKIE
13191         to define. We don't want to override fprintf everywhere.
13192
13193 2005-02-26  Jan Nieuwenhuizen  <janneke@gnu.org>
13194
13195         * cygwin/lilypond.hint: 
13196         * cygwin/README.in: Update dependencies.
13197
13198         * stepmake/aclocal.m4 (STEPMAKE_PANGO, STEPMAKE_PANGO_FT2):
13199         Bugfix: do not pollute CPPFLAGS, LIBS.
13200
13201         * cygwin/mknetrel (extras): Cross compile fixes.
13202
13203         * ttftool/util.c: 
13204         * ttftool/ttfps.c: 
13205         * ttftool/ps.c: #include libc-extension.hh
13206
13207         * flower/include/libc-extension.hh:
13208         * flower/libc-extension.cc (fopencookie)[!HAVE_FOPENCOOKIE]: Add
13209         wrapper using funopen.
13210         (fopencookie, handle_cookie_io_fclose, handle_cookie_io_fprintf,
13211         handle_cookie_io_fprintf): Add wrappers catching Memory_out_stream.
13212
13213         * config.hh.in:
13214         * configure.in (AC_CHECK_FUNCS): Add fopencookie, funopen.
13215         (AC_CHECK_HEADERS): Add libio.h
13216
13217         * scripts/convert-ly.py: Uniformize, internationalize.
13218         (2.5.2): Remove fatal encoding rule.
13219         (2.5.13): Handle latin1 encoding gracefully.
13220
13221 2005-02-23  Jan Nieuwenhuizen  <janneke@gnu.org>
13222
13223         * HACKING: Fix line breaks.
13224
13225 2005-02-23  Werner Lemberg  <wl@gnu.org>
13226
13227         * mf/graycx.mf, mf/graylj.mf: Removed.  Any decent TeX distribution
13228         contains those two files.
13229
13230 2005-02-21  Werner Lemberg  <wl@gnu.org>
13231
13232         * mf/feta-nummer-code.mf ("Numeral 5"): Include intersection point
13233         to improve overlap removal process.
13234
13235         * mf/feta-slag.mf (draw_trillelement): Add parameter to control
13236         left and right ending.  This ensures better overlapping.
13237         Update all callers.
13238         ("lineprall"): Don't use draw_gridline to get better overlapping.
13239
13240 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13241
13242         * scm/lily-library.scm (ps-embed-cff): add \n after EndResource
13243
13244         * Documentation/topdocs/NEWS.tely (Top): oops.
13245
13246 2005-02-21  Pedro Kroger  <kroeger@pedrokroeger.net>
13247
13248         * HACKING: new file.
13249
13250         * input/regression/utf8.ly (portuguese): added a portuguese example
13251         to show latin1 accents.
13252
13253 2005-02-21  Pal Benko  <benkop@freestart.hu>
13254
13255         * lily/mensural-ligature-engraver.cc:
13256         * lily/mensural-ligature.cc:
13257         * lily/include/mensural-ligature.hh: new algorithm implemented
13258
13259         * scm/define-grob-properties.scm: join-left killed (add-join may
13260         be used); join-left-amount changed to join-right-amount
13261
13262 2005-02-21  Graham Percival  <gperlist@shaw.ca>
13263
13264         * Documentation/user/notation.itely: small but urgent fix.
13265
13266 2005-02-21  Jürgen Reuter  <reuter@ipd.uka.de>
13267
13268         * lily/duration-scheme.cc: bugfix: correct parameters to
13269         SCM_ASSERT_TYPE.
13270
13271         * THANKS: added Pal.
13272
13273         * Documentation/user/notation.itely: bugfix: unTeXified
13274         $\\backslash$.  Bugfix: yet another glyph renaming victim:
13275         "timesig.*x/y" -> "timesig.*xy".
13276
13277 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13278         
13279         * VERSION (PACKAGE_NAME): release 2.5.12
13280
13281 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13282
13283         * ly/engraver-init.ly: set tieWaitForNote to #t by default
13284
13285         * configure.in (gui_b): bump GUILE requirement to 1.6.5 
13286
13287         * Documentation/topdocs/NEWS.tely: add inputfileref macro.
13288
13289         * scm/framework-ps.scm (supplies-or-needs): uniq font name list.
13290
13291 2005-02-20  Jan Nieuwenhuizen  <janneke@gnu.org>
13292
13293         * input/mutopia/E.Satie/petite-ouverture-a-danser.ly: recode
13294         latin1..utf-8.
13295
13296         * input/regression/stanza-number.ly:
13297         * input/regression/utf8.ly (hebrew): Use addlyrics.  Update.
13298
13299         * lily/tie-engraver.cc (acknowledge_grob): Compile fix.
13300
13301 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13302
13303         * Documentation/topdocs/NEWS.tely (Top): only mention 2.5
13304         NEWS. Refer to website for older news.  
13305
13306         * stepmake/bin/add-html-footer.py (i18n): don't strip .PNG /
13307         .HTML. This should be done for specific servers only.
13308
13309         * Documentation/topdocs/NEWS.tely (Top): move to .tely. Add some
13310         .ly image examples.
13311
13312         * scm/define-grobs.scm (all-grob-descriptions): put ledger lines
13313         in layer 0 too.
13314
13315         * scm/define-context-properties.scm
13316         (all-user-translation-properties): add tieWaitForNote
13317
13318         * scm/define-grobs.scm (all-grob-descriptions): add
13319         Tie_column::before_line_breaking
13320
13321         * lily/tie.cc (get_column_rank): new function
13322
13323         * lily/tie-column.cc (before_line_breaking): new function.
13324         (werner_directions): take into account ties that start on
13325         different columns.  
13326
13327         * lily/score-engraver.cc (set_columns): move add_column() so we
13328         have column rank available.
13329
13330         * lily/tie.cc (get_column_rank): new function.
13331
13332         * input/regression/utf8.ly (japanese): add japanese lyrics.
13333
13334         * lily/pfb.cc (LY_DEFINE): ly:ttf->pfa, new function.
13335
13336         * THANKS: add Steve D
13337
13338         * ttftool/*.c: add TTF -> Type42 conversion library. Based on
13339         Public Domain work by Juliusz Chroboczek <jch@pps.jussieu.fr>
13340
13341 2005-02-20  Tatsuya Ono  <tats_ono@infoseek.jp>
13342
13343         * mf/parmesan-heads.mf: "0harmonic" -> "s0harmonic"
13344         to show harmonic notes
13345         * scm/define-markup-commands.scm: in \markup-by-number
13346         "dots-dot" -> "dots.dot" to show dotted notes
13347
13348 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13349
13350         * flower/include/memory-stream.hh (class Memory_out_stream): new file.
13351
13352         * flower/memory-stream.cc (writer): new file.
13353
13354         * configure.in: add endian test.
13355
13356 2005-02-19  Jürgen Reuter  <reuter@ipd.uka.de>
13357
13358         * Documentation/user/examples.itely: small
13359         simplification/beautification
13360
13361         * Documentation/user/notation.ietly: bugfix: fixed many artefacts
13362         from the "x-y-z"->"x.y.z" renaming of glyphs throughout the whole
13363         notation manual.
13364
13365         * lily/mensural-ligature.cc: bugfix: another few victims of the
13366         "x-y-z"->"x.y.s-z" symetrical notehead glyph renaming.
13367
13368         * ly/gregorian-init.ly: commit some experimental code for hi-level
13369         ligature input language lying around here for several months.
13370
13371         * lily/mensural-ligature-engraver.cc: bugfix: another victim of
13372         the "x-y-z"->"x.y.s-z" symetrical notehead glyph renaming.
13373
13374         * lily/vaticana-ligature-engraver.cc: bugfix: another few
13375         "x-y-z"->"x.y.s-z" fixes.
13376
13377 2005-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13378
13379         * scm/framework-pdf.scm (scm): new file
13380
13381         * lily/include/pdf.hh (class Pdf_file): new file.
13382
13383         * lily/pdf.cc (write_trailer): new file.
13384
13385 2005-02-18  Erlend Aasland  <erlenda@gmail.com>
13386
13387         * input/regression/color.ly: new file
13388
13389         * lily/stencil.cc (interpret_stencil_expression):
13390         when a color expression is encountered: save current color,
13391         process the rest of the expression, and restore previous color.
13392
13393         * lily/system.cc (get_line): check all grobs for color property and
13394         prepare the stencil scheme expressions for further processing.
13395         Fix layer-loop.
13396
13397         * scm/define-grob-properties.scm: introduce the color property.
13398
13399         * scm/output-lib.scm: color helper functions.
13400
13401         * scm/output-ps.scm: introduce setcolor/resetcolor.
13402
13403 2005-02-07  Erik Sandberg  <ersa9195@student.uu.se>
13404
13405         * ly/*.ly, input/regression/*.ly: Added missing \version
13406         statements in some files.
13407
13408 2005-02-15  Graham Percival  <gperlist@shaw.ca>
13409
13410         * Documentation/user/notation.itely: minor editing.
13411
13412         * Documentation/user/converters.itely: updated convert-ly bugs.
13413
13414         * Documentation/user/lilypond-book.itely: add info about using
13415         feta characters in latex.
13416
13417 2005-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13418
13419         * scripts/convert-ly.py: new slur dash patch by Bertalan Fodor.
13420
13421 2005-02-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13422
13423         * scm/define-grob-properties.scm (all-user-grob-properties):
13424         removed 'dashed property.
13425
13426 2005-02-13  Nicolas Sceaux  <nicolas.sceaux@free.fr>
13427
13428         * scm/lily.scm (define-safe-public): new macro for defining
13429         variables that can be used in --safe mode. Use it in *.scm
13430         instead of manually setting safe-objects in safe-lily.scm.
13431
13432 2005-02-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13433         
13434         * lily/slur.cc: Slur-dash patch by Bertalan.
13435
13436         * ly/engraver-init.ly (EasyNotation): glyph name dash -> period.
13437
13438         * stepmake/bin/add-html-footer.py (do_file): do i18n only once. 
13439
13440 2005-02-10  Jan Nieuwenhuizen  <janneke@gnu.org>
13441
13442         * stepmake/aclocal.m4: teTeX-3.0 inimf fix.  Comment-out.
13443
13444 2005-02-09  Jan Nieuwenhuizen  <janneke@gnu.org>
13445
13446         * mf/GNUmakefile: teTeX-3.0 install fix.
13447
13448         * Cygwin patch from Bertalan.
13449
13450         * stepmake/stepmake/metafont-rules.make: Remove bashism.
13451
13452 2005-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
13453
13454         * GNUmakefile.in: 
13455         * SConstruct (symlink): teTeX-3.0 build fix: add map symlink.
13456
13457         * tex/GNUmakefile: teTeX-3.0 fix: install .enc in fonts/enc.  Add
13458         2.0.x compatibility.
13459
13460 2005-02-08  Werner Lemberg  <wl@gnu.org>
13461
13462         * mf/feta-din-code.mf: Format; clean up code.
13463         Replace `---' with `--' plus explicit path directions.
13464         (linethickness#, stafflinethickness#): Remove.
13465         ("dynamic f"): Replace `draw' with `draw_rounded_block'.
13466         ("dynamic s"): Improve shape.
13467         ("dynamic p"): Improve shape.
13468         Replace `draw' with better outline approximation.
13469         ("dynamic r"): Improve shape.
13470         Don't call `fill' and `draw' at the same time.
13471
13472 2005-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
13473
13474         * SConstruct (symlink):
13475         * GNUmakefile.in ($(builddir)/share/lilypond-force): teTeX-3.0
13476         build fix: add enc symlink.
13477
13478         * lily/general-scheme.cc: Compile fixes: include wchar.h, string.h.
13479
13480         Support for DESTDIR besides prefix=/foo
13481
13482         * vim/GNUmakefile (local-install): Use $(INSTALL) -d iso mkdir.
13483
13484         * stepmake/stepmake/*.make:
13485         * */GNUmakefile:
13486         * GNUmakefile.in: Prepend $(DESTDIR) to installation directory.
13487
13488         * config.make.in (prefix): Remove broken $(DESTDIR) hack.
13489
13490         * stepmake/aclocal.m4: Use %0.f iso %d to quiet gawk < 3.1.4 and
13491         mawk in fontforge (date) test.
13492
13493 2005-02-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13494
13495         * scm/font.scm (make-century-schoolbook-tree): add NCS as
13496         font-family=roman. Add Luxi Sans as sans
13497
13498 2005-02-07  Graham Percival  <gperlist@shaw.ca>
13499
13500         * Documentation/user/notation.itely: add warning about
13501         percent repeats and Voice contexts.
13502
13503         * Documentation/user/lilypond-book.itely: clarified the
13504         necessity of dvips -u arguments.
13505
13506 2005-02-07  Erik Sandberg  <ersa9195@student.uu.se>
13507
13508         * THANKS: Added a bunch of bug hunters.
13509
13510 2005-02-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13511
13512         * scm/framework-ps.scm (output-preview-framework): bugfix.
13513
13514         * ly/chord-modifiers-init.ly (ignatzekExceptionMusic): use unicode
13515         o/ for chord modifier..
13516
13517         * lily/general-scheme.cc (LY_DEFINE): new function ly:wide-char->utf-8.
13518
13519         * lily/drum-note-performer.cc:  remove unused (thanks Michael
13520         Welsh Duggan). 
13521
13522 2005-02-06  Jan Nieuwenhuizen  <janneke@gnu.org>
13523
13524         * Documentation/user/changing-defaults.itely (Text encoding): Clarify.
13525
13526         * ly/titling-init.ly: Do not also print intstrument in header on
13527         first page.  Do not print page number on first and only page.
13528
13529 2005-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13530
13531         * input/regression/*.ly: remove old-relative everywhere
13532
13533         * lily/music-sequence.cc (simultaneous_relative_callback): do
13534         what-if analysis on copy, not on original. Fixes old-relative
13535         compatibility.
13536
13537         * scm/backend-library.scm (postscript->png): space before
13538         --verbose.
13539         
13540 2005-02-05  Werner Lemberg  <wl@gnu.org>
13541
13542         * mf/feta-autometric.mf (fet_beginchar): Check whether `feta_group'
13543         is defined.
13544
13545         * mf/feta-alphabet.mf: Define `staffsize#'.
13546         Include `feta-params.mf'.
13547         s/staffheight/design_size/.
13548
13549         * mf/feta-alphabet??.mf: s/staffheight/design_size/.
13550
13551         * mf/feta-alphabet26.mf: Fix a serious bug (design size off by 8pt).
13552
13553         * mf/feta-nummer-code.mf: Reformatted.
13554         (draw_six): Use outline intersection to avoid a self-intersecting
13555         path.
13556         ("Numeral comma"): Fix serious outline glitches.  This slightly
13557         changes the glyph shape.
13558         ("Numeral dash"): Use `draw_rounded_block'.
13559         ("Numeral dot"): Use `drawdot'.
13560         ("Numeral 1"): Assure identical tangent directions for the
13561         intersection points of paths.  The glyph shape improvement is only
13562         visible at very high magnifications.
13563         ("Numeral 2"): Use `solve' macro to make the lower right part of
13564         the glyph outline touch the x axis exactly.  This changes the
13565         glyph shape.
13566         Minor fixes for better overlap removal support.
13567         ("Numeral 4"): Make lefter corner `rounder'.
13568         ("Numeral 5"): Assure identical tangent directions for the
13569         intersection points of paths.  This improves the glyph shape at
13570         high magnifications.
13571         ("Numeral 7"): Use `solve' macro to make the upper right part of
13572         the glyph outline touch the metrics box exactly.  This changes the
13573         glyph shape.
13574         Avoid corner in the upper left part of the glyph (causing a minor
13575         shape change).
13576
13577         * mf/feta-ital-*.mf: Removed.  Unused.
13578
13579 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13580
13581         * VERSION (PATCH_LEVEL): release 2.5.11
13582
13583         * input/regression/fill-line-test.ly: new file.
13584
13585         * buildscripts/gen-emmentaler-scripts.py (i): insert dash in
13586         emmentaler name, eg. emmentaler-23. 
13587
13588 2005-02-04  Christian Hitz  <chhitz@gmx.net>
13589
13590         * scm/scm/define-markup-commands.scm (fill-line): rework for better
13591         alignment with centered texts
13592
13593         * scm/stencil.scm (stack-stencils-padding-list): new function, takes a
13594         list of paddings
13595
13596 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13597
13598         * mf/GNUmakefile ($(outdir)/lilypond.map): add aybabtu to .map file.
13599
13600         * lily/note-column.cc (translate_rests): call flush_extent_cache()
13601         of parents when translating rests. Fixes: c-chord-rest.ly 
13602
13603         * lily/include/dimension-cache.hh (struct Dimension_cache): add
13604         dimension_callback_ member.
13605
13606         * lily/grob.cc (flush_extent_cache): new function. Force recompute
13607         of extents.
13608
13609 2005-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
13610
13611         * all but lily/*: The grand 2004/2005 replace.
13612
13613 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13614
13615         * lily/*: add space after ,  
13616
13617         * scm/music-functions.scm (has-request-chord): don't use
13618         ly:music-name anywhere. Fixes <<\\>> notation. 
13619
13620         * scm/define-markup-commands.scm (box): use font-size for
13621         padding. Fixes boxed-rehearsal-marks.ly
13622
13623         * lily/parser.yy (assignment_id): allow LYRICS_STRING as
13624         identifier definition too, so foo = \lyrics { ...   } bar = #1
13625         doesn't complain about "bar" being LYRICS_STRING.
13626
13627         * lily/paper-def.cc (find_pango_font): new routine; Store
13628         pango_fonts in hash tab too. This is necessary for retrieving
13629         Pango_fonts::physical_font_tab() later on.
13630  
13631         * lily/pango-font.cc (pango_item_string_stencil): bugfix: don't
13632         crash if psname is null.
13633
13634         * lily/lily-guile.cc (ly_hash2alist): new function
13635
13636         * Documentation/user/changing-defaults.itely (Text encoding):
13637         rewrite. 
13638
13639         * lily/pango-font.cc (physical_font_tab): new member. Store PSname
13640         -> font_filename mapping.
13641
13642         * lily/pango-font-scheme.cc (LY_DEFINE): new file. New function
13643         ly_pango_font_physical_fonts
13644
13645         * scm/framework-ps.scm (supplies-or-needs): extract names from
13646         physical Pango_fonts.
13647
13648         * utf8.ly: new file.
13649
13650 2005-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13651
13652         * Documentation/user/changing-defaults.itely (Page layout): add
13653         doco about systemSeparatorMarkup.
13654
13655         * scm/page-layout.scm (default-page-make-stencil): add-to-page
13656         function.
13657         (default-page-make-stencil): insert system separators.
13658
13659         * scm/define-markup-commands.scm (hcenter): add
13660         (beam): add.
13661
13662 2005-02-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13663
13664         * scm/output-ps.scm (ez-ball): reinstate ez notation.
13665
13666 2005-02-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13667
13668         * lily/main.cc: Spell backend consistently.  Sort options.
13669
13670 2005-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13671
13672         * scripts/lilypond-book.py (Module): revert @include.
13673         
13674 2005-01-31  Jan Nieuwenhuizen  <janneke@gnu.org>
13675
13676         * scripts/lilypond-book.py: Resurrect HTML links to .ly source.
13677         Bugfix: @include .tex (not .texi).  Small cleanups.
13678
13679         * stepmake/bin/add-html-footer.py (i18n): New function.
13680
13681 2005-01-31  Werner Lemberg  <wl@gnu.org>
13682
13683         * mf/feta-nummer.mf: Removed.  Unused.
13684
13685 2005-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13686
13687         * lily/ : 2004 -> 2005 s&r
13688
13689         * scm/file-cache.scm (cached-file-contents): add file. Read each
13690         file only once.
13691
13692         * scm/font.scm (add-pango-fonts): change order. Medium weight is
13693         now default.
13694
13695         * VERSION: release 2.5.10
13696         
13697         * mf/GNUmakefile (INSTALLATION_OUT_FILES4): install cff.ps files.
13698
13699         * make/ly-rules.make ($(outdir)/%.texi): detect new EOF marker.
13700
13701         * scm/framework-ps.scm (dump-stencil-as-EPS): robustness: ensure
13702         that both X and Y extents of bbox are non-nil.
13703
13704 2005-01-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13705
13706         * scm/chord-name.scm (alteration->text-accidental-markup): change
13707         - to . 
13708
13709         * scm/output-ps.scm (utf8-string): add utf8-string for completeness.
13710
13711         * scm/framework-ps.scm (dump-stencil-as-EPS): new function
13712
13713         * Documentation/user/invoking.itely (Invoking lilypond): add note
13714         about EPS backend.
13715
13716         * scm/framework-eps.scm: new file: create per-system/per-page EPS
13717         files for inclusion in lilypond-book document.
13718
13719         * input/tutorial/lbook-latex-test.tex: rename from lilbook.tex
13720
13721         * input/tutorial/lbook-texi-test.texi: new file.
13722
13723         * scm/safe-lily.scm (safe-objects): add
13724         {begin,end}-of-line-(in)?visible as safe.
13725  
13726 2005-01-30  Graham Percival  <gperlist@shaw.ca>
13727
13728         * Documentation/user/changing-defaults.itely: fixed example
13729         of (dynamics).
13730
13731 2005-01-29  Graham Percival  <gperlist@shaw.ca>
13732
13733         * lily/main.cc: fix info about -o=FILE.
13734
13735 2005-01-29  Werner Lemberg  <wl@gnu.org>
13736
13737         * mf/feta-toevallig.mf ("Natural"): Completely changed the
13738         construction to assure smooth transition from straight to curved
13739         lines.
13740
13741 2005-01-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13742
13743         * lily/stencil.cc (moved_to_edge): don't halt on adding empty
13744         stencils.
13745
13746         * ps/lilyponddefs.ps: add start-page, start-system doesn't
13747         translate to top of page. Fixes alignment problems of
13748         lilypond-generated EPS files.
13749
13750 2005-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13751
13752         * scm/part-combiner.scm (analyse-spanner-states): trigger on
13753         crescendo-end as well, since Decrescendo maybe ended with Stop
13754         Crescendo.). Fixes: partcombine-diminuendo.ly
13755
13756         * scm/script.scm (default-script-alist): swap portato symbols.
13757
13758         * lily/instrument-name-engraver.cc (acknowledge_grob): typo.
13759
13760         * lily/paper-outputter-scheme.cc (LY_DEFINE):
13761         ly:outputter-port. New function.
13762
13763         * scm/framework-ps.scm (output-classic-framework): dump a
13764         -systems.texi too
13765         (output-classic-framework): dump multiple systems on an "infinite"
13766         page EPS including fonts. 
13767
13768         * scripts/lilypond-book.py (Lilypond_snippet.ly_is_outdated): use
13769         .eps files for both texi and tex formats. Use PNG coming from
13770         lilypond.
13771         
13772 2005-01-28  Graham Percival  <gperlist@shaw.ca>
13773
13774         * Docuemntation/user/invoking.itely: fix info about -o=FILE.
13775
13776         * scripts/lilypond-latex.py: fix info about -o=FILE.
13777
13778 2005-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13779
13780         * ly/generate-embedded-cff.ly: write .cff.ps files.
13781
13782         * mf/GNUmakefile ($(outdir)/lilypond.map): add .cff.ps to .map file.
13783
13784         * stepmake/stepmake/metafont-rules.make ($(outdir)/%.pfb
13785         $(outdir)/%.svg $(outdir)/%.pfa): remove --simplify
13786
13787 2005-01-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13788
13789         * lily/include/guile-compatibility.hh (SCM_VECTOR_P): Compile fix.
13790
13791 2005-01-28  Werner Lemberg  <wl@gnu.org>
13792
13793         * mf/feta-macros.mf (soft_start_penstroke, soft_end_penstroke): New
13794         macros.
13795         (draw_bulb): Improved.
13796
13797         * mf/feta-pendaal.mf ("Pedal asterisk"): Remove workaround for
13798         metapost bug.
13799         (draw_pedal_P): Use soft_end_penstroke.
13800         (draw_pedal_d): Use soft_start_penstroke.
13801
13802         * mf/feta-schrift.mf ("Trill (`tr')"): Remove redundant point in
13803         path.
13804         ("Varied Coda"): Move some points to avoid fontforge warnings.  This
13805         doesn't change the glyph shape.
13806
13807         * mf/feta-accordion.mf ("accOldEE"): Draw glyph differently (without
13808         changing the shape) to avoid fontforge warnings.
13809
13810         * mf/feta-klef.mf (draw_tab_T, draw_tab_A, draw_tab_B): Use
13811         soft_end_penstroke and fix glyph shape.
13812
13813 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13814
13815         * lily/*.cc: Scheme deprecation of SCM_VECTOR_* 
13816
13817 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13818
13819         * scm/define-markup-commands.scm (line): filter out empty stencils
13820         from line command.
13821
13822         * lily/stencil-scheme.cc (LY_DEFINE): only allow finite real
13823         amount.
13824
13825 2005-01-27  Graham Percival  <gperlist@shaw.ca>
13826
13827         * Documentation/user/notation.itely: added info about what
13828         \voiceFoo does.  Also rewrote warning about marks at
13829         a line break.
13830
13831         * Documentation/user/changing-defaults.itely: added info
13832         about putting dynamics in parenthesis and brackets.
13833
13834 2005-01-27  Werner Lemberg  <wl@gnu.org>
13835
13836         * mf/feta-schrift.mf ("Trill (`tr')"): Fix typo.
13837
13838 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13839
13840         * mf/feta-schrift.mf: reverse u and d portato. Fixes:
13841         portato-direction.ly
13842
13843         * lily/beam.cc (consider_auto_knees): add beam height to
13844         threshold. Fixes: knee-multiple-beam.ly
13845
13846         * lily/instrument-name-engraver.cc (acknowledge_grob): also ignore
13847         pedal line spanners. Fixes: instrument-center-pedal.ly
13848
13849         * lily/auto-beam-engraver.cc (acknowledge_grob): stop beam
13850         if encountering barline. Fixes: auto-beam-repeat.ly
13851
13852 2005-01-26  Werner Lemberg  <wl@gnu.org>
13853
13854         * mf/feta-slag.mf (draw_trillelement): Fix shape to get clean
13855         overlapping.
13856
13857         * mf/feta-toevallig.mf (draw_meta_sharp): Fix shape to avoid curves
13858         with inflections for the 1/2 sharp glyph.
13859
13860         * mf/feta-schrift.mf ("Trill (`tr')"): Fix start position of
13861         connection between `t' and `r'.
13862         Unify bulb with the rest of `r' to avoid grazing outlines which
13863         confuses the overlap removal algorithm of fontforge.
13864
13865         * mf/feta-bolletjes.mf (draw_slash): Fix shape to avoid curves with
13866         inflections.
13867         (draw_cross): Fix shape to have uniform thickness in corners.
13868
13869         * mf/feta-pendaal.mf (draw_pedal_P): Break shape into smaller pieces
13870         to avoid an uneven number of self-intersections; this confuses
13871         fontforge.
13872         Fix a slight bug in the shape at left bottom (which is visible only
13873         at high magnifications).
13874         `Center' the stem horizontally to avoid overlapping.
13875
13876 2005-01-24  Werner Lemberg  <wl@gnu.org>
13877
13878         * mf/feta-autometric.mf (fet_beginfont): Set font_coding_scheme
13879         to `asis'.
13880         (fet_begingroup): Save group name in string `feta_group'.
13881         (fet_endgroup): Updated.
13882         (fet_beginchar): Emit `glyph_name' special for mf2pt1.
13883
13884         * mf/feta-bolletjes.mf: s/p/pat/ for paths.
13885
13886         * mf/feta-pendaal.mf ("Pedal asterisk"): Add workaround for bug
13887         in metapost.
13888
13889 2005-01-24  Graham Percival  <gperlist@shaw.ca>
13890
13891         * Documentation/user/notation.itely: really minor editing.
13892
13893 2005-01-22  Graham Percival  <gperlist@shaw.ca>
13894
13895         * Documentation/user/examples.itely: minor editing.
13896
13897         * Documentation/user/changing-defaults.itely: minor editing.
13898
13899         * Documentation/user/notation.itely: clarified info on polyphony
13900         and \addlyrics.
13901
13902 2005-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
13903
13904         * scm/output-gnome.scm: 
13905         * scm/output-svg.scm:
13906         * scm/lily-library.scm (font-name-style): Update font name
13907         kludging for fontconfig use.
13908
13909 2005-01-20  Erlend Aasland  <erlenda@gmail.com>
13910
13911         * scm/define-markup-commands.scm: Document right-align and
13912         larger markup commands. Remove "TODO" from the topmost comment
13913         "each markup function should have a doc string." More consistent
13914         use of new-lines.
13915
13916 2005-01-22  Graham Percival  <gperlist@shaw.ca>
13917
13918         * Documentation/user/changing-defaults: removed info about
13919         copyright symbol, since it's likely to change soon.
13920         Added info about betweensystemspace.
13921
13922         * Documentation/user/notation.itely: minor fixes.
13923
13924         * Documentation/user/lilypond.tely,
13925         Documentation/user/music-glossary.tely: changed copyright
13926         date to 2005 instead of 2004.
13927
13928         * input/test/volta-chord-names.ly: added old example back.
13929
13930 2005-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13931
13932         * mf/feta-beugel.mf: use design size 20 (not 15).
13933
13934         * mf/aybabtu.pe.in: scale brace fonts to design sizes.
13935         change name to aybabtu completely
13936
13937 2005-01-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13938
13939         * buildscripts/gen-emmentaler-scripts.py (outdir): add
13940         design_size to fontname
13941
13942 2005-01-19  Werner Lemberg  <wl@gnu.org>
13943
13944         * mf/feta-accordion.mf, mf/feta-klef.mf, mf/feta-pendaal.mf,
13945         mf/feta-schrift.mf: s/p/pat/ if a path variable.
13946
13947         * mf/feta-autometric.mf (set_char_box): Add code which emits
13948         specials for mf2pt1 if run with metapost.
13949         (to_bp): New macro for mf2pt1.
13950
13951 2005-01-18  Graham Percival  <gperlist@shaw.ca>
13952
13953         * Documentation/user/changing-defaults: added info on
13954         creating a copyright symbol.
13955
13956 2005-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13957
13958         * VERSION: release 2.5.9
13959         
13960 2005-01-18  Erlend Aasland  <erlenda@gmail.com>
13961
13962         * scm/auto-beam.scm: Simplify score-override-auto-beam-setting
13963
13964         * Documentation/user/notation.itely: Document
13965         score-override-auto-beam-setting Fix documentation for
13966         revert-auto-beam-setting.
13967
13968 2005-01-18  Werner Lemberg  <wl@gnu.org>
13969
13970         * scm/framework-ps.scm (ps-embed-cff): Fix DSC comments.
13971         (procset): New function to define a procset resource.
13972         (ps-embed-pfa): New function to define a font resource.
13973         (setup): New function to define a `Setup' environment.
13974         (preamble): Use new functions.
13975
13976         * ps/lilypond.defs (init-lilypond-parameters): New function to
13977         get rid of directly executed PS code.  Used in scm/framework-ps.scm.
13978
13979 2005-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13980
13981         * mf/GNUmakefile (MFTRACE_FLAGS): add --no-afm to MFTRACE_FLAGS
13982
13983 2005-01-17  Erlend Aasland  <erlenda@gmail.com>
13984
13985         * scm/define-markup-commands.scm: Change number->markletter-string
13986         to take two arguments (vector number). Add number->mark-alphabet-vector
13987         and markalphabet markup command.
13988
13989         * scm/translation-functions.scm: Add format-mark-box-alphabet,
13990         format-mark-alphabet, format-mark-box-barnumbers and
13991         format-mark-barnumbers. Fix bug in format-mark-box-numbers.
13992
13993 2005-01-17  Graham Percival  <gperlist@shaw.ca>
13994
13995         * Documentation/user/examples.itely: add SATB automatic piano
13996         reduction template.
13997
13998         * Documentation/user/notation.itely: added info about changing
13999         partcombine texts.  Also adds examples of alternate lyrics.
14000
14001         * Documentation/user/changing-defaults.itely: added warning
14002         about \RemoveEmptyStaffContext overriding previous changes.
14003
14004 2005-01-17  Werner Lemberg  <wl@gnu.org>
14005
14006         * buildscripts/mf-to-table.py: Use `FetaAlphabetEncoding' for
14007         feta-alphabet*.
14008
14009 2005-01-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14010
14011         * python/lilylib.py (make_ps_images): don't do final showpage for
14012         multi-page documents.
14013         
14014         * VERSION (MY_PATCH_LEVEL): release 2.5.8
14015
14016 2005-01-16  Graham Percival  <gperlist@shaw.ca>
14017
14018         * Documentation/user/lilypond.tely: changed order of appendices;
14019         unified index should be last.
14020
14021         * Documentation/user/notation.itely: add example of key signatures
14022         and info about Staff.printKeyCancellation.
14023
14024 2005-01-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14025
14026         * lily/include/repeated-music.hh (class Repeated_music): change
14027         into "namespace" class.
14028
14029         * lily/event.cc: remove Key_change_event.
14030
14031         * lily/include/transposed-music.hh (class Transposed_music): remove.
14032
14033         * lily/transposed-music.cc: remove
14034
14035         * lily/include/relative-music.hh: remove.
14036
14037         * lily/include/music-sequence.hh (struct Music_sequence): change
14038         into "namespace" class.
14039
14040         * lily/untransposable-music.cc (Module): remove
14041
14042         * lily/include/un-relativable-music.hh (Module): remove
14043
14044         * lily/include/untransposable-music.hh (Module): remove
14045
14046         * lily/include/music-list.hh (Module): remove file
14047
14048         * lily/un-relativable-music.cc: remove file.
14049
14050 2005-01-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14051
14052         * lily/parser.yy: Compile fix.
14053
14054 2005-01-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14055
14056         * lily/include/music.hh (class Music): unvirtualize transpose().
14057
14058         * lily/sequential-music.cc: remove file.
14059
14060         * lily/include/lyric-combine-music.hh ("music.hh"): remove file.
14061
14062         * lily/slur-scoring.cc (get_best_curve): only switch on
14063         DEBUG_SLUR_SCORING for non NDEBUG builds.
14064
14065         * lily/include/music.hh (class Music): replace Music::start_mom()
14066         by start-callback property
14067
14068         * lily/include/grace-music.hh: remove file. 
14069
14070         * lily/stem.cc (height): robustness fix.
14071
14072         * lily/time-scaled-music.cc: remove file.
14073
14074         * lily/include/music.hh (class Music): include SCM init argument.
14075         (class Music): replace Music::get_length() virtual by
14076         length-callback property everywhere.
14077
14078         * scripts/convert-ly.py (conv): add  # to \property scalar value.
14079
14080         * mf/GNUmakefile: don't install *list.ly
14081
14082 2005-01-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14083
14084         * mf/GNUmakefile (CFF_FILES): Bugfix: only big cheeses and braces.
14085
14086 2005-01-12  Werner Lemberg  <wl@gnu.org>
14087
14088         This patch addresses the following problems in the feta sources
14089         files which contribute to the fetaXX fonts.
14090
14091         . Many fixes for rasterization at low resolutions (consistent use of
14092           `vround' and `hround', integer shift values for paths, applying
14093           `eps' for mirrored paths, use of `define_whole_pixels' and
14094           friends, etc.) -- while this probably looks like a waste of time
14095           it has revealed deficiencies in some glyph shapes.  See comment at
14096           the end of feta-params.mf how vertical symmetry is achieved.
14097
14098         . The `---' operator has been replaced everywhere with `--'; this
14099           both improves and considerably reduces the font size after
14100           conversion with mf2pt1.
14101
14102         These change aren't explicitly mentioned below since virtually all
14103         glyphs are affected.
14104
14105         Other notable differences:
14106
14107         . Glyphs from feta-accordion.mf now have charboxes around the
14108           outline.
14109
14110         . Fixed incorrect charbox for `accDot'.
14111
14112         . The `rcomma' and `lcomma' glyphs were distorted due to a typo.
14113
14114         . Fixed position of the bow in the `upprall' glyph and its siblings.
14115
14116         . The bulb size in the `2/2 meter' and `4/4 meter' glyphs is now
14117           dependent on the staff line thickness to avoid touching the middle
14118           staff line at smaller sizes.
14119
14120         . Largely extended output for feta-testXX: Where useful, glyphs
14121         are shown both between and on staff lines.
14122
14123
14124         * mf/feta-params.mf (staff_space_rounded,
14125         stafflinethickness_rounded, linethickness_rounded,
14126         ledgerlinethickness_rounded, stemthickness_rounded): New variables.
14127         Update all code which uses them where appropriate.
14128         (feta_eps, feta_shift, feta_space_shift, feta_offset, feta_fillpen):
14129         New variables used to control rasterization at low resolutions.  Set
14130         to zero if feta code is processed with metapost.
14131
14132         * mf/feta-macros.mf (draw_staff, draw_staff_outline): Updated.
14133         (draw_rounded_block, draw_square_block): Updated to use `--' only.
14134         (flare_path): Updated.
14135         Make it work with `filldraw' (but only circular pens).
14136         (hfloor, vfloor, hceiling, vceiling): New macros.
14137
14138         * mf/feta-accordion.mf ("accDiscant", "accFreebase", "accStdbase"):
14139         Use `draw' again in mf mode to have good pixel dropout control.
14140         Fix intersection points of horizontal lines with circle.
14141         ("accDot"): Fix parameters for set_char_box.
14142         ("accOldEE"): Use `draw' again in mf mode to have good pixel dropout
14143         control.
14144
14145         * mf/feta-banier.mf: Updated.
14146
14147         * mf/feta-bolletjes.mf (remember_pic): New variable, used for
14148         testing.
14149         (undraw_inside_ellipse): Remove `center' argument.  Update all
14150         callers.
14151         (draw_brevis): New macro, called by "Brevis notehead".
14152         (draw_whole_triangle_head): New macro, called by "Whole
14153         trianglehead".
14154         (draw_small_triangle_head): Use `filldraw'.
14155
14156         * mf/feta-eindelijk.mf: Remove useless global group.
14157         Updated.
14158
14159         * mf/feta-klef.mf (draw_c_clef): Correct point positions for using
14160         `filldraw'.
14161
14162         * mf/feta-pendaal.mf: Updated.
14163
14164         * mf/feta-puntje.mf: Updated.
14165
14166         * mf/feta-schrift.mf (draw_very_long_fermata): Simplified to use
14167         less points.
14168         ("Flageolet"): Use `draw' again in mf mode to have good pixel
14169         dropout control.
14170         ("Varied Coda"): Use `draw_block'.
14171         (draw_comma): Fix typo.
14172         (draw_arpeggio_arrow): Use `draw' also in mf mode to have good
14173         pixel dropout control.
14174
14175         * mf/feta-slag.mf ("upprall", "downprall", "lineprall"): Fix start
14176         position of bow.
14177
14178         * mf/feta-timesig.mf (draw_C): Reduce bulb size for smaller design
14179         sizes.
14180
14181         * mf/feta-toevallig.mf (remember_pic): New variable, used for
14182         testing.
14183         (draw_meta_sharp): Much simplified.
14184         ("Sharp", "1/2 Sharp", "3/4 Sharp"): Don't rotate but shift.
14185
14186         * mf/feta-test-generic.mf: Include all files as in feta-generic.mf.
14187
14188 2005-01-13  Mats Bengtsson  <mabe@s3.kth.se>
14189
14190         * Documentation/user/notation.itely (Ancient rests): Fix typo
14191         (thanks Anthony)
14192
14193 2005-01-13  Jan Nieuwenhuizen  <janneke@gnu.org>
14194
14195         * scm/auto-beam.scm (score-override-auto-beam-setting): New function.
14196
14197         * lily/main.cc (setup_paths): Add cff.
14198
14199         * mf/GNUmakefile (foe): Include actual target %.cff.
14200         (INSTALLATION_OUT_SUFFIXES): Install CFF and SVG fonts too.
14201
14202 2005-01-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14203
14204         * lily/include/lily-lexer.hh (class Lily_lexer): lose hungarian _b
14205         suffix for main_input_b_.
14206
14207         * scm/music-functions.scm (toplevel-music-functions):
14208         precompute music lengths for music expressions.  
14209
14210 2005-01-11  Nicolas Sceaux  <nicolas.sceaux@free.fr>
14211
14212         * lily/include/input.hh (class Input): new `end_' slot for end of
14213         input. Renamed defined_str0_ to start_.
14214
14215         * lily/input.cc (Input): Add Input::Input (Input const &) and
14216         remove Input::Input (Source_file*, char const *). Use the new
14217         slots.
14218         (set_location): method used by bison to propagate input
14219         locations (YYLLOC_DEFAULT).
14220         (end_line_number, end_column_number, step_forward): new methods
14221         
14222         * lily/input-scheme.cc (ly:input-both-locations): new function,
14223         similar to ly:input-location, but also return the end line and
14224         column.
14225
14226         * lily/include/includable-lexer.hh: 
14227         * lily/includable-lexer.cc: 
14228         * lily/include/lily-lexer.hh (class Lily_lexer): 
14229         * lily/lily-lexer.cc (add_lexed_char): Move add_lexed_char from
14230         Includable_lexer to Lily_lexer, in order to update lexloc (the
14231         yylloc), a new slot of Lily_lexer.
14232         (here_input, LexerError): simplify by using the lexloc slot (aka
14233         yylloc)
14234
14235         * lily/lexer.ll: #define yylloc to use input locations (it may
14236         be useless here?). Fixed the #embedded_scm rule (step the location
14237         forward in order to skip the sharp sign before parsing the scheme
14238         expression)
14239
14240         * lily/include/lily-parser.hh (class Lily_parser): 
14241         * lily/lily-parser.cc: Remove push_spot(), pop_spot() and
14242         here_input()
14243         (parser_error): overload for more precise locations of errors.
14244
14245         * lily/parser.yy (YYLTYPE): set location type to Input
14246         (YYLLOC_DEFAULT): use Input::set_location()
14247         (yylex): add the YYLTYPE* location parameter.
14248         Clean push_spot()/pop_spot()/here_input(), and use @$, @1, etc.
14249         Give an Input parameter to THIS->parser-error() for more accurate
14250         messages.
14251
14252 2005-01-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14253
14254         * stepmake/aclocal.m4: do NDEBUG for optimizing builds.
14255
14256         * lily/include/beam.hh (DEBUG_QUANTING): performance: only switch
14257         on BEAMQUANTING for non-NDEBUG builds.
14258
14259         * lily/stem.cc (head_count): performance: avoid String::String()
14260         inside oft called function.
14261
14262 2005-01-09  Graham Percival  <gperlist@shaw.ca>
14263
14264         * Documentation/user/examles.itely: attempted fix for broken
14265         string quartet template.
14266
14267         * Documentation/user/notation.itely: remove unnecessary broken
14268         link.
14269
14270 2005-01-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14271
14272         * VERSION (PACKAGE_NAME): release 2.5.7
14273
14274 2005-01-09  Jan Nieuwenhuizen  <janneke@gnu.org>
14275
14276         * config.make.in (METAFONT): Append -progname=mf, fixes use with
14277         mf-nowin for teTeX-3.0.  Backportme.
14278
14279         * scm/output-svg.scm (utf8-string): New function.
14280
14281         * scm/output-gnome.scm (utf8-string): New function.
14282         (otf-name-mangling): Remove.
14283
14284         * lily/pango-font.cc (Pango_font): Use font string iso font
14285         filename for utf8-text.
14286
14287         * buildscripts/gen-emmentaler-scripts.py: Remove designsize from
14288         name.
14289
14290 2005-01-08  Graham Percival  <gperlist@shaw.ca>
14291
14292         * Documentation/user/notation.itely: add info about
14293         Staff.extraNatural = ##f in Pitches section.  Also
14294         fixed some minor issues in the Vocal music section.
14295
14296 2005-01-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14297
14298         * scm/output-ps.scm (white-text): comment out Helvetica font,
14299         which is broken for my GS install.
14300
14301         * lily/pango-font.cc (pango_item_string_stencil): use ink_rect,
14302         which provides a tighter bbox.
14303
14304         * scm/define-grobs.scm (all-grob-descriptions): remove all
14305         extra-offsets from definitions.
14306
14307 2005-01-08  Erlend Aasland  <erlenda@gmail.com>
14308
14309         * scm/output-lib.scm: Rename guitar-tunings to guitar-tuning and
14310         add tuning for 4-string bass and some common 4/5-string banjo
14311         tunings.  New function (four-string-banjo) turns a 5-string tuning
14312         into a 4-string tuning.  New function
14313         (fret-number-tablature-format-banjo) computes correct fret numbers
14314         on 5-string banjos.
14315
14316         * ly/engraver-init.ly: Default stringTunings = #guitar-tuning
14317         Add beam correction to TabVoice.
14318
14319         * scm/define-grobs.scm: Adjust notehead offset. Print fret numbers
14320         using bold font; makes tabs more readable.
14321
14322 2005-01-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14323
14324         * lily/font-select.cc (get_font_by_design_size): don't make
14325         Modified_font_metric; this causes trouble, since we don't know the
14326         font magnification from inside Pango_font::text_stencil()
14327
14328         * lily/all-font-metrics.cc (find_pango_font): take magnification argument.
14329
14330         * Documentation/user/notation.itely (The Lyrics context): comment out
14331         broken {Small ensembles} link.
14332
14333         * scm/framework-svg.scm (output-framework): change calling convention.
14334
14335         * lily/object-key-dumper-scheme.cc: new file.
14336
14337         * lily/object-key-undumper-scheme.cc: new file.
14338
14339         * lily/tweak-registration-scheme.cc: new file.
14340
14341         * lily/pango-select.cc (symbol_to_pango_variant): init local variable.
14342
14343         * Documentation/user/examples.itely (String quartet): uncomment
14344         broken example.
14345
14346         * lily/font-config.cc: new file.
14347
14348 2005-01-08  Jan Nieuwenhuizen  <janneke@gnu.org>
14349
14350         * scm/output-svg.scm: 
14351         * scm/output-gnome.scm: s/bigcheese/emmentaler.
14352
14353         * lily/score-engraver.cc (MUSIC_FONT): Use emmentaler20.
14354
14355 2005-01-07  Jan Nieuwenhuizen  <janneke@gnu.org>
14356
14357         * lily/general-scheme.cc (LY_DEFINE): Use snprintf (WAS: sprintf).
14358         Add headers.
14359
14360         * lily/GNUmakefile (general-scheme.o): Add version.hh dependency.
14361
14362 2005-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14363
14364         * mf/GNUmakefile (debian-mirror): rename bigcheese to emmentaler.
14365
14366         * lily/include/main.hh: lose _b hungarian suffixes for global
14367         variables.
14368
14369         * lily/include/lily-guile-macros.hh: new file.
14370
14371         * lily/pango-select-scheme.cc (LY_DEFINE): new file.
14372
14373         * lily/general-scheme.cc: new file. 
14374
14375         * lily/font-select.cc (get_font_by_design_size): retrieve
14376         PangoFont for (designsize . "pango-descr") entries.
14377
14378         * lily/lily-parser-scheme.cc: new file.
14379
14380         * lily/output-def-scheme.cc: new file.
14381
14382         * lily/paper-book-scheme.cc: new file.
14383
14384         * lily/duration-scheme.cc (LY_DEFINE): new file.
14385
14386         * lily/pitch-scheme.cc:  new file.
14387
14388         * scm/font.scm (add-cmr-fonts): use real dimens in font selection.
14389
14390 2005-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14391
14392         * lily/dimensions.cc (LY_DEFINE): add ly:{inch,cm,mm,bp,pt}.
14393
14394 2005-01-06  Graham Percival  <gperlist@shaw.ca>
14395
14396         * Documentation/user/notation.itely: minor editing.
14397
14398         * Documentation/user/changing-defaults: minor editing.
14399
14400         * Documentation/user/examples.itely: add template for
14401         string quartet part extraction; demonstrates tag.
14402
14403 2005-01-06  Erlend Aasland  <erlenda@gmail.com>
14404
14405         * Documentation/user/notation.itely: documents
14406         format-mark-box-letters and format-mark-box-numbers
14407
14408         * scm/define-context-properties.scm: change comment.
14409
14410 2005-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14411
14412         * scm/framework-ps.scm (output-classic-framework): new function:
14413         dump systems as separate .eps files (without fonts) and write a
14414         single collecting .tex file.
14415
14416 2005-01-05  Mats Bengtsson  <mabe@s3.kth.se>
14417
14418         * Documentation/user/notation.itely (Setting simple songs):
14419         Correct several errors in the equivalent formulation of
14420         \addlyrics. 
14421         (The Lyrics context): Corrected link to the SATB example.
14422
14423 2005-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14424
14425         * scm/lily.scm (completize-formats): new function
14426         (postprocess-output): new function
14427
14428         * lily/paper-book.cc (classic_output): change calling
14429         convention. Give basename as first argument. 
14430         remove Paper_book::post_processing().
14431
14432         * lily/lily-guile.cc (LY_DEFINE): ly:output-backend, new function.
14433
14434 2005-01-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14435
14436         * lily/paper-outputter.cc (LY_DEFINE): new function
14437         ly:outputter-close.
14438
14439         * lily/main.cc: change --format,-f to --backend,-b
14440
14441         * lily/include/main.hh: rename format to backend.
14442
14443         * scm/translation-functions.scm (format-mark-box-numbers): add.
14444         patch by Erlend Aasland
14445
14446 2005-01-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14447
14448         * lily/pango-font.cc (text_stencil): dump string as
14449         (utf-8-string FONTDESC UTF8) for use in -f gnome, -f svg.
14450
14451 2005-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
14452
14453         * configure.in (gui_b): Remove handy developer-only
14454         PKG_CONFIG_PATH settings that cater for Jan-and-Han-Wen ~/usr/pkg/
14455         CVS source installations (but break other non-default but correct
14456         PKG_CONFIG_PATH setups), as this is no longer developer-only.
14457
14458         * SConstruct: 
14459         * ps/GNUmakefile (INSTALLATION_FILES): teTeX-3.0
14460         compatibility (backportme).
14461
14462         * GNUmakefile.in: teTeX-3.0 compatibility (backportme).
14463
14464 2005-01-03  Werner Lemberg  <wl@gnu.org>
14465
14466         Prepare glyph shapes for mf2pt1 conversion.
14467
14468         * mf/feta-accordion.mf (accreg_pen): Removed.  No longer used.
14469         (accDiscant, accFreebase, accStdbase): Replace `draw' with
14470         `penstroke'.
14471         (accDot): Use `drawdot'.
14472         (accBayanbase): Replace `draw' with `draw_gridline'.
14473         (print_penpos): Moved to feta-macros.mf.
14474         (accOldEE): Replace `filldraw' with `penstroke'.
14475         Replace `draw' with `penstroke' and `drawdot'.
14476
14477         * mf/feta-banier.mf: Code clean-up.
14478         ("grace dash (up)", "grace dash (down)"): Replace `draw' with
14479         `fill'.
14480
14481         * mf/feta-bolletjes (draw_cross): Remove call to `labels'.
14482
14483         * mf/feta-eindelijk.mf (draw_rest_bulb, draw_eigth_rest): Add
14484         paremeter to control drawing of labels.  Update all callers.
14485
14486         * mf/feta-klef.mf (draw_c_clef): Use `&' not `..' to connect paths.
14487         (new_bulb): Return a bulb as a single path.  To do that, it now
14488         takes some more parameters.  Updated all callers.
14489         (draw_gclef): Major clean-up.  `draw' has been replaced with
14490         `penstroke', unnecessary outlines have been removed.
14491         Remove (unused) gnome-canvas code.
14492
14493         * mf/feta-macros.mf (print_penpos): New macro (from
14494         feta-accordion.mf).
14495         Other minor fixes.
14496
14497         * mf/feta-pendaal.mf ("Pedal asterisk"): Use `undrawdot'.
14498         ("Pedal dot"): Use `drawdot'.
14499         (draw_pedal_P): Add parameter to control drawing of labels.  Update
14500         all callers.
14501         Fix shape at top.
14502         (draw_pedal_e): Add parameter to control drawing of labels.  Update
14503         all callers.
14504         (draw_pedal_d): Add parameter to control drawing of labels.  Update
14505         all callers.
14506         Revert drawing direction.
14507
14508         * mf/feta-schrift.mf (draw_fermata): Use single path.
14509         (draw_short_fermata): Replace `filldraw' with `fill'.
14510         (draw_long_fermata, draw_very_long_fermata): Replace calls to
14511         `draw_rounded_block' with a single path.
14512         ("Thumb"): Draw full circle instead of mirroring segments.
14513         (draw_accent): New macro.
14514         ("> accent", "espr"): Use it.
14515         (draw_marcato): Replace `filldraw' and `draw' with `fill'.
14516         ("open (unstopped)"): Draw full circle instead of mirroring
14517         segments.
14518         (draw_vee): Removed.
14519         ("Upbow"): Use `draw_accent' instead of `draw_vee'.
14520         ("Downbow"): Replace calls to `draw_rounded_block' with a single
14521         path.
14522         ("Trill (`tr')"): Replace overlapping loop drawn with `draw' with
14523         partial pieces drawn with `fill' -- these do still overlap with the
14524         stem of the `t' but just once, not multiple times so that fontforge
14525         can handle it gracefully.
14526         Change other parts of the glyph so that fontforge's overlapping
14527         algorithm reliably works.
14528         (draw_heel): Replace `draw' with `fill'.
14529         (draw_toe): Use `draw_accent' instead of `draw_vee'.
14530         ("Flageolet"): Replace `draw' with `penstroke'.
14531         ("Segno"): Replace `filldraw' with `penstroke'.
14532         Replace `draw' with `drawdot'.
14533         ("Coda"): Replace `fill' with `penstroke', using a single path.
14534         ("Varied Coda"): Use less overlapping paths.
14535         (draw_arpeggio_arrow): Replace `filldraw' with `fill', using a
14536         single path.
14537
14538         * mf/feta-slag.mf (draw_trillelement): Put `clearxy' outside of
14539         group to better control the `labels' command.
14540         Rename argument to `offset' and use it actually.  Update all
14541         callers.
14542         Replace `filldraw' with `fill'.
14543         ("mordent", "prallmordent", "upmordent", "downmordent",
14544         "lineprall"): Replace `draw' with `draw_gridline'.
14545         ("upprall", "downprall"): Replace `draw' with `fill'.
14546
14547         * mf/feta-timesig.mf: Formatting.
14548
14549         * mf feta-toevallig.mf (draw_meta_flag): Move code to draw labels
14550         to...
14551         ("Flat"): Here.
14552         (draw_paren): Move code to draw labels to...
14553         ("Right Parenthesis"): Here.
14554
14555 2005-01-02  Graham Percival <gperlist@shaw.ca>
14556
14557         * Documentation/user/notation.itely: add example of \setTextDecresc
14558         and \setTextDim.
14559
14560 2005-01-02  Tatsuya Ono <tats_ono@infoseek.jp>
14561
14562         * scm/define-markup-commands.scm :  fix glyph-strings of
14563         accidentals and \note-by-number
14564
14565 2005-01-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14566
14567         * VERSION: 2.5.6 released.
14568         
14569         * ps/lilyponddefs.ps: put mm -> pt scaling in here.
14570
14571         * input/regression/new-markup-scheme.ly: oops. font-family=music
14572         -> font-encoding fetaMusic.  
14573
14574         * lily/main.cc: put default to PS.
14575
14576         * lily/tfm.cc: idem.
14577
14578         * lily/afm.cc: idem.
14579
14580         * lily/include/modified-font-metric.hh (struct
14581         Modified_font_metric): remove coding_scheme() method.
14582
14583         * input/mutopia/F.Schubert/morgenlied.ly: convert to utf8
14584
14585         * scripts/convert-ly.py (conv): crash on encountering \encoding.
14586
14587         * input/les-nereides.ly: convert to utf8
14588
14589         * lily/modified-font-metric.cc (text_dimension): idem.
14590
14591         * lily/parser.yy (TODO): idem.
14592
14593         * lily/include/lily-lexer.hh (class Lily_lexer): idem.
14594
14595         * lily/lexer.ll: remove encoding
14596
14597         * scm/framework-ps.scm (output-variables): separately scale the
14598         page to mm 
14599
14600         * lily/pango-font.cc (Pango_font): fix scaling.
14601
14602         * lily/font-metric.cc (design_size): design_size returns a
14603         dimension now as well.
14604
14605 2004-12-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14606
14607         * mf/GNUmakefile ($(outdir)/%.otf-table): use findstring. Fixes
14608         brace generation. 
14609
14610         * lily/text-metrics.cc (LY_DEFINE): use scm_c_make_hash_table().
14611
14612 2004-12-30  Jan Nieuwenhuizen  <janneke@gnu.org>
14613
14614         * mf/GNUmakefile (INSTALLATION_OUT_SUFFIXES): Do not try to
14615         install unbuildable Fontmap and Fontmap.lily (Simon Aridis-Lang).
14616
14617 2004-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14618
14619         * mf/GNUmakefile ($(outdir)/%.otf-table): include parmesan20.lisp
14620         in first run as well.
14621
14622         * scm/paper.scm (layout-set-staff-size): use text-font-size in
14623         dimension less points (ie. 12 = 12 point)
14624
14625         * lily/pango-select.cc (select_pango_font): use find_scaled_font().
14626
14627         * lily/all-font-metrics.cc (find_pango_font): set description_
14628
14629         * lily/pango-font.cc (text_stencil): export size as well.
14630         (text_stencil): fix scaling and extents box.
14631
14632 2004-12-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14633
14634         * Documentation/topdocs/NEWS.texi (Top): add -f texstr
14635
14636         * Documentation/user/invoking.itely (Invoking lilypond): document
14637         texstr
14638
14639         * scripts/convert-ly.py (conv): add ancient rules.
14640
14641         * scm/clef.scm (c0-pitch-alist): replace - with .
14642
14643         * scripts/lilypond-book.py (process_snippets): add texstr support.
14644
14645         * scm/framework-texstr.scm (header): change extension to .textmetrics
14646
14647         * lily/lily-parser.cc (parse_file): do try_load_text_metrics for
14648         -f tex.
14649
14650         * lily/text-metrics.cc: new file.
14651         (try_load_text_metrics): new function
14652
14653         * lily/include/text-metrics.hh: new file.
14654
14655 2004-12-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14656
14657         * lily/include/lily-guile.hh (ly_lily_module_constant): rename
14658         ly_scheme_function to ly_lily_module_constant.
14659
14660         * lily/modified-font-metric.cc (text_dimension): try
14661         lookup_tex_text_dimension() first.
14662
14663         * lily/tfm.cc: new function ly:load-text-dimensions
14664
14665 2004-12-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14666
14667         * scm/output-texstr.scm (text): use \lilygetmetrics
14668
14669         * scm/framework-texstr.scm (header): dump in new format.
14670
14671         * tex/lilypond-tex-metrics: new file.
14672         
14673 2004-12-27  Jan Nieuwenhuizen  <janneke@gnu.org>
14674
14675         * lily/pango-font.cc (text_stencil): Quick try at glyph->charcode
14676         mapping.
14677         (index_to_charcode): New method.
14678
14679         * scm/output-ps.scm (glyph-string): 
14680         * scm/output-gnome.scm (glyph-string): Add FONT parameter.
14681
14682 2004-12-26  Jan Nieuwenhuizen  <janneke@gnu.org>
14683
14684         * scm/output-gnome.scm (FIXME-glyph-string): New function.  Cannot
14685         implement fully, need FONT to get to charcode.
14686
14687         * scm/lily.scm (ly:all-stencil-expressions): Add glyph-string.
14688
14689         * scm: Cleanups.
14690
14691         * Documentation/user/changing-defaults.itely: Fix internalsrefs
14692         {Tunable context properties},
14693         {All layout objects},
14694         {Music definitions}.
14695
14696 2004-12-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14697
14698         * VERSION: release 2.5.5
14699         
14700         * lily/main.cc: use TeX as default output format.
14701
14702         * flower/file-path.cc (find): try to open directly as well, so we
14703         find absolute path files. 
14704
14705         * lily/pango-select.cc: new file.
14706
14707         * scm/framework-ps.scm: remove all encoding code. 
14708         load pfb/pfa for PangoFont too.
14709         
14710         * lily/lily-guile.cc (ly_chain_assoc_get): new function.
14711
14712 2004-12-22  Werner Lemberg  <wl@gnu.org>
14713
14714         Prepare glyph shapes for mf2pt1 conversion.
14715
14716         * mf/feta-toevallig.mf ("Double Sharp"): Minor path fix.
14717
14718         * mf/feta-bolletjes.mf (penposx): New auxiliary macro.
14719         (define_triangle_shape): Use it to replace `draw' with `fill' and
14720         `unfill'.  Update all callers.
14721         (draw_slash): Replace `filldraw' with `fill'.  Update all callers.
14722         (draw_cross): Ditto.
14723         ("X-Circled notehead"): Replace `draw' with `fill' and `unfill'.
14724         Use penrazor for better conversion with mf2pt1.
14725         (generic_draw_solfa_note_shape, draw_solfa_note_shape,
14726         draw_solfa_quarter_note_shape, triangle): Removed.  Unused.
14727         (draw_do_head, draw_re_head, draw_mi_head, draw_fa_head,
14728         draw_la_head, draw_ti_head): Replace `filldraw' with
14729         `fill'.  Update all callers.
14730
14731 2004-12-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14732
14733         * lily/paper-book.cc (output): revert: only allow a single output
14734         format.
14735
14736         * lily/include/pango-font.hh: new file.
14737
14738         * lily/pango-font.cc: new file.
14739
14740         * lily/font-metric.cc (text_stencil): new routine
14741
14742         * lily/all-font-metrics.cc (find_pango_font): new routine.
14743
14744         * lily/include/font-metric.hh (struct Font_metric): add
14745         text_stencil()
14746
14747         * configure.in (PKG_CONFIG_PATH): require PANGO_FT2
14748
14749 2004-12-22  Werner Lemberg  <wl@gnu.org>
14750
14751         Prepare glyph shapes for mf2pt1 conversion.
14752
14753         * mf/feta-macros.mf, mf_feta-eindelijk.mf: Some formatting.
14754
14755         * mf/feta-toevallig.mf: Formatting.
14756         (draw_meta_sharp): Modify path to replace `filldraw' with `fill'.
14757         ("Natural"): Fix paths to allow better postprocessing.
14758         (draw_meta_flat): Use `z3l' as additional point in path to get
14759         better conversion with mf2pt1.
14760         Other minor cleanups.
14761         ("3/4 Flat"): Add auxiliary points and modify path to replace
14762         `draw' with `fill'.
14763         ("Double Sharp"): Mirror path segments instead of picture elements
14764         to get a single outline.
14765         Modify path to replace `filldraw' with `fill'.
14766
14767 2004-12-22  Graham Percival  <gperlist@shaw.ca>
14768
14769         * input/test/unfold-all-repeats.ly: added file back.
14770
14771         * Documentation/user/notation.itely,
14772         Documentation/user/programming-interface.itely
14773         Documentation/user/changing-defaults.itely: fixed misc broken
14774         links to input/test/ files.
14775
14776 2004-12-22  Jan Nieuwenhuizen  <janneke@gnu.org>
14777
14778         * tex/texinfo.tex: Update.  We should not be distributing this,
14779         but since we do, use latest version.
14780
14781         * Documentation/user/macros.itexi: Comment-out \fetaflat,
14782         \fetasharp.  Fixes make web.  FIXME: make usable (compatible?) TeX
14783         macros for feta glyphs.
14784
14785 2004-12-22  Graham Percival  <gperlist@shaw.ca>
14786
14787         * Documentation/user/changing-defaults.itely: fix index for set.
14788
14789         * Documentation/user/converters.itely: added convert-ly bugs list
14790         from CVS.
14791
14792 2004-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
14793
14794         * python/lilylib.py (setup_environment): Set GS_FONTPATH, GS_LIB
14795         to empty.  Fixes make web, using gs-gpl-8.01.  In fact,
14796         gs-afpl-8.50 has more trouble with make web (ie, uses *a lot* more
14797         resourses; 3x MAXSIZE, 4x MAXRSS, 1.5x user).
14798
14799         * mf/GNUmakefile (pfa_warning): Use less broken check.
14800
14801         * python/lilylib.py (setup_environment): Remove cruft from
14802         GS_FONTPATH.
14803
14804         * configure.in: Bump mftrace requirement to 1.1.1.
14805
14806 2004-12-20  Jan Nieuwenhuizen  <janneke@gnu.org>
14807
14808         * scm/output-svg.scm (beam): Use polygon.
14809
14810         * scm/lily-library.scm: Bugfix.
14811
14812         * Documentation/user/invoking.itely (Invoking lilypond): Bugfix.
14813
14814         * mf/GNUmakefile (ALL_GEN_FILES): Remove unbuildable Fontmap.lily.
14815
14816 2004-12-19  Werner Lemberg  <wl@gnu.org>
14817
14818         Prepare glyph shapes for mf2pt1 conversion.
14819
14820         * mf/feta-eindelijk: Some formatting.
14821         (multi_rest_x, multi_beam_height): Removed.  Unused.
14822         ("Quarter rest"): Use `intersectiontimes' to create a single
14823         outline.
14824         (rest_crook): Removed.  Unused.
14825         (draw_rest_bulb): Return path (without filling).  Update callers.
14826         Simplified.
14827         (draw_eighth_rest, "16th rest", "32th rest", "64th rest",
14828         "128th rest"): Simplify `pat'.
14829         Create single outline.
14830
14831 2004-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
14832
14833         * mf/GNUmakefile (ALL_GEN_FILES):
14834         (INSTALLATION_OUT_SUFFIXES): Remove unbuildable fonts.scale.
14835
14836         * scm/output-svg.scm (polygon, draw-line, dashed-line): New
14837         function.
14838
14839 2004-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14840
14841         * scm/output-texstr.scm (placebox): add routine
14842
14843         * VERSION (PACKAGE_NAME): release 2.5.4
14844
14845         * scm/framework-texstr.scm (output-framework): new file.  
14846
14847         * scm/output-texstr.scm: new file. Collect (TEXT . ) calls for TeX
14848         processing.
14849
14850         * Documentation/user/invoking.itely (Invoking lilypond): add SVG
14851
14852         * stepmake/stepmake/metafont-rules.make: make single SVG/PFA/PFB
14853         rule.
14854
14855         * configure.in (gui_b): bump mftrace requirement to 1.1.0
14856
14857         * mf/feta-bolletjes.mf (triangle): add s to 0triangle.
14858
14859         * mf/GNUmakefile (ALL_GEN_FILES): make SVG files too.
14860
14861 2004-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
14862
14863         * scm/framework-svg.scm (dump-page): Implement landscape.
14864
14865 2004-12-18  Jan Nieuwenhuizen  <janneke@gnu.org>
14866
14867         * lily/main.cc (setup_paths): Add svg to search path.
14868
14869         * scm/output-svg.scm:
14870         * scm/framework-svg.scm: Add pageSet.  Update.
14871         (dump-fonts): New function.
14872         (output-framework): Use it.
14873
14874         * mf/GNUmakefile: 
14875         * buildscripts/gen-bigcheese-scripts.py: Also generate SVG font.
14876
14877 2004-12-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14878
14879         * tex/lilyponddefs.tex: comment out new ifpdf code.
14880
14881 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14882
14883         * GNUmakefile.in: 
14884         * SConstruct (symlink): Replace afm by otf.
14885
14886         * scm/framework-gnome.scm (gnome-main): Remove invocation of
14887         ly:pango-add-afm-decoder.
14888
14889         * lily/lily-guile.cc ("ly:pango-add-afm-decoder"): Build fix: Remove.
14890
14891 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14892
14893         * scm/output-ps.scm (new-text): don't access t glyph for getting
14894         space dimension.
14895
14896         * ly/init.ly: warn about \version
14897
14898         * lily/lexer.ll: set version-seen?
14899
14900 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14901
14902         * scm/output-svg.scm (string->entities): Update.
14903
14904 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14905
14906         * lily/main.cc (setup_paths): replace afm by otf for path. 
14907
14908         * lily/pangofc-afm-decoder.cc: remove.
14909
14910         * lily/include/pangofc-afm-decoder.hh: remove.
14911
14912         * scm/framework-scm.scm (output-framework): new file.
14913
14914         * mf/GNUmakefile: remove SAUTER_FONTS.
14915         remove SVG/sodipodi hacks.
14916
14917         * scm/lily-library.scm (stderr): move stderr.
14918
14919         * mf/GNUmakefile: remove AFM support.
14920
14921         * buildscripts/mf-to-table.py (base): remove AFM support.
14922
14923         * lily/open-type-font.cc (design_size): use design_size
14924
14925 2004-12-17  Pedro Kroger  <kroeger@pedrokroeger.net>
14926
14927         * lily/font-metric.cc (LY_DEFINE): Fix the docstring.
14928
14929 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14930
14931         * mf/GNUmakefile: Generate combined aybabtu info.
14932         * mf/aybabtu.pe.in (i): Load it.
14933
14934         * scm/framework-tex.scm (otf-font-load-command): Bugfix: subfonts
14935         are not symbols.
14936
14937         * lily/include/open-type-font.hh (count): New method.
14938
14939         * mf/aybabtu.pe.in: Typo.
14940
14941         * Documentation/user/out/lilypond-internals.nexi (Scheme
14942         functions): Typo.
14943
14944         * lily/include/guile-compatibility.hh (SCM_HASHTABLE_P): Add compat.
14945
14946 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14947
14948         * buildscripts/gen-bigcheese-scripts.py (i): use symbols for
14949         subfonts.
14950
14951         * scm/output-tex.scm (named-glyph): new function. This fixes TeX output.
14952
14953         * scm/framework-tex.scm (otf-font-load-command): load subfonts.
14954         (tex-font-command-raw): new function.
14955
14956         * lily/include/virtual-font-metric.hh (Module): remove file
14957
14958         * lily/virtual-font-metric.cc (Module): remove file.
14959         
14960
14961         * lily/open-type-font.cc (LY_DEFINE): ly:otf-font-glyph-info
14962         (get_indexed_char): read bbox from lily table if present.
14963
14964 2004-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14965
14966         * mf/GNUmakefile ($(outdir)/aybabtu.subfonts): rule for
14967         aybabtu.subfonts
14968
14969         * mf/feta-beugel.mf (y): don't number consecutively, instead, use
14970         global glyphname. Enables more than 64 glyphs in the OTF.
14971
14972 2004-12-16  Jan Nieuwenhuizen  <janneke@gnu.org>
14973
14974         * scm/font.scm (add-music-fonts): Load aybabtu iso all separate
14975         braces.
14976
14977         * lily/open-type-font.cc (design_size): Use 12 as default for
14978         design size.
14979
14980         * mf/aybabtu.pe.in: New file.  Merge all our braces.
14981
14982         * mf/GNUmakefile: Generate aybabtu.
14983
14984         * tex/lilyponddefs.tex: teTeX 3.0 pdfetex fix.
14985
14986 2004-12-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14987
14988         * scm/lily-library.scm (char->unicode-index): Remove.
14989
14990         * scm/output-gnome.scm (text): Bugfix for plain string input.
14991         Updates.
14992
14993         * scm/output-svg.scm (svg-font): Add weight to font selection.
14994
14995 2004-12-14  Mats Bengtsson  <mabe@s3.kth.se>
14996
14997         * Documentation/topdocs/INSTALL.texi (Top): Point to
14998         buildscripts/out/clean-fonts instead of
14999         buildscripts/clean-fonts.sh. 
15000
15001 2004-12-13  Graham Percival  <gperlist@shaw.ca>
15002
15003         * input/regression/figured-bass.ly: attempt to clarify text.
15004
15005         * Documentation/user/notation.tely: add cindex for tag, attempt to
15006         add figured bass example.
15007
15008         * Documentation/user/changing-defaults: basic editing.
15009
15010 2004-12-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15011
15012         * buildscripts/gen-bigcheese-scripts.py (i): load .subfonts table. 
15013
15014         * lily/open-type-font.cc (LY_DEFINE): new function
15015         ly:font-sub-fonts
15016
15017         * lily/include/font-metric.hh (struct Font_metric): new method
15018         sub_fonts()
15019
15020         * lily/vaticana-ligature-engraver.cc (transform_heads): replace
15021         . with - in add.stem.
15022         
15023 2004-12-13  Jan Nieuwenhuizen  <janneke@gnu.org>
15024
15025         * scm/encoding.scm (coding-alist): Fix encodings for fetaNumber
15026         and fetaDynamic.
15027
15028         * lily/rest.cc (glyph_name): Change - to . .
15029
15030         * scm/output-gnome.scm (text): Hello world, again.
15031
15032         * scm/output-svg.scm (named-glyph): New function.  Hello world!
15033
15034         * lily/modified-font-metric.cc (index_to_charcode): New method.
15035
15036         * lily/include/font-metric.hh (index_to_charcode): New function.
15037
15038         * lily/font-metric.cc (ly:font-glyph-name-to-charcode): Use it in
15039         new function.
15040         (ly:font-glyph-to-index): Remove.
15041
15042 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15043
15044         * lily/open-type-font.cc (make_index_to_charcode_map): new method.
15045
15046         * mf/feta-autometric.mf (code): remove tex name from fet_beginchar.
15047
15048         * lily/open-type-font.cc (load_scheme_table): new function
15049
15050         * lily/dots.cc (print): replace - 
15051
15052         * lily/open-type-font.cc (attachment_point): new function.
15053         (load_table): read LILC table
15054
15055         * buildscripts/gen-bigcheese-scripts.py (Module): new
15056         file. Generate FF scripts.
15057
15058         * mf/feta-din10.mf: idem.
15059
15060         * mf/feta-nummer10.mf: remove mf files.
15061
15062         * mf/feta-alphabet.mf (dynamic_design_size): merge din and number font.
15063
15064 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15065
15066         * lily/lily-guile.cc: Use scm_from_locale_stringn.
15067
15068         * lily/include/guile-compatibility.hh (scm_from_locale_stringn): Add
15069         compatibility.
15070
15071 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15072
15073         * lily/open-type-font.cc (get_indexed_char): scale metrics by
15074         design-size and units_per_EM.
15075
15076         * mf/bigcheese.pe.in: set PUA codepoints before loading din & nummer.
15077
15078 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15079
15080         * mf/bigcheese.pe.in (i): Map to 0xe000 (PUA) for testing, which
15081         does not crash fontforge.
15082
15083         * scm/lily-library.scm (char->unicode-index): Hack to map onto
15084         PUA.
15085
15086 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15087
15088         * scm/framework-ps.scm (ps-embed-cff): new function.
15089
15090         * lily/lily-guile.cc (LY_DEFINE): make ly:gulp-file binary proof.
15091
15092 2004-12-12  Werner Lemberg  <wl@gnu.org>
15093
15094         * mf/bigcheese.pe.in: Add PUA mapping.
15095         Don't create Type 42 but bare CFF font.
15096
15097 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15098
15099         * scm/output-gnome.scm (placebox): Hackery to get bigcheese symbols
15100         within canvas boundaries.
15101
15102         * mf/merge.pe.in: Set font names, version, license GPL.
15103
15104         * make/substitute.make: Add FONTFORGE.
15105
15106         * config.make.in (FONTFORGE): Add.
15107
15108         * configure.in (gui_b): Use PATH_PROG for fontforge.
15109
15110 2004-12-11  Graham Percival  <gperlist@shaw.ca>
15111
15112         * scm/define-markup-commands.scm: add baseline-skip to info
15113         about \column.
15114
15115 2004-12-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15116
15117         * lily/font-metric.cc (ly:font-get-glyph-index): New function.
15118
15119         * scm/output-gnome.scm (named-glyph): Use it.
15120
15121         * scm/lily.scm (ly:all-stencil-expressions): Add named-glyph.
15122
15123         * flower/string.cc (substitute_char): Rename, rewrite, modify this.
15124         (upper_string, lower_string, reverse_string): Remove.
15125
15126         * configure.in (fontforge): Reinstate version check.
15127
15128         * ly/engraver-init.ly: Fix clef glyph names.
15129
15130         * lily/time-signature.cc (special_time_signature): Fix fraction
15131         glyph names.
15132
15133 2004-12-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15134
15135         * mf/merge.pe: new file.
15136
15137         * lily/freetype.cc: new file.
15138
15139         * lily/include/open-type-font.hh (class Open_type_font): new file.
15140
15141         * lily/include/freetype.hh: new file.
15142
15143         * lily/open-type-font.cc: new file.
15144
15145         * lily/all-font-metrics.cc (find_otf): new function.
15146
15147 2004-12-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15148
15149         * lily/time-signature.cc (special_time_signature): Fix.
15150
15151         * configure.in (PKG_CONFIG_PATH): Remove stray `i'.  Check for
15152         GTK2 before checking for pango.  Fixes -fgnome.
15153
15154         * lily/font-metric.cc (LY_DEFINE): Also rename C name to match
15155         Scheme name.
15156
15157         * scm/define-markup-commands.scm:
15158         * scm/safe-lily.scm: Bugfix: ly:font-by-name.
15159
15160         * configure.in: Require makeinfo 4.7 (needed for @ifdocbook).
15161
15162         * stepmake/aclocal.m4 (STEPMAKE_GET_VERSION): Grok fontforge-like
15163         date versions.  Fixes configure.
15164         (STEPMAKE_CHECK_VERSION): Support optional actual program version
15165         argument.
15166
15167 2004-12-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15168
15169         * buildscripts/mf-to-table.py (write_ps_encoding): write real
15170         names in .enc
15171
15172         * lily/*.cc: use '.' iso. '-' for separating glyph name elements.
15173
15174 2004-12-09  Graham Percival  <gperlist@shaw.ca>
15175
15176         * Documentation/user/changing-defaults.itely: add info about
15177         make-dynamic-script
15178
15179         * Documentation/user/notation.itely: add link in dynamics to
15180         section about make-dynamic-script.
15181
15182 2004-12-09  Christian hitz  <chhitz@gmx.net>
15183
15184         * lily/lily-guile.cc: change MACOS_X to __APPLE__
15185
15186 2004-12-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15187
15188         * buildscripts/mf-to-table.py (parse_logfile): use . for
15189         concatting name and group.
15190         (parse_logfile): use M for Minus (negative.)
15191
15192         * lily/include/type-swallow-translator.hh
15193         (DECLARE_EVENT_SWALLOWER): ENTER_DESCRIPTION -> ADD_TRANSLATOR
15194
15195         * lily/*.cc: cosmetics around = sign.
15196
15197         * lily/paper-column.cc (Paper_column): copy rank_. This fixes
15198         lyric spacing on the penultimate column.
15199
15200 2004-12-05  Christian Hitz  <chhitz@gmx.net>
15201
15202         * configure.in:
15203         * lily/accidental-placement.cc:
15204         * lily/bar-line.cc:
15205         * lily/beam-concave.cc:
15206         * lily/beam-quanting.cc:
15207         * lily/beam.cc:
15208         * lily/bezier-bow.cc:
15209         * lily/bezier.cc:
15210         * lily/break-align-interface.cc:
15211         * lily/custos.cc:
15212         * lily/dimension-cache.cc:
15213         * lily/dot-column.cc:
15214         * lily/font-metric.cc:
15215         * lily/font-select.cc:
15216         * lily/gourlay-breaking.cc:
15217         * lily/grob-property.cc:
15218         * lily/grob.cc:
15219         * lily/lily-guile.cc:
15220         * lily/line-spanner.cc:
15221         * lily/lookup.cc:
15222         * lily/lyric-extender.cc:
15223         * lily/lyric-hyphen.cc:
15224         * lily/mensural-ligature.cc:
15225         * lily/midi-def.cc:
15226         * lily/misc.cc:
15227         * lily/note-collision.cc:
15228         * lily/note-column.cc:
15229         * lily/note-head.cc:
15230         * lily/paper-outputter.cc:
15231         * lily/percent-repeat-item.cc:
15232         * lily/rest-collision.cc:
15233         * lily/side-position-interface.cc:
15234         * lily/simple-spacer.cc:
15235         * lily/slur-configuration.cc:
15236         * lily/slur-scoring.cc:
15237         * lily/slur.cc:
15238         * lily/spaceable-grob.cc:
15239         * lily/spacing-spanner.cc:
15240         * lily/spanner.cc:
15241         * lily/staff-symbol-referencer.cc:
15242         * lily/stem.cc:
15243         * lily/stencil.cc:
15244         * lily/system-start-delimiter.cc:
15245         * lily/system.cc:
15246         * lily/text-item.cc:
15247         * lily/tie.cc:
15248         * lily/tuplet-bracket.cc:
15249         * lily/vaticana-ligature.cc: Fix for MacOS X: use <math.h> instead of
15250         <cmath> beacause isinf/isnan is undefined in <cmath>
15251
15252 2004-12-03  Mats Bengtsson  <mabe@s3.kth.se>
15253
15254         * cygwin/lily-wins.py (stat): remove old flag -p when calling lilypond.
15255
15256 2004-12-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15257
15258         * VERSION: release 2.5.3
15259         
15260 2004-11-29  Arno Waschk <arno@arnowaschk.de>
15261
15262         * mf/feta-schrift.mf: added <>-like articulation mark as "espressivo"
15263
15264 2004-12-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15265
15266         * scm/music-functions.scm (cue-substitute): voice counts start at 0.
15267
15268         * lily/note-head.cc (internal_print): always try the "s" head if
15269         u/d not found.
15270
15271         * scm/titling.scm (marked-up-headfoot): reinstate default tagline.
15272
15273 2004-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15274
15275         * mf/parmesan-heads.mf (overdone_heads): typos.
15276
15277 2004-11-30  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15278
15279         * lily/parser.yy (markup): in markups, { .. } without command
15280         before are also flattened, ie \line must be explicitely used.
15281
15282         * Documentation/user/changing-defaults.itely:
15283         * Documentation/user/notation.itely: 
15284         * input/wilhelmus.ly: 
15285         * input/regression/instrument-name-markup.ly: 
15286         * input/regression/markup-score.ly: 
15287         * input/regression/new-markup-scheme.ly: 
15288         * input/regression/new-markup-syntax.ly: 
15289         * input/test/coriolan-margin.ly: use \line in markups where
15290         appropriate
15291         
15292 2004-11-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15293
15294         * scm/new-markup.scm (map-markup-command-list): helper function
15295         used in parser.yy to map markup commands on a markup list.
15296
15297         * lily/parser.yy: get rid off < > in markups by treating { } as
15298         real lists.
15299
15300         * lily/lexer.ll: remove < > from markup lexer mode.
15301
15302         * scripts/convert-ly.py (conv): add rule for converting 
15303         \markup < > to \markup { }
15304
15305         * ly/titling-init.ly: 
15306         * input/test/coriolan-margin.ly: 
15307         * input/regression/new-markup-syntax.ly: 
15308         * input/regression/new-markup-scheme.ly: 
15309         * input/regression/multi-measure-rest-text.ly: 
15310         * input/regression/markup-stack.ly: 
15311         * input/regression/markup-score.ly: 
15312         * input/regression/instrument-name-markup.ly: 
15313         * input/mutopia/W.A.Mozart/mozart-hrn-3.ly: 
15314         * input/mutopia/R.Schumann/romanze-op28-2.ly: 
15315         * input/mutopia/J.S.Bach/wtk1-fugue2.ly: 
15316         * input/wilhelmus.ly: 
15317         * Documentation/user/notation.itely: 
15318         * Documentation/user/music-glossary.tely: 
15319         * Documentation/user/changing-defaults.itely: change < > to { } in
15320         markups
15321
15322 2004-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15323
15324         * lily/accidental-placement.cc (position_accidentals): shortcut if
15325         no accidentals to place.
15326
15327 2004-11-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15328
15329         * scm/define-grob-properties.scm (all-user-grob-properties): fixed
15330         typo s/ly:dimension ?/ly:dimension?/
15331
15332         * input/regression/lily-in-scheme.ly: 
15333         * input/regression/music-function.ly: 
15334         * ly/spanners-init.ly (assertBeamSlope): 
15335         * scm/music-functions.scm (def-grace-function): add the paper
15336         argument to music function definitions.
15337
15338 2004-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15339
15340         * lily/moment.cc (LY_DEFINE):
15341         ly:moment-main-{denominator,numberator}, new function.
15342
15343         * lily/score-engraver.cc (typeset_all): assign to column on basis
15344         of axis-group-parent-X setting.
15345
15346         * lily/axis-group-engraver.cc (process_acknowledged_grobs): do
15347         add_element() on basis of axis-group-parent-Y setting.
15348
15349         * lily/grob.cc: add axis-group-parent-{XY} properties.
15350
15351         * input/regression/spacing-stick-out.ly: new file.
15352
15353         * lily/simple-spacer.cc (add_columns): use binary search for
15354         setting column rods. Changes O(n^2) to O(n log(n)) for
15355         constructing spacing problem from columns.
15356         (add_columns): read allow-outside-line to make sure no texts stick
15357         out.
15358         (solve): Simple_spacer::is_active() only determines
15359         satisfies_constraints_ for non-ragged typesetting.
15360
15361         * lily/simultaneous-music.cc (to_relative_octave): only set
15362         old_relative_used if return pitch actually changed.
15363
15364         * scm/define-context-properties.scm
15365         (all-user-translation-properties): change to match implementation.
15366
15367         * python/lilylib.py: Replace re.match by re.search and adds "-c
15368         showpage" to the gs command line (Johannes Schindelin)
15369
15370         * scm/framework-ps.scm (output-preview-framework): sanitize bbox
15371         before processing. Prevents crash when inf is in the extent.
15372
15373         * scm/define-markup-commands.scm (note-by-number): add "s" to
15374         "noteheads-" glyphname.
15375  
15376         * lily/parser.yy (Generic_prefix_music): supply parser argument to
15377         music function as well.
15378         
15379 2004-11-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15380
15381         * VERSION: release 2.5.2
15382
15383         * Documentation/user/changing-defaults.itely (Creating titles):
15384         add breakbefore variable.
15385
15386         * lily/paper-book.cc (set_system_penalty): new function. Set
15387         penalty_ based on breakBefore setting
15388
15389         * lily/context-specced-music-iterator.cc (construct_children):
15390         interpret special context id $uniqueContextId 
15391
15392         * lily/context.cc (create_unique_context): new method. Move
15393         creation of unique (\new) contexts into interpreting phase. This
15394         makes
15395
15396           foo= \new Staff ..
15397           << \foo \foo >>
15398
15399         produce 2 staves.
15400         
15401
15402         * scm/define-music-properties.scm (all-music-properties): add
15403         quoted-voice-direction
15404
15405         * ly/music-functions-init.ly: killCues function.
15406
15407         * scm/music-functions.scm (cue-substitute): move creation of voice
15408         contexts further to the back. 
15409
15410 2004-11-25  Werner Lemberg  <wl@gnu.org>
15411
15412         * tex/GNUmakefile ($(outdir)/latin1.enc): Replace `/minus' with
15413         `/hyphen' in encoding vector to get correct glyph name for EC fonts.
15414
15415 2004-11-24  Erik Sandberg  <ersa9195@student.uu.se>
15416
15417         * buildscripts/guile-gnome.sh: Fixed typo.
15418
15419 2004-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15420
15421         * lily/lexer.ll: add < >  to markup lexer mode (backportme)
15422
15423         * scripts/abc2ly.py (dump_slyrics): add ord(). 
15424
15425         * lily/note-heads-engraver.cc (process_music): add shapeNoteStyles
15426         to regular engraver. 
15427
15428 2004-11-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15429
15430         * mf/feta-bolletjes.mf (triangle): rewrite solfa heads.
15431
15432 2004-11-22  Jan Nieuwenhuizen  <janneke@gnu.org>
15433
15434         * scm/define-markup-commands.scm (fill-line): Typo.
15435
15436         * buildscripts/guile-gnome.sh (GGVERSION): Build update for 2.7.96
15437         and newer.
15438
15439 2004-11-22  Erik Sandberg  <ersa9195@student.uu.se>
15440
15441         * ly/dynamic-scripts-init.ly: Fixed typo.
15442
15443 2004-11-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15444
15445         * mf/feta-bolletjes.mf (overdone_heads): cleanup triangle
15446         note-head, to have different attachment points for up and down.
15447
15448         * mf/feta-bolletjes.mf: merge solfa heads into main note heads.
15449
15450         * mf/feta-generic.mf (else): remove solfa.
15451
15452         * mf/feta-bolletjes.mf (tishape): remove unicode test.
15453
15454         * scm/define-context-properties.scm
15455         (all-user-translation-properties): add shapeNoteStyles property.
15456
15457         * lily/shape-note-heads-engraver.cc (process_music): new file.
15458
15459         * lily/event.cc (transpose): call Event::transpose() for
15460         transposing the tonic.
15461
15462 2004-11-21  Jan Nieuwenhuizen  <janneke@gnu.org>
15463
15464         * scm/output-gnome.scm: Save some pointers about pango/fontconfig
15465         Unicode/OpenType and AFM.
15466
15467         * lily/include/guile-compatibility.hh (scm_from_bool): Add.
15468
15469 2004-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15470
15471         * lily/grob.cc (Grob): idem. Plugs mem leaks. 
15472
15473         * lily/context.cc (Context): unprotect key from ctor.
15474
15475         * scm/stencil.scm (stack-lines): return empty-stencil if argument
15476         is '()
15477         (stack-stencils): idem.
15478
15479         * Documentation/user/changing-defaults.itely (Creating titles):
15480         document new title layout options.
15481
15482         * lily/parser.yy (lilypond_header_body): copy previous
15483         $globalheader if present.
15484
15485         * lily/ly-module.cc (LY_DEFINE): rename ly:import-module to
15486         ly:module-copy
15487         
15488         * scm/page-layout.scm (marked-up-headfoot): remove old functions.
15489
15490         * scm/titling.scm: remove old titling functions
15491
15492         * lily/stencil.cc (translate): remove absolute dimension.
15493
15494         * ly/titling-init.ly (oddFooterMarkup): new file. Generate titles
15495         via markup.
15496
15497         * scm/page-layout.scm (marked-up-headfoot): create header/footer
15498         field from user-supplied markup
15499
15500         * scm/define-markup-commands.scm (on-the-fly): new markup
15501         command. Enter SCM markup procedure directly in Scheme.
15502         (fromproperty): new markup command. Read markup from props argument.
15503
15504         * scm/titling.scm (marked-up-title): create title via
15505         user-specified markup. 
15506
15507         * scm/define-markup-commands.scm (column): remove empty stencils
15508         from column.
15509
15510         * lily/ly-module.cc (LY_DEFINE): use ly_module_lookup(). This does
15511         not have side-effect of creating variable stub.
15512
15513         * lily/stencil-scheme.cc (LY_DEFINE): add ly:stencil-empty?
15514
15515 2004-11-21  Jan Nieuwenhuizen  <janneke@gnu.org>
15516
15517         * scm/encoding.scm (coding-alist): 
15518         * scm/font.scm (add-ec-fonts):
15519         * ly/paper-defaults.ly: Use actual name for EC fontencoding:
15520         Extended-TeX-Font-Encoding---Latin.
15521
15522         * lily/side-position-interface.cc (general_side_position): Add
15523         actual offset to error message (avoid constant error messages).
15524
15525         * lily/all-font-metrics.cc (find_font): Add "lm" to try-AFM-first
15526         block.
15527
15528         * lily/font-select.cc (select_encoded_font)
15529         (get_font_by_mag_step, get_font_by_design_size): 
15530         * lily/modified-font-metric.cc (Modified_font_metric): 
15531         * lily/paper-def.cc (find_scaled_font): Add font_encoding parameter.
15532
15533         * scm/encoding.scm (coding-alist): Add fetaDynamic.
15534         (read-encoding-file): Bugfix: do not require space after bracket.
15535
15536         * scm/font.scm (add-cork-lm-fonts): Remove lmbxi8 and lmbxi14,
15537         these do not exist.
15538
15539 2004-11-20  Graham Percival  <gperlist@shaw.ca>
15540
15541         * Documentation/user/notation.itely: added info about typesetting
15542         boxed bar numbers.
15543
15544 2004-11-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15545
15546         * flower/interval.cc (T_to_string): gcc4 fixes.
15547
15548         * scm/define-markup-commands.scm (fill-line): use
15549         stack-stencils. This fixes problems with putting already centered
15550         stencils in a line.
15551
15552         * VERSION: release 2.5.1
15553
15554         * lily/bar-line.cc (get_staff_bar_size): add line thickness.
15555
15556 2004-11-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15557
15558         * input/example-[1-3].ly: simplify.
15559
15560         * lily/cluster-engraver.cc (try_music): react to busy-playing-event
15561
15562         * scm/output-ps.scm (new-text): new function. Use glyphshow to
15563         show glyphs.
15564
15565         * scm/encoding.scm (decode-byte-string): new function.
15566
15567         * scripts/convert-ly.py (conv): add warning about
15568         set-global-staff-size.
15569
15570         * Doxyfile: add. 
15571
15572         * scripts/convert-ly.py (conv): add raggedlastbottom rule
15573         (conv): warn for TextSpanner split.
15574         (conv): warn for textheight.
15575
15576 2004-11-19  Jan Nieuwenhuizen  <janneke@gnu.org>
15577
15578         * GNUmakefile.in (install-WWW): Invoke install-info, so that when
15579         building the documentation, info with images are installed.
15580         (final-install): Fix description.  Mention sourcing of login
15581         scripts (instead of running).
15582
15583 2004-11-18  Jan Nieuwenhuizen  <janneke@gnu.org>
15584
15585         * Debian lmodern support.  Note that LilyPond will issue warnings
15586         
15587             no such encoding: "FontSpecific"
15588
15589           The font selection mechanism wants to get the encoding from the
15590           font itself, but the idea of lmodern is that it is usable with
15591           different encodings, ie, Lily should get the encoding from the
15592           font tree, rather than the font itself.  This would require some
15593           more work.
15594         
15595         * configure.in: Test for and accept lmodern if EC fonts not found.
15596
15597         * scm/framework-tex.scm (font-load-command): TeX font name
15598         mangling for latin1 encoded cork-lm fonts.
15599         (convert-to-ps): Load lm.map if available.
15600
15601         * ly/paper-defaults.ly: Use cork-lm encoding if ec is not
15602         available.
15603
15604         * scm/encoding.scm (coding-alist): Add cork-lm encoding.
15605
15606         * scm/font.scm: Add header.  Autoload cork-lm and ec fonts if
15607         available.
15608
15609         * lily/kpath.cc (ly_kpathsea_find_file): Rename.  Do not use
15610         path for absolute file name, that is silly.
15611
15612         * lily/score-engraver.cc (initialize): 
15613
15614         * Documentation/user/GNUmakefile (local-install-info): Invoke
15615         install-info --remove first.
15616
15617         * #include cleanup (Andreas Scherer).
15618
15619 2004-11-18  Heikki Junes  <hjunes@cc.hut.fi>
15620
15621         * input/test/script-abbreviations.ly: fix typos.
15622
15623 2004-11-17  Werner Lemberg  <wl@gnu.org>
15624
15625         * python/lilylib.py (options_help_str): Support pretty-printing of
15626         newlines in fourth element of option description.
15627
15628         * scripts/lilypond-book.py (option_definitions): Use new lilylib
15629         feature.
15630         Sort options.
15631
15632         * Documentation/user/lilypond-book.itely: Finish update.
15633
15634 2004-11-17  Jan Nieuwenhuizen  <janneke@gnu.org>
15635
15636         * Documentation/user/macros.itexi: Add comment about \command.
15637
15638         * Documentation/user/lilypond.tely:
15639         * Documentation/user/lilypond-book.itely: Fix names of lilypond
15640         and lilypond-book nodes, so that `info lilypond' visits the manual
15641         at top level, and `info lilypond-book' visits the lilypond-book
15642         section.
15643
15644         * Documentation/user/GNUmakefile (local-install-info): Fix rules
15645         and packager messages.
15646
15647         * lily/pangofc-afm-decoder.cc: Update test.
15648
15649 2004-11-16  Jan Nieuwenhuizen  <janneke@gnu.org>
15650
15651         * scm/lily-library.scm (char->unicode-index): New function.
15652
15653         * scm/output-gnome.scm: 
15654         * scm/output-svg.scm: Cleanup.  Map custom fonts to PUA.
15655
15656         * Proper naming of file name throughout; s/filename/file[-_]name/.
15657
15658         * lily/modified-font-metric.cc ("ly:font-encoding"): New function.
15659
15660         * lily/pangofc-afm-decoder.cc (pango_fc_afm_get_glyph): Map onto PUA.
15661
15662 2004-11-16  Werner Lemberg  <wl@gnu.org>
15663
15664         * scripts/lilypond-book.py: The Lord has commanded me to use only
15665         tabs for indentation.  Your humble servant obeys.
15666
15667 2004-11-16  Jan Nieuwenhuizen  <janneke@gnu.org>
15668
15669         * scm/output-svg.scm: Font fixes.  Sodipodi now groks svg
15670         including font, if LilyPond-feta font is only feta font in path.
15671
15672         * scm/output-gnome.scm (text): Revert to file name of font if font
15673         has no name.  Fixes ec font selection.
15674         (char): Bugfix: do not utf8 twice.  Fixes clefs.
15675
15676         * scm/framework-svg.scm:
15677         * scm/output-svg.scm: New file.  TODO: figure out how to
15678         do character by index in font.
15679
15680         * scm/output-sodipodi.scm: Remove.
15681
15682         * scm/output-ps.scm (stem): Remove.
15683
15684 2004-11-15  Jan Nieuwenhuizen  <janneke@gnu.org>
15685
15686         * scm/output-gnome.scm (beam): New function.
15687         (slur): Round corners.
15688         (round-filled-box): Round corners.
15689
15690 2004-11-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15691
15692         * scm/output-gnome.scm (beam): add function.
15693         (draw-line): new routine.
15694         (dashed-line): stub; call draw-line
15695         (polygon): new routine.
15696
15697 2004-11-15  Werner Lemberg  <wl@gnu.org>
15698
15699         * Documentation/user/lilypond-book.itely: Revise section on
15700         lilypond-book options.
15701         Other minor fixes.
15702
15703         * scripts/lilypond-book.py: Change indentation to 4.
15704         Minor formatting.
15705
15706 2004-11-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15707
15708         * lily/system.cc (apply_tweaks): new function. Run tweaks on all
15709         grobs that have tweaks specced.
15710         
15711 2004-11-14  Heikki Junes  <hjunes@cc.hut.fi>
15712
15713         * Documentation/user/sound-output.itexi: add code snippets for MIDI.
15714
15715 2004-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
15716
15717         * lily/font-metric.cc (get_indexed_char_stencil): Bugfix: get
15718         actual char #, not 0 based index.
15719
15720         * lily/system-start-delimiter.cc (staff_brace): Start at 65.
15721
15722         * mf/feta-beugel.mf: Actually start at char #65.  Add header.
15723         Warning: do make -C mf clean.
15724
15725         * lily/context-property.cc: Compile fix.
15726
15727         * scm/output-gnome.scm: Add ec-fonts-mftraced to ~/.fonts.conf.
15728         Grok ec-fonts, braces and dynamics.
15729
15730         * scm/framework-gnome.scm (gnome-main): Register braces with pango.
15731
15732 2004-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15733
15734         * lily/include/tweak-registration.hh: new file.
15735
15736         * lily/tweak-registration.cc: new file.
15737
15738         * scm/framework-gnome.scm (save-tweaks): use new key mechanism for
15739         saving tweaks.
15740
15741         * scm/output-gnome.scm (text): comment dribble.
15742
15743 2004-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
15744
15745         * lily/pangofc-afm-decoder.cc (main): Test more feta fonts.
15746
15747         * scm/output-gnome.scm (bezier-sandwich): New function.  Reset
15748         path-def before using.  Fixes muchtomany slurs in wrong places
15749         bug.
15750
15751 2004-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15752
15753         * lily/grob-scheme.cc (LY_DEFINE): add new function ly:grob-key.
15754
15755         * lily/include/object-key-undumper.hh (Module): new file.
15756
15757         * lily/object-key-undumper.cc (Module): New file. Deserialize
15758         keys. SCM bindings
15759
15760         * lily/object-key-dumper.cc (Object_key_dumper): idem.
15761         Provide SCM bindings.
15762
15763         * lily/include/object-key-dumper.hh (class Object_key_dumper): 
15764         new file. Serialize object keys.
15765         
15766         * lily/object-key.cc (dump): new function.
15767         (as_scheme): new virtual function
15768         (undump): new function
15769         (undumpers): new table.
15770
15771         * lily/include/global-context.hh (Context): take \score key upon init.
15772
15773         * lily/object-key-dumper.cc (serialize_key): new file.
15774
15775         * lily/include/object-key-dumper.hh (class Object_key_dumper): new file.
15776
15777         * lily/lily-lexer.cc: remove \quote.
15778
15779         * lily/lookup.cc (triangle): rewrite, obviating symmetric_x_triangle().
15780
15781         * lily/context.cc (Context): take key argument in ctor.
15782         (create_context): new function
15783
15784         * lily/grob.cc (Grob): take key argument in ctor.  
15785
15786         * lily/lilypond-key.cc (do_compare): new file.
15787
15788         * lily/object-key.cc (Object_key): new file.
15789
15790         * lily/include/object-key.hh (class Object_key): new file.
15791
15792         * lily/include/lilypond-key.hh (class Lilypond_context_key): new file.
15793
15794 2004-11-13  Graham Percival  <gperlist@shaw.ca>
15795
15796         * Documentation/user/lilypond-book.itely: add small warning about
15797         noindent default in lilypond-book.
15798
15799         * Documentation/user/converters.itely: add examples for convert-ly.
15800
15801         * Documentation/user/examples.itely: change version string in templates
15802         to 2.4.0.
15803
15804 2004-11-12  Karl Hammar  <karl@aspodata.se>
15805
15806         * GNUmakefile.in (local-WWW-post): `find ...` overflows the
15807         cmdline, use xargs instead (backportme)
15808
15809 2004-11-10  Andreas Scherer  <andreas_mutopia@freenet.de>
15810         
15811         * Documentation/user/: Numerous fixes in the user manual.
15812
15813 2004-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15814
15815         * lily/parser.yy (re_rhythmed_music): search music expression for
15816         context-id, surround by \new Voice if not found. Fixes:
15817         addlyrics-second-staff.ly
15818
15819         * VERSION: 2.5.0 released.
15820         
15821 2004-11-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15822
15823         * Documentation/index.html.in: Fix url to one big page.  (backportme)
15824
15825         * Documentation/user/GNUmakefile: Separate rules for split and
15826         unsplit html documents.  Remove perl massaging.  (backportme)
15827
15828 2004-11-11  Graham Percival  <gperlist@shaw.ca>
15829
15830         * Documentation/user/lilypond-book.itely: add short warning about
15831         \lilypond{} in LaTeX docs.
15832
15833 2004-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15834
15835         * stepmake/aclocal.m4: Barf if kpathsea/kpathsea.h is not
15836         found.  (backportme)
15837
15838         * Documentation/topdocs/INSTALL.texi (ec-fonts-mtraced): Add
15839         version requirement.  (backportme)
15840
15841         * configure.in: Be explicit about old versions of
15842         ec-fonts-mtraced.  (backportme)
15843
15844         * lily/context-selector.cc (set_tweaks): New function.
15845         * lily/grob-selector.cc (set_tweaks): (Re)set hash table.  Fixes
15846         web with -DTWEAK.
15847
15848         * Documentation/user/introduction.itely (Automated engraving):
15849         Remove fragment option.  Fixes web.
15850
15851         * lily/context-property.cc (make_item_from_properties):
15852         * lily/context.cc (add_context)[TWEAK]: Tweak registration behind
15853         #ifdef.
15854
15855         * scm/define-context-properties.scm
15856         (all-internal-translation-properties): Add tweakRank and tweakCount.
15857
15858         * lily/grob.cc: 
15859         * scm/define-grob-properties.scm (all-internal-grob-properties):
15860         Add tweak-rank and tweak-count.
15861
15862 2004-11-10  Jan Nieuwenhuizen  <janneke@gnu.org>
15863
15864         * scm/output-gnome.scm (string->utf8-string, char->utf8-string):
15865         New function.
15866         (text): Use them.
15867
15868         * scm/framework-gnome.scm (item-event): Add support from TLA.  Support
15869         animated/opaque grob dragging tweaks.
15870
15871         * buildscripts/guile-gnome.sh: Update.
15872
15873 2004-11-10  Mats Bengtsson  <mabe@s3.kth.se>
15874
15875         * scm/define-grobs.scm (all-grob-descriptions): Added
15876         line-interface to the LigatureBracket object.
15877
15878 2004-11-10  Jan Nieuwenhuizen  <janneke@gnu.org>
15879
15880         * scm/framework-gnome.scm (item-event): Support non-animated mouse
15881         dragging tweaks.
15882
15883         * lily/lily-guile.cc (ly_to_string, ly_to_symbol): New function.
15884
15885         * lily/context-selector.cc (store_context): New function.
15886
15887         * lily/grob-selector.cc (register_grob)[TWEAK]: Apply tweak.
15888         (store_grob): New function.
15889         (identify_grob): Add Moment parameter.
15890
15891         * lily/lily-parser.cc (parse_file)[TWEAK]: Read .ly.t file if it
15892         exists.
15893
15894         * scm/framework-gnome.scm (save-tweaks): Write as alist.
15895
15896 2004-11-09  Jan Nieuwenhuizen  <janneke@gnu.org>
15897
15898         * scm/framework-gnome.scm (item-event): Print grob id.
15899         (save-tweaks): New function.
15900         (tweak): New funtion.
15901         (item-event): Use it, bound to arrow keys.
15902
15903         * lily/context-property.cc (make_item_from_properties): Register grob.
15904         * lily/context.cc (add_context): Register context.
15905
15906         * lily/include/context-selector.hh:
15907         * lily/include/grob-selector.hh:
15908         * lily/context-selector.cc:
15909         * lily/grob-selector.cc: New file.
15910
15911 2004-11-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15912
15913         * lily/slur.cc: add 'positions to interface
15914
15915         * lily/main.cc: reinstate PS as standard output format. 
15916
15917         * scm/framework-tex.scm (output-preview-framework): print systems
15918         up to first non title system.
15919
15920         * lily/grace-engraver.cc (start_translation_timestep): split
15921         scm_cadddr
15922         
15923 2004-11-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15924
15925         * lily/quote-iterator.cc (Module): remove old quote-iterator
15926
15927         * scm/define-music-types.scm (music-descriptions): move
15928         NewQuoteMusic over QuoteMusic
15929
15930         * Documentation/user/notation.itely (Formatting cue notes): use
15931         \cueDuring.
15932
15933         * lily/new-quote-iterator.cc (quote_ok): new function.
15934
15935         * input/regression/quote-cue-during.ly: new file.
15936
15937         * input/regression/quote-grace.ly: new file.
15938
15939         * scm/define-context-properties.scm (Module): change definition of
15940         graceSettings
15941
15942         * lily/context-property.cc (Module): rename from
15943         translator-property.cc
15944
15945         * lily/context.cc (context_name_symbol): new function
15946
15947         * lily/grace-engraver.cc: new file. Set properties for grobs based
15948         on the grace-ness of now_moment().
15949
15950         * scm/music-functions.scm (add-grace-property): use list
15951         iso. vector for graceSettings
15952         remove set-{start,stop}-grace-properties. 
15953
15954         * lily/new-quote-iterator.cc (construct_children): set
15955         quote_outlet_ if no quoted-context-{id,type} specified.
15956
15957         * scripts/convert-ly.py (conv): \quote -> \quoteDuring.
15958
15959         * lily/parser.yy (command_element): remove \quote.
15960
15961         * ly/music-functions-init.ly (location): add quoteDuring music
15962         function. 
15963
15964         * lily/lexer.ll: allow \encoding in lyrics as well.  Remove
15965         optional semicolon. (backportme)
15966
15967 2004-11-06  Jan Nieuwenhuizen  <janneke@gnu.org>
15968
15969         * python/GNUmakefile (STEPMAKE_TEMPLATES): Unset USER_LDFLAGS, no
15970         need to link to GUILE et al.
15971
15972 2004-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15973
15974         * scm/define-music-properties.scm (all-music-properties): add
15975         quoted-context-type, quoted-context-id.
15976
15977         * scm/lily.scm (type-check-list): new function.
15978         
15979         * scm/lily-library.scm: new file. Generic library routines.
15980
15981         * lily/parser.yy (Generic_prefix_music): move typechecking out of
15982         parser.
15983
15984         * ly/music-functions-init.ly: add quoteDuring function.
15985
15986         * lily/include/music-iterator.hh (class Music_iterator): rename
15987         set_translator -> set_context
15988
15989         * lily/parser.yy (Generic_prefix_music_scm): add
15990         MUSIC_FUNCTION_SCM_SCM_MUSIC
15991
15992         * scm/lily.scm (sanitize-command-option): new function. (backportme)
15993
15994         * scm/framework-tex.scm (header): sanitize TeX paper size.
15995         (backportme)
15996
15997 2004-11-06  Jan Nieuwenhuizen  <janneke@gnu.org>
15998
15999         * elisp/lilypond-indent.el (LilyPond-indent-level): 2 is now standard.
16000
16001         * tex/lilyponddefs.tex: If no inputencoding use latin1.  (backportme)
16002
16003         * scm/framework-tex.scm (font-load-command): Use T1 if no
16004         font-encoding set.  (backportme)
16005
16006         * scm/lily.scm (postscript->pdf): Remove .pdf file if it
16007         exists before converting.  (backportme)
16008
16009         * scm/framework-tex.scm (convert-to-dvi): Remove .dvi file if it
16010         exists before converting.  (backportme)
16011         (convert-to-ps): Remove .ps file if it exists before
16012         converting.  (backportme)
16013
16014         * lily/lexer.ll: Remove extra progress newline, use present tense.
16015
16016         * scm/paper.scm (paper-alist): public.
16017         * scm/framework-tex.scm (convert-to-ps):
16018         * scm/lily.scm (postscript->pdf): Do not leak papersizename into
16019         command line.
16020
16021 2004-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16022
16023         * scm/lily.scm (ly:system): add > /dev/null 2>&1 . (backportme)
16024
16025         * lily/recording-group-engraver.cc (derived_mark): mark
16026         now_events_. (backportme)
16027
16028 2004-11-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16029
16030         * mf/GNUmakefile: use Fedora-3 in download link. (backportme.)
16031
16032         * scm/framework-tex.scm (convert-to-dvi): use ly:system for
16033         invoking latex. (backportme.)
16034
16035         * lily/stem.cc (off_callback): center stems for all rest stems.
16036
16037 2004-11-05  Werner Lemberg  <wl@gnu.org>
16038
16039         * Documentation/user/lilypond.tely: Add more guidelines for writing
16040         lilypond texinfo documents.
16041
16042 2004-11-05  Heikki Junes  <hjunes@cc.hut.fi>
16043
16044         * Documentation/index.html.in: remove <hr>.
16045
16046         * THANKS: change 2.3 to 2.4.
16047
16048 2004-11-05  Jan Nieuwenhuizen  <jannneke@gnu.org>
16049
16050         * scm/output-gnome.scm: More fontconfig comment.
16051
16052 2004-11-05  Pedro Kroger  <kroeger@pedrokroeger.net>
16053
16054         * GNUmakefile.in ($(builddir)/share/lilypond-force): create the
16055         <package> directory in $(builddir)/share according with
16056         PACKAGE_NAME defined in the VERSION file.
16057
16058 2004-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16059
16060         * lily/beam.cc (rest_collision_callback): use local beam
16061         multiplicity.
16062
16063         * input/regression/stem-stemlet.ly: new file.
16064
16065         * lily/stem.cc (add_head): store rests as well.
16066
16067         * scm/define-grob-properties.scm (all-user-grob-properties): add
16068         stemlet-length
16069
16070         * lily/stem.cc: store rests as well.
16071         
16072         * input/regression/new-slur.ly: mention forcing.
16073
16074 2004-11-04  Werner Lemberg  <wl@gnu.org>
16075
16076         * Documentation/user/*: A new round of layout fixes and document
16077         structure cleanup.
16078
16079 2004-11-04  Heikki Junes <hjunes@cc.hut.fi>
16080
16081         * Documentation/user/lilypond.tely: changes 2.3.x to 2.5.x.
16082
16083 2004-11-04  Jan Nieuwenhuizen  <janneke@gnu.org>
16084
16085         * Documentation/topdocs/INSTALL.texi (Top): Remove geometry.
16086
16087 2004-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
16088
16089         * Documentation/topdocs/INSTALL.texi (Top): Fix geometry url (dax).
16090
16091         * lily/lily-parser.cc (LY_DEFINE): Remove "Now " from message.
16092
16093         * lily/main.cc (main): Invoke identify.
16094
16095         * scm/lily.scm (postscript->pdf): Remove progress newline.
16096         Write progress to stderr.
16097
16098         * lily/paper-book.cc (output): Remove progress newline.
16099
16100         * scm/framework-tex.scm (convert-to-dvi, convert-to-ps): Call
16101         gettext on user messages, and remove whitespace.
16102
16103         * lily/paper-outputter.cc (get_paper_outputter): Add progress newline.
16104
16105         * scripts/lilypond-latex.py (program_name): Bugfix: use only basename of
16106         argv[0] (Thomas Scharkowski).
16107
16108         * configure.in: Bugfix: add REQUIRED parameter to STEPMAKE_TEXMF
16109         call (carlyannehorse).  Also check for mf and mf-nowin.  Add check
16110         for ec-fonts-mtraced.
16111
16112         * GNUmakefile.in (builddir-exec): Add symlink tex/out.  Fixes
16113         --srcdir build (Bertalan).
16114
16115         * stepmake/aclocal.m4 (STEPMAKE_GUILE_DEVEL): Check for guile
16116         headers and library too (Laura Conrad).
16117
16118         * Documentation/topdocs/INSTALL.texi (Top): Mention development
16119         package for guile too (Laura Conrad).
16120
16121         * lily/main.cc (usage): Typo.
16122
16123 2004-11-02  Werner Lemberg  <wl@gnu.org>
16124
16125         * Documentation/user/notation.ly: More fixes to improve appearance.
16126
16127         * tex/texinfo.tex: Updated from texinfo CVS -- this version provides
16128         better output for multicolumn tables.
16129
16130 2004-11-01  Mats Bengtsson  <mabe@s3.kth.se>
16131
16132         * lily/main.cc (dir_info): Fixed typo in the printouts.
16133
16134 2004-11-01  Werner Lemberg  <wl@gnu.org>
16135
16136         * buildscripts/mf-to-table.py (write_fontlist): Improve formatting
16137         of output.
16138         Set `per_line' to 2; replace hard-coded value with it.
16139
16140         * Documentation/user/*: Many fixes to improve appearance of
16141         printed manual.
16142
16143 2004-11-01  Werner Lemberg  <wl@gnu.org>
16144
16145         * Documentation/user/changing-defaults.itely,
16146         Documentation/user/notation.ly,
16147         Documentation/user/programming-interface.itely: Use @/.
16148         Fix formatting of some lilypond snippets and tables.
16149
16150         * scripts/lilypond-book.py (compose_ly): Provide useful default
16151         for LINEWIDTH in `override'.
16152
16153 2004-10-31  Graham Percival  <gperlist@shaw.ca>
16154
16155         * Documentation/user/invoking.itely: change "3.0" -> "2.4"
16156
16157 2004-10-31  Werner Lemberg  <wl@gnu.org>
16158
16159         Resetting @exampleindent to `5' gives ugly results with texinfo's
16160         DVI output.  Use `@format @exampleindent 0 ... @end format' instead
16161         (if not quoting) to change @exampleindent only locally.
16162
16163         * scripts/lilypond-book.py (NOQUOTE): New variable.
16164         (output) [LATEX]: Remove AFTER and BEFORE.
16165         [TEXINFO]: Remove AFTER and BEFORE.
16166         Fix QUOTE and VERBATIM pattern.
16167         Add NOQUOTE pattern.
16168         (Lilypond_snippet) [output_info, output_latex]: Don't handle AFTER
16169         and BEFORE.
16170         [output_texinfo]: Use NOQUOTE.
16171
16172 2004-10-31  Graham Percival  <gperlist@shaw.ca>
16173
16174         * Documentation/user/changing-defaults.itely: clarify paper
16175         size commands with correct info.
16176
16177         * Documentation/user/lilypond-book.itely: add more docs for
16178         filename extensions.
16179
16180 2004-10-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16181
16182         * VERSION (PATCH_LEVEL): Branch lilypond_2_4, release 2.4.0
16183         (PATCH_LEVEL): start 2.5.0.
16184
16185 #Local variables:
16186 #coding: utf-8
16187 #End:
16188