]> git.donarmstrong.com Git - lilypond.git/blob - ChangeLog
(all-user-grob-properties):
[lilypond.git] / ChangeLog
1 2006-10-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2
3         * scm/define-grob-properties.scm (all-user-grob-properties):
4         mention stencil as user settable.
5
6 2006-10-02  Joe Neeman  <joeneeman@gmail.com>
7
8         * Documentation/user/page.itely (Page formatting): 
9         document auto-first-page-number
10
11         * lily/page-breaking.cc (find_chunks_and_breaks): 
12         * lily/paper-score.cc (calc_breaking): Follow changes to the
13         Constrained_breaking interface
14
15         * lily/constrained-breaking.cc (calc_subproblem): run the main loop
16         here backwards, as an optimisation
17         (initialize): new function; move most of the code in resize () here
18         (combine_demerits): cache ragged_right_
19         (Constrained_breaking): constructor now takes the Paper_score
20
21 2006-10-02  Erik Sandberg  <mandolaerik@gmail.com>
22         
23         * lily/lexer.ll, lily/parser.yy: Add EXPECT_NO_MORE_ARGS token, to
24         avoid parser lookahead for 0-ary functions.
25
26         * lily/translator.cc: Extract event classes from
27         IMPLEMENT_TRANSLATOR_LISTENER for documentation generation.
28
29 2006-10-02  Heikki Junes  <hjunes@gmail.com>
30
31         * po/fi.po: Fix spaces, commas etc. in Finnish translation using
32         KBabel fix tool.
33
34 2006-10-01  Nicolas Sceaux  <nicolas.sceaux@free.fr>
35
36         * scm/layout-page-layout.scm (page-breaking-wrapper): new
37         function. Call the page breaking function selected in the
38         `page-breaking' \paper variable, then the post processing function
39         chosen using the `page-post-process' \paper variable.
40         (line-height): new function. Return the height of a system.
41         (line-minimum-position-on-page): new function. Return the position
42         of a system on page (using the previous line position), only
43         considering between system padding.
44         (stretchable-line?): new function. Says whether a line can be
45         stretched (ie. is not a title nor a single staff system).
46         (page-maximum-space-left): new function. Computes space left on a
47         page, when all systems are separated by their padding.
48
49         * lily/page-breaking.cc (breaking::make_pages): Move page post
50         processing function call to page breaking wrapper (common to all
51         page breakers).
52
53         * lily/paper-book.cc (book::pages): call the page breaking
54         wrapper, instead of the page breaker directly
55
56         * ly/paper-defaults.ly: Add \paper variables for page breaking
57         wrapper and page post processing function. Make
58         `write-page-layout' value depend on the 'dump-tweaks option. Add a
59         `system-maximum-stretch-procedure' variable for holding a function
60         computing the maximum stretch a system allows.
61
62         * scm/layout-page-dump.scm (write-page-breaks): computes the
63         stretch to apply to systems on a page to minimize left
64         space. Dump this stretch length.
65
66         * ly/music-functions-init.ly (spacingTweaks): implement it. Read
67         the system-stretch property of the tweak data to stretch the
68         system.
69         (includePageLayoutFile): Void function which includes the
70         generated page-layout file if it exists and if the page layout
71         dumping is not asked.
72         (scoreTweak): if the score tweak named by the argument exists,
73         return it.
74
75 2006-10-01  Joe Neeman  <joeneeman@gmail.com>
76
77         * lily/page-spacing.cc (compress_lines, uncompress_solution):
78         handle correctly the case where there are multiple \noPageBreaks
79         in a row.
80
81 2006-09-30  Laura Conrad <lconrad@laymusic.org>
82
83         * abc2ly.py adds segno (S) and Coda (O) to articulations.
84         
85         * abc2ly.py fix so that entering " -- " will translate to a -- in
86         the lilypond instead of a " - - "
87         
88 2006-09-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
89
90         * lily/align-interface.cc: fix typo
91
92         * lily/dynamic-text-spanner.cc (print): Add a special case for
93         trill spanner right sides. 
94
95         * scm/define-grobs.scm (all-grob-descriptions): set padding to 0.1
96
97         * lily/align-interface.cc (get_extents_aligned_translates): add
98         support for padding variable.
99
100         * lily/break-align-interface.cc (self_align_callback): oops: use
101         loop variable in guard.
102
103         * input/regression/repeat-percent-grace.ly: new file.
104
105         * lily/percent-repeat-engraver.cc (start_translation_timestep):
106         remember first currentCommandColumn of a grace run. Fixes issue 70.
107
108         * lily/percent-repeat-iterator.cc (class Percent_repeat_iterator):
109         move class definition to CC file.
110
111         * lily/multi-measure-rest.cc (percent): use robust_relative_extent()
112
113         * lily/slash-repeat-engraver.cc (listen_percent): don't warn for
114         measure-long  repeats.
115
116         * flower/include/international.hh: include stdarg.h
117
118 2006-09-30  Joe Neeman  <joeneeman@gmail.com>
119
120         * lily/page-turn-page-breaking.cc (calc_demerits): now that we allow
121         put_systems_on_pages to return an empty result, we need to assign
122         demerits properly in that case.
123         (put_systems_on_pages): Make the number of pages depend on the
124         evenness of page_number. Add auto-first-page-number.
125         (calc_subproblem): ensure that the page-number is even for the
126         left-hand page. Warn if the first page-turn doesn't fit onto the
127         first (right-hand) page.
128
129         * lily/page-spacing.cc (solve): bug: demerits_ would always be inf
130         (min_page_count): make this publicly accessible
131         (min_page_count): fix a bug when there are forced page breaks that
132         was introduced when I made this loop run backwards
133         (space_systems_on_n_pages, space_systems_on_n_or_one_more_pages):
134         replace space_systems_on_min_pages with these two. The logic in
135         space_systems_on_min_pages was getting too convoluted and is better
136         contained in page-turn-page-breaking.
137
138         * lily/page-turn-engraver.cc (breakable_column): remove an always-true
139         conditional
140         (breakable_column): typo
141
142         * lily/source-file.cc (get_line): fix off-by-one error
143         and clean up some of the logic
144
145 >>>>>>> 1.5342
146 2006-09-29  Joe Neeman  <joeneeman@gmail.com>
147
148         * lily/page-breaking.cc (make_pages): honour the first-page-number
149         property
150
151 2006-09-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
152
153         * VERSION (PACKAGE_NAME): bump version.
154
155 2006-09-26  Pal Benko  <benko.pal@gmail.com>
156
157         * scm/parser-clef.scm: add petrucci-f3 and -f4 clefs
158         (the latter is the same as petrucci-f which is kept for compatibility)
159
160 2006-09-26  Erik Sandberg  <mandolaerik@gmail.com>
161         
162         * lily/part-combine-iterator.cc: solo1-event -> solo-one-event
163
164 2006-09-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
165
166         * lily/global-context.cc (run_iterator_on_me): break out of loop
167         if moment doesn't increase.
168
169         * scm/define-grob-properties.scm (all-user-grob-properties): add
170         forced property.
171
172         * lily/accidental.cc (after_line_breaking): read forced property.
173
174         * lily/accidental-engraver.cc (process_acknowledged): set 'forced
175         property.
176
177         * input/regression/accidental-forced-tie.ly:  new file.
178
179 2006-09-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
180
181         * ly/engraver-init.ly: set ignoreFiguredBassRest in Staff context.
182
183         * lily/figured-bass-engraver.cc: only listen to rest events if
184         ignoreFiguredBassRest is not set.
185
186         * scm/define-context-properties.scm
187         (all-user-translation-properties): add ignoreFiguredBassRest property
188
189 2006-09-24  Joe Neeman  <joeneeman@gmail.com>
190
191         * lily/paper-book.cc (get_system_specs):
192         (set_system_penalty): fix breakbefore.
193         We used to set a penalty on the system after the break, now we
194         set a permission on the system before the break
195
196         * lily/grob-property.cc: add scm debugging hooks into
197         property modification
198
199         * lily/context-property.cc:
200         * lily/engraver.cc:
201         rename make_foo_from_properties to internal_make_foo and
202         move it from context-property.cc to a member function of
203         Engraver.
204         
205         * lily/include/lily-guile-macros.hh:
206         overload ly_symbol2scm macro so that there is no more need
207         to use internal_foo
208
209         * lily/volta-repeat-iterator.cc:
210         * lily/tweak-engraver.cc:
211         * lily/tuplet-bracket.cc:
212         * lily/span-bar-engraver.cc:
213         * lily/script-engraver.cc:
214         * lily/prob-scheme.cc:
215         * lily/pointer-group-interface.cc:
216         * lily/parser.yy:
217         * lily/grob-scheme.cc:
218         * lily/grob-property.cc:
219         * lily/context.cc:
220         * lily/context-property.cc:
221         * lily/break-substitution.cc:
222         * lily/break-align-engraver.cc:
223         * lily/axis-group-interface.cc:
224         * lily/align-interface.cc:
225         remove calls to internal_FOO
226
227         * lily/system-start-delimiter-engraver.cc:
228         * lily/parenthesis-engraver.cc:
229         * lily/accidental-engraver.cc:
230         remove calls to make_foo_from_properties
231
232 2006-09-23  Graham Percival  <gpermus@gmail.com>
233
234         * Documentation/user/programming-iterfaces.itely: fix
235         def-music-function -> define-music... leftover.
236
237 2006-09-23  Joe Neeman  <joeneeman@gmail.com>
238
239         * lily/page-spacing.cc (min_page_count): by running the loop
240         backwards, we can calculate ragged_last properly.
241
242 2006-09-22  Mats Bengtsson  <mabe@drongo.s3.kth.se>
243
244         * ly/titling-init.ly (scoreTitleMarkup): Rename (typo!?)
245         printfirst-page-number -> print-first-page-number
246
247         * python/convertrules.py: corresponding rule.
248
249         * Documentation/user/page.itely (Page formatting): Document the
250         default values of all page layout parameters. 
251
252 2006-09-22  Erik Sandberg  <mandolaerik@gmail.com>
253
254         * lily/lexer.ll: remove limitation on music function arity. New
255         mode extratoken, which inserts extra EXPECT_* tokens after
256         MUSIC_FUNCTION token. Junk all MUSIC_FUNCTION_* tokens.
257
258         * lily/parser.yy: Change grammar for music function accordingly.
259
260         * lily/include/lily-parser.hh: New method get_state, new member
261         hidden_state. Works around a problem when parser fetches
262         MUSIC_FUNCTION token but not the following EXPECT_* token.
263
264         * lily/translator.cc, lily/context.cc:, lily/translator-group.cc:
265         remove try_music
266
267         * lily/*-engraver.cc, lily/*-performer.cc: Remove all remaining
268         references to Music; use ASSIGN_EVENT_ONCE everywhere
269
270         * lily/grob-info.cc: junk *music_cause
271
272         * lily/music.cc: copy eventified articulations to stream event
273
274         * lily/part-combine-iterator.cc: Cleanup using enums
275
276         * lily/translator-group.cc: Junk OldMusicEvent, and associated
277         methods
278
279         * lily/include/engraver.hh: Junk music.hh include
280
281         * lily/stream-event.cc: Changed constructors
282
283 2006-09-21  Graham Percival  <gpermus@gmail.com>
284
285         * Documentation/user/tweaks.itely (Fitting music onto fewer
286         pages): change settings to avoid warning messages.
287
288 2006-09-21  Mats Bengtsson  <mabe@drongo.s3.kth.se>
289
290         * Documentation/user/tweaks.itely (Fitting music onto fewer
291         pages): Add between-system-space setting. 
292
293 2006-09-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
294
295         * lily/accidental-placement.cc (calc_positioning_done): don't
296         trigger Y-extent calculation too early. Use pure_height instead.
297
298         * lily/scale.cc (LY_DEFINE): new file. 
299
300 2006-09-20  Joe Neeman  <joeneeman@gmail.com>
301
302         * lily/page-breaking.cc (find_chunks_and_breaks): ignore breaks
303         that happen at the start of a score: having a zero-length
304         chunk was messing up min_system_count calculations.
305
306         * lily/source-file.cc (get_line): lower_bound, not
307         binary_search. Fixes problem where point-and-click would
308         always point to the first line.
309
310 2006-09-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
311
312         * lily/accidental-placement.cc (calc_positioning_done): also put
313         stems into accidental support. 
314
315         * lily/tie-engraver.cc (process_music): also set tieMelismaBusy if
316         event_ detected.
317
318         * scm/script.scm (default-script-alist): avoid-slur and
319         slur-padding for portato script.
320
321         * lily/stem-tremolo.cc (translated_stencil): new function. 
322         (height): use new function. Fixes tremolos on whole notes.
323
324         * lily/slur-scoring.cc (get_best_curve): don't crash if no optimal
325         slur found.
326
327 2006-09-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
328
329         * scripts/abc2ly.py (try_parse_comment): idem.
330
331         * scripts/lilypond-book.py (find_toplevel_snippets): use 'foo' in
332         bar_string iso. string.find()
333
334         * lily/*.cc: idem.
335
336         * lily/slur.cc (get_curve): always use scm_is_pair() looping
337         scheme lists.  
338
339 2006-09-18  Graham Percival  <gpermus@gmail.com>
340
341         * Documentation/user/basic-notation.itely: add bug
342         warning about ties and octavation/clef.
343
344 2006-09-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
345
346         * VERSION (PACKAGE_NAME): release 2.9.18
347
348 2006-08-29  Milan Zamazal  <pdm@brailcom.org>
349
350         * elisp/lilypond-mode.el (LilyPond-command-alist): Don't try to
351         figure out midi file names right here.
352         
353 2006-09-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
354
355         * scm/framework-ps.scm (dump-stencil-as-EPS): naming pad-eps-boxes.
356
357         * scm/backend-library.scm: option naming:  gs-font-load*s*
358
359         * scm/framework-eps.scm (dump-stencils-as-EPSes): rename option to
360         include-eps-fonts
361
362 2006-09-17  Joe Neeman  <joeneeman@gmail.com>
363
364         * scm/define-music-types.scm (music-descriptions): remove
365         BreakEvent and fix {Page,Line}{Break,Turn}Event so
366         Music::to_event doesn't complain.
367
368         * lily/accidental-placement.cc (ape_compare):
369         * lily/semi-tie.cc (compare): 
370         * lily/note-column.cc (shift_compare): replace by XXX_less
371
372         * lily/tie-formatting-problem.cc (set_chord_outline): 
373         * lily/tie-column.cc (calc_positioning_done): 
374         * lily/system.cc (post_processing)
375         (get_paper_system): 
376         * lily/stem.cc (note_head_positions)
377         (calc_positioning_done): 
378         * lily/spanner.cc (do_break_processing)
379         (find_broken_piece): 
380         * lily/span-bar.cc (print): 
381         * lily/semi-tie-column.cc (calc_positioning_done): 
382         * lily/rest-collision.cc (calc_positioning_done): 
383         * lily/program-option.cc (get_help_string): 
384         * lily/note-collision.cc (get_clash_groups):
385         * lily/new-fingering-engraver.cc (position_scripts):
386         * lily/keyword.cc (Keyword_table):
387         * lily/hara-kiri-group-spanner.cc (request_suicide):
388         * lily/grob-pq-engraver.cc (stop_translation_timestep):
389         * lily/accidental-placement.cc (calc_positioning_done):
390         (stagger_apes):
391         * lily/beam.cc (get_beam_segments):
392         * lily/grob-array.cc (remove_duplicates):
393         use new vector_sort
394         
395         * input/mutopia/W.A.Mozart/mozart-hrn3-defs.ily:
396         ragged-last-bottom = ##f (test the new page breaker)
397
398         * flower/include/std-vector.hh (vector_sort): use STL sort stuff
399
400         * scm/define-context-properties.scm
401         (all-internal-translation-properties): remove properties that
402         were used to communicate page-turn stuff to the paper-column
403         engraver.
404
405         * lily/lily-guile.cc (robust_scm2string): new function
406
407         * lily/paper-column-engraver.cc: Clean up page turn stuff
408
409         * lily/page-turn-engraver.cc: Re-write the page turn logic here
410         instead of cluttering up paper-column-engraver.cc
411
412 2006-09-17  Nicolas Sceaux  <nicolas.sceaux@free.fr>
413
414         * scm/layout-page-dump.scm (scm): export utility function names,
415         to allow user writing cutsom dumping functions.
416
417         * scm/layout-page-layout.scm: export utility function names to
418         enable custom page breaking function writing. Tabify.
419         (line-next-space): use ?-suffix only for predicates
420         (page-maximum-space-to-fill): new function. Return the space
421         between first and bottom system of a page, to give to
422         space-systems.
423         (space-systems): use a space-to-fill argument (for instance as
424         computed by page-maximum-space-to-fill) instead of computing
425         internaly this space with the page height. That way, the caller
426         can adjust the space to use.
427         (make-page-from-systems, walk-paths): compute space to fill before
428         calling space-systems.
429
430 2006-09-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
431
432         * scm/script.scm (default-script-alist): set paddings for every
433         type here, increase for portato mark.
434
435         * scm/lily.scm (define-scheme-options): typo: add s, so it is 
436         -dinclude-eps-fonts
437
438 2006-09-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
439
440         * scm/define-grobs.scm (all-grob-descriptions): oops, typo:
441         use spanner::set-spacing-rods
442
443         * lily/note-column.cc: reformat.
444
445         * lily/rest-collision.cc (calc_positioning_done): fix whole/half
446         step positioning for note/rest combinations.
447
448         * input/regression/rest-note-collision.ly: new file.
449
450         * scm/define-grobs.scm (all-grob-descriptions): add
451         springs-and-rods
452
453         * flower/include/std-vector.hh: switch off again.
454
455         * VERSION (PATCH_LEVEL): bump to 2.9.18
456
457         * flower/include/std-string.hh: idem.
458
459         * flower/include/std-vector.hh (_GLIBCXX_DEBUG): set if NDEBUG not set.
460
461 2006-09-15  Mats Bengtsson  <mabe@drongo.s3.kth.se>
462
463         * ly/engraver-init.ly: Make FiguredBass accepted in GrandStaff and
464         PianoStaff. 
465
466 2006-09-08  Joe Neeman  <joeneeman@gmail.com>
467
468         * Documentation/user/page.itely: update page breaking documentation
469
470 2006-09-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
471
472         * lily/note-collision.cc (calc_positioning_done): only access
473         first head if available.
474
475         * lily/tuplet-engraver.cc: add tupletFullLengthNote to description.
476
477         * scm/framework-ps.scm (output-preview-framework): use new name.
478
479         * lily/program-option.cc (internal_set_option): use new names.
480
481         * Documentation/user/SConscript (lilypond_book_flags): update -d
482         variable names.
483
484         * Documentation/user/lilypond-book.itely (Inserting LilyPond
485         output into other programs): new variable names.
486
487         * scm/lily.scm (define-scheme-options): uniformize var names.
488
489         * lily/tuplet-engraver.cc (listen_tuplet_span): verify that
490         tuplets_ is non-empty before popping.
491
492 2006-09-07  Joe Neeman  <joeneeman@gmail.com>
493
494         * lily/spanner.cc (find_broken_piece): 
495         * lily/spacing-spanner.cc (get_columns): 
496         * lily/source-file.cc (get_line): 
497         * lily/simple-spacer.cc (get_column_description): 
498         * lily/keyword.cc (lookup): 
499         use the new binary search.
500
501         * flower/include/std-vector.hh: replace binary_search with
502         a more STL-like version
503
504 2006-09-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
505
506         * lily/tie-performer.cc: remove unused last_event_ property.
507         (class Tie_performer): add now_tied_heads_ property for
508         partially-tied heads.
509         (acknowledge_audio_element): when adding an Audio_note, put the
510         note in now_tied_heads_ if the audio note is partially tied.
511         (stop_translation_timestep): always include entries in
512         now_tied_heads_ in heads_to_tie_.
513
514         * lily/drum-note-performer.cc (process_music): look for tie-events
515         in the articulations; pass to Audio_note constructor.
516
517         * lily/note-performer.cc (process_music): look for tie-events in
518         the articulations; pass to Audio_note constructor.
519
520         * lily/audio-item.cc (Audio_note): Initialize tie_event_ in
521         constructor.
522
523         * lily/include/audio-item.hh (class Audio_note): add tie_event_.
524         include initializer in constructor.
525
526 2006-09-02  Joe Neeman  <joeneeman@gmail.com>
527
528         * lily/simple-spacer.cc (get_line_forces): Ignore loose columns
529         unless they are breakable. This fixes discrepancies between the forces
530         calculated here and the forces calculated in get_line_configuration.
531
532         * lily/grob.cc (pure_relative_y_coordinate): fix some
533         mis-estimation that was happening with piano staves.
534
535         * lily/constrained-breaking.cc (resize): don't choke if we get a
536         measure that won't fit on a line.
537         (combine_demerits): don't consider uniformity when ragged
538
539         * lily/page-spacing.cc (solve): why the f* were there two of these?
540         (calc_subproblem): properly handle the case where a system is taller
541         than the page.
542
543         * lily/system.cc (get_paper_system): ensure that all the permissions
544         and penalties are passed to the paper systems.
545
546         * lily/page-breaking.cc (create_system_list): support system-count.
547
548         * scm/define-grobs.scm (pure-print-callbacks): add
549         ly:script-interface::print
550
551         * lily/page-spacing.cc (min_page_count): fix calculation of min
552         pages if we are ragged and there are non-zero springs.
553
554         * scm/layout-page-layout.scm: if the pure-height estimates are under
555         the real height, allow space-systems to ignore padding if it is
556         needed in order to fit the systems on one page
557
558         * lily/optimal-page-breaking.cc (try_page_spacing): fix reading
559         ragged properties
560         (solve): fix performance problem. Make sure we always get at least
561         one solution
562
563         * lily/page-breaking.cc (make_pages): include write-page-breaks
564         and page-stencil
565
566         * lily/paper-score.cc (calc_breaking): remove Gourlay breaker
567
568         * scm/define-grobs.scm: add the new slur-callback
569         fix pure-relevant to not exclude grobs whose extent is already
570         calculated
571
572         * ly/paper-defaults.ly: make ly:optimal-breaking the new default
573         page breaker
574
575         * lily/slur.cc (pure_height): new callback to estimate the height
576         of a slur
577
578 2006-09-02  Graham Percival  <gpermus@gmail.com>
579
580         * Documentation/user/invoking.itely: small update on
581         MacOS X notes; thanks Trevor!
582
583 2006-09-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
584
585         * VERSION (MY_PATCH_LEVEL): release 2.9.17
586
587         * lily/lexer.ll: accept EOF in all states.
588
589         * lily/tempo-performer.cc (Tempo_performer): initialize last_tempo_.
590
591         * lily/source-file.cc (Source_file): always 0-terminate character
592         array, to prevent Flex from barfing.
593
594         * lily/global-context.cc (get_output): robustness: don't crash if
595         no Score context found.
596
597         * lily/include/book.hh (class Book): idem.
598
599         * lily/include/context-def.hh (struct Context_def): idem.
600
601         * lily/include/score.hh (class Score): don't derive from Input.
602
603         * lily/book.cc (Book): add a copy ctor. 
604
605         * buildscripts/output-distance.py (FileLink.calc_distance): count
606         orphans in distance too.
607
608         * python/midi.c (midi_parse_track): robustness: don't read past
609         end of string.
610
611         * ly/performer-init.ly: add Control_track_performer, move
612         Tempo_performer and Time_signature_performer to Score.        
613
614         * lily/score-performer.cc (acknowledge_audio_elements): override
615         from base class: add to audio-columns
616
617         * lily/control-track-performer.cc (add_text): new file: generate
618         the control track.
619
620         * lily/performance.cc: move output_header_track to
621         Control_track_performer ()
622
623         * lily/midi-walker.cc (Midi_walker): get channel in constructor.
624
625         * lily/include/midi-item.hh (class Midi_channel_item): insert
626         class into hierarchy, for items that can have a channel setting. Dehungarify.
627
628         * lily/include/performer.hh (class Performer): remove
629         play_element();  move functionality into announce/acknowledge.
630
631         * lily/audio-staff.cc (output): remove channel_ from Midi_track.
632
633         * lily/tie-engraver.cc (stop_translation_timestep): only wipe
634         heads_to_tie_ if there are new heads to tie.  Fixes polyphony in ties.
635
636 2006-08-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
637
638         * lily/tie-engraver.cc (stop_translation_timestep): robustness for
639         ambituses.
640
641         * lily/all-font-metrics.cc: remove TFM support.
642
643         * lily/include/tfm.hh: remove TFM support, TFM reader.
644
645         * lily/include/binary-source-file.hh: remove Binary_source_file.
646
647 2006-08-27  Graham Percival  <gpermus@gmail.com>
648
649         * Documentation/topdocs/NEWS.itely: add @c marker for
650         stuff I've processed.
651
652         * Documentation/user/ various: info from NEWS.
653
654 2006-08-27  Joe Neeman  <joeneeman@gmail.com>
655
656         * lily/paper-column-engraver.cc (finalize): Oops, this change
657         should have gone in on 2006-08-23
658
659 2006-08-26  Mats Bengtsson  <mabe@s3.kth.se>
660
661         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use double
662         quotes to quote arguments. Fixes Windows problem.
663
664         * python/lilylib.py (progress): idem
665
666 2006-08-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
667
668         * scripts/musicxml2ly.py: fix for importing
669         minor key signatures from MusicXML.  (Phillip Kirlin)
670
671 2006-08-24  Phillip Kirlin  <pkirlin@acm.org>
672
673         * python/musicxml.py: 
674         (Attributes.get_key_signature): now correctly retrieves mode from 
675         MusicXML. 
676
677 2006-08-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
678
679         * lily/parser.yy (output_def_body): take ownership of identifier
680         back to C++.
681
682         * Documentation/user/advanced-notation.itely (Metronome marks):
683         update use of \tempo in \midi.
684
685         * VERSION: release 2.9.16
686         
687 2006-08-24  Erik Sandberg  <mandolaerik@gmail.com>
688
689         * input/mutopia/*: upgrade to new midi tempo syntax (repairs make
690         web partially)
691
692 2006-08-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
693
694         * input/regression/tie-chord-partial.ly: clarify example.
695
696         * scm/define-music-properties.scm (all-music-properties): remove
697         untied.
698
699         * ly/music-functions-init.ly: remove \untied.
700
701         * lily/tie-engraver.cc (struct Head_event_tuple): store both
702         stream events and music events.
703         (stop_translation_timestep): search acknowledged heads for
704         tie-event.
705
706         * input/regression/tie-chord-partial.ly: new file.
707
708         * scm/define-markup-commands.scm (char): use ly:wide-char->utf-8
709         for \char markup command.
710
711         * scm/define-event-classes.scm (unlistened-music-event-classes): idem.
712
713         * scm/define-music-types.scm (music-descriptions): consistency:
714         Use solo-{one,two}-event iso. solo-[12]-event.
715
716         * lily/part-combine-engraver.cc (process_music):
717         Use solo-{one,two}-event iso. solo-[12]-event.
718
719         * ly/declarations-init.ly (partCombineListener): add Timing as
720         alias
721
722         * flower/std-string.cc (string_copy): use copy ()
723
724         * lily/source-file.cc (Source_file): use copy(). Remove contents_str0()
725
726 2006-08-24  Graham Percival  <gpermus@gmail.com>
727
728         * Documentation/user/changing-defaults.itely, global.itely,
729         lilypond-book.itely, page.itely: minor changes from mailist.
730
731 2006-08-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
732
733         * buildscripts/mutopia-index.py (allfiles): filter lily-XXX and
734         snippet-map
735
736         * scm/define-context-properties.scm
737         (translator-property-description): robustness: detect type errors
738         in property definitions.
739
740         * lily/parser.yy (score_body): protect SCORE_IDENTIFIER result
741         after getting it from SCM. 
742
743         * lily/smobs.cc (protect_smob): switch off fancy smob protection
744         for now. 
745
746         * lily/include/performer.hh (class Performer): strip get_tempo()
747         method.
748
749         * lily/midi-def.cc: strip file.
750
751         * lily/lexer.ll (Lily_lexer): don't protect hash key separately.
752
753         * lily/include/context-def.hh (struct Context_def): use
754         VIRTUAL_COPY_CONSTRUCTOR().
755
756         * lily/source-file.cc: smobification.
757
758         * lily/include/source-file.hh (class Source_file): smobify
759         Source_file. Trim redundant members.
760
761         * lily/parser.yy (Lily_lexer::try_special_identifiers): unprotect
762         clones after creation. This plugs a huge memory leak.
763
764         * python/convertrules.py (FatalConversionError.sub_tempo):
765         complete rule for \midi{ \tempo }
766
767         * input/mutopia/J.S.Bach/wtk1-fugue2.ly (bassdux): idem.
768
769         * input/mutopia/F.Schubert/morgenlied.ly (pianoLH): update tempo.
770
771 2006-08-23  Joe Neeman  <joeneeman@gmail.com>
772
773         * input/regression/optimal-page-breaking-hstretch.ly: test for
774         ragged-last-bottom also
775
776         * lily/paper-column-engraver.cc (finalize): make the end of a score
777         breakable by default. This is to balance out a change in behaviour
778         of the page-turn-breaker which no longer makes the end of a score
779         breakable.
780
781         * lily/paper-book.cc (pages): set the systems_ once the pages are
782         broken
783
784         * lily/page-turn-page-breaking.cc (calc_subproblem): use the new
785         Page_breaking interface.
786
787         * lily/page-breaking.cc (class Page_breaking): make the interface
788         more consistent and provide abstractions for dealing with
789         Line_divisions.
790
791         * lily/optimal-page-breaking.cc (solve): use a more straightforward
792         algorithm. Use the new interface to Page_breaking.
793
794         * lily/page-spacing.cc: better support for ragged-bottom and
795         ragged-last-bottom
796
797 2006-08-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
798
799         * python/convertrules.py (conv): warning on \tempo{}
800
801         * ly/performer-init.ly: set tempoWholesPerMinute.
802
803         * ly/midi-init.ly: remove \midi
804
805         * lily/tempo-performer.cc: look at tempoWholesPerMinute to set
806         MIDI tempo.
807
808         * lily/metronome-engraver.cc (process_music): use tempoUnitCount
809         tempoUnitDuration for determining what to print.
810
811         * lily/lyric-extender.cc: typo.
812
813         * lily/parser.yy (output_def_body): disallow \tempo in \midi{}
814
815         * lily/duration-scheme.cc (LY_DEFINE): ly:duration-length: new
816         function.
817
818         * scm/lily.scm (define-scheme-options): alphabetize, add eps-pad-boxes.
819
820         * scm/framework-ps.scm (dump-stencil-as-EPS): only pad boxes if
821         eps-pad-boxes is set.
822
823         * scripts/lilypond-book.py (main): use -deps-pad-boxes.
824
825         * THANKS: update sponsors.
826
827         * ly/english.ly: quarter tone naming (thanks, Trevor Baca)
828
829         * Documentation/topdocs/NEWS.tely (Top): doc new feature.
830
831         * input/regression/tie-chord-untied.ly: new file.
832
833         * lily/tie-engraver.cc (acknowledge_note_head): check 'untied property.
834
835         * scm/define-music-properties.scm (all-music-properties): add
836         'untied property.
837
838         * buildscripts/mutopia-index.py (allfiles): look for .ly rather
839         than .ly.txt.
840         (headertext_nopics): sanitize no-examples text.
841
842         * scm/page.scm (make-page-stencil): don't rely on extents of
843         page-stencil. This fixes spurious space around .EPS files produced
844         with the EPS backend.
845
846 2006-08-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
847
848         * lily/stencil-scheme.cc (LY_DEFINE): make extent arguments optional.
849
850         * lily/hara-kiri-engraver.cc (process_music): remember
851         keepAliveInterfaces after processing \set
852
853         * lily/lyric-extender.cc (print): support left/right-padding for
854         extenders.
855
856         * scm/documentation-generate.scm (string-append): revert lilypond/
857         path, doc why.
858
859 2006-08-20  Graham Percival  <gpermus@gmail.com>
860
861         * Documentation/user/lilypond.tely: clarification to
862         license presentation (not to actual license).
863
864         * Documentation/user/basic-notation.itely,
865         instrument-notation.itely: minor changes.
866
867         * input/ {regression, test}/+.ly: clarification to
868         text (you can click on examples).  Thanks, Mats!
869
870         * input/manual/bar-lines.ly: adds ||: repeats.
871
872 2006-08-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
873
874         * make/ly-vars.make (OMF_FILES): strip ps.gz from OMF_FILES 
875
876         * scm/documentation-lib.scm (texi-file-head): category LilyPond.
877
878         * Documentation/user/lilypond.tely: strip lilypond/ from info
879         links, rename to category LilyPond
880
881         * lily/pango-font.cc (description_string): new function.
882
883         * VERSION: release 2.9.15
884
885         * lily/spacing-engraver.cc (stop_translation_timestep): use
886         Dscho's fix for spacing spanner. 
887
888         * scm/define-music-types.scm (music-descriptions): use
889         apply-output-event for ApplyOutputEvent
890
891         * lily/output-property-engraver.cc (listen_apply_output): rename
892         from listen_layout_instruction.
893
894         * lily/piano-pedal-engraver.cc (struct Pedal_type_info): new
895         function protect()
896
897 2006-08-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
898
899         * scm/lily.scm (lilypond-all): option read-file-list: substitute
900         commandline args with contains, split by \n.
901
902         * scripts/lilypond-book.py (Lilypond_file_snippet.my_system):
903         write snippet-names file, call with -dread-file-list. Fixes
904         command limitations on 64-bit systems.
905
906         * input/regression/stencil-color-rotation.ly: new file.
907
908         * lily/include/translator.hh (struct Acknowledge_information):
909         revert: don't use Protected_scm in global objects, as GUILE can't
910         handle gc_unprotect from automated destructors on MacOS X.
911  
912         * lily/grob.cc (get_print_stencil): use retval.expr() as base for
913         color, not the original stencil. Fixes combinations of
914         color/transparency/rotation. 
915
916         * scripts/lilypond-book.py (main): add --formats=eps for
917         texinfo/latex.
918
919         * lily/spacing-engraver.cc (stop_translation_timestep): don't
920         crash if spacing_ is nonexistent.
921
922 2006-08-14  Mats Bengtsson  <mabe@s3.kth.se>
923
924         * scripts/lilypond-book.py (output): Remove obsolete(!?)
925         \catcode`\@=12 in the LaTeX output.
926
927 2006-08-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
928
929         * scm/define-music-types.scm (music-descriptions):
930         use sustain-event iso. sustain-pedal-event.
931
932 2006-08-11  Joe Neeman  <joeneeman@gmail.com>
933
934         * scripts/convert-ly.py: honour the -n command-line switch
935
936 2006-08-10  Han-Wen Nienhuys  <hanwen@lilypond.org>
937
938         * scm/output-lib.scm (bar-line::calc-glyph-name): add dashed liine
939         break specification.
940
941 2006-08-10  Joe Neeman  <joeneeman@gmail.com>
942
943         * Documentation/user: convert-ly the user manual
944
945 2006-08-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
946
947         * stepmake/aclocal.m4: version check patch (thanks MWD)
948
949         * ly/music-functions-init.ly: robustness. Don't crash if
950         currentBarNumber is not a number.
951
952         * VERSION (PATCH_LEVEL): bump.
953
954 2006-08-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
955
956         * stepmake/aclocal.m4: better version check; handle fooX.Y
957         binaries too.
958
959         * ly/performer-init.ly: instrument name fixup.
960
961         * input/manual/chord-names-jazz.ly (banterProperties):
962         instrumentName update
963
964         * scm/define-event-classes.scm (lambda): use ly:is-listened-event-class
965
966         * lily/ly-module.cc (ly_module_symbols): use ly_hash_table_keys
967
968         * lily/translator.cc (LY_DEFINE): ly:is-listened-event-class: new
969         function. Use hash tables to check membership.
970
971         * lily/general-scheme.cc (LY_DEFINE): new function.
972
973         * lily/piano-pedal-engraver.cc (struct Pedal_type_info): idem
974
975         * lily/include/translator.hh (struct Acknowledge_information): add
976         Protected_scm
977
978         * ly/music-functions-init.ly: change name to BreathingEvent
979
980         * input/regression/*.ly: apply it.
981
982         * python/convertrules.py (conv): better instrumentName conversion
983         rule.
984
985         * scm/define-music-types.scm (music-descriptions): add
986         line-break-event to LineBreakEvent music
987
988         * lily/music.cc (to_event): don't crash if music type not set.
989
990         * lily/spacing-loose-columns.cc (set_loose_columns): don't barf if
991         spacing not set.
992
993         * lily/spacing-engraver.cc (stop_translation_timestep): set
994         spacing for proportional notation too.
995
996         * scm/translation-functions.scm (format-bass-figure): inspect
997         stream-event.
998
999         * scripts/lilypond-book.py (bindir): add bindir to $PATH.
1000
1001 2006-08-08  Joe Neeman  <joeneeman@gmail.com>
1002
1003         * lily/include/constrained-breaking.hh: add Line_details (Prob*)
1004
1005         * scm/page.scm (make-page): make it friendlier to call (esp. from C++)
1006
1007         * scm/layout-page-layout.scm (make-page-from-systems): new function
1008         (optimal-page-breaks): use the new page-breaking calling convention
1009
1010         * scm/define-context-properties.scm (all-user-translation-properties):
1011         add revokePageTurns
1012
1013         * lily/paper-column-engraver.cc (stop_translation_timestep): add
1014         revokePageTurns  functionality. If there is a special barline within
1015         the breakable region, break there instead of at the end of the region.
1016
1017         * lily/paper-book.cc (pages): use the new page-breaking calling
1018         convention
1019
1020 2006-08-07  Erik Sandberg  <mandolaerik@gmail.com>
1021
1022         * lily/lexer.ll, lily/source-file.cc: Add \sourcefileline command
1023
1024         * scripts/lilypond-book.py: insert \sourcefileline command in
1025         output, so lilypond error messages refer to the spot in the
1026         original .lytex / .itely sourcefile.
1027
1028 2006-08-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
1029
1030         * lily/spacing-loose-columns.cc (set_loose_columns): oops: use
1031         space to next column for distance to fixed col.
1032
1033         * VERSION (PACKAGE_NAME): release 2.9.14
1034
1035         * lily/pitched-trill-engraver.cc (make_trill): do set_parent also
1036         if no accidental.
1037
1038         * lily/accidental-engraver.cc (process_acknowledged): don't create
1039         accidental for trill span event. This fixes spurious accidentals
1040         on trills.
1041
1042 2006-08-04  Mats Bengtsson  <mabe@s3.kth.se>
1043
1044         * scm/define-grob-properties.scm (all-user-grob-properties):
1045         Clarify documentation of side-axis and direction. Thanks to Paul
1046         for the inspiration.
1047
1048         * lily/bar-line.cc: Add documentation for "||:" also in the
1049         interface documentation.
1050
1051 2006-08-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
1052
1053         * lily/spacing-loose-columns.cc (set_loose_columns): bugfix.
1054
1055         * lily/paper-column.cc (set_system): new function.
1056
1057         * lily/spacing-engraver.cc (stop_translation_timestep): store
1058         SpacingSpanner refs in Paper_column.
1059
1060         * lily/spacing-loose-columns.cc (set_loose_columns): rewrite
1061         compute loose clique spacing using GraceSpacing/SpacingSpanner.
1062
1063 2006-08-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
1064
1065         * lily/beam-engraver.cc (listen_beam): add method for
1066         Grace_beam_engraver too.
1067
1068 2006-08-03  Mats Bengtsson  <mabe@s3.kth.se>
1069
1070         * python/convertrules.py: Fix indentation bug that broke
1071         conversion of files older than 1.3.117.
1072         Fix escape error in the description for 2.9.6.
1073
1074 2006-08-02  Erik Sandberg  <mandolaerik@gmail.com>
1075
1076         * lily/*-engraver.cc: convert all try_music functions to listen_*
1077         functions.
1078
1079         * lily/piano-pedal-engraver.cc: some additional cleanups: use
1080         enums to represent pedal types, and calculate more data statically.
1081
1082         * scm/part-combiner.scm (recording-group-emulate): create a
1083         softcoded substitute for recording-group-engraver.cc.
1084
1085         * lily/music.cc: make a common transpose function for events and
1086         music
1087
1088         * ly/declarations-init.ly: change melisma/melismaEnd. Eliminates
1089         ManualMelismaEvent, and obsoletes Melisma_translator.
1090
1091 2006-08-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
1092
1093         * input/test/instrument-name-align.ly: update version.
1094
1095 2006-08-02  Mats Bengtsson  <mabe@s3.kth.se>
1096
1097         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
1098         Doc the --pdf flag to lilypond-book.
1099
1100 2006-07-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
1101
1102         * Documentation/topdocs/NEWS.tely (Top): add description.
1103
1104         * input/regression/tuplet-full-length-note.ly: add file.
1105
1106         * lily/instrument-name-engraver.cc (acknowledge_axis_group):
1107         always store axis group.
1108
1109 2006-07-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
1110
1111         * input/regression/instrument-switch.ly: new file.
1112
1113         * lily/instrument-switch-engraver.cc (process_music): new file.
1114
1115         * ly/engraver-init.ly: add Instrument_switch_engraver
1116
1117         * ly/music-functions-init.ly: \instrumentSwitch
1118
1119         * scm/define-context-properties.scm
1120         (all-user-translation-properties): add instrumentCueName
1121
1122         * scm/define-grobs.scm (all-grob-descriptions): add InstrumentSwitch
1123
1124 2006-07-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
1125
1126         * ly/music-functions-init.ly: music function \transposition.
1127
1128         * lily/parser.yy (command_element): softcode \transposition.
1129
1130         * lily/fall-engraver.cc (process_music): delta-pitch -> delta-step.
1131         (process_music): oops.
1132
1133         * lily/instrument-name-engraver.cc (start_spanner): new
1134         function. Create spanner when property changes.
1135         (stop_spanner): new function.
1136
1137         * python/convertrules.py (conv): add rule.
1138
1139         * lily/instrument-name-engraver.cc: shortVocalName iso. vocNam,
1140         shortInstrumentName iso. instr.
1141
1142         * scm/output-ps.scm (dashed-line): add phase argument to
1143         dashed-line.
1144
1145         * lily/bar-line.cc (dashed_bar_line): new function.
1146         (compound_barline): support \bar "dashed". 
1147
1148         * lily/lily-parser-scheme.cc (LY_DEFINE): only write
1149         --output=DIR to DIR/BASE if it is a dir. 
1150
1151         * flower/file-name.cc (file_part): new function
1152         (dir_part): new function
1153
1154         * lily/lily-parser-scheme.cc (LY_DEFINE): 
1155
1156         * DEDICATION: update
1157
1158 2006-07-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
1159
1160         * lily/instrument-name-engraver.cc: formatting.
1161
1162         * python/convertrules.py (conv): bugfix for \epsfile.
1163
1164 2006-07-25  Joe Neeman  <joeneeman@gmail.com>
1165
1166         * lily/grob.cc:
1167         
1168         * lily/gourlay-breaking.cc: Oops, these should have been included
1169         in my last commit
1170
1171 2006-07-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
1172
1173         * scripts/*.py (program_name): cleanup relocation snippets.
1174
1175         * scripts/convert-ly.py (datadir): remove LILYPONDPREFIX support.
1176
1177 2006-07-24  Joe Neeman  <joeneeman@gmail.com>
1178
1179         * scm/define-grobs.scm (all-grob-descriptions): make NonMusicalPaperColumn
1180         page-breakable by default
1181
1182         * scm/layout-page-layout.scm (space-systems): fix bug where the force isn't
1183         correctly calculated for a single-system page
1184
1185         * scm/lily-library.scm (interval-sane?): also check that the first number is no
1186         bigger than the second number
1187
1188         * lily/simple-spacer.cc (solve): allow compression even when ragged (but we
1189         acknowledge that we aren't satisfying constraints)
1190
1191         * lily/hara-kiri-group-spanner.cc (request_suicide): give equal treatment to
1192         non-Items
1193
1194         * lily/grob.cc (pure_height): add minimum-Y-extent
1195
1196         * lily/gourlay-breaking.cc (solve): don't ignore a compression force, even if we're
1197         ragged
1198
1199         * lily/constrained-breaking.cc: convert code to use new Matrix class
1200         (get_best_solution): new function
1201
1202         * scm/page.scm (make-page-stencil): don't crash if we annotate-layout when there
1203         is a page with no systems
1204
1205 2006-07-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
1206
1207         * VERSION (PACKAGE_NAME): release 2.9.13
1208
1209         * scm/define-grobs.scm (all-grob-descriptions): remove stray
1210         assignment.
1211
1212 2006-07-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
1213
1214         * Documentation/topdocs/NEWS.tely (Top): doc new features.
1215
1216         * scm/output-lib.scm (grace-spacing::calc-shortest-duration): new
1217         function.
1218
1219         * scm/define-grob-properties.scm (all-user-grob-properties):
1220         remove grace-space-factor.
1221
1222         * scm/define-grob-interfaces.scm (grace-spacing-interface): add
1223         grace-spacing-interface
1224         (spacing-options-interface): add.
1225
1226         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): add Grace_spacing_engraver
1227
1228         * lily/spacing-options.cc (get_duration_space): move function from spacing-basic.cc
1229
1230         * lily/spacing-basic.cc (note_spacing): do init_from_grob on
1231         GraceSpacing object.
1232
1233         * lily/note-spacing.cc: fix prop list formatting
1234
1235         * lily/beaming-pattern.cc (de_grace): new function. Sensible
1236         beaming for grace notes too.
1237
1238         * input/regression/spacing-grace.ly: update.
1239
1240         * lily/grace-spacing-engraver.cc: new file.
1241
1242         * lily/spacing-spanner.cc: add strict-grace-spacing.
1243
1244 2006-07-20  Graham Percival  <gpermus@gmail.com>
1245
1246         * lily/parser.yy: compile fix.
1247
1248 2006-07-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
1249
1250         * scm/define-grobs.scm (all-grob-descriptions): typo.
1251
1252         * scm/framework-eps.scm (dump-stencils-as-EPSes): just strip
1253         .eps extension from includegraphics.
1254
1255         * scripts/lilypond-book.py (main): add support for --pdf. 
1256
1257         * lily/spacing-spanner.cc (calc_common_shortest_duration): use
1258         callback to compute common shortest duration.
1259         (set_springs): typo.
1260
1261         * scm/define-grob-properties.scm (all-user-grob-properties): add
1262         strict-grace-spacing.
1263
1264         * lily/spacing-determine-loose-columns.cc (is_loose_column):
1265         support float_grace_columns_.
1266
1267         * lily/spacing-options.cc (init_from_grob): new file.
1268
1269         * Documentation/topdocs/NEWS.tely (Top): doc tupletFullLengthNote.
1270
1271         * input/regression/spacing-loose-grace.ly: new file.
1272
1273         * Documentation/topdocs/NEWS.tely (Top): document new feature.
1274
1275         * lily/tuplet-engraver.cc (struct Tuplet_description): read
1276         tupletFullLengthNote too. Choose right bound depending on value.
1277
1278         * input/regression/tuplet-full-length-note.ly: new file.
1279
1280 2006-07-19  Erik Sandberg  <mandolaerik@gmail.com>
1281
1282         * lily/*-performer.cc: Converted try_music to listen_*
1283
1284         * lily/grob-info.cc, lily/engraver.cc: represent the cause of grob
1285         as a stream-event internally. Introduce event_cause (), deprecate
1286         music_cause ().
1287
1288         * scm/define-music-types.scm: Removed BusyPlayingEvent
1289         
1290 2006-07-19  Mats Bengtsson  <mabe@s3.kth.se>
1291
1292         * Documentation/user/advanced-notation.itely (Font selection):
1293         Document how to get a list of available fonts using 'lilypond
1294         -dshow-available-fonts blabla'.
1295
1296 2006-07-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1297
1298         * GNUmakefile.in: filter lily-XXX.pdf files.
1299
1300         * scm/define-grob-interfaces.scm (bend-after-interface): add thickness.
1301
1302         * scm/define-grob-properties.scm (all-internal-grob-properties):
1303         remove delta-pitch. Use delta-position everywhere.
1304
1305         * scm/output-lib.scm (fall::print): use new order.
1306
1307         * scm/output-ps.scm (path): reorder arguments.
1308
1309         * scm/output-svg.scm (path): support for path primitive.
1310
1311         * input/regression/bend-after.ly: new file.
1312
1313         * Documentation/user/GNUmakefile ($(outdir)/%.pdf): foolproof
1314         recipe for eps -> pdf conversion.
1315
1316 2006-07-19  Erik Sandberg  <mandolaerik@gmail.com>
1317
1318         * lily/parser.yy, lily/lexer.ll: added some simplifications by
1319         Angelo Contardi.
1320
1321 2006-07-19  Graham Percival  <gpermus@gmail.com>
1322
1323         * input/manual/screech-boink.ly: moved to here.
1324
1325         * input/screech-boink.ly: deleted.
1326
1327         * scm/define-grob-properties.scm: clarify doc string.
1328
1329 2006-07-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1330
1331         * Documentation/topdocs/NEWS.tely (Top): doc new feature.
1332
1333         * scm/output-ps.scm (path): define path.
1334
1335         * scm/define-stencil-commands.scm
1336         (ly:register-stencil-expression): add path.
1337
1338         * scm/define-music-properties.scm (all-music-properties): add delta-pitch.
1339
1340         * ly/engraver-init.ly: add Fall_engraver
1341
1342         * lily/parser.yy (music_function_event): allow musicfunction
1343         without music arg as music_function_event.
1344
1345         * lily/grob-scheme.cc (LY_DEFINE):
1346         ly:grob-robust-relative-extent. New function.
1347
1348         * scm/define-grobs.scm (all-grob-descriptions): add BendAfter
1349
1350         * scm/define-music-types.scm (music-descriptions): add BendAfterEvent.
1351
1352         * scm/output-lib.scm (fall::print): new function
1353
1354         * lily/fall-engraver.cc (stop_fall): new file.
1355
1356         * ly/music-functions-init.ly: alphabetise.
1357
1358         * Documentation/user/GNUmakefile (OUT_PNG_IMAGES): pdf iso. eps as
1359         base.
1360
1361 2006-07-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
1362
1363         * VERSION (PATCH_LEVEL): bump version. Release 2.9.12
1364
1365         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
1366         doc pdftex usage.
1367
1368         * lily/translator-group.cc (connect_to_context): non const error message.
1369
1370         * Documentation/user/GNUmakefile ($(outdir)/%.pdf): update to use PDF
1371
1372         * scm/paper.scm (internal-set-paper-size): define landscape to #f
1373         if unset.
1374
1375         * scm/framework-ps.scm (convert-to-pdf): swap h and w in case of landscape. 
1376
1377         * stepmake/stepmake/texinfo-rules.make: strip DVI support.
1378
1379         * scm/framework-eps.scm (dump-stencils-as-EPSes): generate
1380         systems.pdftex too.
1381
1382         * scm/backend-library.scm (postscript->pdf): use -dEPSCrop for PDF.
1383
1384         * make/lilypond-vars.make (TEXINPUTS): add pdf output format.
1385
1386         * Documentation/topdocs/NEWS.tely (Top): add pdftex note.
1387
1388         * scm/output-ps.scm (resetrotation): use gsave/grestore for rotation.
1389
1390         * lily/main.cc (parse_argv): don't overwrite previous --formats string.
1391
1392         * scm/backend-library.scm (postscript->pdf): strip .eps too. 
1393
1394 2006-07-14  Nicolas Sceaux  <nicolas.sceaux@free.fr>
1395
1396         * scm/layout-page-layout.scm: Define module, tidy code, use more
1397         functions iso. a single big one.
1398
1399         * scm/layout-page-dump.scm: move page dump functions used in two
1400         pass spacing to this file. Define module.
1401
1402         * scm/lily.scm (ly:load): don't load layout-page-layout.scm
1403          (separate module)
1404
1405         * ly/paper-defaults.ly: use module layout-page-layout.
1406
1407 2006-07-14  Erik Sandberg  <mandolaerik@gmail.com>
1408
1409         * lily/music.cc: Revised MusicEvent event class. It now contains
1410         event data directly instead of encapsulating it in music. The
1411         previously used class is renamed to OldMusicEvent.
1412
1413         * lily/stream-event.cc: Stream events are now probs.
1414         
1415         * lily/translator-group.cc, lily/translator.cc: Translators can
1416         now listen directly to stream events, by using macros
1417         [DECLARE,IMPLEMENT]_TRANSLATOR_LISTENER.
1418
1419         * lily/arpeggio-engraver.cc: Converted to use new event system
1420
1421         * THANKS: Corrected spelling mistake.
1422
1423 2006-07-12  Graham Percival  <gpermus@gmail.com>
1424
1425         * Documentation/user/SConscript, make/lilypond-vars.make,
1426         input/GNUmakefile: doc build looks in input/manual instead
1427         of input/test/
1428
1429         * input/manual/ GNUmakefile, SConscript: build files for
1430         input/manual/
1431
1432         * input/test/ various: some files moved to input/manual/ 
1433
1434         * Documentation/user/basic-notation.itely: small updates;
1435         thanks Kieren and Charles!
1436
1437 2006-07-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
1438
1439         * VERSION (PACKAGE_NAME): release 2.9.11
1440
1441         * Documentation/topdocs/NEWS.tely (Top): update prop value 
1442
1443         * Documentation/user/basic-notation.itely (Tuplets): new property
1444         value.
1445
1446 2006-07-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
1447
1448         * python/convertrules.py (conv): tweaks. 
1449
1450         * VERSION (PATCH_LEVEL): bump version.
1451
1452         * python/convertrules.py (conv): add rule for
1453         tupletNumberFormatFunction.
1454
1455         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
1456         tupletNumberFormatFunction.
1457
1458         * scm/define-grobs.scm (all-grob-descriptions): calc TupletNumber
1459         text through 'text callback.
1460
1461         * lily/time-scaled-music-iterator.cc (construct_children): copy
1462         tweaks generated events.
1463
1464         * scm/define-context-properties.scm
1465         (all-user-translation-properties): remove tupletNumberFormatFunction
1466
1467         * lily/tuplet-engraver.cc (process_music): don't read
1468         tupletNumberFormatFunction
1469
1470         * scm/output-lib.scm (tuplet-number::calc-fraction-text): new
1471         function.
1472
1473 2006-07-11  Erik Sandberg  <mandolaerik@gmail.com>
1474
1475         * lily/global-context-scheme.cc: Separated ly:run-translator into
1476         smaller pieces.
1477
1478         * lily/score-engraver.cc, lily/score-performer.cc,
1479         scm/define-context-properties.scm: Make paper/midi output
1480         accessable as a context property.
1481
1482         * lily/score-translator.cc, lily/score-context.cc: Removed.
1483
1484 2006-07-07  Guido Amoruso  <guidonte@katamail.com>
1485
1486         * scm/ps-to-png.scm (Module): 
1487         * scm/framework-tex.scm (Module): 
1488         * scm/framework-ps.scm (Module): 
1489         * scm/backend-library.scm (Module): 
1490         * scm/framework-ps.scm: invoke gs with "-dDEVICEWIDTHPOINTS" and
1491         "dDEVICEHEIGHTPOINTS".
1492
1493 2006-07-04  Graham Percival  <gpermus@gmail.com>
1494
1495         * Documentation/user/ various: general improvements to
1496         "working with lilypond files" section.
1497
1498 2006-07-03  Erik Sandberg  <mandolaerik@gmail.com>
1499
1500         * lily/sequential-iterator.cc: Change the default get_music_list
1501         to read elements-callback music property
1502
1503         * scm/define-music-types.scm, scm/music-functions.scm: Cleaner
1504         processing of multimeasure rests. Softcoded
1505         sequential-music-iterator.
1506
1507         * lily/sequential-music-iterator.cc: Removed.
1508
1509 2006-06-28  Graham Percival  <gpermus@gmail.com>
1510
1511         * Documentation/user/basic-notation.itely: clarify \repeatTie.
1512
1513 2006-06-27  Erik Sandberg  <mandolaerik@gmail.com>
1514
1515         * lily/parser.yy: Wrap non-post-events in EventChords before
1516         assigning them to identifiers.
1517
1518 2006-06-27  Mats Bengtsson  <mabe@s3.kth.se>
1519
1520         * lily/bar-line.cc (compound_barline): Fix parenthesis error,
1521         gives correct vertical placement of \bar ":" in all staff
1522         sizes. Thanks Martial!
1523
1524 2006-06-26  Graham Percival  <gpermus@gmail.com>
1525
1526         * Documentation/user/invoking.itely : minor update from mailist.
1527
1528 2006-06-26  Erik Sandberg  <mandolaerik@gmail.com>
1529
1530         * lily/ various: Introduce stream events of types Prepare,
1531         OneTimeStep, CreateContext, AnnounceNewContext, RemoveContext,
1532         ChangeContext, SetProperty, RevertProperty, Override and Revert.
1533
1534         * lily/global-context*.cc: Time is now -inf before iteration
1535         starts.
1536
1537         * lily/include/context.hh: Removed unique_, init_
1538
1539         * Documentation/topdocs/NEWS: Make the feathered beam example
1540         avoid triggering a bug.
1541
1542 2006-06-24  Graham Percival  <gpermus@gmail.com>
1543
1544         * Documentation/user/ various: small additions from mailist.
1545
1546 2006-06-22  Mats Bengtsson  <mabe@s3.kth.se>
1547
1548         * ly/performer-init.ly: Add some missing links in the context
1549         hierarchy for MIDI output. There are probably some more missing!
1550
1551 2006-06-21  Graham Percival  <gpermus@gmail.com>
1552
1553         * Documentation/user/ various: minor spelling fixes;
1554         thanks Dave Luttinen!
1555
1556         * Documentation/user/ various: small clarifications;
1557         thanks Anthony Youngman!
1558
1559 2006-06-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
1560
1561         * po/fr.po: add \n appropriately.
1562
1563         * lily/lexer.ll: remove ? from version-seen?  
1564
1565 2006-06-19  John Mandereau  <john.mandereau@free.fr>
1566
1567         * po/fr.po; update translation, by Jean-Charles Malahieude and
1568         John Mandereau.
1569
1570 2006-06-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1571
1572         * THANKS: add Markus Schneider.
1573
1574         * lily/tab-staff-symbol-engraver.cc: derive from Engraver, not
1575         Staff_symbol_engraver
1576
1577         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): don't
1578         replace staff_engraver
1579
1580         * lily/staff-symbol-engraver.cc (stop_spanner): announce end of
1581         spanner.
1582
1583         * lily/staff-collecting-engraver.cc
1584         (acknowledge_end_staff_symbol): new function
1585
1586         * lily/volta-engraver.cc (acknowledge_end_staff_symbol): new function. 
1587
1588         * lily/staff-collecting-engraver.cc
1589         (acknowledge_end_staff_symbol): new function.
1590
1591         * lily/main.cc: switch on relocation by default.
1592
1593 2006-06-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
1594
1595         * lily/spacing-spanner.cc (musical_column_spacing): set
1596         compound_fixed_note_space to 0.0. Document why.
1597
1598         * lily/simple-spacer.cc (is_sane): also have a kludge for numeric
1599         range of inverse_hooke_
1600         (Simple_spacer): init completely.
1601         (fits): const
1602         (get_line_configuration): don't use cols.resize(); it introduces
1603         initialized data.
1604
1605         * scm/framework-ps.scm (dump-page): add setstrokeadjust. 
1606
1607         * ps/music-drawing-routines.ps: remove selectfont L1 hack.
1608
1609         * lily/beaming-pattern.cc (best_splitpoint_index): urg, 2nd
1610         try. Divide by beatlength.
1611
1612         * input/regression/beaming-ternary-metrum.ly: update doc.
1613         add beatLength hack.
1614
1615         * scm/music-functions.scm (make-time-signature-set): add
1616         standard-beat-grouping. 
1617
1618 2006-06-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
1619
1620         * input/regression/tie-whole.ly: new file.
1621
1622         * lily/tie-formatting-problem.cc (set_column_chord_outline): don't
1623         cross center of note head in case of invisible stem. 
1624
1625 2006-06-16  Graham Percival  <gpermus@gmail.com>
1626
1627         * Documentation/user/ various: small fixes from mailist.
1628
1629 2006-06-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
1630
1631         * lily/breathing-sign.cc (offset_callback): idem.
1632
1633         * lily/align-interface.cc (align_to_fixed_distance): remove
1634         hungarian suffix.
1635
1636         * lily/beaming-pattern.cc (count_factor_twos): oops. We want
1637         x%2==0.
1638
1639 2006-06-15  Han-Wen Nienhuys  <hanwen@lilypond.org>
1640
1641         * VERSION (PACKAGE_NAME): release 2.9.9
1642
1643         * ly/lilypond-book-preamble.ly: add \version
1644
1645 2006-06-14  Han-Wen Nienhuys  <hanwen@lilypond.org>
1646
1647         * scripts/lilypond-book.py (PREAMBLE_LY): include
1648         lilypond-book-preamble.ly
1649
1650         * lily/stem.cc (get_beaming): return max of 0 and
1651         scm_ilength. Fixes slurring from/to beams.
1652
1653         * ly/lilypond-book-preamble.ly: new file.
1654
1655         * lily/slur.cc: add inspect-index feature.
1656
1657 2006-06-13  Graham Percival  <gpermus@gmail.com>
1658
1659         * Documentation/user/tutorial.itely: trivial fix.
1660
1661 2006-06-13  Erik Sandberg  <mandolaerik@gmail.com>
1662
1663         * lily/parser.yy, scm/ly-syntax-constructors.scm: Produce almost
1664         all non-event music in the parser via MAKE_SYNTAX.
1665
1666         * lily/parser-scheme.cc: Add ly:parser-error function
1667
1668         * scm/paper.scm: fix typo
1669
1670 2006-06-13  Han-Wen Nienhuys  <hanwen@lilypond.org>
1671
1672         * THANKS: add RT.
1673
1674         * lily/font-config.cc (init_fontconfig): add warning if cache_file
1675         is null.
1676
1677         * buildscripts/output-distance.py (test_compare_signatures):
1678         timing routines.
1679         (read_signature_file): use new signature format.
1680
1681         * scm/stencil.scm (write-system-signature): simpler signature
1682         format.
1683
1684         * lily/stem.cc (calc_stem_end_position): calc quantized-positions
1685         for beamed case. 
1686
1687         * lily/note-spacing.cc (stem_dir_correction): don't inspect
1688         stem_end_position, but estimate instead. 
1689
1690         * lily/tuplet-bracket.cc (calc_positions): look at
1691         stem-end-position for tuplet bracket slope. Fixes sloped tuplet
1692         brackets narrower than beams. 
1693
1694         * lily/lexer.ll: set version-seen? even if version is
1695         INVALID. 
1696
1697         * lily/rest.cc (y_offset_callback): bugfix: decide position
1698         override based on scm_is_number(). Fixes \rest on center staff
1699         line. 
1700
1701         * lily/beaming-pattern.cc (best_splitpoint_index): fix beaming
1702         patterns for 16th triplets.
1703
1704 2006-06-10  Graham Percival  <gpermus@gmail.com>
1705
1706         * Documentation/user/ page.itely, global.itely: editing
1707         and reorg.
1708
1709         * Documentation/user/ various: findex -> funindex.
1710
1711 2006-06-10  Erik Sandberg  <mandolaerik@gmail.com>
1712
1713         * lily/time-scaled-music-iterator.cc: Use tupletSpannerDuration to
1714         insert extra tuplet events.
1715
1716 2006-06-10  Graham Percival  <gpermus@gmail.com>
1717
1718         * Documentation/user/programming-interfaces.itely: add
1719         info from NEWS.
1720
1721         * python/convertrules.py: add annotatefoo -> annotate-foo
1722         rules.
1723
1724         * Documentation/user/global.itely: start editing.
1725
1726         * Documentation/user/page.itely: major editing, new spacing
1727         docs.
1728
1729 2006-06-10  Han-Wen Nienhuys  <hanwen@lilypond.org>
1730
1731         * scm/define-markup-commands.scm (wordwrap-markups): use
1732         output-def 'line-width if undefined.
1733
1734         * HACKING: trim outdated info.
1735
1736 2006-06-09  Mats Bengtsson  <mabe@s3.kth.se>
1737
1738         * scm/define-grobs.scm (all-grob-descriptions): Add
1739         line-spanner-interface to all grobs that already have
1740         text-spanner-interface or dynamic-text-spanner-interface
1741
1742         * scm/page.scm: Rename annotate{headers,systems,page}->
1743         annotate-*
1744
1745         * input/regression/page-spacing.ly,
1746         input/regression/page-layout-manual-position.ly: idem
1747
1748 2006-06-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
1749
1750         * lily/line-spanner.cc: cleanup property list.
1751
1752         * scripts/lilypond-book.py (find_toplevel_snippets): don't use
1753         generator expressions (2.3 compat). 
1754
1755 2006-06-09  Mats Bengtsson  <mabe@s3.kth.se>
1756
1757         * lily/vertical-align-engraver.cc: Make sure that the
1758         align{Above,Below}Context properties are included in the automatic
1759         documentation.
1760
1761 2006-06-08  Joe Neeman  <joeneeman@gmail.com>
1762
1763         * scm/paper-system.scm (paper-system-annotate): also annotate the
1764         estimated pure-Y-extent
1765
1766         * scm/define-grobs.scm: add pure-Y-extent and pure-Y-offset functions
1767
1768         * lily/system.cc (break_into_pieces): set the estimated height
1769         of each child system
1770
1771         * lily/stem.cc (pure_height): new pure-Y-extent callback
1772
1773         * lily/staff-symbol-referencer.cc (callback): don't destroy
1774         the staff-position property
1775
1776         * lily/hara-kiri-group-spanner.cc (request_suicide): split
1777         consider_suicide into two functions
1778
1779         * lily/constrained-breaking.cc (resize): use the new pure
1780         callbacks to estimate the height of a system
1781
1782         * lily/axis-group-interface.cc (pure_group_height): new
1783         side-effect-free VerticalAxisGroup height-callback
1784
1785         * lily/align-interface.cc (get_extents_aligned_translates):
1786         split align_elements_to_extents into two functions
1787         (get_pure_child_y_translation): new function
1788
1789         * lily/grob.cc: new functions for pure-Y-extent and pure-Y-offset
1790
1791         * lily/item.cc: new functions pure_is_visible and spanned_rank_iv
1792
1793         * lily/paper-score.cc: cache break_indices and columns
1794
1795         * lily/side-position-interface.cc: new pure-Y-extent callbacks
1796         
1797 2006-06-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
1798
1799         * lily/font-config.cc (init_fontconfig): do the init if
1800         cache_file, but don't look at cache_file.
1801
1802         * input/regression/quote-tie.ly: new file.
1803
1804         * lily/tie-engraver.cc (struct Head_event_tuple): add end_moment_
1805         to Head_event_tuple, so we deal gracefully with ties on
1806         cue-endings.
1807
1808         * lily/pango-font.cc (pango_item_string_stencil): type correctness
1809         for FcChar8*
1810
1811 2006-06-08  Graham Percival  <gpermus@gmail.com>
1812
1813         * input/test/ smart-transpose.ly, reverse-music.ly:
1814         \applyMusic to music functions update, thanks Michael!
1815
1816 2006-06-07  Graham Percival  <gpermus@gmail.com>
1817
1818         * input/test/ add-staccato.ly, add-text-script.ly,
1819         unfold-all-repeats.ly, music-box.ly: \applyMusic to
1820         music functions update, thanks to Michael Meixner.
1821
1822         * Documentation/user/music-glossary.tely: small fix
1823         from Francisco.
1824
1825         * Documentation/user/ various: minor additions from mailist.
1826
1827         * Documentation/user/lilypond.tely, basic-notation.itely:
1828         small test of @funindex.  (works here)
1829
1830         * input/test/font-table.ly: reduce size to partially
1831         de-ugly version in manual.
1832
1833         * Documentation/user/page.itely: new file (split former
1834         "global issues" into "page settings" and "non-musical
1835         output".
1836
1837         * Documentation/user/ various: fix @ref{}s to match
1838         new chapter names (above).
1839
1840 2006-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
1841
1842         * SConstruct (LILYPONDPREFIX): Bootstrap fix.
1843
1844 2006-06-06  Graham Percival  <gpermus@gmail.com>
1845
1846         * Documentation/user/advanced-notation.itely: add example
1847         for segno/coda on barline.
1848
1849         * tex/texinfo.tex: merge from upstream.
1850
1851 2006-06-06  Jan Nieuwenhuizen  <janneke@gnu.org>
1852
1853         * scripts/lilypond-book.py (process_snippets): Argument fix.
1854
1855         * SConstruct:
1856         * buildscripts/builder.py:
1857         * lily/SConscript: 
1858         * mf/SConscript: 
1859         * Documentation/user/SConscript:  More SCons fixes.
1860
1861 2006-06-03  Jan Nieuwenhuizen  <janneke@gnu.org>
1862
1863         * lily/font-config.cc (init_fontconfig): Only initialize if
1864         global cache_file is found.
1865
1866 2006-06-06  Erik Sandberg  <mandolaerik@gmail.com>
1867
1868         * ly/music-functions-init.ly: Updated \overrideProperty to use the
1869         new \applyOutput.
1870
1871 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1872
1873         * VERSION (PACKAGE_NAME): release 2.9.8
1874
1875         * lily/ledger-line-engraver.cc (stop_translation_timestep): new
1876         function. Delay ledger modifying ledgered grobs to
1877         stop_translation_timestep(), to ensure that we're ledgering
1878         according to the new spanner.
1879         (acknowledge_staff_symbol): don't check for non-NULL
1880         staff_sym->get_bound()
1881
1882         * lily/staff-symbol-engraver.cc (start_spanner): set left bound on
1883         creation.
1884
1885         * Documentation/pictures/GNUmakefile (XPM_FILES): src-wildcard for
1886         pictures too.
1887
1888         * GNUmakefile.in (dist-toplevel-txt-files): dist aclocal.m4
1889         directly from srcdir/stepmake/aclocal.m4
1890         
1891         * Documentation/misc/GNUmakefile (TEXTS): use src-wildcard for
1892         disting MISC files.
1893
1894         * lily/simple-spacer.cc (get_column_desc): desc -> description.
1895
1896 2006-06-06  Joe Neeman  <joeneeman@gmail.com>
1897
1898         * lily/simple-spacer.cc (get_line_configuration): add
1899         keep-inside-line rods
1900         (struct Column_desc): add constructor
1901         (struct Rod_desc): add constructor
1902         (get_line_forces): check for forced page breaks here too
1903
1904         * lily/instrument-name-engraver.cc (acknowledge_axis_group): prevent
1905         support/elements cycles between InstrumentNames and AxisGroups
1906
1907 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1908
1909         * config.make.in (METAFONT): remove MAKEINFO_VERSION
1910
1911         * stepmake/stepmake/topdocs-targets.make (make-txt-files): define
1912         make-txt-files target.
1913
1914         * stepmake/stepmake/toplevel-targets.make (do-top-doc): use
1915         make-txt-files target.
1916
1917         * configure.in (LINK_GXX_STATICALLY): $srcdir for readlink.py
1918
1919         * stepmake/stepmake/generic-vars.make (distdir): create dist in
1920         top-build-dir.
1921
1922 2006-06-06  Jürgen Reuter  <reuter@ipd.uka.de>
1923
1924         * Documentation/user/instrument-notation.itely,
1925         input/regression/breathing-sign-ancient.ly,
1926         input/test/divisiones.ly: Removed redundant property settings for
1927         vaticana contexts.
1928
1929         * ly/gregorian-init.ly: Rewrote \versus and \responsum in order to
1930         fix lyrics alignment problems.  They are implemented now as scheme
1931         functions that add the appropriate unicode char to the first lyric
1932         event rather than adding a separate lyric event.  Minor edit of
1933         comments.
1934
1935 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1936
1937         * GNUmakefile.in (dist-toplevel-txt-files): new target. Don't
1938         pollute src dir with built .txt files, but install directly from
1939         Documentation/topdocs/out/
1940
1941         * buildscripts/output-distance.py
1942         (ComparisonData.create_html_result_page): put version/directories
1943         in table header.
1944
1945         * Documentation/topdocs/NEWS.tely (Top): document spacing section
1946         feature.
1947
1948         * configure.in (LINK_GXX_STATICALLY): use readlink.py to resolve links.
1949         Patch by Karl Hammar
1950         
1951         * buildscripts/readlink.py: add  file.
1952         Patch by Karl Hammar
1953
1954 2006-06-06  Joe Neeman  <joeneeman@gmail.com>
1955
1956         * lily/tuplet-number.cc (print): prevent stencil from being
1957         garbage collected.
1958
1959 2006-06-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
1960
1961         * scm/stencil.scm (write-system-signature): explicitly 
1962         -well, superfluously- close output port.
1963
1964         * buildscripts/output-distance.py (main): oops. Add extra argument.
1965
1966 2006-06-05  Graham Percival  <gpermus@gmail.com>
1967
1968         * Documentation/user/music-glossary.tely: clarified example
1969         from Francisco Vila, thanks!
1970
1971 2006-06-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
1972
1973         * input/regression/spacing-section.ly: new file.
1974
1975         * lily/input.cc (programming_error): new function.
1976
1977         * lily/spacing-engraver.cc (try_music): new function. Accept
1978         spacing-section-event
1979
1980         * lily/spacing-spanner.cc (set_springs): take slices of all
1981         columns for spacing.
1982
1983         * lily/include/paper-column.hh (class Paper_column): add
1984         Paper_column::compare.
1985
1986         * ly/spanners-init.ly (newSpacingSection): add newSpacingSection.
1987
1988         * scm/define-music-types.scm (music-descriptions): add
1989         SpacingSectionEvent
1990
1991         * lily/music-iterator.cc (report_event): use programming_error for
1992         sending non-event error.
1993
1994         * lily/input.cc (programming_error): new function
1995
1996         * buildscripts/output-distance.py (main): use compare-XXX for
1997         compare files.
1998         (main): --threshold option, default at 0.30
1999
2000         * output-distance.py (main): add --threshold option.
2001
2002 2006-06-04  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2003
2004         * scm/paper-system.scm (paper-system-annotate): fix problem when
2005         annotating an empty system
2006
2007 2006-06-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
2008
2009         * GNUmakefile.in: reinstate old web tar/copying.
2010
2011 2006-06-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2012
2013         * lily/lyric-combine-music-iterator.cc (find_voice): return 0 if
2014         nothing changes. (Erik S) 
2015
2016         * lily/percent-repeat-iterator.cc (get_music_list): fix repeat
2017         count. (Erik S)
2018
2019 2006-05-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2020
2021         * scm/define-markup-commands.scm (whiteout): do not force
2022         foreground color of argument markup to black.
2023
2024         * scm/stencil.scm (annotate-y-interval): put arrow dimension at
2025         the left of the arrow, instead of below the arrow name, so that,
2026         when two little arrows are vertically stacked, their dimensions
2027         and name should not overlap. Add a color key parameter.
2028
2029         * scm/paper-system.scm (paper-system-annotate): Annotate
2030         next-space+next-padding instead of next-space. Annotate space
2031         between next-padding and next-space+padding, respectively, and
2032         following system extent and refpoint-Y-extent. Use colors.
2033
2034         * scm/page.scm (annotate-page): translate annotations slightly to
2035         the right.
2036
2037 2006-06-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2038
2039         * lily/figured-bass-position-engraver.cc (acknowledge_end_slur):
2040         fix for x-staff slurs. Thanks Joe!
2041
2042         * buildscripts/output-distance.py
2043         (SystemLink.output_expression_change_count): keep track of changed
2044         details, and dump in details html page.
2045  
2046         * input/regression/figured-bass-staff.ly: add note about setting
2047         properties in Staff context.
2048
2049         * lily/figured-bass-position-engraver.cc (acknowledge_slur):
2050         add slurs and ties to support too.
2051
2052         * buildscripts/output-distance.py (main): set dest_dir
2053         argument. Add --max-count option.
2054
2055 2006-06-02  Jürgen Reuter  <reuter@ipd.uka.de>
2056
2057         * ly/gregorian-init.ly: Converted to utf-8.  Added memorable
2058         shortcuts for special unicode chars that are useful in chant
2059         notation.  Revised exisiting and added new comments.
2060
2061 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2062
2063         * make/mutopia-rules.make: remove duplicate recipe.
2064
2065 2006-06-02  Werner Lemberg  <wl@gnu.org>
2066
2067         * tex/texinfo.cnf: Fix typo (\euro -> \minus).
2068         Add support for U+0132 (IJ) and U+0133 (ij).
2069
2070 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2071
2072         * buildscripts/output-distance.py (FileLink): new class. collect
2073         info systems from one .ly file. 
2074         (FileLink.link_files_for_html): further tweaks.
2075
2076 2006-06-02  Graham Percival  <gpermus@gmail.com>
2077
2078         * tex/texinfo.tex: partial fix for @funindex.
2079
2080         * Documentation/user/macros.tely: uncomment @funindex (doesn't
2081         break anything).
2082
2083 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2084
2085         * make/mutopia-vars.make (ly_examples): replace .ly.txt with .ly
2086
2087         * tex/texinfo.tex (sectionheading, q.v.): call \quoteexpand for
2088         @example too. Backportme.
2089
2090 2006-06-02  Graham Percival  <gpermus@gmail.com>
2091
2092         * tex/texinfo.cnf: added UTF-8 support for texinfo; patch
2093         from Werner Lemberg.
2094
2095 2006-06-02  Paco (Francisco Vila)  <fravd@ya.com>
2096
2097         * Documentation/user/music-glossary.tely: additional spanish
2098         updates and a lyrics fix in an example.
2099
2100 2006-06-02  Jürgen Reuter  <reuter@ipd.uka.de>
2101
2102         * scm/define-grob-properties.scm: Previous patch contained
2103         spurious line from another patch not yet committed.  Fixed.
2104
2105         * scm/define-grob-properties.scm: Add missing doc strings for
2106         ancient notation.
2107
2108 2006-06-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
2109
2110         * buildscripts/output-distance.py
2111         (ComparisonData.write_text_result_page): separate the scores, sort
2112         by geo_score.
2113
2114         * scm/framework-eps.scm (output-classic-framework): start at 1 for
2115         system signatures.
2116
2117         * buildscripts/output-distance.py (me_path): use argv[0] for
2118         sys.path extension
2119         (ComparisonData.img_cell): use colored borders.
2120
2121         * scm/stencil.scm (write-system-signature): escape newlines too.
2122         (write-system-signature): use (1,-1) interval for empty interval
2123
2124 2006-01-01  Graham Percival  <gpermus@gmail.com>
2125
2126         * Documentation/user/music-glossary.tely: Spanish updates
2127         from Francisco Vila.
2128
2129         * Documentation/user/lilypond-book.itely: addition from
2130         Vaclav Smilauer.
2131
2132         * Documentation/user/ various: edits, small additions
2133         from mailist, etc.
2134
2135 2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
2136
2137         * GNUmakefile.in (tree-lib-prefix-current):
2138         (tree-share-prefix-current): Use version number in tree, add
2139         `current' symlinks.
2140
2141 2006-06-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
2142
2143         * GNUmakefile.in: write VERSION, again.
2144
2145         * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
2146         $(outdir)/%.ly $(outdir)/%.ps): dump sigs for normal files too.
2147
2148         * stepmake/aclocal.m4: robuster version detection.
2149
2150         * buildscripts/output-distance.py
2151         (ComparisonData.create_html_result_page): copy only if file
2152         exists, fixup src paths.
2153
2154         * stepmake/bin/add-html-footer.py (built): junk gulp_file()
2155
2156 2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
2157
2158         * stepmake/aclocal.m4: Robustification for (gcc) version detection.
2159         Another datarootdir reto.
2160
2161         * cygwin/postinstall-lilypond.sh: Do not fail if info docs aren't
2162         available.  This should be moved to postinstall-lilypond-doc.
2163
2164 2006-05-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
2165
2166         * GNUmakefile.in: simplify local-WWW-post. 
2167         remove -type l from find.
2168
2169         * buildscripts/output-distance.py (ComparisonData.compare_trees):
2170         fixes. Don't follow symlinks.
2171         (ComparisonData.create_html_result_page): remove previous results.
2172         insert ../python in path.
2173
2174         * scripts/lilypond-book.py (PREAMBLE_LY): spacing fixes.
2175
2176 2006-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
2177
2178         * config.make.in (datadir): Add datarootdir to silence autoconf.
2179
2180         * stepmake/aclocal.m4: Update for autoconf-2.59d.
2181
2182 2006-05-31  Erlend Aasland  <erlenda@gmail.com>
2183
2184         * dynamic-engraver.cc: fix bug (dynamics collide with accidentals)
2185
2186         * scm/output-ps.scm (repeat-slash): fix a bug that made repeat
2187         slash beams too wide.
2188
2189 2006-05-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
2190
2191         * VERSION: release 2.9.7
2192         
2193 2006-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
2194
2195         * lily/relocate.cc (read_relocation_dir): Do not blindly
2196         dereference DIR.
2197
2198 2006-05-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
2199
2200         * lily/parser.yy: replace THIS by PARSER
2201
2202         * Documentation/index.html.in: add link to test-results.html page.
2203
2204         * Documentation/topdocs/NEWS.tely (Top): update NEWS entry.
2205
2206         * scm/translation-functions.scm (format-bass-figure): translate
2207         digits over 10 to the left
2208
2209         * scm/define-markup-commands.scm (translate-scaled): new markup.
2210
2211         * mf/feta-nummer-code.mf (code): overshoot the topright tip of the
2212         7 glyph. 
2213
2214         * ly/engraver-init.ly: add Figured_bass_engraver
2215
2216         * lily/engraver-group.cc (acknowledge_grobs): use start/stop drul.
2217
2218         * lily/figured-bass-engraver.cc (clear_spanners): use everywhere.
2219
2220         * lily/score-engraver.cc (announce_grob): only note START announces.
2221
2222         * lily/include/engraver-group.hh (Translator_group):
2223         acknowledge_hash_table_ is now drul.
2224
2225         * lily/engraver.cc (announce_end_grob): new method.
2226
2227         * lily/include/grob-info.hh (class Grob_info): add start_end_ member.
2228
2229         * lily/translator-dispatch-list.cc (create): take start_end argument.
2230
2231         * lily/include/translator.hh (TRANSLATOR_DECLARATIONS): change
2232         acknowledge_static_array_ to drul
2233
2234         * lily/include/translator.icc (ADD_END_ACKNOWLEDGER): new macro.
2235
2236         * scm/define-grob-interfaces.scm
2237         (bass-figure-alignment-interface): add bass-figure-alignment-interface
2238
2239         * scm/define-grobs.scm (all-grob-descriptions): add
2240         BassFigureAlignmentPositioning
2241
2242         * ly/Welcome-to-LilyPond-MacOS.ly: include in LilyPond, so version
2243         number stays up to date. Backportme.
2244
2245 2006-05-30  Mats Bengtsson  <mabe@s3.kth.se>
2246
2247         * Documentation/user/basic-notation.itely (Bar lines): Document
2248         the "||:" bar type. 
2249
2250 2006-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
2251
2252         * buildscripts/builder.py: Remove --ly option/target from mf-to-table.
2253
2254         * scripts/lilypond-book.py: Bugfix: do not blindly attempt
2255         .../current hack if LILYPONDPREFIX is fine.  Fixes `scons doc'
2256         build.
2257
2258         * Resurrect `scons lily' build.
2259
2260         * SConstruct (symlink_tree): Bugfix: link
2261         music-drawing-routines.ps to file iso directory.
2262
2263         * lily/SConscript: Remove kpath-guile from LIBS.
2264
2265         * SConstruct (libdir_package_version): Typo.
2266         (configure): Comment-out fontforge for lack of fontforge.pc .
2267         Also add libdir* to environment.
2268
2269 2006-05-30  Graham Percival  <gpermus@gmail.com>
2270
2271         * Documentation/user/ various: minor additions from mailist and
2272         editing.
2273
2274 2006-05-30  Paco <fravd@ya.com>
2275
2276         * Documentation/user/music-glossary.tely: numerous corrections and
2277         some new translations.
2278
2279 2006-05-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
2280
2281         * BackportmeStart.
2282         
2283         * buildscripts/output-distance.py
2284         (ComparisonData.create_html_result_page): new routine: summarise
2285         results in HTML page with images. 
2286         (ComparisonData.create_text_result_page): create summary text files too.
2287
2288         * GNUmakefile.in (web-ext): package .signature files too. They
2289         compress well. 
2290
2291         * scm/stencil.scm (write-system-signature): typo.
2292
2293         * GNUmakefile.in: create web-root/VERSION to help upload scripts.
2294
2295         * scm/stencil.scm (write-system-signature): better escaping.
2296         only write signature for music systems, not for markup systems.
2297
2298         * scm/framework-ps.scm (output-framework): dump-signatures support
2299         for plain output.
2300
2301         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): add -ddump-signatures.
2302
2303         * scm/framework-ps.scm (write-preamble): redefine mark_URI to nop
2304         for -dno-point-and-click
2305
2306         * lily/grob.cc (get_print_stencil): don't read
2307         point_and_click_global to determine whether to set grob-cause.
2308
2309 2006-05-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
2310
2311         * buildscripts/output-distance.py (main): new function.
2312         (ComparisonData): new class.
2313
2314         * lily/ledger-line-engraver.cc (acknowledge_staff_symbol): be more
2315         careful with generating new LedgerLineSpanners.
2316
2317         * lily/ledger-line-spanner.cc (set_spacing_rods): suicide if no staff.
2318
2319         * ly/engraver-init.ly: remove Ledger_line_engraver from Voice
2320         context. This fixes double ledger lines in output. 
2321
2322         * lily/system.cc (get_paper_system): remove 3 layer limit.
2323
2324         * buildscripts/output-distance.py (SystemLink.distance): new
2325         file. Compare signatures.
2326
2327         * python/safeeval.py (SafeEval.visitUnarySub): new file.
2328
2329         * lily/grob-array.cc (remove_duplicates): rename from
2330         uniq(). Sort before calling uniq() so it actually works.
2331
2332 2006-05-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
2333
2334         * scripts/lilypond-book.py (Lilypond_file_snippet.ly): strip
2335         \version from lilypond file snippet.
2336         (Lilypond_file_snippet.ly): oops. typo.
2337         (find_toplevel_snippets): urgh. again.
2338
2339         * lily/system.cc (get_paper_systems): uniq all_elements_ , to
2340         prevent duplicated broken items in output.
2341
2342         * scm/framework-eps.scm (output-classic-framework): only dump if
2343         dump-signatures is set.
2344
2345         * scm/lily.scm (define-scheme-options): add dump-signatures option.
2346
2347         * scm/stencil.scm (write-system-signature): new routine: write
2348         python parseable signature of a separate paper system.
2349         BackportmeEnd.
2350         
2351 2006-05-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
2352
2353         * lily/stanza-number-engraver.cc (process_music): use is_markup()
2354         iso is_string().
2355         include header.
2356
2357 2006-05-25  Erik Sandberg  <mandolaerik@gmail.com>
2358
2359         * translator-group.cc: send music events to engravers in
2360         non-bottom contexts.
2361
2362         * tuplet-engraver.cc: process tuplet brackets in correct order.
2363
2364 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2365
2366         * stepmake/aclocal.m4: STEPMAKE_PYTHON(): clear cached value since
2367         arg 2 might point us to a new binary (patch by Karl Hammar)
2368         
2369 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2370
2371         * VERSION (PACKAGE_NAME): release 2.9.6
2372
2373         * Documentation/topdocs/NEWS.tely (Top): trim explanation. 
2374
2375         * Documentation/user/*.itely: 2nd
2376         attempt: replace funindex -> findex globally.
2377
2378 2006-05-24  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2379
2380         * input/no-notation/display-lily-tests.ly: fix \applyOutput
2381         test. Add \break, \pageBreak, \pageTurn, etc, tests.
2382
2383         * scm/define-music-display-methods.scm: display methods for
2384         breaks. Fix \applyOutput.
2385
2386 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2387
2388         * Documentation/user/macros.itexi: comment out funindex expansion. 
2389
2390         * Documentation/user/music-glossary.tely: junk \oldaddlyrics
2391         everywhere.
2392
2393         * GNUmakefile.in: fix wildcarding for scrips/out/ links. Thanks
2394         Karl Hammar. Backportme.
2395  
2396         * Documentation/user/advanced-notation.itely (Balloon help): idem.
2397
2398         * Documentation/user/changing-defaults.itely (Creating contexts): idem.
2399
2400         * Documentation/user/programming-interface.itely (Running a
2401         function on all layout objects): idem.
2402
2403         * Documentation/user/introduction.itely (Automated engraving):
2404         update \applyOutput syntax
2405
2406         * lily/lyric-combine-music-iterator.cc (start_new_syllable):
2407         remove debugging hook.
2408
2409         * configure.in (LINK_GXX_STATICALLY): use "" to allow $
2410         expansion. 
2411
2412         * Documentation/user/GNUmakefile (TEXI2DVI_FLAGS): add -E.
2413
2414         * stepmake/stepmake/texinfo-rules.make ($(outdir)/%.dvi): add
2415         TEXI2DVI_FLAGS to texi2dvi invocation. 
2416
2417 2006-05-24  Erik Sandberg  <mandolaerik@gmail.com>
2418
2419         * lily/chord-tremolo-*.cc: Reworked how \repeat "tremolo"
2420         works. More work is done by iterator now, and engraver has been
2421         very much simplified.
2422
2423         * lily/translator-group.cc: try_music is now invoked through a
2424         listener
2425
2426         * lily/*-iterator.cc: Massive cleanups. Junked
2427         try_music_in_children globally. Renamed try_music to report_event,
2428         and made that method descend to a bottom context automatically.
2429
2430         * lily/event-iterator.cc: New file.
2431
2432         * lily/output-property-iterator.cc,
2433         lily/old-lyric-combine-music-iterator.cc: Removed.
2434
2435         * python/convert-rules.py: Modified the syntax for \applyOutput.
2436
2437 2006-05-23  Graham Percival  <gpermus@gmail.com>
2438
2439         * stepmake/stepmake/texinfo-rules.make: added -E, allows pdf doc
2440         creation.
2441
2442         * Documentation/user/ various: stuff that might have helped
2443         to fix the pdf creation, plus some minor doc additions.
2444
2445         * Documentation/user/changing-defaults.itely: remove @b from
2446         @b{ @internasref{foo}}; this breaks texi2dvi -E.
2447
2448 2006-05-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
2449
2450         * lily/beaming-pattern.cc (beamify): deal with negative start
2451         moments for beaming patterns.
2452
2453 2006-05-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
2454
2455         * lily/beaming-info.cc (beamify): new function: read beatLength
2456         and beatGrouping from context. 
2457
2458         * input/regression/beam-beat-grouping.ly (Module): new file.
2459
2460         * input/regression/beam-unconnected-beamlets.ly (Module): new file.
2461
2462         * lily/beam.cc (get_beam_segments): generate events for
2463         max_connect_ case too.
2464         (get_beam_segments): read Stem::max-beam-connect.
2465
2466         * input/regression/beam-single-stem.ly: new file.
2467
2468         * lily/stem.cc (set_beaming): use #f as signaling value for
2469         beamcount 0.
2470
2471         * lily/beam-engraver.cc (typeset_beam): set right bound if unset.
2472
2473         * lily/beam.cc (set_beaming): read clip-edges property.
2474         (calc_direction): don't suicide for single stem.
2475
2476         * lily/beaming-info.cc (best_splitpoint_index): take bool*
2477         argument, remove 1<<15 hack. Remove clip_edges() 
2478
2479         * lily/hairpin.cc (print): only do padding for nonmusical bounds
2480
2481 2006-05-21  Graham Percival  <gpermus@gmail.com>
2482
2483         * Documentation/user/basic-notation.itely: reorg.
2484
2485         * Documentation/user/ various: minor fixes.
2486
2487 2006-05-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
2488
2489         * lily/stencil-expression.cc (register_stencil_head): opps, append
2490         to cdr of static SCM object.
2491
2492 2006-05-19  Graham Percival  <gpermus@gmail.com>
2493
2494         * Documentation/user/README.txt, lilypond.tely, macros.itexi:
2495         update framework for command index.  DOC WRITERS: use @funindex
2496         instead of @cindex @code{}.
2497
2498         * Documentation/user/ various: replace @cindex @code{} => @funindex
2499
2500 2006-05-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
2501
2502         * lily/beam.cc (set_stem_lengths): trigger 'beaming callback, in
2503         case positions is set manually. 
2504
2505 2006-05-18  Erik Sandberg  <mandolaerik@gmail.com>
2506         
2507         * scm/ly-syntax-constructors.scm: New file. Converted a few syntax
2508         rules to Scheme.
2509
2510 2006-05-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
2511
2512         * Documentation/user/changing-defaults.itely (Contexts explained):
2513         use absolute dimension for @image.
2514
2515         * Documentation/user/GNUmakefile (OUT_PNG_IMAGES): generate PNG
2516         out image for illustration too.
2517         ($(outdir)/%.png): add more png <-> eps rules. 
2518
2519 2006-05-17  Graham Percival  <gpermus@gmail.com>
2520
2521         * Documentation/user/ various: remove trailing whitespace, cosmetic
2522         change to reduce changes produced by diff.
2523
2524 2006-05-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
2525
2526         * lily/main.cc (do_chroot_jail): correctness tweak.
2527
2528         * python/lilylib.py (system): import subprocess in system () only.
2529
2530         * scripts/*.py: use TARGET_PYTHON iso PYTHON. Backportme.
2531
2532         * make/substitute.make (ATVARIABLES): add TARGET_PYTHON as subst
2533         variable. Backportme.
2534
2535 2006-05-17  Erik Sandberg  <mandolaerik@gmail.com>
2536         
2537         * lily/parser.yy: Change all syntax rules of type Music to SCM type
2538
2539 2006-05-17  Werner Lemberg  <wl@gnu.org>
2540
2541         * lily/lexer.ll (init_signature_has_table): Add
2542         `scm-scm-music-music'.
2543
2544         * lily/parser.yy (MUSIC_FUNCTION_SCM_SCM_MUSIC_MUSIC): New token.
2545         (Generic_prefix_music_scm): Add rule for it.
2546
2547         * lily/quote-iterator.cc (Quote_iterator::process): Handle
2548         `quoted-transposition' property.
2549
2550         * ly/music-functions-init.ly (transposedCueDuring): New function.
2551
2552         * scm/define-music-properties.scm (all-music-properties): Updated.
2553
2554         * Documenation/topdocs/NEWS.itely: Document it.
2555
2556 2006-05-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
2557
2558         * python/lilylib.py (system): move import subprocess to system()
2559         definition. 
2560
2561         * python/convertrules.py (conv): fix convert-ly rules for 2.9.4
2562
2563         * VERSION (PATCH_LEVEL): release 2.9.5
2564         
2565         * Documentation/topdocs/INSTALL.texi (Top): update versions and
2566         build instructions. 
2567
2568         * ly/engraver-init.ly: switch on hairpinToBarline by default.
2569
2570 2006-05-16  Graham Percival  <gpermus@gmail.com>
2571
2572         * Documentation/user/basic-notation.itely: editing from Dave, thanks!
2573
2574         * Documentation/user/ various: minor fixes.
2575
2576 2006-05-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
2577
2578         * Documentation/topdocs/NEWS.tely (Top): add hairpinToBarline feature.
2579
2580 2006-05-16  Mats Bengtsson  <mabe@s3.kth.se>
2581
2582         * Documentation/user/advanced-notation.itely (Instrument names):
2583         Modified obsolete instruction on how to move instrument names away
2584         from the staves. Hmm, at second thought the bug probably has been
2585         solved, so the full bug description should probably be removed.
2586
2587 2006-05-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
2588
2589         * lily/dynamic-engraver.cc (typeset_all): hang ending on
2590         currentCommandColumn. 
2591
2592         * lily/hairpin.cc (print): also add padding for non-neighbor
2593         hairpin bounds.
2594
2595         * scm/define-context-properties.scm
2596         (all-user-translation-properties): add hairpinToBarline
2597
2598         * input/regression/hairpin-to-barline.ly: new file.
2599
2600         * lily/context.cc (internal_send_stream_event): thinko fix.
2601
2602         * lily/tie.cc (set_default_control_points): robustness fix.
2603
2604         * python/musicxml.py (Part.interpret): don't complain about
2605         incomplete measures.
2606
2607         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): only add
2608         new music if last_event_chord() returned None.
2609
2610         * python/musicxml.py (Part.interpret): skip back over chord notes.
2611
2612 2006-05-16  Erik Sandberg  <mandolaerik@gmail.com>
2613         
2614         * lily/percent-repeat-engraver.cc, lily/parser.yy,
2615         lily/define-music-types.cc, lily/percent-repeat-iterator.cc,
2616         lily/slash-repeat-engraver.cc,
2617         lily/include/percent-repeat-iterator.hh: Rework percent repeats:
2618         iterator sends PercentEvents
2619
2620         * lily/time-scaled-music-iterator.cc, lily/tuplet-engraver.cc:
2621         rework tuplets: send start/stop events to engraver
2622
2623         * lily/context.cc, lily/music.cc, lily/context-scheme.cc: Add
2624         dispatchers event-source and events-below to Context
2625         
2626 2006-05-15  Graham Percival  <gpermus@gmail.com>
2627
2628         * Documentation/user/README.txt: update info for doc writers.
2629
2630         * Documentation/user/programming-interface.itely: integrate
2631         Nicolas' fixes for chapter rewrite.
2632
2633         * Documentation/user/ various: minor fixes.
2634
2635 2006-05-15  Han-Wen Nienhuys  <hanwen@lilypond.org>
2636
2637         * lily/clef-engraver.cc: cleanup.
2638
2639         * Documentation/user/GNUmakefile: dist context-example.eps too.
2640
2641         * lily/key-engraver.cc (create_key): use
2642         explicitKeySignatureVisibility for cancellation too. 
2643
2644         * lily/font-config.cc (init_fontconfig): don't close file if
2645         f==NULL. 
2646
2647 2006-05-15  Erlend Aasland  <erlenda@gmail.com>
2648
2649         * Documentation/topdocs/NEWS.tely: niente and rotation news
2650
2651 2006-05-14  Erlend Aasland  <erlenda@gmail.com>
2652
2653         * lily/include/stencil.hh
2654         * lily/stencil.cc (rotate): new function. Makes it possible
2655         to rotate a stencil around a given offset.
2656
2657         * lily/grob.cc (get_print_stencil): add rotation support
2658
2659         * lily/stencil-interpret.cc (interpret_stencil_expression):
2660         add rotation support
2661
2662         * lily/stencil-scheme.cc (ly:stencil-rotate): new function
2663
2664         * scm/define-grob-properties.scm: add 'rotation property
2665
2666         * scm/define-markup-commands.scm: add rotate markup command
2667         
2668         * scm/output-ps.scm: add rotation support in PostScript backend
2669
2670         * scm/output-svg.scm: add rotation support in SVG backend
2671
2672 2006-05-13  Graham Percival  <gpermus@gmail.com>
2673
2674         * Documentation/user/music-glossary.itely: French correction.
2675
2676         * Documentation/user/programming-interface.itely: major
2677         new docs, some reorg, some info from Nicolas.
2678
2679         * Documentation/user/ various: small fixes.
2680
2681 2006-05-12  Mats Bengtsson  <mabe@s3.kth.se>
2682
2683         * Documentation/user/programming-interface.itely (Markup
2684         programmer interface): Remove duplicate text.
2685
2686 2006-05-12  Graham Percival  <gpermus@gmail.com>
2687
2688         * Documentation/user/context-example.eps: new file.
2689
2690         * Documentation/user/changing-defaults.itely: set up file to
2691         use eps image.
2692
2693         * Documentation/user/programming-interface.itely: changes
2694         from mailist.
2695
2696 2006-05-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
2697
2698         * configure.in (LINK_GXX_STATICALLY): python 2.4 req.
2699
2700 2006-05-11  Graham Percival  <gpermus@gmail.com>
2701
2702         * Documentation/user/programming-interface.itely: first round of
2703         editing and merging emails from Nicolas.
2704
2705         * Documentation/user/scheme-tutorial: minor edit.
2706
2707 2006-05-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
2708
2709         * python/musicxml.py (Xml_node.__init__): _attribute_dict stores
2710         XML attributes.
2711         (Xml_node.message): use it.
2712
2713         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): 
2714         oops. Add duration argument.
2715
2716 2006-05-10  Joe Neeman  <joeneeman@gmail.com>
2717
2718         * lily/paper-column-engraver.cc (make_columns):
2719         * scm/define-grobs.scm: Revert my previous change and set the default
2720         in define-grobs.scm instead.
2721
2722 2006-05-09  Graham Percival  <gpermus@gmail.com>
2723         
2724         * Documentation/user/changing-defaults.itely: general editing,
2725         info about \set and \override.
2726
2727         * Documentation/user/tweaking.itely, advanced-notation.itely:
2728         fixes from Dave Luttinen, thanks!
2729
2730 2006-05-09  Joe Neeman  <joeneeman@gmail.com>
2731
2732         * lily/paper-column-engraver.cc (make_columns): By default, a column
2733         needs to be breakable.
2734
2735 2006-05-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
2736
2737         * scripts/musicxml2ly.py (musicxml_clef_to_lily): use new
2738         Attributes methods
2739         (musicxml_time_to_lily): idem
2740         (musicxml_key_to_lily): idem
2741         (instrument_drumtype_dict): dict for supported drumtypes.
2742         (LilyPondVoiceBuilder.__init__): new class: sanely keep track of
2743         moments and pending mm rests
2744         (musicxml_voice_to_lily_voice): rewrite to use LilyPondVoiceBuilder
2745         (musicxml_voice_to_lily_voice): strip KeyChangeEvents for drums.
2746         (musicxml_voice_to_lily_voice): add mode change.
2747         (option_parser): lxml.etree (http://codespeak.net/lxml/) for more
2748         speed and less memory usage (factor 5 to 10).
2749         (convert): write -defs.ly  and driver file separately so people
2750         can script their own part extraction.
2751
2752         * python/musicxml.py (minidom_demarshal_node): new function:
2753         separate minidom handling.
2754         (lxml_demarshal_node): new function: support lxml.etree too.
2755         (Xml_node.message): new function: verbose error message, with XML
2756         path to offending node.
2757         (Attributes.get_measure_length): sane interface to MusicXML attributes.
2758         (Part_list.generate_id_instrument_dict): new method: collect
2759         instrument names, to be able to set drum_type.
2760         (Part.interpret): handle underfull measures
2761         (Part.interpret): assign instrument names.
2762
2763         * python/musicexp.py (Output_printer.close): new method
2764         (MusicWrapper.print_ly): new class: support other modes,
2765         eg. \drummode
2766         (BarCheck.print_ly): new class. Support bar checks, with comments
2767         and fancy barchecks. 
2768         (NoteEvent.__init__): also set drum_type for drum notes.
2769         (MultiMeasureRest.lisp_expression): dump mm rests.
2770
2771         * lily/paper-column-engraver.cc (stop_translation_timestep): set
2772         line-break-permission if forbidBreak is not set.
2773
2774 2006-05-09  Joe Neeman  <joeneeman@gmail.com>
2775
2776         * scm/define-context-properties.scm:
2777         * scm/define-grob-properties.scm:
2778         * scm/define-grobs.scm:
2779         * scm/define-music-display-methods.scm:
2780         * scm/define-music-properties.scm:
2781         * scm/define-music-types.scm:
2782         * scm/music-functions.scm:
2783         * ly/declarations-init.ly:
2784         * lily/include/constrained-breaking.hh:
2785         * lily/system.cc:
2786         * lily/spaceable-grob.cc:
2787         * lily/simple-spacer.cc:
2788         * lily/paper-score.cc:
2789         * lily/paper-column.cc:
2790         * lily/paper-column-engraver.cc:
2791         * lily/item.cc:
2792         * lily/gourlay-breaking.cc:
2793         * lily/constrained-breaking.cc:
2794         * python/convertrules.py:
2795         Change "penalty", "page-penalty" and "breakable" to "line-break-penalty",
2796         "page-break-penalty" and "line-break-permission".
2797         Add "page-break-permission", "page-turn-permission" and "page-turn-penalty".
2798         Replace BreakEvent with LineBreakEvent, PageBreakEvent and PageTurnEvent.
2799
2800         * lily/bar-engraver.cc:
2801         * lily/beam-engraver.cc:
2802         * lily/forbid-break-engraver.cc:
2803         * lily/ligature-engraver.cc:
2804         * lily/paper-column-engraver.cc:
2805         * lily/percent-repeat-engraver.cc:
2806         * lily/score-engraver.cc:
2807         * lily/score-engraver.hh:
2808         * lily/paper-column-engraver.hh:
2809         Inter-engraver communication regarding line breaks is done through context
2810         properties (Score.forbidBreak) instead of function calls.
2811
2812 2006-05-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
2813
2814         * VERSION (PACKAGE_NAME): release 2.9.4
2815
2816 2006-05-08  Graham Percival  <gpermus@gmail.com>
2817
2818         * Documentation/user/working.itely: proofreading from Dave
2819         Luttinen, thanks.
2820
2821         * Doucmentation/user/README.txt: updated with manual style info.
2822
2823         * Documentation/user/ various: trim linewidth to 78 chars.
2824
2825 2006-05-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
2826
2827         * scm/define-grob-properties.scm (all-internal-grob-properties):
2828         remove chord-tremolo property.
2829
2830         * lily/beam.cc (get_beam_segments): don't use stem position as
2831         base for broken ends.
2832
2833 2006-05-06  Graham Percival  <gpermus@gmail.com>
2834
2835         * Documentation/user/putting.itely: proofreading from Dave
2836         Luttinen, thanks!
2837
2838         * Documentation/user/ various: more reorg and clarifications.
2839
2840 2006-05-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
2841
2842         * scm/lily.scm (TEX_STRING_HASHLIMIT): move from framework-texstr.scm.
2843
2844         * ly/music-functions-init.ly: new function featherDurations
2845
2846         * lily/beam.cc: read grow-direction for feathered beaming.
2847
2848         * Documentation/topdocs/NEWS.tely (Top): typo.
2849
2850 2006-05-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
2851
2852         * lily/include/beam.hh (struct Beam_stem_segment): add gapped_ for
2853         tremolo beams.
2854
2855 2006-05-05  Erik Sandberg  <mandolaerik@gmail.com>
2856         * lily/context.cc, lily/global-context.cc: Added 'unique' member,
2857         used by music streams.
2858
2859         * lily/dispatcher.cc, lily/dispatcher-scheme.cc,
2860         lily/stream-event.cc, lily/stream-event-scheme.cc,
2861         lily/listener.cc, lily/scheme-listener.cc,
2862         lily/scheme-listener-scheme.cc, lily/include/dispatcher.hh,
2863         lily/include/stream-event.hh, lily/include/listener.hh,
2864         lily/include/scheme-listener.hh, scm/define-event-classes.scm:
2865         Created data structures for music streams.
2866         
2867 2006-05-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
2868
2869         * lily/beam.cc (get_beam_segments): new function. Reorganise the
2870         construction of a beam. 
2871         (print): rewrite. 
2872
2873         * flower/include/std-vector.hh (default_compare): use only one comparison.
2874
2875         * scm/define-markup-commands.scm (note-by-number): remove debug display.
2876         (note-by-number): further attachment fixes.
2877
2878         * scm/lily-library.scm (ordered-cons): new function.
2879         (interval-index): new function
2880
2881         * lily/note-head-scheme.cc (LY_DEFINE): new file.
2882
2883         * lily/note-head.cc (get_stem_attachment): new function.
2884
2885         * scm/define-markup-commands.scm (note-by-number): read 'style
2886         property. 
2887
2888         * input/regression/markup-note.ly: show note-head style option.
2889
2890         * mf/feta-bolletjes.mf (overdone_heads): fix attachment points for
2891         triangle head.
2892
2893 2006-05-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
2894
2895         * mf/GNUmakefile (NCSB_OTFS): remove old ncsb detection further.
2896
2897         * configure.in (LINK_GXX_STATICALLY): fix for ncsb detection.
2898
2899         * lily/include/constrained-breaking.hh: GCC 4 fix.
2900
2901 2006-05-04  Joe Neeman  <joeneeman@gmail.com>
2902
2903         * lily/simple-spacer.cc: Remove class Simple_spacer_wrapper.
2904         Replace it with functions get_line_forces and get_line_configuration.
2905         (class Simple_spacer): Make data private.
2906         Rewrite compression algorithm to be faster and simpler.
2907
2908         * lily/simple-spacer-scheme.cc (ly_solve_rod_and_spring_problem):
2909         * lily/gourlay-breaking.cc (solve):
2910         * lily/constrained_breaking.cc (space_line):
2911         Change it to the new simple-spacer code.
2912
2913         * lily/paper-score.cc (get_paper_systems):
2914         (Paper_score):
2915         (process):
2916         Delay breaking the systems until they are requested.
2917         (find_break_indices):
2918         Use vsize for indices.
2919         (calc_breaking):
2920         Move the "Calculating line breaks" message here.
2921
2922         * lily/system.cc (pre_processing):
2923         Move the "Calculating line breaks" message away from here.
2924         (break_into_pieces):
2925         Allow multiple calls to this function in sequence (with touching-but-
2926         not-overlapping breakpoints).
2927
2928         * lily/constrained-breaking.cc:
2929         Replace most of the get_XXXX functions with get_line_details.
2930         Only calculate the force for each line. Calculate configurations only
2931         for the lines we will actually use.
2932         Replace cols_ with lines_.
2933
2934 2006-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
2935
2936         * mf/GNUmakefile (depth): remove FC_FIND.
2937
2938         * config.make.in (NCSB_SOURCE_FILES): subst NCSB_SOURCE_FILES
2939
2940         * configure.in (LINK_GXX_STATICALLY): call fc-match from within configure.
2941
2942         * scm/framework-ps.scm (write-preamble): new function.
2943         (write-preamble): load mac fonts via fondu, even if gs-font-load
2944         is set.
2945
2946 2006-05-03  Werner Lemberg  <wl@gnu.org>
2947
2948         * mf/GNUmakefile (FC_FIND): Fix typo.
2949
2950 2006-05-03  Erlend Aasland  <erlenda@gmail.com>
2951
2952         * stepmake/stepmake/generic-targets.make (cvs-clean): also remove out-www dirs.
2953
2954 2006-05-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2955
2956         * stepmake/aclocal.m4: run python-config for crosscompiling
2957         flags. 
2958
2959         * scripts/lilypond-book.py (Lilypond_file_snippet.my_system): add
2960         -f png for HTML, TEXINFO formats. 
2961
2962         * input/tutorial/lbook-html-test.html: new file.
2963
2964         * lily/include/tie-formatting-problem.hh (class
2965         Tie_formatting_problem): index Chord_outline_map by Tuple2 for
2966         [column, direction]. This fixes laissez vibrer ties.
2967  
2968         * flower/include/tuple.hh (struct Tuple2): new file.
2969
2970         * mf/GNUmakefile (FC_FIND): new function. Find ncsb using
2971         $(FCMATCH), only if $(NCSB_DIR) not set. 
2972
2973         * configure.in (LINK_GXX_STATICALLY): only warn if $NCSB_DIR set.
2974
2975         * config.make.in (DOCUMENTATION): set FCMATCH.  
2976
2977         * autogen.sh (srcdir): don't set --with-ncsb-dir. 
2978
2979 2006-05-03  Graham Percival  <gpermus@gmail.com>
2980
2981         * Documentation/user/ various: final round of reorg.
2982
2983         * Documentation/user/instrument-notation.itely: some more
2984         fixes from Eduardo, thanks!
2985
2986 2006-05-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2987
2988         * VERSION (PACKAGE_NAME): release 2.9.3
2989
2990         * flower/file-path.cc (is_dir): canonicalize file name before stat'ing.
2991
2992         * lily/relocate.cc (framework_relocation): remove old relocation stuff.
2993
2994 2006-05-01  Mats Bengtsson  <mabe@s3.kth.se>
2995
2996         * scm/define-grob-properties.scm (all-user-grob-properties):
2997         Correct typo, thanks to Eduardo.
2998
2999 2006-05-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
3000
3001         * scripts/GNUmakefile (SEXECUTABLES): remove lilypond-ps2png.scm
3002
3003         * buildscripts/lilypond-words.py (F): indent fix.
3004
3005         * input/regression/tie-arpeggio-collision.ly: new file.
3006
3007         * lily/tie-formatting-problem.cc (set_column_chord_outline): new
3008         function: store outlines per column rank.
3009
3010         * lily/include/tie-configuration.hh (class Tie_configuration): add
3011         column_ranks_ to specification and configuration, to distinguish
3012         between ties for different heads in arpegiated chords.
3013
3014         * lily/relocate.cc (framework_relocation): use INSTALLER_PREFIX.
3015
3016         * *.py: more 4 space indents.
3017
3018         * autogen.sh (conf_flags): set sensible default for with-ncsb-dir
3019
3020 2006-05-01  Joe Neeman  <joeneeman@gmail.com>
3021
3022         * scm/lily-library.scm: Fix guile 1.6 compatibility in inf? and nan?
3023
3024 2006-05-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
3025
3026         * buildscripts/pfx2ttf.fontforge (err): create OTF files.
3027
3028         * scripts/abc2ly.py (dump_score): indent of 4 for python code. 
3029
3030         * configure.in (LINK_GXX_STATICALLY): remove locate() call.
3031
3032 2006-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3033
3034         * python/convertrules.py (conv): indent 4 for python files.
3035
3036 2006-04-29  Mats Bengtsson  <mabe@s3.kth.se>
3037
3038         * Documentation/user/changing-defaults.itely (Creating contexts):
3039         Clarify \new semantics.
3040
3041 2006-04-28  Graham Percival  <gpermus@gmail.com>
3042
3043         * Documentation/user/ various: major new sections in the
3044         Learning manual, slight reorg elsewhere.
3045
3046 2006-04-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
3047
3048         * mf/GNUmakefile (MFTRACE_FLAGS): add $(outdir) to $(ENCODING_FILE) 
3049
3050         * scm/framework-ps.scm (output-framework): remove PageMedia
3051
3052 2006-04-27  Graham Percival  <gpermus@gmail.com>
3053
3054         * Documentation/user/ tweaks.itely, working.itely: new
3055         files, being more advanced "learning manual" chapters.
3056
3057         * Documentation/user/ tutorial, putting, lilypond: reorg.
3058
3059 2006-04-26  Graham Percival  <gpermus@gmail.com>
3060
3061         * input/regression/lyric-combine-polyphonic.ly: fixed test
3062         (no more "can't find context `one'" error).
3063
3064 2006-04-25  Joe Neeman <joeneeman@gmail.com>
3065
3066         * lily/stem-tremolo.cc (print): fix whole note tremolo placement
3067
3068         * input/regression/stem-tremolo.ly: add 2 more whole note examples
3069         
3070 2006-04-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3071
3072         * lily/relocate.cc (read_relocation_dir): new function.
3073
3074 2006-04-26  Graham Percival  <gpermus@gmail.com>
3075
3076         * Documentation/user/instrument-notation.itely: a few more fixes
3077         from Eduardo, thanks!
3078
3079         * Documentation/user/README.txt: new file; contains info on
3080         style that used to be in lilypond.tely.
3081
3082         * Documentation/user/ various: first round of doc reorg.
3083
3084         * Documentation/user/baer-flat-bw.png: remove alpha bit from
3085         graphic; this probably causes problems on some pdf
3086         viewers, notably Adobe Acrobat.
3087
3088 2006-04-24  Graham Percival  <gpermus@gmail.com>
3089
3090         * Documentation/user/instrument-notation.itely: many alterations
3091         to Vocal music, from Eduardo Viera.
3092
3093 2006-04-23  Graham Percival  <gpermus@gmail.com>
3094
3095         * Documentation/user/instrument-notation.itely: fix \new
3096         instead of \context problem.
3097
3098 2006-04-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3099
3100         * lily/relocate.cc (expand_environment_variables): new function.
3101         (read_line): id.
3102         (read_relocation_file): id.
3103
3104         * scm/stencil.scm (eps-file->stencil): fix EPS PS embedding code 
3105
3106 2006-04-21  Erlend Aasland  <erlenda@gmail.com>
3107
3108         * ly/engraver-init.ly: remove old comments from TabVoice
3109
3110 2006-04-20  Graham Percival  <gpermus@gmail.com>
3111
3112         * Documentation/user/instrument-notation.itely: added Erlend's
3113         latest doc patch, thanks!
3114
3115 2006-04-19  Erlend Aasland <erlenda@gmail.com>
3116
3117         * lily/include/slur.hh:
3118         * lily/slur.cc:
3119         * lily/phrasing-slur-engraver.cc:
3120         * lily/slur-engraver.cc: Fix 'cut & paste' code by merging
3121         acknowledge_extra_object () from Phrasing_slur_engraver:: and
3122         Slur_engraver:: and putting it in
3123         Slur::auxiliary_acknowledge_extra_object ().
3124
3125         * ps/music-drawing-routines.ps (draw_dashed_slur): fix another bug
3126
3127         * lily/note-collision.cc: fix a comment
3128
3129 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
3130
3131         * stepmake/bin/add-html-footer.py: fix footer position in
3132         generated html files: before </body> and </html> tags.
3133
3134 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
3135
3136         * scripts/GNUmakefile: revert last "fix", which rather broke make.
3137         Earlier successive `make' commands finally compiled ok.
3138
3139         * Documentation/topdocs/INSTALL.texi: require mftrace 1.1.19.
3140
3141 2006-04-18  Erlend Aasland <erlenda@gmail.com>
3142
3143         * lily/include/stem-tremolo.hh:
3144         * lily/stem-tremolo.cc: move rotated_box () to Lookup:: and update
3145         callers.
3146
3147         * lily/lookup.cc:
3148         * lily/include/lookup.hh: add rotated_box ()
3149
3150 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
3151
3152         * scripts/GNUmakefile: bugfix: run help2man only after scripts have 
3153         been generated. Fixes "can't get `--help'" bug after make clean.
3154
3155         * THANKS: alphabetize contributors.
3156
3157 2006-04-17  Graham Percival  <gpermus@gmail.com>
3158
3159         * Documentation/user/instrument-notation.itely: added Erlend's
3160         tabs and banjo doc patch.  Thanks!
3161
3162 2006-04-17  Erlend Aasland  <erlenda@gmail.com>
3163
3164         * scm/define-grobs.scm: fix stem-attachment for tablature note heads.
3165
3166         * ps/music-drawing-routines.ps (draw_dashed_line): fix dash pattern bug.
3167
3168         * scm/output-lib.scm: add some more predefined string tunings.
3169
3170         * Documentation/user/instrument-notation.itely: and doc them.
3171
3172 2006-04-16  Jürgen Reuter  <reuter@ipd.uka.de>
3173
3174         * ly/engraver.ly: Remove obsolete comments.
3175
3176         * ly/gregorian-init.ly: Define default layout block.
3177
3178         * input/puer-fragment.ly: Updated and extended.
3179
3180 2006-04-15  Jan Nieuwenhuizen  <janneke@gnu.org>
3181
3182         * lily/lily-parser-scheme.cc: Use them to fix --output=DIR/BASE
3183         pdf conversion behaviour.
3184
3185         * flower/file-name.cc (dir_name)
3186         (get_working_directory): Move from relocate.cc.
3187
3188         * lily/relocate.cc (setup_paths): Remove rogue stat calls.
3189         
3190         * lily/relocate.cc: Encapsulate sys/stat.h in
3191         HAVE_STAT_H.
3192
3193 2006-04-14  Graham Percival  <gpermus@gmail.com>
3194
3195         * Documentation/user/ various: small updates from Cameron
3196         and Juergen, thanks!
3197
3198         * Documentation/user/ various: small updates of my own.
3199
3200         * THANKS: 2.7 -> 2.8.
3201
3202 2006-04-11  Graham Percival  <gpermus@gmail.com>
3203
3204         * scm/define-context-properties.scm: typo.
3205
3206         * Documentation/user/ : many more small updates.
3207
3208 2006-04-13  Jürgen Reuter  <reuter@ipd.uka.de>
3209
3210         * scm/define-music-types.scm: disposed "docme".
3211
3212 2006-04-11  Erlend Aasland  <erlenda@gmail.com>
3213
3214         * lily/hairpin.cc: make niente circles a bit smaller.
3215
3216 2006-04-10  Erlend Aasland  <erlenda@gmail.com>
3217
3218         * mf/GNUmakefile: remove redundant mftrace check. Also remove
3219         get-pfa and get-*-fonts targets.
3220
3221 2006-04-10  Graham Percival  <gpermus@gmail.com>
3222
3223         * THANKS, Documentation/user/ basic-notation, advanced-notation,
3224         music-glossary, programming-interface: more minor fixes
3225         from mailist.
3226
3227         * scm/define-grob-properties.scm: clarified direction, thanks Mats!
3228
3229         * scm/define-context-properties.scm: another old \property update.
3230         This time tested for compiling!
3231
3232 2006-04-10  Erlend Aasland  <erlenda@gmail.com>
3233
3234         * mf/GNUmakefile: fix for mftrace version >= 1.2.0
3235
3236 2006-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
3237
3238         * scm/define-context-properties.scm (all-user-translation-properties): 
3239         * Documentation/user/global.itely (Page formatting): Compile fix.
3240
3241 2006-04-09  Mats Bengtsson  <mabe@s3.kth.se>
3242
3243         * Documentation/user/advanced-notation.itely (Polymetric
3244         notation): Update the example to use the "+" symbol and add link
3245         to input/test/compound-time.ly.
3246
3247 2006-04-08  Graham Percival  <gpermus@gmail.com>
3248
3249         * scm/define-grob-properties.scm: clarify docs for #'direction.
3250
3251         * scm/define-context-properties.scm: update old \property override.
3252
3253         * Documentation/user/ advanced-notation, global, lilypond-book:
3254         more minor doc updates.
3255
3256 2006-04-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
3257
3258         * lily/parser.yy (Generic_prefix_music_scm): append lists, not objects.
3259
3260         * scm/backend-library.scm (search-gs): oops.
3261
3262 2006-04-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
3263
3264         * scripts/lilypond-book.py (output): use base, not filename for href.
3265
3266         * scm/backend-library.scm: only look for gs.
3267
3268         * scripts/lilypond-book.py (output): fix printfilename.
3269
3270         * lily/parser.yy (music_function_musicless_prefix): fold together
3271         definitions of signature (SCM*) (Music|post_event|chord_body_element)
3272
3273         * lily/slur.cc (print): only set font-size if not set yet.
3274
3275         * lily/slur-configuration.cc (add_score): improved layout of debug
3276         scoring output.
3277
3278 2006-04-05  David Feuer  <David.Feuer@gmail.com>
3279
3280         * music-drawing-routines.ps (draw_round_box): removed testing artifact.
3281         (draw_circle): Hopefully fixed regression.
3282         Improved documentation for several procedures.
3283         
3284 2006-03-04  Werner Lemberg  <wl@gnu.org>
3285
3286         * ly/engraver-init.ly (\Score): Add beam-event to quotedEventTypes.
3287
3288 2006-04-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
3289
3290         * scripts/musicxml2ly.py (bindir): add dynamic
3291         relocation. 
3292
3293 2006-04-04  Graham Percival  <gpermus@gmail.com>
3294
3295         * Documentation/user/ basic-notation, advanced-notation, putting,
3296         instrument-notation, invoking, lilypond, THANKS: another ream of small
3297         fixes from the Doc Helpers.
3298
3299 2006-04-03  David Feuer  <David.Feuer@gmail.com>
3300
3301         * music-drawing-routines.ps: remove superfluous gsave/grestore pairs.
3302
3303         * lilyponddefs.ps (set-ps-scale-to-lily-scale): Fixed code duplication.
3304
3305         * Cleaned up interfaces between PostScript and Scheme, and moved
3306         computations from PostScript to Scheme:
3307
3308         * music-drawing-routines.ps
3309         (*SF, stroke_and_fill): new procedures.  Replaced stroke and fill
3310         with stroke_and_fill throughout.
3311         (euclidean_length, print_letter, draw_box): Deleted unused
3312         procedures.  If someone needs draw_box, implement it using
3313         draw_round_box; don't duplicate code.
3314         (print_glyphs, draw_round_box, draw_polygon, draw_repeat_slash):
3315         Refactored/cleaned up interfaces.
3316         (mark_URI): Moved.
3317
3318         * output-ps.scm: reordered arguments to PostScript functions to
3319         match new interfaces
3320         (glyph-string): Rewrote glyph-string.
3321         (grob-cause): Replaced string-append with format.
3322         (repeat-slash): Rewrote to do computation here.
3323         (round-filled-box): Rewrote to do computation here.
3324
3325 2006-04-04  Erlend Aasland  <erlenda@gmail.com>
3326
3327         * stepmake/stepmake/generic-targets.make: add cvs-clean target
3328
3329         * stepmake/stepmake/toplevel- targets.make: print help info about
3330         cvs-clean
3331
3332 2006-04-03  Erlend Aasland  <erlenda@gmail.com>
3333
3334         * input/regression/hairpin-circled.ly: new file
3335
3336 2006-04-03  Erlend Aasland  <erlenda@gmail.com>
3337
3338         * lily/hairpin.cc (print): add support for circled tip
3339
3340         * scm/define-grob-properties.scm: add circled-tip parameter
3341
3342         * scm/define-grobs.scm: init circled-tip to false
3343         
3344 2006-04-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
3345
3346         * scm/music-functions.scm (quote-substitute): set
3347         iterators-ctor. 
3348
3349 2006-03-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
3350
3351         * Documentation/bibliography/GNUmakefile ($(outdir)/%.html): set
3352         BSTINPUTS. 
3353
3354         * Documentation/topdocs/AUTHORS.texi (Top): add David Feuer.
3355
3356         * scm/output-ps.scm (glyph-string): revert cid selectfont.
3357
3358 2006-03-31  David Feuer  <david.feuer@gmail.com>
3359         
3360         * scm/framework-ps.scm:
3361         
3362         * scm/output-ps.scm: glyph-string now produces smaller, more
3363         readable, and probably faster PostScript.  Several findfont
3364         scalefont setfont instances changed to selectfont
3365         Hacked-up string-appends changed to formats.
3366
3367         * ps/music-drawing-routines.ps: add print_letter, print_glyphs.
3368         
3369 2006-03-30  Graham Percival  <gpermus@gmail.com>
3370
3371         * scm/lily-library.scm: make "no version" warning message more polite.
3372
3373         * lily/music.cc: add double quotes to failed octave check.
3374
3375         * Documentation/user/ advanced-notation, changing-defaults,
3376         instrument-notation, invoking, music-glossary: whole bunch of minor
3377         fixes from mailist.
3378
3379 2006-03-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
3380
3381         * Documentation/bibliography/GNUmakefile ($(outdir)/%.html): use
3382         $(buildscriptdir) iso. depth.
3383
3384         * VERSION (PACKAGE_NAME): release 2.9.1
3385
3386 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3387
3388         * lily/pango-font.cc (pango_item_string_stencil): more robustness.
3389
3390         * VERSION (PATCH_LEVEL): bump version number.
3391
3392         * flower/include/guile-compatibility.hh (scm_from_uint32): add
3393         scm_from_uint32 ()
3394
3395         * lily/pango-font.cc (pango_item_string_stencil): use
3396         scm_from_uint32 ()
3397
3398         * mf/GNUmakefile ($(outdir)/emmentaler-%.otf
3399         $(outdir)/emmentaler-%.svg): remove canary.
3400
3401         * lily/pango-font.cc (pango_item_string_stencil): only use uXXX
3402         glyphnames if we have a ttf font.
3403
3404 2006-03-30  Mats Bengtsson  <mabe@s3.kth.se>
3405
3406         * Documentation/user/advanced-notation.itely (Font selection):
3407         Corrected reference to the font-family-override.ly example.
3408
3409 2006-03-30  Joe Neeman  <joeneeman@gmail.com>
3410         
3411         * lily/chord-tremolo-engraver.cc (acknowledge_stem): set the
3412         stem-tremolo object in the stem (or else the stem might not be
3413         long enough).
3414
3415 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3416
3417         * lily/ttf.cc (print_trailer): only print existing glyphs.
3418
3419 2006-03-30  Joe Neeman  <joeneeman@gmail.com>
3420
3421         * lily/stem-tremolo.cc (print): for whole notes (and breves, etc.)
3422         position the tremolo based on the position of the notehead.
3423
3424         * input/regression/stem-tremolo.ly: add example of unbeamed eighth
3425         notes and update the texidoc line with the new positioning rules.
3426         
3427 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3428
3429         * lily/ttf.cc (print_trailer): don't always use uXXX glyphname.
3430
3431         * scripts/lilypond-book.py (Module): set default for linewidth if
3432         preamble not found.
3433
3434 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3435
3436         * VERSION (PACKAGE_NAME): release 2.9.0.
3437
3438         * input/regression/stem-tremolo-position.ly: new file.
3439
3440         * lily/stem-tremolo.cc: remove Stem_tremolo::dim_callback
3441
3442 2006-03-28  Joe Neeman  <joeneeman@gmail.com>
3443
3444         * lily/stem-tremolo.cc (print): position
3445         the tremolo depending only on the end of the stem
3446         and not on the notehead
3447         (raw_stencil): center, on the middle staff line, the
3448         flag that is closest to the end of the stem (previously
3449         the bottom flag)
3450         (calc_width): add this callback to shorten a tremolo when
3451         it is beamed or it is stemup with a flag
3452         (style): add this callback to make a tremolo rectangular when
3453         it is beamed or it is stemup with a flag
3454         (rotated_box): this is like Lookup::beam but makes a rotated
3455         rectangle instead of a parallelogram
3456
3457         * lily/stem.cc (calc_stem_info): make sure the stem
3458         is long enough to fit the tremolo
3459         (calc-length): reduce the length of tremolo stems since the
3460         tremolo code is now capable of better positioning
3461
3462         * scm/define-grobs.scm: make calc_width the default beam-width
3463         callback for stem-tremolo and add the style callback
3464                 
3465 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3466
3467         * lily/tuplet-bracket.cc (calc_control_points): handle suicide
3468         case. 
3469
3470 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3471
3472         * lily/ttf.cc (make_index_to_charcode_map): restore old
3473         cmap. 
3474
3475 2006-03-28  Werner Lemberg  <wl@gnu.org>
3476
3477         * lily/pango-font.cc (get_unicode_name): Fix `uXXXXX' glyph names.
3478
3479 2006-03-28  Graham Percival  <gpermus@gmail.com>
3480
3481         * THANKS: update for 2.9, add section for Documentation helpers.
3482
3483         * Documentation/topdocs/NEWS.tely: compile fix.
3484
3485         * Documentation/user/ basic-notation, global, advanced-notation,
3486         examples.itely: minor fixes from mailist.
3487
3488 2006-03-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
3489
3490         * mf/feta-bolletjes.mf: match width of solfa notes with normal
3491         note heads. 
3492
3493         * lily/ttf.cc (print_trailer): use it.
3494
3495         * lily/pango-font.cc (get_unicode_name): new function.
3496
3497         * lily/ttf.cc (make_index_to_charcode_map): move function from
3498         open-type-font.cc
3499         (print_trailer): substitute uniXXXX name if applicable. 
3500
3501         * lily/pango-font.cc (get_index_to_charcode_map): new function.
3502         (pango_item_string_stencil): use it to generate uniXXXX names.
3503
3504         * mf/feta-bolletjes.mf (overdone_heads): add small style (ugly)
3505         note heads, for uniform widths in shape note output.
3506         (overdone_heads): hmm. remove them again.
3507
3508         * scripts/lilypond-book.py (output): add links to filenames.
3509
3510         * Documentation/topdocs/INSTALL.texi (Top): update versions.
3511
3512         * lily/note-collision.cc (get_clash_groups): only consider when
3513         Note_column::dir <> CENTER. 
3514
3515         * scripts/lilypond-book.py (get_option_parser): init output_name
3516         to ''. 
3517
3518 2006-03-24  Graham Percival  <gpermus@gmail.com>
3519
3520         * Documentation/topdocs/NEWS.tely: add @end itemize
3521
3522         * Documentation/user/ global, advanced-notation: minor
3523         stuff from mailist.
3524
3525 2006-03-23  Graham Percival  <gpermus@gmail.com>
3526
3527         * Documentation/user/ lilypond.tely, music-glossary,
3528         preface: housekeeping; 2005->2006, remove "notes for 2.6"
3529
3530 2006-03-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
3531
3532         * mf/GNUmakefile: don't install .enc files.
3533
3534         * Documentation/topdocs/NEWS.tely: clear for 2.9 cycle.
3535
3536         * VERSION (PATCH_LEVEL): bump to 2.9.0
3537
3538 2006-03-22  Graham Percival  <gpermus@gmail.com>
3539
3540         * Documentation/user/advanced-notation.itely: minor fixes
3541         from mailist.
3542
3543 2006-03-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
3544
3545         * Documentation/topdocs/AUTHORS.texi (Top): add Joe Neeman.
3546
3547         * branch lilypond_2_8
3548
3549 2006-03-22  Han-Wen Nienhuys  <lilydev@localhost.localdomain>
3550
3551         * scripts/lilypond-book.py (samefile): new function, for windoze
3552         compatibility.
3553
3554 2006-03-21  Graham Percival  <gpermus@gmail.com>
3555
3556         * ly/engraver-init.ly: add info about StaffGroup.
3557
3558 2006-03-21  Han-Wen Nienhuys  <lilydev@localhost.localdomain>
3559
3560         * input/regression/stem-direction-context.ly: idem.
3561
3562         * Documentation/topdocs/NEWS.tely (Top): fix interpolation example.
3563
3564         * THANKS: add Mats.
3565
3566         * input/regression/page-layout-twopass.ly: comment out \markup so
3567         tweak-file is left.
3568
3569         * lily/instrument-name-engraver.cc (finalize): add to instrument
3570         name global System. This also fixes chopped instrument names, but
3571         doesn't crash when there are slurs/beams.
3572
3573         * lily/slur-configuration.cc (add_score): disallow negative slur
3574         scores.
3575         
3576 2006-03-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3577
3578         * scm/framework-ps.scm (dump-stencil-as-EPS): remove debugging code.
3579
3580         * lily/instrument-name-engraver.cc (process_music): kludge: add
3581         InstrumentName spanner to axis group of left bound. Fixes chopped
3582         off instrument names in EPS images.
3583
3584         * input/regression/lyric-hyphen-retain.ly: elaborate explanation.
3585
3586         * scripts/abc2ly.py (option_parser): update to 2.7.40
3587
3588 2006-03-20  Graham Percival  <gpermus@gmail.com>
3589
3590         * THANKS: move small doc contributors to SUGGESTIONS.
3591
3592         * Documentation/user/ basic-notation, advanced-notation,
3593         global: small changes from mailist.
3594
3595 2006-03-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3596
3597         * Documentation/user/advanced-notation.itely (Text marks): update
3598         for new rehearsalMarkAlignSymbol convention.
3599
3600         * VERSION (PATCH_LEVEL): bump version.
3601
3602         * input/test/instrument-name-align.ly: new file.
3603
3604         * scm/define-markup-commands.scm (hcenter-in): add hcenter-in.
3605
3606         * input/test/instrument-name-align.ly: new file. Document how to
3607         align instrument names.
3608
3609         * lily/mark-engraver.cc: remove properties.
3610
3611         * scm/define-context-properties.scm
3612         (all-user-translation-properties): remove align symbol properties
3613         for barnumber/reh. mark.
3614
3615         * lily/break-align-interface.cc (self_align_callback): new
3616         interface, new function. Look at complete alignment. This handles
3617         tunable break alignments in case break-align-symbols are missing.
3618
3619         * lily/bar-number-engraver.cc (acknowledge_break_alignment): new function
3620
3621         * lily/mark-engraver.cc (acknowledge_break_alignment): new function.
3622
3623         * python/convertrules.py (conv): mark/bar number alignment rule.
3624
3625         * lily/break-align-interface.cc (calc_positioning_done): also
3626         store offset from last visible break-alignment to its
3627         neighbor. This makes alignment on non-visible objects more reliable.
3628
3629         * po/lilypond.pot (Module): ran po-replace.
3630
3631         * input/regression/tie-single-manual.ly (Module): new file.
3632
3633         * lily/tie-formatting-problem.cc (find_optimal_tie_configuration):
3634         look at has_manual_position_.
3635         (from_ties): set has_manual_position_ if tie has staff-position set.
3636
3637         * lily/tuplet-bracket.cc (calc_positions): idem.
3638
3639         * lily/tuplet-number.cc (print): don't print tupletnumber if it
3640         doesn't span time.
3641
3642 2006-03-19  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3643
3644         * scm/define-markup-commands.scm (smallCaps): new markup command
3645         for turning a text to small caps using smaller font size and upper
3646         casing.
3647
3648 2006-03-17  Graham Percival  <gpermus@gmail.com>
3649
3650         * Documentation/user/ examples, instrument-notation,
3651         advnaced-notation: minor fixes from mailist.
3652
3653 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3654
3655         * Documentation/user/tutorial.itely (First steps): change example
3656         to verbatim.  
3657
3658 2006-03-17  Graham Percival  <gpermus@gmail.com>
3659
3660         * Documentation/user/ examples, advanced: minor changes from mailist.
3661
3662         * THANKS: add Geoff Horton, for documentation stuff.
3663
3664 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3665
3666         * python/lilylib.py (system): revert have_select kludge.
3667
3668         * Documentation/user/tutorial.itely (Commenting input files):
3669         update version numbers in doc. 
3670
3671         * scm/define-grob-interfaces.scm (multi-measure-interface): add
3672         bound-padding to multi-measure-interface
3673
3674 2006-03-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3675
3676         * input/test/engraver-example.ily: update version number.
3677
3678         * VERSION (PACKAGE_NAME): release 2.7.39
3679
3680         * lily/note-spacing.cc (get_spacing): heighten threshold where
3681         accidentals/arpeggios influence previous spacing fully.
3682
3683         * lily/rest.cc (y_offset_callback): only use direction if
3684         staff-position wasn't set before.
3685
3686         * lily/bar-number-engraver.cc: add support for
3687         barNumberAlignSymbol. 
3688         add ADD_ACKNOWLEDGER() call for break_aligned. Fixes bar-number-breathe
3689
3690         * lily/pointer-group-interface.cc (set_ordered): new function. 
3691         (add_unordered_grob): new function.
3692
3693         * lily/grob-array.cc (Grob_array): grob-arrays are always assumed
3694         to ordered, unless the opposite has been proved.  This fixes
3695         random reordering of large object groups across linebreaks,
3696         eg. beams.
3697
3698         * lily/main.cc (do_chroot_jail): printf format fix.
3699
3700         * lily/tie-formatting-problem.cc (generate_configuration):
3701         multiply y-shift for dot with direction.
3702  
3703         * scm/define-markup-commands.scm (note-by-number): put (magstep
3704         size) in y-attach too.
3705
3706         * Documentation/topdocs/NEWS.tely (Top): show override.
3707
3708         * scm/define-grobs.scm (all-grob-descriptions): reinstate neutral
3709         direction for stems.
3710         
3711 2006-03-15  Graham Percival  <gpermus@gmail.com>
3712
3713         * Documentation/user/ changing-defaults, global: minor
3714         fixes from mailist.
3715
3716 2006-03-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3717
3718         * lily/lexer.ll (Lily_lexer): bump required version to 2.7.38
3719
3720         * lily/spacing-spanner.cc (musical_column_spacing): crude fix for
3721         breakable items after uniformly stretched notes.
3722
3723         * lily/tie-formatting-problem.cc (set_chord_outline): initialize
3724         outline with outer edge of note heads. This prevents infinity
3725         problems with tied whole notes.
3726
3727         * scripts/lilypond-book.py (do_file): use os.popen
3728
3729         * python/convertrules.py (conv): add rule for Stem #'beamed-*
3730
3731 2006-03-14 Erik Sandberg  <mandolaerik@gmail.com>
3732
3733         * Documentation/user/invoking.itely: Add ragged-right to bug report
3734         guidelines.
3735
3736 2006-03-14  Graham Percival  <gpermus@gmail.com>
3737
3738         * Documentation/user/global.itely: small fix from mailist.
3739
3740 2006-03-14  Mats Bengtsson  <mabe@s3.kth.se>
3741
3742         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use the
3743         file descriptor returned by tempfile.mkstemp() when writing
3744         to tmpfile and closing it. Solves problem with unlink(tmpfile)
3745         on mingw.
3746
3747 2006-03-14  Jan Nieuwenhuizen  <janneke@gnu.org>
3748
3749         * po/fi.po: newline bugfix.
3750
3751 2006-03-12  Jan Nieuwenhuizen  <janneke@gnu.org>
3752
3753         * scm/paper.scm (paper-alist): Rounding fixes.
3754
3755 2006-03-13  Graham Percival  <gpermus@gmail.com>
3756
3757         * Documentation/user/ changing-defaults, instrument-notation,
3758         tutorial: small fixes from mailist, mostly from Mats.  Thanks!
3759
3760 2006-03-13 Heikki Junes  <hjunes@cc.hut.fi>
3761
3762         * po/fi.po: update.
3763
3764 2006-03-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3765
3766         * stepmake/bin/add-html-footer.py (mail_address_url): don't add
3767         mailto: to http:// 
3768
3769         * python/lilylib.py (print_environment): move ps_page_count to
3770         lilypond-book.py
3771
3772 2006-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3773
3774         * Documentation/user/music-glossary.tely (G clef): fix clef alignments.
3775
3776         * scm/framework-ps.scm (embed-document): new function. Use to
3777         embed PFA files.
3778
3779         * ly/engraver-init.ly: init rehearsalMarkAlignSymbol to staff-bar.
3780
3781 2006-03-12  Mats Bengtsson  <mabe@s3.kth.se>
3782
3783         * Documentation/user/instrument-notation.itely (Setting simple
3784         songs): Added \book{...} around the full example, so the separate
3785         markups are included in the printed example. 
3786
3787 2006-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3788
3789         * scripts/lilypond-book.py (get_latex_textwidth): explicitly close
3790         tmphandle.
3791
3792         * python/lilylib.py (system): rewrite system() using
3793         subprocess. Remove >& redirection trickery.
3794
3795 2006-03-11  Graham Percival  <gpermus@gmail.com>
3796
3797         * Documentation/user/ changing-defaults, global, scheme-tutorial,
3798         notation-appendices.itely: minor fixes from mailist.
3799
3800 2006-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3801
3802         * Documentation/user/GNUmakefile ($(outdir)/lilypond.html):
3803         unsplit man also needs images.
3804
3805         * tex/texinfo.tex (sectionheading, q.v.): relax after \char'15.
3806
3807         * VERSION (PACKAGE_NAME): 2.7.38 released.
3808
3809 2006-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3810
3811         * scripts/lilypond-book.py (get_latex_textwidth): look for latex
3812         log in output dir.
3813
3814 2006-03-08  Johannes Schindelin  <Johannes.Schindelin@gmx.de>
3815
3816         * lily/audio-column.cc, lily/score-performer.cc: MIDI output now
3817         respects the Score.skipTypesetting property.
3818         
3819 2006-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3820
3821         * scm/framework-ps.scm (ps-embed-cff): no Setup section in
3822         Prolog. No %%EOF after CFF file.
3823
3824 2006-03-08  Joe Neeman  <joeneeman@gmail.com>
3825         
3826         * lily/constrained-breaking.cc (get_max_systems): used to return a
3827         much too big value
3828         (combine_demerits): use pointers to reduce copying data
3829         (calc_subproblem): idem
3830         (get_page_penalty): add page turn penalties
3831         
3832 2006-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3833
3834         * Documentation/user/invoking.itely (Invoking lilypond): better
3835         explanation of -e usage.
3836
3837         * lily/main.cc (main_with_guile): don't append to
3838         init_scheme_code_string
3839
3840         * tex/texinfo.tex (sectionheading, q.v.): don't center @image.
3841
3842         * Documentation/user/invoking.itely: add note about MacOS X scripts.
3843
3844         * scripts/convert-ly.py (do_options): don't print help for
3845         --show-rules rule.
3846
3847         * tex/texinfo.tex: patch texinfo.tex to leave single quotes in
3848         @code and @example. Update from texinfo.tex from CVS.
3849
3850 2006-03-08  Graham Percival  <gpermus@gmail.com>
3851
3852         * Documentation/user/scheme-tutorial.itely: clarifies distances
3853         measured in staff-spaces.
3854
3855 2006-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3856
3857         * lily/slur.cc (outside_slur_callback): only calculate offsets if
3858         consider[k] is true.
3859
3860         * scm/output-ps.scm (grob-cause): put numbers to ~$ (Thanks Johannes!)
3861
3862         * lily/spacing-basic.cc (standard_breakable_column_spacing): also
3863         consider columns that have originals.  Unifies spacing for mm
3864         rests around line breaks.
3865
3866         * lily/multi-measure-rest.cc (set_spacing_rods): read bound-padding.
3867         (set_text_rods): idem.
3868         (calculate_spacing_rods): new function: share code between
3869         set_text_rods and set_spacing_rods.
3870         (set_text_rods): take extents of bounds into account.  
3871
3872 2006-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3873
3874         * Documentation/user/basic-notation.itely (Writing music in
3875         parallel): don't use relative.
3876
3877 2006-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3878
3879         * ly/music-functions-init.ly (Module): add shiftDurations
3880
3881         * ly/drumpitch-init.ly (drumPitchNames): add tamtam.
3882
3883         * scm/paper.scm (paper-alist): no decimals for Ax paper sizes. 
3884
3885         * ly/engraver-init.ly: init vocalName to nil.
3886
3887 2006-03-05 Erik Sandberg  <mandolaerik@gmail.com>
3888
3889         * scm/music-functions.scm (music->make-music): bugfix,
3890         KeyChangeEvents are now handled correctly.
3891
3892         * scripts/lilypond-book.py: Add --debug option.
3893
3894 2006-03-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3895
3896         * python/lilylib.py: add tempfile.
3897
3898 2006-03-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3899
3900         * VERSION (PACKAGE_NAME): release 2.7.37
3901
3902         * python/lilylib.py (ps_page_count): remove make_ps_images().
3903         (ps_page_count): remove mkdir_p
3904         (system): remove cleanup_temp.
3905         (exit): remove lilypond_version_(check)
3906         (error_log): remove pseudo_filter_p
3907         remove read_pipe
3908         remove cp_to_dir
3909         remove identify
3910
3911         * scripts/lilypond-book.py (Lilypond_snippet.compose_ly): don't
3912         use __main__
3913
3914         * lily/accidental-engraver.cc (make_standard_accidental): only add
3915         support for side-axis is X_AXIS. Fixes text-spacing-accidental.ly
3916
3917         * mf/GNUmakefile ($(outdir)/emmentaler-%.otf
3918         $(outdir)/emmentaler-%.svg): rewrite without functions; too many
3919         Make incompatibilities.
3920
3921         * scm/output-ps.scm (grob-cause): replace backslashes by /
3922         (glyph-string): use ~$ for less decimals for glyph-string and grob-cause.
3923
3924 2006-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
3925
3926         * cygwin/GNUmakefile: Install fixes.
3927
3928         * scripts/GNUmakefile (SEXECUTABLES): Install fix: remove mup2ly.
3929
3930         * lily/note-head.cc (head::get_balltype): Compile fix.
3931
3932         * flower/file-name.cc (dos_to_posix): Flower string fix.
3933
3934 2006-03-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3935
3936         * python/lilylib.py: pychecker cleanups.
3937
3938         * scripts/lilypond-book.py
3939         (Lilypond_snippet.output_print_filename): pychecker cleanups
3940
3941         * scripts/midi2ly.py (Key.dump): pychecker cleanups.
3942
3943         * python/lilylib.py (underscore): remove identify() , warranty()
3944
3945         * ps/music-drawing-routines.ps: change Border routine for GSView
3946         compatibility.
3947
3948         * lily/stem.cc (height): use quantize-positions.  This triggers
3949         set_stem_lengths, so scripts on beamed stems are handled correctly.
3950
3951         * lily/side-position-interface.cc (aligned_side): check if edges
3952         of script are inside staff. Fixes accent of edge of the staff.
3953
3954         * input/regression/staccato-pos.ly: more examples.
3955
3956         * stepmake/aclocal.m4 (depth): fix bashism.
3957
3958         * lily/lyric-combine-music-iterator.cc: move from
3959         new-lyric-combine-iterator.cc
3960         (process): add pending_grace_lyric_ member to delay lyrics on
3961         grace notes.
3962
3963         * lily/system-start-text.cc (print): suicide if we don't have any
3964         elements. Fixes hara kiri'd instrument names.
3965
3966         * scripts/mup2ly.py (Module): remove.
3967
3968 2006-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3969
3970         * Documentation/user/global.itely (A single music expression):
3971         close @lilypond properly
3972
3973         * lily/volta-bracket.cc (modify_edge_height): change from
3974         after_line_breaking_callback. Suicide last bracket if appropriate.
3975  
3976         * python/lilylib.py: strip getopt support
3977
3978         * scripts/etf2ly.py (do_options): use optparse
3979
3980         * scripts/midi2ly.py: optparse, strip lilylib copy. 
3981
3982         * scripts/abc2ly.py (voices): use optparse.
3983
3984         * stepmake/stepmake/generic-vars.make: new function absdir.
3985
3986         * scripts/convert-ly.py (bindir): use optparse, argv[0] relocation.
3987
3988         * scripts/lilypond-book.py (find_file): use global_options for
3989         include path
3990
3991         * scm/ps-to-png.scm (ps-page-count): prevent null characters
3992         entering C code.
3993
3994 2006-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3995
3996         * python/lilylib.py (get_global_option): ughness for extracting
3997         global options from lilylib.
3998         (NonDentedHeadingFormatter.format_heading): move from musicxml2ly
3999
4000         * scripts/lilypond-book.py (get_option_parser): use optparse for
4001         option handling.  Put options in global_options variable.
4002
4003 2006-02-28  Heikki Junes  <hjunes@cc.hut.fi>
4004
4005         * Documentation/index.html.in: clarify.
4006
4007 2006-02-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4008
4009         * scm/layout-page-layout.scm (write-page-breaks): add a
4010         music-system-heights property to the page layout output.
4011
4012         * scm/page.scm (make-page-stencil): take footer into account when
4013         computing the 'space-left page property
4014         (annotate-space-left): take footer into account when annonating
4015         space left.
4016
4017 2006-02-28  Graham Percival  <gpermus@gmail.com>
4018
4019         * Documentation/user/ advanced-notation, global: more (final)
4020         docs for music expressions, removed special fermatas.
4021
4022 2006-02-27  Graham Percival  <gpermus@gmail.com>
4023
4024         * Documentation/user/ basic-notation, global: minor changes
4025         from mailist.
4026
4027 2006-02-26  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4028
4029         * scm/framework-ps.scm:         
4030         * scm/lily-library.scm (nan?, inf?): Move guile 1.6 compatibility
4031         layer for inf? and nan? from framework-ps to lily-library.
4032
4033 2006-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4034
4035         * mf/GNUmakefile ($(outdir)/emmentaler-$(1).otf
4036         $(outdir)/emmentaler-$(1).svg): remove backslashes from define endef.
4037
4038         * buildscripts/substitute-encoding.py (Module): remove file.
4039
4040         * mf/GNUmakefile: more PFA strippage.
4041
4042         * mf/aybabtu.pe.in (i): remove PFAaybabtu generation
4043
4044         * buildscripts/gen-emmentaler-scripts.py (i): remove PFAemmentaler
4045         generation
4046
4047         * scm/framework-ps.scm: remove font name munging.
4048
4049         * Documentation/topdocs/INSTALL.texi (Top): bump GS requirement.
4050
4051 2006-02-25  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4052
4053         * scm/markup.scm (define-markup-command): change
4054         def-markup-command to define-markup-command
4055
4056         * scm/music-functions.scm (define-music-function): change
4057         def-music-function to define-music-function.
4058
4059         * python/convertrules.py (conv): rules for def-music-function
4060         and def-markup-commands
4061
4062         * Documentation/user/programming-interface.itely,
4063         input/no-notation/display-lily-tests.ly,
4064         input/regression/lily-in-scheme.ly,
4065         input/regression/markup-user.ly,
4066         input/regression/music-function.ly, input/regression/tie-chord.ly,
4067         scm/fret-diagrams.scm, ly/music-functions-init.ly,
4068         ly/gregorian-init.ly: use new macro names (define-music-function,
4069         define-markup-command).
4070
4071 2006-02-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4072
4073         * scripts/lilypond-book.py (main): write Makefile dependencies file. 
4074         (output): add comments to lp-book latex output.
4075
4076         * GNUmakefile.in (footifymail): use gmane address for webpage bug
4077         address.
4078
4079 2006-02-23  Graham Percival  <gpermus@gmail.com>
4080
4081         * Documentation/user/ tutorial, global: minor changes.
4082
4083 2006-02-23  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4084
4085         * mf/GNUmakefile: add '\' in multi-line "define ... endef"
4086         blocks (for make 3.80)
4087
4088         * scm/parser-ly-from-scheme.scm (ly:parse-string-result): add
4089         \notemode so that user should not have to explicitely type it.
4090
4091         * scm/define-music-display-methods.scm: various
4092         fixes (ApplyOutputEvent, ApplyContext; \new, \context and derived
4093         constructs)
4094
4095         * input/no-notation/display-lily-tests.ly: new tests for
4096         \applyOutput and \applyContext
4097
4098 2006-02-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4099
4100         * lily/constrained-breaking.cc: patch by Joe Neeman: "I have
4101         changed it slightly so that the number of systems returned by
4102         solve () will be the same as the last value passed to resize
4103         (). I've also added more documentation, removed casts, fixed style
4104         problems and put in some recovery if constraints aren't satisfied."
4105
4106 2006-02-23  Jan Nieuwenhuizen  <janneke@gnu.org>
4107
4108         * elisp/lilypond-mode.el (count-matches-as-number): New funtion
4109         for emacs < 22 compatibility.
4110         (count-rexp): Use it.
4111         (LilyPond-string-current-midi, LilyPond-string-all-midi): Remove
4112         substring juggling (Milan Zamazal).
4113
4114 2006-02-23  Graham Percival  <gpermus@gmail.com>
4115
4116         * Documentation/user/ basic-notation, advanced-notation,
4117         global.itely, invoking.itely, tutorial,itely:
4118         minor fixes from mailist.
4119
4120         * scm/define-markup-commands.scm: improve docs of \filled-box.
4121
4122 2006-02-23  Heikki Junes  <hjunes@cc.hut.fi>
4123
4124         * Documentation/index.html.in: changes concern the previous release.
4125
4126         * input/regression/+.ly: cultivate typographical terminology.
4127
4128 2006-02-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4129
4130         * scm/define-grob-interfaces.scm (parentheses-interface): add
4131         padding to parentheses-interface.
4132
4133         * Documentation/user/GNUmakefile: remove $(CROSS) support from
4134         Documentation/user/GNUmakefile. Use --disable-documentation for that.
4135
4136         * VERSION (PATCH_LEVEL): release 2.7.36
4137
4138         * lily/slur.cc: add avoid-slur (ugh.)
4139         
4140         * lily/slur-configuration.cc (fit_factor): oops, skip point if
4141         intersection gets smaller. This fixes slurs over extreme points.
4142
4143         * lily/melody-engraver.cc (stop_translation_timestep): ignore
4144         stems with neutral-direction set.
4145
4146         * lily/piano-pedal-engraver.cc (create_text_grobs): idem.
4147
4148         * lily/open-type-font.cc (load_table): format error.
4149
4150         * lily/change-iterator.cc (process): format fix.
4151
4152         * flower/include/international.hh (_f): idem.
4153
4154         * flower/include/std-string.hh: add format printf attribute.
4155
4156         * scm/define-grobs.scm (all-grob-descriptions): height of all
4157         PedalLineSpanner is Y-extent property. Fixes pedal-ped.ly
4158
4159         * lily/ambitus-engraver.cc (finalize): use grob_array. This fixes
4160         ambitus lines.
4161
4162         * input/regression/beam-cross-staff-slope.ly: remove decrescendo.
4163
4164 2006-02-22 Erik Sandberg  <mandolaerik@gmail.com>
4165
4166         * input/regression/: upgraded syntax for some files.
4167
4168         * THANKS: Add bughunters.
4169
4170 2006-02-22  Graham Percival  <gpermus@gmail.com>
4171
4172         * Documentation/user/ invoking.itely, advanced-notation.itely,
4173         global.itely: long-awaited "let's make chapter 10 not suck"
4174         update.  Rearrange chapter 10; now called "global issues",
4175         addresses file structure, etc.  Some info from other files
4176         moved into global.itely.
4177
4178 2006-02-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4179
4180         * lily/accidental-engraver.cc (acknowledge_rhythmic_head): also
4181         catch trill-span-event notes.
4182
4183         * Documentation/user/examples.itely (Ancient notation templates): typo.
4184         (Jazz combo): typo.
4185
4186         * scripts/lilypond-book.py (main): scrap invokes_lilypond(). 
4187
4188         * Documentation/user/basic-notation.itely (Ties): document \repeatTie.
4189
4190         * Documentation/topdocs/NEWS.tely (Top): document \repeatTie.
4191
4192         * scm/define-music-types.scm (music-descriptions): add RepeatTieEvent
4193
4194         * lily/repeat-tie-engraver.cc (acknowledge_note_head): new file. cut & paste
4195         froum Laissez_vibrer_engraver.
4196
4197         * ly/declarations-init.ly (repeatTie): add \repeatTie
4198
4199         * scm/define-grobs.scm (all-grob-descriptions): add RepeatTie, RepeatTieColumn
4200
4201         * scm/define-grob-properties.scm (all-user-grob-properties): add
4202         head-direction property.
4203
4204         * lily/tie-formatting-problem.cc (from_semi_ties): rename from
4205         from_lv_ties. Take head direction argument.
4206
4207         * lily/semi-tie-column.cc: rename from
4208         laissez-vibrer-tie-column.cc. Rename class too.
4209
4210         * lily/semi-tie.cc: rename from laissez-vibrer-tie.cc. Rename
4211         class too.
4212
4213         * lily/paper-score.cc (find_break_indices): move from Break_algorithm.
4214
4215         * lily/break-algorithm.cc (find_break_indices): remove linewidth <
4216         0 case.
4217         (find_breaks): idem.
4218
4219 2006-02-21  Graham Percival  <gpermus@gmail.com>
4220
4221         * Documentation/user/advanced-notation.itely: fixed make-moment]
4222         example.
4223
4224         * Documentation/user/basic-notation.itely: more clarification to
4225         transpose.
4226
4227 2006-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4228
4229         * lily/include/constrained-breaking.hh (class
4230         Constrained_breaking): new file.
4231
4232         * lily/constrained-breaking.cc (resize): new file.
4233
4234         * lily/gourlay-breaking.cc (do_solve): ragged-last iso raggedlast
4235
4236         * Documentation/user/advanced-notation.itely (Clusters): insert
4237         end ignore too.
4238
4239         * lily/tie-column.cc (calc_positioning_done): support for
4240         tie-score debugging
4241
4242         * lily/tie-formatting-problem.cc
4243         (generate_extremal_tie_variations): factor out.
4244         (score_ties_configuration): annotate all tie 
4245         (print_ties_configuration): new routine.
4246         (generate_configuration): nudge extremal ties outside of the head
4247         Y extents.
4248         (score_ties_configuration): oops. convert to staff-space before
4249         determining position symmetry.
4250
4251 2006-02-20  Graham Percival  <gpermus@gmail.com>
4252
4253         * Documentation/user/*-notation.itely: misc minor editing,
4254         shifting doc sections around.
4255
4256         * Documentation/user/*-notation-itely, global.itely,
4257         changing-defaults.itely: added new stuff from NEWS.
4258
4259 2006-02-20  Heikki Junes  <hjunes@cc.hut.fi>
4260
4261         * po/fi.po: update.
4262
4263 2006-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4264
4265         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): don't run
4266         lilypond --verbose for lp-book.
4267
4268         * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
4269         $(outdir)/%.ly $(outdir)/%.ps): use $(srcdir) iso $(shell pwd).
4270
4271         * make/lysdoc-rules.make ($(outdir)/collated-files.tely): use
4272         $(buildscript-dir) iso. absolute depth.
4273
4274         * buildscripts/genicon.py (dir): thinko.
4275
4276         * Documentation/pictures/GNUmakefile ($(outdir)/%.ico): typo.
4277
4278 2006-02-19 Erik Sandberg  <mandolaerik@gmail.com>
4279
4280         * scm/output-lib.scm: swap darkcyan/darkyellow
4281
4282         * THANKS: Add bughunters.
4283
4284 2006-02-19  Graham Percival  <gpermus@gmail.com>
4285
4286         * Documentation/user/programming-interfaces.itely: fixed example.
4287
4288         * Documentation/user/instrument-notation.itely: fix @{ @}.
4289
4290         * scm/script.scm: add avoid-slur for \open.
4291
4292 2006-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4293
4294         * lily/tie-formatting-problem.cc (score_configuration): use
4295         sliding score for min-length. 
4296
4297         * Documentation/pictures/GNUmakefile (local-dist): loose the rule
4298         spaghetti for icons.
4299
4300         * buildscripts/genicon.py (program_name): new file.
4301
4302         * lily/tie-formatting-problem.cc (set_chord_outline): put dots
4303         in outline too.  
4304         (generate_configuration): for small ties, also look for collisions
4305         at Y + DIR*h + DELTA_Y.
4306         (get_variations): consider variation for dot positions too.
4307
4308         * lily/side-position-interface.cc (aligned_side): take abs for
4309         quantized rounded position. Fixes tenuto below staff.
4310
4311         * scm/stencil.scm (annotate-y-interval): robustify: print nan/inf
4312         markers when necessary.
4313
4314         * lily/program-option.cc (internal_set_option): add
4315         strict_infinity_checking option.
4316
4317         * scm/output-lib.scm (cyan): swap yellow and cyan.
4318
4319 2006-02-19  Graham Percival  <gpermus@gmail.com>
4320
4321         * darwin.patch: trivial linenumber update.
4322
4323         * Documentation/user/ {various}: `\context foo = named' changed
4324         to `\new foo = "name"' in docs.
4325
4326 2006-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4327
4328         * scm/stencil.scm (annotate-y-interval): use it.
4329
4330         * scm/lily-library.scm (interval-sane?): new function.
4331
4332         * buildscripts/mf-to-table.py (Char_metric.__init__): remove
4333         tfm_checksum stuff.
4334
4335         * lily/tie-formatting-problem.cc (from_lv_ties): add heads for
4336         common refpoint.
4337
4338         * flower/include/std-vector.hh (iterof): add iterof macro.
4339
4340         * lily/enclosing-bracket.cc (width): new function.
4341
4342         * lily/align-interface.cc (align_elements_to_extents): reinstate
4343         warning.
4344
4345 2006-02-18  Heikki Junes  <hjunes@cc.hut.fi>
4346
4347         * Documentation/index.html.in: fix spelling: thankyous.
4348
4349 2006-02-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4350
4351         * lily/lyric-hyphen.cc: typo.
4352
4353 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4354
4355         * stepmake/stepmake/c++-rules.make ($(outdir)/%.cc
4356         $(outdir)/%.hh): generate h and c in one rule; otherwise -jX
4357         builds don't work. 
4358
4359         * VERSION: release 2.7.35
4360
4361         * lily/beam.cc (get_default_dir): oops. Take abs () for
4362         extremes[DOWN].
4363         (get_default_dir): use extreme position criterion only in absence
4364         of forced stem directions.
4365
4366         * VERSION (PATCH_LEVEL): bump VERSION.
4367
4368         * mf/GNUmakefile: explicit rules for emmentaler/aybabtu
4369         dependencies. Necessary for -jX builds.  
4370
4371 2006-02-17  Jan Nieuwenhuizen  <janneke@gnu.org>
4372
4373         * lily/relocate.cc (setup_paths): Yet another const fix.
4374
4375 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4376
4377         * configure.in (HOST_ARCH): determine HOST_ARCH in configure.
4378
4379         * lily/relocate.cc (setup_paths): oops.
4380
4381 2006-02-17  Heikki Junes  <hjunes@cc.hut.fi>
4382
4383         * Documentation/index.html.in: order links: html before PDF.
4384
4385 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4386
4387         * lily/tie-column-format.cc (Module): remove.
4388
4389         * lily/relocate.cc (setup_paths): GCC 4.2 fixes: const correctness.
4390
4391         * lily/text-spanner.cc (print): idem.
4392
4393         * lily/dynamic-text-spanner.cc (print): only print line if longer
4394         than dash-period.
4395
4396         * lily/auto-change-iterator.cc (change_to): formatting.
4397
4398         * lily/beam.cc (get_default_dir): take extreme note head as input
4399         for stem direction.
4400
4401         * lily/tie.cc (get_default_dir): only look directions for visible
4402         stems. 
4403
4404         * lily/side-position-interface.cc (aligned_side): oops. Don't
4405         mutiply with direction. This fixes quantized (staccato, tenuto)
4406         scripts below notes.
4407
4408         * lily/lyric-hyphen.cc (set_spacing_rods): oops. Multiply with
4409         direction. Fixes c-lyrics-center-align.ly
4410
4411 2006-02-16  Jan Nieuwenhuizen  <janneke@gnu.org>
4412
4413         * flower/include/std-vector.hh[!HAVE_STL_DATA_METHOD]: Add copy
4414         constructor.
4415
4416         * lily/std-string.cc:
4417         * lily/include/std-vector.hh (split_string): Move and rename from
4418         lily/include/misc.hh, lily/misc.cc.  Update callers.
4419
4420 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4421
4422         * lily/include/pango-font.hh: HAVE_PANGO_FT2 iso. HAVE_PANGO_16
4423
4424 2006-02-16  Jan Nieuwenhuizen  <janneke@gnu.org>
4425
4426         * flower/test-file.cc: New file.
4427
4428         * stepmake/stepmake/test-vars.make (TEST_MODULE_LIBES): Fixes for
4429         libraries.
4430
4431         * flower/GNUmakefile (TEST_MODULE_LIBS): Link to flower lib.
4432
4433 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4434
4435         * flower/include/file-storage.hh: remove file.
4436
4437         * lily/include/midi-item.hh (class Midi_track): idem.
4438
4439         * lily/include/source.hh (class Sources): idem.
4440
4441         * lily/include/performance.hh (class Performance): use vector
4442         iso. Cons<>
4443
4444         * flower/include/cons.hh (class Cons): remove file.
4445
4446         * flower/include/flower-proto.hh: remove template cruft.
4447
4448         * lily/include/font-metric.hh: use size_t not vsize for indices.
4449
4450         * flower/include/flower-proto.hh (Module): remove std-vector.hh
4451         from proto.
4452
4453         * lily/include/all-font-metrics.hh: use HAVE_PANGO_FT2
4454
4455         * lily/include/paper-book.hh (class Paper_book):
4456         make get_system_specs() public.
4457
4458         * scm/layout-page-layout.scm (optimal-page-breaks): only consider
4459         the force=10000 case if we don't have a current-best. 
4460
4461         * lily/tuplet-bracket.cc (get_bounds): don't do (size() - 1) for
4462         vsize 
4463
4464         * flower/include/flower-proto.hh: remove outdated templates.
4465
4466         * scm/page.scm: use annotate-spacing
4467
4468 2006-02-15  Graham Percival  <gpermus@gmail.com>
4469
4470         * scm/translation-functions.scm: circle patch from Erlend, thanks!
4471
4472         * THANKS: moved Erlend Aasland to contributors.
4473
4474 2006-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4475
4476         * config.hh.in: remove HAVE_PANGO_16
4477
4478         * lily/tuplet-bracket.cc (calc_positions): multiply with
4479         staff-space for beam case. This fixes tuplets+beams on scaled
4480         staves.
4481
4482         * config.hh.in: remove all Kpathsea related defines.
4483
4484         * lily/dot-column.cc (side_position): reach stem via dots->
4485         head->stem. Inspect all stems for dot collisions. 
4486
4487         * lily/dot-column-engraver.cc (class Dot_column_engraver): excise
4488         stem handling.
4489
4490         * lily/bar-number-engraver.cc (process_music): document function
4491         of whichBar.
4492
4493         * lily/score.cc (default_rendering): add pscore, not systems
4494         themselves.
4495
4496         * lily/paper-book.cc (get_system_specs): separate generation of
4497         titles and systems.
4498
4499         * flower/include/std-vector.hh: don't include config.hh
4500
4501 2006-02-15  Jan Nieuwenhuizen  <janneke@gnu.org>
4502
4503         * flower/include/std-vector.hh: Better wrapper compatibility with
4504         std::vector.
4505
4506         * flower/include/flower-proto.hh: Remove cheap forward declaration
4507         attempts.
4508
4509         * stepmake/aclocal.m4 (STEPMAKE_STL_DATA_METHOD): Bugfix.
4510
4511 2006-02-14  Graham Percival  <gpermus@gmail.com>
4512
4513         * Documentation/user/invoking.itely: add warning about command line.
4514
4515 2006-02-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4516
4517         * lily/include/lily-proto.hh: add Prob, rm Page.
4518
4519         * flower/include/std-vector.hh (VPOS): use 64 bit-proof version.
4520
4521         * VERSION: release 2.7.34
4522
4523         * lily/relocate.cc (framework_relocation): show canary if
4524         GHOSTSCRIPT_VERSION undefined.
4525
4526         * GNUmakefile.in: remove $(VERSION) symlink.
4527
4528         * lily/relocate.cc (setup_paths): add + 
4529
4530 2006-02-13  Heikki Junes  <hjunes@cc.hut.fi>
4531
4532         * Documentation/index.html.in: specify sizes for all big HTML pages.
4533
4534 2006-02-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4535
4536         * config.hh.in: remove @FRAMEWORKDIR@
4537
4538         * lily/system-start-text.cc (get_stencil): new file: separate out
4539         system-start-delimiter text support.
4540
4541         * input/**ly: replace \context with \new where appropriate.
4542         
4543         * THANKS: add Don.
4544
4545         * lily/slur-scoring.cc (get_base_attachments): use
4546         robust_relative_extent. This fixes problems with empty paper-columns. 
4547
4548 2006-02-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4549
4550         * Documentation/topdocs/NEWS.tely (Top): document \new syntax.
4551
4552         * scm/define-music-properties.scm (all-music-properties):
4553         create-new property.
4554
4555         * lily/context-specced-music-iterator.cc (construct_children):
4556         inspect 'create-new property iso. magical $uniqueContextId context
4557         id.
4558
4559         * lily/parser.yy (optional_id): allow \new "Bar" = "foo" too.
4560
4561         * lily/context-key-manager.cc (Module): new file. Encapsulate
4562         object key generation.
4563
4564         * lily/include/context-key-manager.hh (Module): new file.
4565
4566 2006-02-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4567
4568         * scm/define-grobs.scm (all-grob-descriptions): center instrument
4569         names vertically
4570
4571         * configure.in (LINK_GXX_STATICALLY): strip -DSTRING_UTILS_INLINED
4572         options.
4573         (reloc_b): excise --enable-framework-dir
4574
4575         * lily/relocate.cc (framework_relocation): use getenv
4576         LILYPOND_GS_VERSION or -DGHOSTSCRIPT_VERSION to set GS version.
4577
4578 2006-02-11  Jan Nieuwenhuizen  <janneke@gnu.org>
4579
4580         * flower/include/std-string.hh: 
4581         * flower/include/std-vector.hh: Finish std:: conversion; move
4582         flower extensions from std:: namespace.  Update users.
4583
4584         * lily/include/lily-proto.hh: Replace Link_array__*_ macros by
4585         their expansion to vector<*>.  Update users.
4586
4587 2006-02-10  Graham Percival  <gpermus@gmail.com>
4588
4589         * Documentation/user/invoking.itely: add example to File structure.
4590
4591         * Documentation/user/ instrument-notation.itely, cheatsheet.itely,
4592         examples.itely, putting.itely: {\new|\context} Lyrics \lyricsto.
4593
4594 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4595
4596         * ly/paper-defaults.ly: typo.
4597
4598         * lily/parenthesis-engraver.cc (acknowledge_grob): don't do
4599         set_parent() for parentheses. This will make it show up in bbox
4600         calculations.
4601
4602         * scm/output-lib.scm (parentheses-item::print): rewrite, using
4603         ly:grob-common* functions.
4604
4605         * lily/grob-scheme.cc (LY_DEFINE):
4606         ly:grob-common-refpoint-of-array: new function 
4607         ly:grob-common-refpoint: new function 
4608         ly:grob-relative-coordinate: new function 
4609
4610         * lily/instrument-name-engraver.cc (process_music): use
4611         Text_interface::is_markup(). This fixes \markup on instrument names.  
4612
4613         * scm/define-grobs.scm (all-grob-descriptions): set line-thickness
4614         for ties and slurs.
4615
4616         * lily/slur.cc (print): idem.
4617
4618         * lily/tie.cc: add line-thickness for ties. 
4619
4620 2006-02-10  Jan Nieuwenhuizen  <janneke@gnu.org>
4621
4622         * scm/output-svg.scm: Document diversion from GNU coding standards
4623         as a workaround for a bug in Microsoft Internet Explorer.
4624
4625 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4626
4627         * lily/instrument-name-engraver.cc (process_music): use
4628         is_markup() iso. is_string()
4629
4630         * Documentation/user/changing-defaults.itely (Module): add menu entry.
4631
4632         * lily/percent-repeat-engraver.cc (process_music): only look at
4633         main_part_ for % repeats.
4634
4635         * lily/stem-tremolo.cc (get_beam_translation): new function.
4636         (calc_slope): new function.
4637         (height): don't use real slope.
4638
4639 2006-02-10  Jürgen Reuter  <reuter@ipd.uka.de>
4640
4641         * scm/define-grobs.scm (LigatureBracket): Maintenance bugfix: add
4642         new connect-to-neighbor, control-points and staff-padding
4643         properties to make ligature brackets showing up again.
4644
4645 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4646
4647         * VERSION: release 2.7.33
4648
4649         * lily/relocate.cc (prefix_relocation): oops. One TOPLEVEL_VERSION
4650         too many.
4651
4652         * Documentation/user/changing-defaults.itely (Difficult tweaks):
4653         remove applyOutput example.
4654         (Objects connected to the input): document \tweak, \parenthesize
4655
4656         * lily/relocate.cc (prefix_relocation): allow "current"
4657         iso. TOPLEVEL_VERSION for share/lilypond/ suffix. This makes
4658         changing VERSION in a lily tree less painful.
4659
4660         * input/regression/parenthesize.ly: new file. 
4661
4662         * scm/output-lib.scm (parenthesize-element): new function.
4663
4664         * scm/define-grobs.scm (all-grob-descriptions): add ParenthesesItem.
4665
4666         * lily/parenthesis-engraver.cc (acknowledge_grob): new file.
4667
4668         * lily/accidental-engraver.cc (make_standard_accidental): reroute
4669         cause: accidentals are caused by note heads, not note events. 
4670
4671 2006-02-08  Graham Percival  <gpermus@gmail.com>
4672
4673         * darwin.patch: small patch from Erlend, thanks!
4674
4675         * Documentation/user/basic-notation.itely: add stem-neutral example.
4676
4677         * Documentation/user/putting.itely: clarifications.
4678
4679 2006-02-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4680
4681         * Documentation/topdocs/NEWS.tely (Top): remove internal cleanup
4682         note, add more guidelines to what should go into NEWS.
4683
4684         * input/sakura-sakura.ly: document how to override font.
4685
4686         * input/regression/font-family-override.ly:  doc -dshow-available-fonts
4687
4688 2006-02-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4689
4690         * lily/midi-item.cc (to_string): truncate time sig at 255 beats.
4691
4692 2006-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
4693
4694         * scripts/convert-ly.py (lilypond_version_re_str): Move from
4695         convertrules.  Add explicit grouping, needed for python2.2.
4696
4697 2006-02-07  Jan Nieuwenhuizen  <janneke@gnu.org>
4698
4699         * Documentation/topdocs/NEWS.tely (Top): Mention code cleanup.
4700
4701 2006-02-07  Graham Percival  <gpermus@gmail.com>
4702
4703         * Documentation/user/global.itely: fix line-width in (text) docs.
4704
4705         * Documentation/user/lilypond-book.itely: same.
4706
4707 2006-02-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4708
4709         * VERSION (PACKAGE_NAME): release 2.7.32
4710
4711         * Documentation/topdocs/NEWS.tely (Top): document new variable
4712         naming.
4713
4714         * flower/include/array.icc (Message): remove file.
4715
4716         * flower/include/std-vector.hh: make sure vsize and VPOS are
4717         defined for binary_search_bounds().
4718
4719         * flower/std-string.cc (std): add to_string(long unsigned).
4720
4721         * configure.in (gui_b): excise std_string option.
4722         (gui_b): excise std_vector option.
4723
4724         * flower/string.cc (Module): excise flower array & string
4725
4726         * flower/include/std-string.hh: excise flower string.
4727
4728         * {ly,lily,scm}/*: use dashes in \paper and \layout variables
4729
4730         * python/convertrules.py (lilypond_version_re_str): require
4731         only numbers and dots in \version string.
4732
4733 2006-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4734
4735         * lily/system-start-delimiter.cc (print): allow style = text too.
4736
4737         * lily/system-start-delimiter-engraver.cc
4738         (acknowledge_system_start_text): new function, also add add to
4739         support of system-start-text (instrument names). This fixes
4740         instrument names on piano staves.
4741
4742         * lily/instrument-name-engraver.cc: rewrite. Use
4743         system-start-delimiter approach. This save memory and cpu.
4744
4745         * scm/define-grobs.scm (all-grob-descriptions): remove
4746         instrument-name from break-alignment.
4747
4748         * mf/GNUmakefile ($(NCSB_TTFS)): depend on pfx2ttf script too.
4749
4750 2006-02-05  Jan Nieuwenhuizen  <janneke@gnu.org>
4751
4752         * stepmake/stepmake/generic-vars.make (LOOP): Add PLUS to keep -j
4753         jobserver going.
4754
4755         * configure.in (std_vector): On by default.
4756
4757         * lily/include/font-metric.hh:
4758         * lily/include/tfm-reader.hh: 
4759         * lily/include/spanner.hh: Use unsigned for indices and sizes.
4760         Update users.
4761
4762         * Documentation/user/changing-defaults.itely: Fix link v2.5, out-www.
4763
4764 2006-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4765
4766         * VERSION (PACKAGE_NAME): 2.7.31
4767
4768         * scm/framework-ps.scm (dump-stencil-as-EPS): don't hardcode left
4769         EPS edge at 0, but take minimum with left-overshoot. This fixes
4770         cut off system start delims. 
4771
4772         * lily/instrument-name-engraver.cc (stop_translation_timestep):
4773         hack: add to axis group if not added yet. This fixes hara kiri'd
4774         piano staves.
4775
4776         * lily/hara-kiri-group-spanner.cc
4777         (force_hara_kiri_in_y_parent_callback): fix signatures.
4778
4779         * lily/hairpin.cc (print): check next hairpin to see whether or
4780         not to be continuing.
4781
4782 2006-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
4783
4784         * Remove trailing whitespace from makefiles.
4785         
4786         * flower/include/std-vector.hh: Add binary_search_bounds workaround
4787         for earlier gcc.
4788
4789         * .cvsignore: Add out*, out-www, config-*.  Remove lots of cruft.
4790
4791         * flower/include/std-vector.hh[!HAVE_STL_DATA_METHOD]: Workaround.
4792
4793         * config.hh.in (HAVE_STL_DATA_METHOD): Add.
4794
4795         * stepmake/aclocal.m4 (STEPMAKE_STL_DATA_METHOD): New function.
4796
4797         * configure.in: Use it.
4798
4799 2006-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4800
4801         * scm/music-functions.scm (pitch-of-note): new function.
4802
4803         * ly/music-functions-init.ly: add \octave and \addquote
4804
4805         * lily/parser.yy (music_function_chord_body): softcode \octave.
4806         (lilypond_header): softcode \addquote
4807
4808 2006-02-03  Jan Nieuwenhuizen  <janneke@gnu.org>
4809
4810         * flower/include/std-vector.hh[STD_VECTOR]: Do not include
4811         array.hh, parray.hh at all.  Getting ready to flip the
4812         configure default.
4813
4814         * lily/include/lily-proto.hh (Link_array__char_): Bugfix.
4815
4816         * lily/source-file.cc (file::get_line): Help binary_search_bounds
4817         a bit.
4818
4819         * lily/include/lily-proto.hh (Link_array__char_): Bugfix.
4820
4821 2006-02-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4822
4823         * flower/include/array.hh: typo. 
4824
4825 2006-02-02  Graham Percival  <gpermus@gmail.com>
4826
4827         * Documentation/user/advanced-notation.itely: doc "\#" in text.
4828
4829 2006-02-03  Jan Nieuwenhuizen  <janneke@gnu.org>
4830
4831         * flower/include/pqueue.hh: Derive from std::vector.
4832
4833         * flower/include/parray.hh: Conform to std::vector interface.
4834         Update users.
4835
4836 2006-02-02  Graham Percival  <gpermus@gmail.com>
4837
4838         * Documentation/topdocs/NEWS.itely: grammar fix from Laura.
4839
4840 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4841
4842         * flower/file-path.cc (is_file): remove if 0 section.
4843
4844         * buildscripts/pfx2ttf.fontforge (err): robustness fix for
4845         selecting afii61352.
4846
4847 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4848
4849         * flower/include/std-vector.hh (boundary): Oops, reverse.
4850
4851         * flower/string-convert.cc (convert::unsigned_string): Bugfix:
4852         remove superfluous `d'.
4853
4854         * flower/include/std-vector.hh (boundary, top): Detach from class.
4855         Remove empty vector shell.
4856
4857         * flower/include/array.hh (reverse, swap): Detach from class.
4858         Update users.
4859         
4860         * flower/include/std-vector.hh
4861         * flower/include/array.hh (concat): Globally change to insert ().
4862
4863         
4864         * flower/include/std-vector.hh
4865         * flower/include/parray.hh
4866         * flower/include/array.hh (elem, elem_ref): Globally replace by
4867         at ().
4868
4869 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4870
4871         * Documentation/topdocs/NEWS.tely (Top): use ly: prefix for members.
4872
4873         * python/convertrules.py (FatalConversionError.sub_cxx_id):
4874         anticipate on identifier substitutions.
4875
4876 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4877
4878         * flower/include/std-vector.hh (insert): Remove, replace by
4879         std::vector interface.  Update callers.
4880
4881         * flower/include/array.icc (insert): Change signature to
4882         match std::vector interface.
4883         
4884         * flower/include/array.icc (vector_sort): Bugfix.
4885
4886 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4887
4888         * lily/parser.yy (output_def_head_with_mode_switch): new
4889         production. Result: dashes and underscores may be used in the
4890         \paper block.
4891
4892         * lily/lexer.ll: add DASHED_WORD.  Accept in INITIAL mode.
4893
4894         * python/convertrules.py (conv): oops. One slash too much.
4895
4896 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4897
4898         * flower/include/std-vector.hh (sort): Remove, replace by
4899         ::vector_sort.  Update callers.
4900
4901         * flower/include/std-vector.hh (slice): Remove.  Update callers.
4902         (sort): Bugfix.
4903
4904         * flower/test-std.cc (vector_sort): New test.
4905
4906 2006-02-01  Graham Percival  <gpermus@gmail.com>
4907
4908         * Documentation/user/putting.itely: fixes from Erik.
4909
4910 2006-02-01  Jan Nieuwenhuizen  <janneke@gnu.org>
4911
4912         * flower/test-std.cc: Add simple unit test for vector migration.
4913
4914         * stepmake/stepmake/test*: Unit test support.
4915
4916         * flower/include/std-vector.hh (del): Remove.  Use erase (),
4917         update callers.
4918
4919         * flower/include/array.hh (begin, end): Add.
4920         (del, get): Remove.
4921
4922 2006-02-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4923
4924         * lily/include/lily-guile-macros.hh (MAKE_SCHEME_CALLBACK): use
4925         std::string not String. 
4926
4927         * lily/context-def.cc (path_to_acceptable_context): use INT_MAX
4928         iso UINT_MAX.
4929
4930         * lily/prob.cc (Prob): copy type_ too.
4931
4932         * lily/lily-guile.cc (mangle_cxx_identifier): new
4933         function. Class_bla::foo_bar_[px] ->
4934         ly:class-bla::foo-bar[?!]. Changes throughout
4935
4936 2006-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4937
4938         * flower/include/guile-compatibility.hh (scm_from_unsigned): add scm_from_unsigned().
4939
4940         * lily/beam.cc (calc_direction): take dir from visible stem in
4941         degenerate case.
4942
4943 2006-01-31  Jan Nieuwenhuizen  <janneke@gnu.org>
4944
4945         * lily/melody-spanner.cc (spanner::calc_neutral_stem_direction):
4946         Fix -1, >=0 boundary checks for unsigned vsize.
4947
4948         * lily/separating-group-spanner.cc (spanner::find_rods): Fix >=0
4949         loop for unsigned vsize.
4950
4951         * configure.in (--enable-std-vector): New option.
4952         (--enable-std-string): On by default.
4953
4954         * flower/include/std-vector.hh: New file.  Enable switch to
4955         std::vector, update client code.
4956
4957 2006-01-30  Graham Percival  <gpermus@gmail.com>
4958
4959         * scm/document-translation.scm: clarify "this context is also
4960         known as".  Thanks, Werner!
4961
4962         * Documentation/user/putting.itely: small fixes from Don Blaheta.
4963
4964         * Documentation/user/invoking.itely: small fix from Don.
4965
4966 2006-01-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4967
4968         * scm/lily.scm (define-scheme-options): rename option
4969         preview-include-book-title to book-title-preview
4970         (define-scheme-options): move force-eps-font-include (from paper
4971         block) to eps-font-include -d option.
4972
4973         * VERSION (PATCH_LEVEL): release 2.7.30
4974
4975         * input/bach-schenker.ly (staffPiano): new file.
4976
4977         * buildscripts/pfx2ttf.fontforge: remove No. glyph from TTF file.
4978
4979         * Documentation/topdocs/NEWS.tely (Top): simplify NEWS entry, add
4980         credits to Nicolas.
4981
4982         * scm/define-markup-commands.scm (epsfile): add scaling to \epsfile.
4983
4984         * ps/lilyponddefs.ps: remove start-system, stop-system,
4985         start-page fluff. This saves putting { } code on the stack, fixing
4986         stack overflows when including EPS files.
4987
4988 2006-01-29  Graham Percival  <gpermus@gmail.com>
4989
4990         * Documentation/user/putting.itely: minor fixes (comments on -devel).
4991
4992 2006-01-29  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4993
4994         * Documentation/topdocs/NEWS.tely (Top): add \parallelMusic news.
4995
4996 2006-01-28  Graham Percival  <gpermus@gmail.com>
4997
4998         * Documentation/user/putting.itely: minor fixes (mostly tab->space).
4999
5000 2006-01-28  Jan Nieuwenhuizen  <janneke@gnu.org>
5001
5002         * input/mutopia/claop.py: Update.
5003
5004 2006-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5005
5006         * input/regression/completion-heads.ly (texidoc): fix.
5007
5008         * lily/staff-symbol-referencer.cc (on_staff_line): idem.
5009
5010         * lily/tie-formatting-problem.cc
5011         (set_ties_config_standard_directions): use abs iso fabs for ints.
5012
5013         * Documentation/topdocs/INSTALL.texi (Top): document ncsb requirement.
5014
5015         * mf/feta-bolletjes.mf (overdone_heads): solfa_noteheight, a
5016         little less than noteheight, to prevent overlaps in chords.
5017
5018         * lily/note-collision.cc (check_meshing_chords): wipe upper FA
5019         head, and fudge stem-attachment.
5020
5021         * scm/lily-library.scm (not): define hash-for-each for guile 1.6
5022
5023         * lily/slur-scoring.cc (get_best_curve): handle opt_idx < 0 case.
5024
5025 2006-01-27  Jan Nieuwenhuizen  <janneke@gnu.org>
5026
5027         * lily/main.cc (main): Debugging aid: catch exceptions.
5028
5029         * flower/std-string.cc (to_string): Robustification.  Fixes midi
5030         output with std::string.
5031
5032 2006-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5033
5034         * Documentation/topdocs/INSTALL.texi (Top): remove libkpathsea notes.
5035
5036 2006-01-26  Jan Nieuwenhuizen  <janneke@gnu.org>
5037
5038         * Fix -DSTRING_UTILS_INLINED.
5039
5040 2006-01-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5041
5042         * VERSION (PATCH_LEVEL): release 2.7.29
5043
5044         * lily/relocate.cc (setup_paths): mingw uses std string too.
5045
5046         * lily/*.cc: various fixes for substr(ARG).
5047
5048         * lily/sustain-pedal.cc (print): 
5049
5050         * flower/file-name.cc (slashify): use std strings.
5051
5052         * flower/string-convert.cc: remove publib.h
5053
5054         * scm/define-markup-commands.scm (verbatim-file): new markup
5055         command \verbatim-file
5056
5057         * Documentation/topdocs/NEWS.tely: fixup URLs
5058
5059         * input/regression/alignment-vertical-manual-setting.ly (Module):
5060         new file.
5061
5062         * lily/align-interface.cc (align_elements_to_extents): overwrite
5063         translations with numbers in alignment-offsets from left bound
5064
5065         * scm/page.scm (make-page-stencil): read X-offset from paper-system.
5066         (page-translate-systems): new function: take into account Y-offset.
5067
5068         * Documentation/topdocs/NEWS.tely (Top): document new features.
5069
5070         * input/regression/page-layout-manual-position.ly (Module): new
5071         file.
5072
5073 2006-01-26  Jan Nieuwenhuizen  <janneke@gnu.org>
5074
5075         * flower/file-path.cc (path::parse_path): Oops.
5076
5077         * Finish std::string interface.  For now, use std:: marker
5078         throughout for easy s/r.
5079
5080 2006-01-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5081
5082         * Documentation/user/putting.itely (Score is a single musical
5083         expression): typo.
5084         (Score is a single musical expression): more typos.
5085
5086         * scm/page.scm (annotate-space-left): thinko.
5087         (annotate-page): more thinkos.
5088
5089 2006-01-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5090
5091         * scm/layout-page-layout.scm (write-page-breaks): record tweaks
5092         for different \score blocks separately.
5093         (post-process-pages): put write-page-layout into paper block.
5094
5095         * lily/output-def.cc (get_parser): new file.
5096
5097         * lily/output-def-scheme.cc (LY_DEFINE): ly:output-def-parser, new
5098         file.
5099
5100         * lily/include/output-def.hh (class Output_def): add parser_ member.
5101
5102         * input/regression/page-layout-twopass.ly (Module): new file.
5103
5104         * scm/lily.scm: remove cpp hack.
5105
5106         * lily/lyric-engraver.cc (get_voice_to_lyrics): use NPOS everywhere.
5107
5108 2006-01-25  Jan Nieuwenhuizen  <janneke@gnu.org>
5109
5110         * GNUmakefile.in (c-clean): New target.
5111
5112         * flower/include/std-string.hh: String/std::string compatibility:
5113         Use NPOS for `not found' (iso -1), use ssize for length () and pos
5114         type.
5115
5116         * flower/rational.cc: 
5117         * flower/include/rational.hh: 
5118
5119         * flower/offset.cc: 
5120         * flower/include/offset.hh: 
5121
5122         * flower/interval.cc: 
5123         * flower/include/interval.hh: 
5124
5125         * flower/string-convert.cc: 
5126         * flower/include/string-convert.hh: Use std::string [interface].
5127         Update callers.
5128
5129 2006-01-25  Heikki Junes  <hjunes@cc.hut.fi>
5130
5131         * Documentation/index.html.in: clean up.
5132
5133 2006-01-25  Graham Percival  <gpermus@gmail.com>
5134
5135         * Documentation/user/putting.itely: another new untested doc section.
5136
5137 2006-01-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5138
5139         * scm/layout-page-layout.scm (write-page-breaks): write
5140         \spacingTweaks #ALIST. Handle grace timing.
5141
5142         * scm/: more imports.
5143
5144         * scm/page.scm (make-page): add footer/header.
5145         (annotate-space-left): revise: only take page argument.
5146         (layout->page-init): new function.
5147
5148         * scm/layout-page-layout.scm (write-page-breaks): preliminary
5149         version of the system/spacing/linebreak hack writing to the output
5150
5151         * lily/prob-scheme.cc (LY_DEFINE): take optional 'key val args in
5152         ly:make-prob.
5153
5154         * lily/grob-scheme.cc (LY_DEFINE): ly:spanner-get-bound ->
5155         ly:spanner-bound
5156
5157 2006-01-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5158
5159         * scm/stencil.scm (annotate-y-interval): move from layout-page-layout.scm
5160
5161         * scm/paper-system.scm (paper-system-annotate): new file. Handle paper-system.
5162
5163         * scm/layout-page-layout.scm (optimal-page-breaks): move all page
5164         handling to page.scm
5165
5166         * lily/prob-scheme.cc (LY_DEFINE): new file.
5167         (LY_DEFINE): functions ly:make-prob , ly:prob-type? , ly:prob-(set-)property(!)
5168
5169         * lily/music-scheme.cc (LY_DEFINE): rewrite get/set property using
5170         prob functions.
5171
5172         * lily/music.cc (derived_mark): derive Music from Prob.
5173
5174         * lily/paper-system.cc (LY_DEFINE): derive from Prob.
5175
5176         * lily/prob.cc (Module): Implement Prob (Property Object), object
5177         with shared and r/w property alists.  
5178
5179         * lily/include/prob.hh (Module): new file. Declare Prob.
5180
5181         * flower/string.cc: remove is_empty().
5182
5183         * flower/include/string.hh (class String): remove String:: qualifier.
5184
5185         * buildscripts/analyse-cxx-log.py: new file. Read compile log to
5186         substitute appropriate functions.
5187
5188         * flower/include/string.hh (class String): remove to_str0 and
5189         is_empty(). S&R everywhere.
5190
5191 2006-01-23  Graham Percival  <gpermus@gmail.com>
5192
5193         * Documentation/user/basic-notation.itely: add hairpin
5194         after-linebreak tweak to commonprop.
5195
5196         * Documentation/user/putting.itely: added two new sections.
5197
5198 2006-01-23  Jan Nieuwenhuizen  <janneke@gnu.org>
5199
5200         * flower/international.cc: 
5201         * flower/include/international.hh: 
5202
5203         * flower/getopt-long.cc: 
5204         * flower/include/getopt-long.hh: Use std::string [interface].
5205         Update callers.
5206
5207         * flower/include/std-string.hh: Oops, bugfix for --disable-std-string.
5208
5209         * stepmake/stepmake/executable-rules.make: Add dependency on
5210         module libraries.
5211
5212 2006-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
5213
5214         * flower/file-path.cc: 
5215         * flower/include/file-path.hh: Use std::string [interface].
5216         Update callers.
5217
5218         * flower/direction.cc: 
5219         * flower/axis.cc: Unused.  Remove.
5220
5221         * configure.in (--enable-std-string): New option.
5222
5223         * flower/std-string.cc: 
5224         * flower/include/std-string.hh: New file.
5225
5226         * flower/file-name.cc[STD_STRING]:
5227         * flower/include/file-name.hh[STD_STRING]: Use it.  Update callers.
5228
5229 2006-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5230
5231         * scm/output-svg.scm (placebox): no GNU coding standards in SVG output. 
5232
5233         * scm/define-markup-commands.scm (with-dimensions):
5234         with-dimensions markup command.
5235
5236         * input/test/font-table.ly: use it.
5237
5238         * lily/open-type-font.cc (glyph_list): new function.
5239
5240         * lily/open-type-font-scheme.cc (LY_DEFINE): ly:otf-glyph-list function.
5241
5242         * lily/ttf.cc: remove ly:font-glyph-list scheme function
5243
5244 2006-01-22  Nicolas Sceaux  <nicolas.sceaux@free.fr>
5245
5246         * ly/music-functions-init.ly (parallelMusic): new music function
5247         for parallel music entry.
5248
5249         * scm/define-music-properties.scm (all-music-properties): new
5250         'void music property
5251
5252         * scm/music-functions.scm (ly:music-message): make public, to be
5253         used in music function definitions
5254
5255         * scm/lily-library.scm (collect-music-for-book): discard music
5256         when the 'void property is set.
5257
5258 2006-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5259
5260         * lily/ttf.cc (LY_DEFINE): store name before destroying face.
5261
5262         * mf/GNUmakefile: idem.
5263
5264         * buildscripts/mf-to-table.py (help): excise fetaXXlist.ly support.
5265
5266         * stepmake/bin/install.py (dest): Only chmod/chown just created directories
5267
5268         * Documentation/user/notation-appendices.itely (The Feta font):
5269         use it.
5270
5271         * input/test/font-table.ly: new file. Generate font table within lily.
5272
5273         * Documentation/user/notation-appendices.itely (The Feta font):
5274         use new font-table.ly file. 
5275
5276         * stepmake/stepmake/install-out-targets.make
5277         (local-install-outfiles): only create directory if
5278         $(INSTALLATION_OUT_DIR) is defined. This fixes install on Gentoo.
5279
5280 2006-01-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5281
5282         * lily/ttf.cc (LY_DEFINE): new function ly:font-glyph-list.
5283
5284         * VERSION (PACKAGE_NAME): release 2.7.28
5285
5286         * scm/framework-ps.scm (write-preamble): use it to pick exactly
5287         the right font from a Mac dfont.
5288         (write-preamble): don't forget directory, only look at files.
5289
5290         This fixes problems with TTF files in dfonts that don't match
5291         their PostScript names.
5292          
5293         * lily/ttf.cc (LY_DEFINE): ly:ttf-ps-name: new routine to extract
5294         PS name from TTF font.
5295
5296         * input/regression/tie-manual.ly: document new feature.
5297
5298         * Documentation/topdocs/NEWS.tely (Top): add tie NEWS.
5299
5300         * VERSION (MY_PATCH_LEVEL): bump to .28
5301
5302         * Documentation/user/basic-notation.itely (Ties): add tie examples
5303         refs.
5304
5305         * lily/tie-formatting-problem.cc (score_ties_configuration):
5306         symmetry penalties for outer ties.
5307
5308 2006-01-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5309
5310         * lily/tie-formatting-problem.cc (generate_configuration) 
5311         (set_manual_tie_configuration): skip non-pair manual
5312         tie-configuration, so you can set individual ties as
5313
5314           #'tie-configuration = #'((7 . 1) #t (-3 . 1))
5315
5316         * input/regression/tie-chord.ly: use generateTiePattern to
5317         simplify file.
5318
5319         * lily/tie-formatting-problem.cc (peak_around): new function.
5320         (score_configuration): use sliding criterion for staff line collisions. 
5321         (score_configuration): idem for dot collisions.
5322         (generate_configuration): use separate stem_gap for gap to stem.
5323
5324         * lily/include/tie-formatting-problem.hh (struct Tie_details):
5325         separate penalty factors for x and y distance.
5326         (struct Tie_details): separate penalties for tip and center line collisions.
5327
5328 2006-01-19 Han-Wen Nienhuys  <hanwen@xs4all.nl>
5329
5330         * lily/tie-formatting-problem.cc (generate_configuration): make
5331         large ties avoid stafflines in the horizontal section.
5332         (score_configuration): use softcoded penalties
5333         (score_aptitude): idem.
5334
5335         * lily/tie-helper.cc (from_grob): softcode tie details
5336
5337         * lily/staff-symbol-referencer.cc (on_staff_line): new function
5338
5339         * lily/staff-symbol-referencer.cc (on_line): rename from
5340         on_staffline 
5341
5342 2006-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5343
5344         * ly/music-functions-init.ly: remove duplicate tag.
5345
5346         * lily/include/*.hh: GCC 4.1 fixes.
5347
5348 006-01-16  Erlend Aasland  <erlenda@gmail.com>
5349
5350         * Documentation/user/global.itely: fix typos; @bugs -> @refbugs
5351
5352         * scm/define-music-types.scm: fix bug in desc. string
5353         for OverrideProperty
5354
5355 2006-01-15 Erik Sandberg  <mandolaerik@gmail.com>
5356
5357         * scripts/lilypond-book.py: bugfix
5358
5359         * scm/define-music-types.scm: fix typos.
5360
5361 2006-01-14  Graham Percival  <gpermus@gmail.com>
5362
5363         * Documentation/user/ basic-notation.itely, global.itely,
5364         advanced-notation.itely, instrument-notation.itely: small
5365         additions (bugs and commonly tweaked properties).
5366
5367 2006-01-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5368
5369         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): generic
5370         detection of mingw build.
5371         (MINGW_BUILD): opps.
5372
5373 2006-01-12  Jan Nieuwenhuizen  <janneke@gnu.org>
5374
5375         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): Add
5376         i686-mingw32.
5377
5378 2006-01-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5379
5380         * scm/music-functions.scm (skip->rest): add skip->rest
5381
5382 2006-01-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5383
5384         * lily/font-config.cc (init_fontconfig): call FcConfigBuildFonts()
5385         explicitly.
5386
5387         * lily/font-config-scheme.cc (LY_DEFINE): also display font and
5388         config dirs. Aids debugging. 
5389         (display_config): also display config files.
5390
5391 2006-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5392
5393         * VERSION: release 2.7.27
5394
5395         * lily/bar-line.cc (calc_bar_size): inspect staff->extent (Y_AXIS)
5396         for determining bar size.
5397
5398         * lily/staff-symbol.cc (print): place lines at distance line-positions
5399
5400         * scm/define-grob-properties.scm (all-user-grob-properties): add
5401         line-positions.
5402
5403         * lily/staff-symbol.cc (height): new function.
5404
5405         * input/regression/staff-line-positions.ly:  new file.
5406
5407 2006-01-06  Graham Percival  <gpermus@gmail.com>
5408
5409         * input/test/add-staccato.ly: remove reference to old file.
5410
5411 2006-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5412
5413         * scripts/lilypond-book.py (invokes_lilypond): allow . in path to
5414         lilypond binary too.
5415
5416 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5417
5418         * make/mutopia-rules.make (Module): use LILYPOND_BINARY
5419
5420 2006-01-06  Jan Nieuwenhuizen  <janneke@gnu.org>
5421
5422         * scripts/midi2ly.py: Bugfix: Declare datadir.
5423
5424         * make/ly-rules.make:
5425         * make/mutopia-rules.make: Use LILYPOND_BINARY (WAS: LILYPOND, but
5426         that seems to be gone). Fixes make web.
5427
5428         * The grand 2005-2006 replace.
5429
5430         * VERSION (MY_PATCH_LEVEL): Stay on .26 for now.
5431
5432 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5433
5434         * make/lilypond-vars.make: set LILYPOND_BINARY variable
5435         (LILYPOND_BOOK_LILYPOND_FLAGS): new variable
5436         LILYPOND_BOOK_LILYPOND_FLAGS to hold system dependent settings,
5437         like -dgs-font-load.
5438
5439         * Documentation/user/GNUmakefile ($(outdir)/interfaces.itexi):
5440         remove absolute path to lilypond binary.
5441         
5442 2006-01-05 Pedro Kroeger    <kroeger@pedrokroeger.net>
5443
5444         * configure.in (NCSB_DIR): fix --with-ncsb-dir option.
5445
5446 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5447
5448         * make/lilypond-vars.make: support LILYPOND_EXTERNAL_BINARY variable.
5449
5450         * mf/GNUmakefile: remove broken dvips map symlink.
5451
5452 2006-01-04  Jan Nieuwenhuizen  <janneke@gnu.org>
5453
5454         * lily/main.cc: 
5455         * configure.in: Cosmetic fixes.
5456
5457 2006-01-04  Mats Bengtsson  <mabe@s3.kth.se>
5458
5459         * Documentation/user/music-glossary.tely (Pitch names): Added
5460         Spanish pitch names and durations, thanks to Ernesto Gancedo
5461
5462 2006-01-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5463
5464         * scm/lily.scm (define-scheme-options): use quasi-quote for option
5465         init. Fixes verbose printing of .scm files.
5466
5467         * stepmake/aclocal.m4: add spaces before - options.
5468         
5469 2006-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
5470
5471         * lily/relocate.cc (setup_paths): Bugfix: do not store result
5472         of path search in local block variable.
5473
5474 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5475
5476         * configure.in (NCSB_DIR): --enable-ncsb-dir
5477         (LINK_GXX_STATICALLY): denko.
5478
5479         * mf/GNUmakefile ($(NCSB_TTFS)): NCSB_DIR iso. NCSB_PATH. 
5480
5481         * configure.in (LINK_GXX_STATICALLY): --enable-ncsb-path option. 
5482         use locate to find c059033l.pfb. 
5483         
5484 2006-01-02  Jan Nieuwenhuizen  <janneke@gnu.org>
5485
5486         * lily/tie-formatting-problem.cc
5487         (problem::generate_base_chord_configuration): Use my_round (was
5488         round).
5489
5490         * lily/source-file.cc (file::get_counts)[!HAVE_MBRTOWC]: Bugfix,
5491         do not invoke mbrtowc.
5492
5493         * lily/relocate.cc (setup_paths): Add more debugging verbosity.
5494
5495 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5496
5497         * scm/lily.scm (lilypond-all): oops. remove debugging hack.
5498
5499 2005-01-02  Heikki Junes  <hjunes@cc.hut.fi>
5500
5501         * Documentation/user/invoking.itely (svg): revise.
5502
5503 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5504
5505         * lily/lexer.ll: use sourcefilename iso. renameinput.
5506
5507 2006-01-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5508
5509         * mf/GNUmakefile ($(NCSB_TTFS)): revise rule. Create
5510         <PostScriptName>.ttf instead of c059XXXttf.
5511
5512         * lily/program-option.cc (LY_DEFINE): special support for
5513         --verbose, so it works before option init too.
5514  
5515         * mf/GNUmakefile (local-install): oops.
5516
5517         * lily/lyric-hyphen.cc (print): oops.
5518
5519         * buildscripts/pfx2ttf.fontforge: new file.
5520         
5521         * mf/GNUmakefile (NCSB_PATH): add vars for NCSB.
5522         ($(outdir)/%.ttf): new rule. 
5523
5524         * scm/define-grobs.scm (all-grob-descriptions): add font-interface
5525         to LyricHyphen.
5526
5527         * lily/lyric-hyphen.cc (print): multiply hyphen height by
5528         font-size
5529
5530 2005-12-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5531
5532         * VERSION: release 2.7.26
5533         
5534         * mf/GNUmakefile (install-fc-cache): remove old font.cache-1 files.
5535
5536 2005-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5537
5538         * lily/font-config.cc (init_fontconfig): verbosity.
5539
5540         * THANKS: add Muziekacademie Lede. 
5541
5542         * scripts/musicxml2ly.py (print_voice_definitions): new function 
5543         (print_score_setup): new function
5544         (convert): read part definition to output staves properly.
5545
5546         * python/musicxml.py (Measure.get_notes): new class. Wrap lists of
5547         Music_xml notes.
5548
5549         * python/musicexp.py (Output_printer.__init__): use _ in data
5550         members.
5551         (Output_printer.unformatted_output): new function: no formatting,
5552         but count braces.
5553         (Duration.get_length): remove isinstance() checks for
5554         Output_printer everywhere.
5555
5556         * input/regression/lyrics-bar.ly (texidoc): add
5557         Separating_line_group_engraver.
5558
5559 2005-12-29  Jan Nieuwenhuizen  <janneke@gnu.org>
5560
5561         * lily/relocate.cc (framework_relocation): New function,
5562         factored from set_relocation ().
5563         (prefix_relocation): Rename from set_relocation ().
5564         (setup_paths): Use it.
5565
5566 2005-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5567
5568         * scm/*.scm: use LEFT/RIGHT/UP/DOWN etc. iso. magical
5569         numbers. Patch by Erlend Aasland.
5570
5571 2005-12-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5572
5573         * lily/font-config.cc (init_fontconfig): print warning if cache
5574         file is not existant.
5575
5576         * lily/main.cc: don't use #ifdef but #if
5577
5578 2005-12-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5579
5580         * lily/grob-property.cc (internal_set_property): don't abort on
5581         calculation-in-progress.
5582
5583         * lily/beam.cc (get_default_dir): robustness: don't divide by zero.
5584
5585         * lily/tuplet-bracket.cc (calc_control_points): oops: typo. Read
5586         connect-to-neighbor property not connect-to-other
5587
5588         * lily/program-option.cc (LY_DEFINE): remove Protected_scm global variable.
5589         (LY_DEFINE): oops. don't forget protection.
5590
5591         * flower/parse-afm.cc (Module): strip AFM handling completely.
5592
5593         * lily/stencil-expression.cc: idem.
5594
5595         * lily/grob-interface-scheme.cc (LY_DEFINE): idem.
5596
5597         * lily/function-documentation.cc (ly_add_function_documentation):
5598         use static member iso. Protected_scm
5599
5600         * lily/main.cc: use ifdef ARGV0_RELOCATION iso. MINGW
5601
5602         * config.make.in (prefix): remove HAVE_KPATHSEA_SO
5603
5604 2005-12-27  Jan Nieuwenhuizen  <janneke@gnu.org>
5605
5606         * lily/relocate.cc (set_env_dir): New function.
5607         (set_relocation): Use it to fix setting PANGO_PREFIX.
5608
5609 2005-12-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5610
5611         * input/regression/stem-direction-context.ly: remove rest.
5612
5613         * lily/melody-engraver.cc (process_music): restart for bar lines.
5614         (acknowledge_slur): restart for slurs.
5615
5616 2005-12-27  Heikki Junes  <hjunes@cc.hut.fi>
5617
5618         * Documentation/user/invoking.itely: describe how to view SVG 
5619         output using Inkscape which replace embedded fonts with OTF fonts.
5620
5621 2005-12-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5622
5623         * lily/relocate.cc (set_relocation): set PANGO_PREFIX
5624
5625 2005-12-23  Jan Nieuwenhuizen  <janneke@gnu.org>
5626
5627         * lily/melody-engraver.cc (class Melody_engraver): Remove lying
5628         comment.
5629
5630 2005-12-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5631
5632         * VERSION (PACKAGE_NAME): release 2.7.25
5633
5634         * Documentation/topdocs/NEWS.tely (Top): document new feature.
5635
5636         * input/regression/stem-direction-context.ly: new file.
5637
5638         * lily/relocate.cc (set_relocation): add PANGO_PREFIX
5639
5640         * lily/melody-engraver.cc (acknowledge_stem): restart MelodyItem
5641         on rest.
5642
5643         * ly/engraver-init.ly: add Melody_engraver
5644
5645         * lily/beam.cc (calc_direction): use default-direction
5646         iso. get_default_direction()
5647
5648         * scm/define-grob-properties.scm (all-user-grob-properties): add
5649         default-direction property.
5650
5651         * scm/define-grobs.scm (all-grob-descriptions): add MelodyItem.
5652
5653         * lily/stem.cc (calc_default_direction): remove
5654         Stem::get_default_direction, use default-direction with callback
5655         instead.
5656
5657         * lily/melody-spanner.cc (calc_neutral_stem_direction): 
5658
5659         * lily/melody-engraver.cc: new file. Acknowledge stems for
5660         interpolated stem directions. 
5661
5662         * lily/melody-spanner.cc: new file. Interpolate stem directions.
5663
5664         * scm/define-grobs.scm (all-grob-descriptions): add MelodyItem
5665
5666         * lily/slur-configuration.cc (fit_factor): more robust check for
5667         point in curve X-extent.
5668
5669         * lily/slur.cc (outside_slur_callback): return offset_scm, not 0.
5670         (outside_slur_callback): check for 'outside avoidance.
5671
5672         * lily/slur-configuration.cc (score_extra_encompass): don't use
5673         bound->column() == avoid->column() for checking extents, as this
5674         doesn't work for accidentals. 
5675
5676         * lily/slur-engraver.cc (acknowledge_extra_object): remove
5677         DynamicText hardcoding.
5678
5679         * lily/slur-scoring.cc (enumerate_attachments): robustness: don't
5680         crash if bound stem is NULL
5681
5682         * lily/piano-pedal-performer.cc: patch by MWD for enabling piano
5683         pedals.
5684
5685 2005-12-22  Graham Percival  <gpermus@gmail.com>
5686
5687         * scm/define-markup-commands.scm: typo.  @code{\raise}
5688         => @code{\\raise}.
5689
5690         * darwin.patch: now used again, includes a
5691         required patch from fink.
5692
5693 2005-12-21  Heikki Junes  <hjunes@cc.hut.fi>
5694
5695         * po/TODO: mention gtranslator along with kbabel.
5696         * po/fi.po: update translations.
5697
5698 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5699
5700         * lily/relocate.cc (setup_paths): Bugfix.
5701
5702 2005-12-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5703
5704         * lily/slur-configuration.cc (score_extra_encompass): don't use
5705         "avoid" choice for avoid-slur.
5706
5707         * stepmake/bin/install.py (dest): don't create existing dir.
5708
5709 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5710
5711         * stepmake/bin/install.py: Remove file before copying.
5712
5713         * config.make.in: 
5714         * stepmake/aclocal.m4: Do not substitute INSTALL.
5715
5716 2005-12-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5717
5718         * GNUmakefile.in ($(tree-share-prefix)/mf-link-tree link-mf-tree):
5719         depend on link-tree.
5720
5721         * lily/relocate.cc (setup_paths): only check path for non-absolute
5722         dir without directory part.
5723
5724         * flower/file-name.cc (is_absolute):  new method.
5725         (is_absolute): check root_ too.
5726
5727 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5728
5729         * lily/relocate.cc (setup_paths) [__MINGW32__]: Comment-out broken
5730         relocation code.  Oops, don't comment out too much.
5731
5732         * stepmake/stepmake/generic-vars.make (INSTALL): Assign INSTALL_PY
5733         iso itself.
5734
5735         * lily/relocate.cc [HAVE_GETTEXT]: Include libintl.h.  Fixes mingw
5736         compile.
5737
5738 2005-12-20  Jan Nieuwenhuizen  <janneke@gnu.org>
5739
5740         * .cvsignore: Add install-sh.
5741
5742         * autogen.sh (srcdir): Typo.
5743
5744 2005-12-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5745
5746         * autogen.sh (srcdir): urg. Touch install-sh.
5747
5748         * stepmake/bin/install-sh (Module): remove.
5749
5750         * stepmake/stepmake/generic-vars.make (INSTALL): add $(INSTALL).
5751
5752         * lily/include/relocate.hh: new file.
5753
5754         * lily/relocate.cc: new file. Contain relocation logic.
5755
5756         * lily/main.cc (setup_paths): fix: LILYPOND_RELOCATE_PREFIX.
5757         (main): read LILYPOND_VERBOSE as the first thing.
5758
5759         * stepmake/aclocal.m4: remove INSTALL variable.
5760
5761         * GNUmakefile.in ($(tree-share-prefix)/mf-link-tree link-mf-tree):
5762         separate target for making font symlinks.
5763         (documentation-dir): use $(if $(findstring )) for switching off
5764         Documentation.
5765
5766         * stepmake/stepmake/help2man-vars.make (OUT_DIST_FILES): only do
5767         something if DOCUMENTATION is no.
5768
5769 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5770
5771         * VERSION: release 2.7.24
5772
5773         * lily/script-column-engraver.cc (stop_translation_timestep):
5774         delay adding to script-column.
5775
5776         * lily/tuplet-bracket.cc (print): suicide if no control-points. 
5777
5778         * python/convertrules.py (conv): rule for number-visibility
5779
5780         * lily/slur-configuration.cc (score_extra_encompass): different
5781         distance measure for avoid and inside avoidance.
5782         (score_extra_encompass): use 1/(distance+eps) as penalty.
5783
5784         * lily/slur-scoring.cc (generate_avoid_offsets): use 'inside
5785         encompass objects for generating slur curves.
5786
5787         * lily/slur.cc: use details iso. slur-details property.
5788
5789         * input/regression/slur-tuplet.ly: new file.
5790
5791         * lily/slur-engraver.cc (acknowledge_tuplet_number): new function.  
5792
5793         * flower/include/offset.hh (class Offset): new operator /=
5794
5795         * lily/tuplet-number.cc (print): new file, new interface.
5796
5797         * scm/define-grob-properties.scm (all-user-grob-properties):
5798         remove number-visibility property.
5799
5800         * lily/tuplet-bracket.cc (calc_control_points): new function
5801         (calc_connect_to_neighbors): new function.
5802         (print): remove text handling for tuplet numberdef.
5803
5804         * lily/tuplet-engraver.cc (struct Tuplet_description): create
5805         TupletNumbers too. 
5806
5807         * lily/lily-guile.cc (robust_scm2booldrul): new function
5808
5809         * scm/define-grobs.scm (all-grob-descriptions): new grob TupletNumber
5810
5811         * lily/tuplet-bracket.cc (calc_position_and_height): use
5812         staff-padding to control whether tuplet brackets are over staves.
5813
5814         * lily/grob.cc (suicide): clear dim_caches_.
5815
5816         * lily/dimension-cache.cc (clear): new function.
5817
5818         * lily/grob.cc (extent): swap order of min-extent and extent
5819         calculations. This fixes hara kiri staves. 
5820
5821 2005-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
5822
5823         * lily/main.cc: Nitpick: relocation is not based on path, but on
5824         directory (location).
5825
5826 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5827
5828         * lily/main.cc (setup_paths): read LILYPOND_RELOCATE_PREFIX
5829
5830         * stepmake/stepmake/install-targets.make (local-uninstall): idem.
5831
5832         * stepmake/stepmake/install-out-targets.make (local-install-outfiles): idem.
5833
5834         * stepmake/stepmake/help2man-targets.make (install-help2man): idem.
5835
5836         * stepmake/stepmake/generic-vars.make (Module): idem.
5837
5838         * stepmake/stepmake/executable-targets.make (default): use it.
5839
5840         * stepmake/bin/install.py (create_dir): new file. Replace install-sh.
5841
5842         * make/GNUmakefile: don't install make rules.
5843
5844         * lily/main.cc (setup_paths): don't inspect $PATH for argv0 with
5845         slashes.
5846         (prepend_env_path): more verbosity.
5847
5848 2005-12-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5849
5850         * GNUmakefile.in: add dir argument for find command.
5851
5852         * lily/parser.yy (bass_figure): set_spot() for bass figures. This
5853         fixes weird line numbers for point & click.
5854
5855         * lily/source-file.cc (get_counts): init line/column/char counts.
5856
5857 2005-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5858
5859         * lily/main.cc: remove ARGV0_RELOCATION, instead use --relocate.
5860
5861 2005-12-16  Graham Percival  <gpermus@gmail.com>
5862
5863         * Documentation/user/basic-notation.itely, advanced-notation.itely:
5864         minor fixes from Fredric.  Thanks!
5865
5866 2005-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5867
5868         * ly/music-functions-init.ly: add \bar and \clef music function 
5869
5870         * lily/lily-lexer.cc: idem.
5871
5872         * lily/parser.yy (FIXME): remove BAR and CLEF.
5873
5874 2005-12-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5875
5876         * Documentation/topdocs/NEWS.tely (Top): doc string argument change.
5877
5878         * lily/parser.yy (Generic_prefix_music_scm): allow strings as
5879         function arguments too
5880
5881         * lily/main.cc (set_relocation): new function.
5882
5883         * scripts/musicxml2ly.py (convert): add \version
5884
5885         * lily/tie.cc: remove get_default_attachments()
5886
5887         * VERSION (PACKAGE_NAME): release 2.7.23
5888         
5889         * lily/chord-tremolo-engraver.cc (acknowledge_stem): use
5890         ultimate_music_cause(). This fixes core dumps in unfold-all-repeats.ly
5891
5892         * Documentation/topdocs/NEWS.tely (Top): document new feature.
5893
5894         * lily/tie-formatting-problem.cc (score_ties): new function
5895         (get_variations): new function. Try flipping dirs for collisions.
5896         (generate_optimal_chord_configuration): new function. 1-opt search
5897         for better configuration.
5898
5899         * lily/tie-configuration.cc: new file.
5900
5901         * lily/tie.cc: junk Tie::get_configuration()
5902
5903         * lily/tie-formatting-problem.cc (score_ties_aptitude): new function.
5904         (score_ties_configuration): new function.
5905         (generate_ties_configuration): new function.
5906         (generate_base_chord_configuration): new function.
5907         (set_ties_config_standard_directions): Move body from tie-column-format.cc 
5908         (set_manual_tie_configuration): Move body from tie-column-format.cc 
5909
5910         * input/regression/tie-dot.ly: new file.
5911
5912         * lily/tie-formatting-problem.cc (score_configuration): score
5913         tie/dot collisions.
5914
5915         * lily/tie-helper.cc (get_transformed_bezier): new function
5916
5917         * Documentation/topdocs/NEWS.tely (Top): strip out-www.
5918
5919         * stepmake/stepmake/python-module-vars.make (SHARED_FLAGS): use
5920         -undefined suppress iso. -framework Python 
5921
5922         * scm/define-grobs.scm (all-grob-descriptions): set
5923         springs-and-rods (thanks Joe Neeman!)
5924
5925 2005-12-12  Nicolas Sceaux  <nicolas.sceaux@free.fr>
5926
5927         * input/no-notation/display-lily-tests.ly (test): 
5928         * scm/display-lily.scm (tag->lily-string): the syntax for tags has
5929         changed from \tag #'(a b) to \tag #'a \tag #'b
5930
5931 2005-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5932
5933         * Documentation/topdocs/NEWS.tely: strip out-www.
5934
5935         * lily/include/grob-interface.hh: include lily-guile.hh not libguile.h
5936
5937         * config.make.in (AR): add AR and RANLIB
5938
5939         * flower/libc-extension.cc: include cassert
5940
5941         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): more robust
5942         darwin check.
5943
5944 2005-12-11  Graham Percival  <gpermus@gmail.com>
5945
5946         * stepmake/stepmake/generic-vars.make: define DARWIN_BUILD.
5947
5948         * stepmake/stepmake/python-modules-vars.make: define
5949         SHARED_FLAGS for OSX.  Thanks Johannes Schindelin!
5950
5951         * THANKS: added Johannes Schindelin.
5952
5953 2005-12-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5954
5955         * python/midi.c (pymidi_parse): use memcmp() iso. strcmp().
5956
5957         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
5958         Span_arpeggio_engraver, add Tweak_engraver to Score context. 
5959
5960         * lily/parser.yy: reorganize file layout.
5961
5962         * ly/music-functions-init.ly: add tweak music function.
5963
5964         * lily/grob-info.cc (ultimate_music_cause): new function:
5965         recursively lookup causes. 
5966
5967         * lily/parser.yy (chord_body_element): allow music functions for
5968         post-events, allow music functions for chord elements. 
5969  
5970         * lily/font-config-scheme.cc (display_fontset): add cast.
5971
5972         * python/convertrules.py (FatalConversionError.sub_syms): \tag
5973         #'(a b) -> \tag #'a \tag #'b rule.
5974
5975         * python/musicexp.py (Output_printer.dump_version): new function
5976
5977 2005-12-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5978
5979         * lily/parser.yy (FIXME): remove \tag
5980         (FIXME): remove tag_music() function.
5981
5982         * lily/lily-lexer.cc: remove \tag
5983
5984         * ly/music-functions-init.ly: define music-function "tag"
5985
5986         * lily/parser.yy (chord_body_element): allow tags in chord bodies.
5987
5988 2005-12-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5989
5990         * VERSION (PATCH_LEVEL): release 2.7.22
5991
5992         * input/regression/lyric-hyphen-retain.ly: renew.
5993
5994         * scm/define-grobs.scm (all-grob-descriptions): add LyricSpace
5995         grob
5996
5997         * lily/lyric-hyphen.cc (set_spacing_rods): use minimum-distance
5998         iso. minimum-length property for rods.
5999
6000         * lily/hyphen-engraver.cc (acknowledge_lyric_syllable): create
6001         LyricSpace item to keep lyrics spaced apart.
6002
6003         * ly/engraver-init.ly: remove Separating_line_group_engraver
6004
6005         * Documentation/user/music-glossary.tely: do setfilename before
6006         music-glossary.
6007
6008 2005-12-07  Heikki Junes  <hjunes@cc.hut.fi>
6009
6010         * Documentation/user/lilypond-book.itely: use `,´ after xref:
6011         See xref documentation, for example.
6012
6013 2005-12-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6014
6015         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): use
6016         pending_skip iso. ly_voice[-1]
6017         (main): add if __main__ for debugging.
6018
6019         * python/musicxml.py (Accidental.__init__): new class.
6020
6021         * scripts/musicxml2ly.py (progress): new function
6022         (musicxml_key_to_lily): don't barf on modeless keys.
6023         (create_skip_music): new function.
6024         (musicxml_spanner_to_lily_event): new function. Handle beams too.
6025         (musicxml_note_to_lily_main_event): new function.
6026
6027         * python/musicexp.py (Music.__init__): add comment field.
6028         (NestedMusic.append): new routine.
6029         (SequentialMusic.print_ly): print comment.
6030         (ArpeggioEvent.ly_expression): new class
6031         (BeamEvent.ly_expression): new class
6032         (NoteEvent.__init__): support for cautionary/forced accs.
6033
6034         * lily/lookup.cc (slur): normal order for array loop.
6035
6036         * scm/framework-ps.scm (dump-stencil-as-EPS): set left X of bbox
6037         to 0.0.
6038
6039         * ly/engraver-init.ly: set bar-size, so bar-lines aren't
6040         collapsed.
6041
6042 2005-12-06 Erik Sandberg  <mandolaerik@gmail.com>
6043
6044         * scm/music-functions.scm: Make phrasing slurs follow voice direction
6045
6046         * scripts/lilypond-book.py: Introduce option
6047             --preserve-line-breaks, for usage with srcltx
6048
6049 2005-12-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6050
6051         * scm/output-lib.scm (print-circled-text-callback): draw circle
6052         around text using make-circle-markup.
6053
6054         * Documentation/user/*: strip out-www from file names.
6055
6056 2005-12-05  Heikki Junes  <hjunes@cc.hut.fi>
6057
6058         * Documentation/user/lilypond.tely (direntry): remove empty lines;
6059         fixes invalid info entry issue with makeinfo 4.8 in debian sid.
6060
6061 2005-12-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6062
6063         * Documentation/user/GNUmakefile: idem.
6064
6065         * Documentation/user/macros.itexi: strip out-www
6066
6067         * python/rational.py: python 2.3 compat.
6068
6069         * VERSION (PATCH_LEVEL): release 2.7.21
6070
6071         * scripts/musicxml2ly.py (NonDentedHeadingFormatter.format_headi):
6072         option formatting, lilypond style.
6073
6074         * python/musicexp.py: grab from Ikebana: a library for composing
6075         ly music expressions. 
6076         (Output_printer): class for advanced .ly printing.
6077         (eg. tupletting) 
6078
6079         * python/musicxml.py: new file. Read MusicXML MiniDOM tree, and
6080         convert to pythonesque structure.
6081
6082         * python/rational.py: PD rational number class.
6083
6084         * Documentation/user/converters.itely (Invoking musicxml2ly):  new node.
6085
6086 2005-12-04  Erik Sandberg  <mandolaerik@gmail.com>
6087
6088         * lily/part-combine-iterator.cc: Minor bugfix
6089         
6090         * THANKS: Update bughunters
6091
6092 2005-12-02  Werner Lemberg  <wl@gnu.org>
6093
6094         * mf/README: Document process for proper mf2pt1 conversion.
6095
6096         * mf/feta-beugel.mf (draw_brace): Fix path to assure clean
6097         overlapping.
6098
6099         * mf/feta-harmonica.mf: Removed.  Unused.
6100
6101 2005-12-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6102
6103         * scripts/lilypond-book.py (do_file): fix thinkos.
6104
6105 2005-12-01  Jan Nieuwenhuizen  <janneke@gnu.org>
6106
6107         * lily/GNUmakefile ($(outdir)/FlexLexer.h):
6108         ($(outdir)/parser.cc): 
6109         ($(outdir)/lexer.cc): Bugfix: depend on config.h.
6110
6111 2005-11-30  Pedro Kröger  <kroeger@pedrokroeger.net>
6112
6113         * ly/titling-init.ly (tagline): it should be a space between
6114         "Music engraving by LilyPond" and the version number.
6115
6116 2005-12-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6117
6118         * VERSION (PACKAGE_NAME): release 2.7.20
6119
6120 2005-11-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6121
6122         * scm/define-markup-commands.scm (pad-to-box): new markup command.
6123
6124         * scm/define-grobs.scm (all-grob-descriptions): set thickness to
6125         1.0.
6126         (all-grob-descriptions): don't shift RehearsalMark arbitrarily.
6127
6128 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6129
6130         * configure.in (LINK_GXX_STATICALLY): remove kpathsea checks.
6131
6132         * kpath-guile/: remove directory
6133
6134         * scm/kpathsea.scm (ly:kpathsea-expand-variable): new
6135         file. Encapsulate kpathsea using commandline tools.
6136
6137         * lily/all-font-metrics.cc (kpathsea_find_file): use (scm
6138         kpathsea) module.
6139
6140 2005-11-29  Mats Bengtsson  <mabe@s3.kth.se>
6141
6142         * Documentation/user/advanced-notation.itely (Setting automatic
6143         beam behavior): Correct a few typos. Thanks to David Bobroff.
6144
6145         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use
6146         \usepackage instead of \RequirePackage. Thanks to Bernard Hurley.
6147
6148 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6149
6150         * scripts/*.py: gmane address for bugs.
6151
6152 2005-11-28 Pal Benko <benkop@freestart.hu>
6153         
6154         * make/ly-rules.make: add -f switch to mv
6155
6156         * scm/output-libs.scm: add new bar symbol "." for punctus divisionis
6157
6158         * lily/bar-line.cc: interpret it
6159
6160 2005-11-28  Jan Nieuwenhuizen  <janneke@gnu.org>
6161
6162         * configure.in (--disable-documentation): New switch.
6163
6164         * GNUmakefile.in: Use it.
6165
6166         * stepmake/aclocal.m4: Use AC_ARG_ENABLE for kpatsea.
6167
6168 2005-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6169
6170         * scripts/lilypond-book.py (do_file): search chunks for
6171         \\begin{document}
6172
6173         * GNUmakefile.in: add copy step in between so we can lose the
6174         out-www directories.
6175
6176 2005-11-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6177
6178         * lily/pango-font.cc (pango_item_string_stencil): put
6179         geometry.width into glyph-string too.
6180
6181 2005-11-26  Nicolas Sceaux  <nicolas.sceaux@free.fr>
6182
6183         * scm/define-music-display-methods.scm (RevertProperty):
6184         (OverrideProperty): Use grob-property-path property, a list of
6185         symbols, instead of grob-property, which used to be a single
6186         symbol.
6187         (BassFigureEvent): a figure can be a plain number, not necessarily a
6188         markup.
6189
6190 2005-11-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6191
6192         * VERSION: release 2.7.19
6193         
6194         * lily/figured-bass-engraver.cc (process_music): check
6195         figuredBassCenterContinuations first.
6196
6197         * scm/translation-functions.scm (format-bass-figure): make double
6198         sharp larger. 
6199
6200         * lily/mark-engraver.cc: read rehearsalMarkAlignSymbol to
6201         determine X-parent.
6202
6203         * lily/system-start-delimiter-engraver.cc: move from
6204         Nested_system_start_delimiter_engraver, rename
6205         Nested_system_start_delimiter_engraver ->
6206         System_start_delimiter_engraver.
6207
6208         * lily/nested-system-start-delimiter-engraver.cc (from_list): read
6209         bracket type from hierarchy.
6210
6211 2005-11-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6212
6213         * lily/rest.cc (y_offset_callback): read staff-position.
6214
6215         * scm/define-grob-properties.scm (all-user-grob-properties): don't
6216         mark after-line-breaking-callback as internal.
6217
6218         * lily/self-aligment-interface.cc: remove self-[XY]-offset.
6219
6220 2005-11-25  Werner Lemberg  <wl@gnu.org>
6221
6222         * mf/feta-banier.mf ("d3"): Make `flare' equal to `staff_space'.
6223
6224 2005-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6225
6226         * stepmake/bin/add-html-footer.py (do_file): add google
6227
6228         * lily/staff-symbol-engraver.cc (process_music): bugfix: stop
6229         staff if first_start_ is true.
6230
6231 2005-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6232
6233         * scripts/midi2ly.py (split_track): add __repr__ members.
6234         (track_first_item): only return Item if not None. This fixes a
6235         problem when dumping a track that starts with an empty channel.
6236
6237         * python/midi.c: doc module.
6238
6239 2005-11-22  Mats Bengtsson  <mabe@s3.kth.se>
6240
6241         * Documentation/user/global.itely (Creating MIDI files): Fix
6242         compilation problem.
6243
6244 2005-11-22  Graham Percival  <gpermus@gmail.com>
6245
6246         * Documentation/user/basic-notation.itely: clarify dynamic
6247         padding text.
6248
6249         * Documentation/user/advanced-notation.itely: add unicode
6250         escape control example, whatever that is.  :)
6251
6252         * Documentation/user/global.itely: added "removing dynamics
6253         from MIDI" code.
6254
6255 2005-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6256
6257         * VERSION (PATCH_LEVEL): release 2.7.18
6258
6259         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): replace
6260         System_start_delimiter_engraver by
6261         Nested_system_start_delimiter_engraver.
6262
6263         * lily/nested-system-start-delimiter-engraver.cc (struct
6264         Bracket_nesting_node): new class.
6265         (struct Bracket_nesting_group): new class
6266         (struct Bracket_nesting_staff): new class.
6267         (process_music): create hierarchy of grobs. This allows separate
6268         tuning of different SSDs. 
6269
6270         * scm/define-grobs.scm (all-grob-descriptions): new Grob SystemStartSquare
6271         (all-grob-descriptions): remove old NestedSystemStartDelimiter.
6272
6273 2005-11-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6274
6275         * lily/side-position-interface.cc (aligned_side): multiply
6276         staff_radius by 2.
6277
6278         * lily/script-engraver.cc (make_script_from_event): allow setting
6279         values to '()
6280
6281 2005-11-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6282
6283         * lily/system-start-delimiter.cc (line_bracket): don't shorten height.
6284
6285         * scm/define-grobs.scm (all-grob-descriptions): new grob
6286         NestedSystemStartDelimiter.
6287
6288         * input/regression/system-start-heavy-bar.ly: new file.
6289
6290         * lily/nested-system-start-delimiter-engraver.cc: new file.
6291
6292         * lily/nested-system-start-delimiter.cc: new file.
6293
6294         * input/regression/system-start-nesting.ly: new file.
6295
6296         * scm/define-grobs.scm (all-grob-descriptions): use X side
6297         positioning for positioning braces for nested contexts.
6298
6299         * lily/system-start-delimiter.cc (print): don't divide extent by
6300         staff_space.
6301         (print): use style iso. glyph.
6302         (staff_bracket): translate glyph inside routine already.
6303
6304 2005-11-18  Michael Welsh Duggan <md5i@cs.cmu.edu>
6305
6306         * lily/vaticana-ligature-engraver.cc: fixed 2 typos in glyph
6307         names.
6308
6309 2005-11-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6310
6311         * scm/define-context-properties.scm
6312         (all-user-translation-properties): rename figuredBassFormatter
6313         from newFiguredBassFormatter.
6314
6315         * scm/define-grobs.scm (all-grob-descriptions): move from NewBassFigure
6316
6317         * lily/figured-bass-engraver.cc: move from new-figured-bass-engraver.cc
6318
6319         * lily/stem.cc (calc_stem_info): trigger beaming calculation.
6320
6321         * lily/beam.cc (calc_beaming): new function.
6322         (calc_shorten): new function.
6323
6324         * THANKS: add Edward Neeman.
6325
6326         * input/regression/accidental-clef-change.ly: new file.
6327
6328         * lily/note-collision.cc (check_meshing_chords): don't merge fa heads.
6329
6330         * scm/define-grobs.scm (all-grob-descriptions): add Y-offset property.
6331
6332         * lily/clef-engraver.cc (inspect_clef_properties): reset
6333         localKeySignature for clef changes.
6334
6335 2005-11-17  Mats Bengtsson  <mabe@s3.kth.se>
6336
6337         * python/midi.c: PyMIDINIT_FUNC isn't defined in Python < 2.3 
6338         add dummy definition that works in Linux and add information in
6339         INSTALL.texi on the specific Python requirements for Cygwin/Mingw.
6340
6341         * Documentation/user/changing-defaults.itely (Modifying context
6342         plug-ins): Add index for \with.
6343
6344         * Documentation/user/music-glossary.tely (dal segno): Updated
6345         example to version >=2.6.
6346
6347 2005-11-16  Mats Bengtsson  <mabe@s3.kth.se>
6348
6349         * Documentation/user/instrument-notation.itely (Printing chord
6350         names): Reorder \chordmode and \repeat in one example.
6351
6352 2005-11-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6353
6354         * VERSION: release 2.7.17
6355         
6356         * Documentation/topdocs/NEWS.tely (Top): add note about
6357         refactoring.
6358
6359         * lily/tie-formatting-problem.cc (find_optimal_tie_configuration):
6360         new function. Search region of 3 positions for best tie.
6361         (score_configuration): new function.
6362         (score_aptitude): new function.
6363         (generate_configuration): new function.
6364         (get_configuration): new function.
6365         (Tie_formatting_problem): new function
6366
6367         * input/regression/page-top-space.ly: a6 for page-top-space demo. 
6368
6369         * stepmake/aclocal.m4: use $(if ) for config-FOOF.make
6370
6371         * THANKS: add Eduardo Vieira & Ralph Little
6372
6373         * mf/feta-bolletjes.mf (solfa_quarter_width): make solfa heads
6374         narrower.
6375
6376         * lily/include/tie-formatting-problem.hh (class
6377         Tie_formatting_problem): add Tie_details to
6378         Tie_formatting_problem. Update calling conventions.
6379
6380         * stepmake/aclocal.m4: oops. Include $CONFIGFILE.make, not
6381         config.make.
6382
6383         * Documentation/user/lilypond.tely: remove musedata2ly entry.
6384
6385 2005-11-16  Jürgen Reuter  <reuter@ipd.uka.de>
6386
6387         * lily/ligature-engraver.cc, lily/include/ligature-engraver.hh,
6388         scm/define-context-properties.scm: Maintenance bugfix: make
6389         ligature brackets work again by removing obsolete ligature
6390         primitive callback push/pop.
6391
6392         * scm/define-grobs.scm (LigatureBracket): Maintenance bugfix: do
6393         not call Tuplet_bracket::calc_direction.  Removed obsolete gap
6394         value.
6395
6396 2005-11-15  Jan Nieuwenhuizen  <janneke@gnu.org>
6397
6398         * stepmake/aclocal.m4 (depth): Explain why absolute directory is
6399         used and do not call it a path.
6400         (FLEXLEXER_FILE): Rename from FLEXLEXER_PATH and add file name.
6401
6402 2005-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6403
6404         * lily/include/tie-formatting-problem.hh (class
6405         Tie_formatting_problem): new file.
6406
6407         * lily/tie-formatting-problem.cc (common_x_refpoint): new file.
6408
6409         * Documentation/misc/ChangeLog-2.3:  new file.
6410
6411         * lily/audio-staff.cc (output): degarianize.
6412
6413 2005-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
6414
6415         * stepmake/stepmake/python-module-rules.make ($(outdir)/%.pyc):
6416         Unset PYTHONOPTIMIZE.  Fixes install if set.
6417
6418 2005-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6419
6420         * python/convertrules.py (conv): add warning about drums. 
6421
6422         * make/stepmake.make: include toplevel-version.make after config.make.
6423
6424         * stepmake/aclocal.m4 (depth): make sure $srcdir is absolute.
6425         also allow python2.4
6426
6427         * config.make.in (configure-srcdir): remove GXX GCC vars.
6428
6429         * stepmake/aclocal.m4: don't do non-srcdir build with
6430         symlinks. Use inclusion, so the src directory name can be changed.
6431
6432 2005-11-13  Jan Nieuwenhuizen  <janneke@gnu.org>
6433
6434         * make/mutopia-vars.make:
6435         * make/ly-vars.make: Use src-wildcard iso wildcard for source
6436         files.
6437
6438 2005-11-13  Werner Lemberg  <wl@gnu.org>
6439
6440         * mf/feta-arrow.mf: For all glyphs, don't mirror `currentpicture'
6441         but the affected path.  This ensures that the (overlapping) outlines
6442         have the same direction, which is a necessary prerequisite for
6443         FontForge's algorithm to remove overlaps.
6444         Formatting.
6445
6446         * mf/feta-haak.mf: Formatting.
6447         (draw_bracket): Slightly modify outline to avoid an unnecessary
6448         corner.
6449         Don't use ad-hoc values for `leave_angle' and `tip_angle' but derive
6450         them from the affected paths.
6451
6452 2005-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6453
6454         * mf/README: remove xpm / accordion notes.
6455
6456         * lily/tie-column-format.cc (set_chord_outline): add dots into
6457         skyline extents. This fixes tie formatting if the left head has dots.
6458
6459         * lily/tie.cc (get_configuration): only shift tie by a whole staff
6460         space inside the staff.
6461         (get_configuration): shift another position if necessary in case
6462         of left head tie  
6463
6464 2005-11-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6465
6466         * stepmake/stepmake/texinfo-vars.make (GENERATE_OMF): use
6467         buildscript-dir iso. $(depth)/buildscripts.
6468
6469         * tex/GNUmakefile (local-uninstall): remove
6470         music-drawing-routines.ps juggling.
6471
6472         * stepmake/stepmake/install-targets.make (local-install-files):
6473         prepend src-dir to install targets.
6474
6475         * lily/system-start-delimiter-engraver.cc
6476         (acknowledge_system_start_delimiter): use
6477         add_offset_callback(). This fixes translation of nested
6478         staffgroups.
6479
6480         * lily/grob-closure.cc (add_offset_callback): only encaps in
6481         simple_closure if it's a procedure.
6482         
6483         * lily/span-bar.cc (calc_glyph_name): read glyph-name, not glyph
6484         from bar-line.
6485
6486         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
6487         remove-empty where pertinent.
6488
6489 2005-11-12  Graham Percival  <gpermus@gmail.com>
6490
6491         * Documentation/user/instrument-notation.itely: added
6492         Cameron Horsburgh's multiple stanzas docs.  Thanks!
6493
6494 2005-11-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6495
6496         * lily/GNUmakefile
6497         ($(top-build-dir)/Documentation/pictures/$(outbase)/lilypond.ico):
6498         make picture in builddir, not srcdir.
6499
6500 2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6501
6502         * VERSION: release 2.7.16
6503         
6504         * scripts/lilypond-book.py (main): use commands.mkarg () to quote
6505         shell arguments. 
6506
6507 2005-11-10  Mats Bengtsson  <mabe@s3.kth.se>
6508
6509         * Documentation/user/examples.itely (Piano templates): Minor
6510         modification to the Piano centered lyrics example.
6511
6512 2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6513
6514         * scripts/lilypond-invoke-editor.scm (run-browser): look at
6515         $BROWSER.
6516
6517         * Documentation/user/point-and-click.itely: simplify p&c
6518         instruction: don't configure firefox. Put lilypond-invoke-editor
6519         in front of the browser.
6520
6521         * scripts/lilypond-invoke-editor.scm (run-editor): new function.
6522         (run-browser): new function.
6523
6524         * lily/parser.yy (Lily_lexer): recognize Book
6525
6526         * lily/book.cc (clone): new function
6527
6528         * lily/parser.yy (book_body): allow BOOK_IDENTIFIER.
6529
6530 2005-11-10  Jürgen Reuter  <reuter@ipd.uka.de>
6531
6532         * lily/vaticana-ligature.cc, lily/vaticana-ligature-engraver.cc:
6533         Maintenance bugfix: reduce number of font related warnings by
6534         updating naming conventions for glyph-name.
6535
6536 2005-11-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6537
6538         * scm/define-grobs.scm (all-grob-descriptions): add
6539         rhythmic-grob-interface to TabNoteHead.
6540
6541         * scm/layout-beam.scm (check-quant-callbacks): remove
6542         set_stem_lengths()
6543
6544 2005-11-08  Jürgen Reuter  <reuter@ipd.uka.de>
6545
6546         * ly/gregorian-init.ly (divisiones): Maintenance bugfix: vertical
6547         alignment of centered divisiones.
6548
6549         * scm/scripts.scm (articulations): Maintenance bugfix:
6550         follow-into-staff -> quantize-position.
6551
6552         * lily/vaticana-ligature-engraver.cc (transform_heads): Bugfix:
6553         plica head in porrectus deminutus.
6554
6555 2005-11-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6556
6557         * make/lilypond.fedora.spec.in (Group): add %clean section.
6558
6559         * lily/tuplet-bracket.cc (print): change check: remove bracket if
6560         less then 1/5th of total length.  
6561         (print): use gap too.  Fixes tupletUp-single-bracket.ly
6562
6563         * scm/music-functions.scm (glue-mm-rest-texts): also put other
6564         events into EventChord. This fixes textspanners on mm rests. Fixes
6565         spanner-rest.ly
6566
6567         * lily/side-position-interface.cc (get_axis): read side-axis
6568         (set_axis): set side-axis.
6569
6570         * scm/define-grobs.scm (all-grob-descriptions): add side-axis
6571         properties everywhere.
6572
6573         * lily/spacing-spanner.cc (breakable_column_spacing): add
6574         average-spacing-wishes. Take maximum if not set.
6575         (musical_column_spacing): idem. Fixes: spacing-keysig-note.ly
6576
6577         * scm/define-grobs.scm (all-grob-descriptions): add
6578         average-spacing-wishes.
6579
6580         * lily/grob-closure.cc (add_offset_callback): bugfix: properly add
6581         offset callbacks. This fixes alignment for Fingering objects.
6582
6583         * scm/define-grobs.scm (all-grob-descriptions): tiny bit less
6584         space for key - timesig combination. 
6585
6586         * input/regression/script-stem-tremolo.ly (Module): new file.
6587
6588         * scm/define-grobs.scm (all-grob-descriptions): decrease distance
6589         to key sig.
6590
6591         * lily/dynamic-engraver.cc (acknowledge_stem_tremolo): new function.
6592         Fixes: c-tremolo-script.ly.
6593         
6594         * lily/text-engraver.cc (acknowledge_stem_tremolo): new function.
6595
6596         * lily/script-engraver.cc (acknowledge_stem_tremolo): new function.
6597         
6598         * scm/define-grobs.scm (all-grob-descriptions): remove
6599         self-X-offset. Fixes alignment of octavate-8.
6600
6601         * scripts/lilypond-book.py (datadir): look in
6602         LILYPONDPREFIX/share/lilypond/current/
6603
6604         * GNUmakefile.in: symlink current to <VERSION>. 
6605
6606 2005-11-07  Pedro Kroger  <kroeger@pedrokroeger.net>
6607
6608         * lily/main.cc: eps listed as a backend.
6609
6610 2005-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6611
6612         * scm/lily-library.scm (print-music-as-book): quote $defaultpaper.
6613
6614 2005-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6615
6616         * lily/include/score.hh (class Score): remove texts_ member.
6617
6618         * lily/beam.cc (set_stem_lengths): force direction callback.
6619         (print): read quantized-positions, so we can force
6620         Beam::set_stem_lengths to occur.
6621         (rest_collision_callback): use common X parent. 
6622
6623 2005-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
6624
6625         * flower/file-path.cc (find): Bugfix: Return name of file found.
6626
6627         * lily/main.cc (setup_paths): Bugfix for argv0 logic.
6628         (setup_paths)[__CYGWIN__ || __MINGW32__]: Normalize argv0.
6629         (setup_paths)[__MINGW32__]: Also look for argv0 + .exe.
6630
6631 2005-11-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6632
6633         * flower/offset.cc: idem.
6634
6635         * mf/*.mf: update email address.
6636
6637         * lily/font-config-scheme.cc:  new file.
6638
6639         * GNUmakefile.in (SUBDIRS): remove debian/ directory.
6640
6641         * lily/*:  cs.uu.nl -> xs4all.nl
6642
6643         * VERSION (PATCH_LEVEL): release 2.7.15
6644
6645         * make/lilypond.mandrake.spec.in (Module): remove Mandrake & Suse
6646         spec files.
6647
6648         * make/lilypond.fedora.spec.in: add %{libdir}/lilypond/
6649
6650 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6651
6652         * GNUmakefile.in: bugfix: encapsulate mkdir && cd in parens.   
6653
6654         * lily/staff-performer.cc (process_music): add audio
6655         elements. This makes MIDI instrument changes work once again.
6656
6657         * lily/main.cc (LY_DEFINE): add gmane address.
6658
6659         * lily/beam.cc: remove calc_positions()
6660
6661         * lily/include/grob.hh (class Grob): move pscore, dim_cache_,
6662         original_ in private scope.
6663         (class Grob): drop pscore_ pointer, change to output_def pointer.
6664         (class Grob): cleanup class definition.
6665
6666         * ly/spanners-init.ly (assertBeamQuant): use make-simple-closure.
6667
6668 2005-11-02  Jan Nieuwenhuizen  <janneke@gnu.org>
6669
6670         * lily/main.cc (setup_paths)[__MINGW32__]: Do not assume argv0 is
6671         absolute.  Better diagnostics.
6672
6673         * GNUmakefile.in: Add bin/ to tree and populate with some links.
6674         This makes lilypond run from the build directory using argv0
6675         relocation (without any --prefix or LILYPONDPREFIX setting).
6676
6677 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6678
6679         * Documentation/topdocs/NEWS.tely (Top): document new backend design.
6680
6681         * scm/define-grobs.scm: purge self-[XY]-offset variables, replace
6682         with simple-closure.
6683
6684         * lily/self-aligment-interface.cc (set_align_self): new function
6685         (set_center_parent): new function.
6686
6687         * lily/side-position-interface.cc (set_axis): new function.
6688
6689         * lily/new-fingering-engraver.cc (position_scripts): use drul for
6690         generic code. 
6691
6692         * scm/define-grob-properties.scm (all-user-grob-properties):
6693         remove [XY]-offset-callbacks add [YX]-offset
6694         
6695 2005-11-02  Mats Bengtsson  <mabe@s3.kth.se>
6696
6697         * scm/define-grobs.scm (all-grob-descriptions): Added space-alist
6698         entry for time signatures after breathing signs. Bug report by
6699         Scott Russell.
6700
6701 2005-11-01  Jan Nieuwenhuizen  <janneke@gnu.org>
6702
6703         * lily/main.cc (setup_paths)[!__MINGW32__]: Bugfix: if argv0 is
6704         not absolute, make it absolute using PATH.
6705
6706 2005-10-28  Jan Nieuwenhuizen  <janneke@gnu.org>
6707
6708         * python/midi.c (initmidi): Fix type for mingw.
6709
6710 2005-10-27  Jan Nieuwenhuizen  <janneke@gnu.org>
6711
6712         * stepmake/stepmake/compile-vars.make (SHARED_FLAGS): Support mingw.
6713
6714         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): Detect mingw
6715         cross compiling.
6716
6717         * stepmake/aclocal.m4: Support python cross compiling.
6718
6719         * stepmake/stepmake/python-module-vars.make (SHARED_MODULE_SUFFIX):
6720         Add mingw section.
6721
6722 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6723
6724         * scm/output-lib.scm (chain-grob-member-functions): replace
6725         chained-callback.cc
6726
6727         * lily/chained-callback.cc (Module): remove file.
6728
6729         * lily/rest-collision.cc (force_shift_callback_rest): change to
6730         chained callback.
6731
6732         * lily/rest.cc (y_offset_callback): merge function of 3 callbacks. 
6733
6734         * lily/grob.cc (y_parent_positioning): remove axis argument from
6735         parent_positioning callbacks.
6736         (Grob): junk init code
6737         (get_offset): use generic property callbacks for
6738         X-offset, Y-offset. Remove Grob::{add,has}_offset_callback.
6739         (axis_parent_positioning): new function
6740         (axis_offset_symbol): new function
6741         (chain_offset_callback): new function
6742         (add_offset_callback): new function
6743
6744         * lily/beam.cc (rest_collision_callback): change signature; this
6745         is now a chained callback.
6746
6747         * lily/include/dimension-cache.hh (class Dimension_cache): remove
6748         callback administration.
6749
6750         * lily/simple-closure.cc: new file. Smob type that allows "grob
6751         member functions",
6752
6753             (ly:make-simple-closure FUNC A B)
6754
6755         is evaluated as (FUNC grob A B). This allows chaining of callbacks
6756         in various ways.
6757
6758         * lily/slur-engraver.cc (acknowledge_extra_object): use chained
6759         callbacks.
6760
6761         * lily/slur.cc (outside_slur_callback): take 2 arguments.
6762
6763         * lily/rest.cc (polyphonic_offset_callback): remove.
6764
6765         * lily/script-engraver.cc (try_music): remove bool* argument.
6766
6767         * scm/script.scm (default-script-alist): set quantize-position
6768         appropriately.
6769
6770         * lily/script-engraver.cc: remove follow_into_staff_ special coding. 
6771
6772         * lily/side-position-interface.cc (aligned_side): move staff
6773         position quantization from
6774         Side_position_interface::quantised_position().
6775         (quantised_position): remove
6776         
6777 2005-10-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6778
6779         * input/regression/beam-quant-standard.ly: reindent, set
6780         debug-beam-quanting to #t.
6781
6782         * lily/beam-concave.cc (calc_concaveness): set concaveness to
6783         10000 if this is a "hard" concave beam.
6784
6785         * lily/beam.cc (calc_least_squares_positions): change from
6786         calc_least_squares_dy
6787         (set_stem_lengths): this is now a chained callback.
6788
6789         * lily/context-property.cc (execute_general_pushpop_property):
6790         bugfix override with procedure should have effect.
6791
6792         * scm/define-grob-properties.scm (all-internal-grob-properties):
6793         remove position-callbacks.
6794
6795         * scm/define-grobs.scm (all-grob-descriptions): use
6796         ly:make-callback-chain for positions property.
6797
6798         * scm/layout-beam.scm (check-quant-callbacks): return list of
6799         chained callbacks.
6800
6801         * scm/lily.scm (type-p-name-alist): add callback-chain
6802
6803         * lily/lily-guile.cc (type_check_assignment): type check failure
6804         is warning not message.
6805
6806         * lily/grob-property.cc (try_callback): walk callback chain if
6807         appropriate.
6808
6809         * lily/chained-callback.cc: new file. new smob type.
6810
6811         * lily/lily-guile.cc (procedure_arity): new function.
6812
6813 2005-10-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6814
6815         * Documentation/topdocs/INSTALL.texi (Top): add perl flex bison.
6816
6817 2005-10-25  John Mandereau  <john.mandereau@free.fr>
6818  
6819         * Documentation/user/instrument-notation.itely (Figured bass):
6820         describe new features
6821
6822 2005-10-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6823
6824         * lily/beam.cc (calc_least_squares_dy): use property callback.
6825
6826         * lily/beam-concave.cc (calc_concaveness): use property callback.
6827
6828         * ly/paper-defaults.ly: move fixed dimensions from paper.scm 
6829
6830 2005-10-25  Jan Nieuwenhuizen  <janneke@gnu.org>
6831
6832         * HACKING: Update.
6833
6834 2005-10-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6835
6836         * scm/layout-page-layout.scm (page-headfoot): annotate
6837         pagetopspace too.
6838
6839         * scm/stencil.scm (dimension-arrows): shorten arrowed lines a bit. 
6840
6841         * scm/layout-page-layout.scm (annotate-y-interval): y-annotation
6842         doesn't take y-space.
6843
6844         * scm/paper.scm (paper-alist): fix A7 dimensions. 
6845
6846 2005-10-24  Jan Nieuwenhuizen  <janneke@gnu.org>
6847
6848         * stepmake/stepmake/generic-vars.make (DIST_FILES): Fix
6849         src-wildcard, remove $(wildcard).
6850
6851         * po/GNUmakefile (PO_FILES): 
6852         * ps/GNUmakefile (PS_FILES): 
6853         * tex/GNUmakefile (TEX_FILES): 
6854         * cygwin/GNUmakefile (POSTINSTALLS):
6855         * vim/GNUmakefile (EXTRA_DIST_FILES): Bugfix: [etags sr?] missed
6856         some wildcard calls.
6857
6858 2005-10-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6859
6860         * THANKS: add Thomas Bushnell.
6861
6862 2005-10-23  Jan Nieuwenhuizen  <janneke@gnu.org>
6863
6864         * scm/lily.scm: Remove horrendous running-from-gui? kludge.
6865         (lilypond-main): Redirect to gui-main if 'gui is set.
6866
6867         * scripts/midi2ly.py (datadir): Add libdir iso datadir to path,
6868         for alternative installations kludging s/share/lib/g
6869         LILYPONDPREFIX. 
6870
6871         * SConstruct (libdir_package_version): Define.
6872
6873         * python/SConscript: 
6874         * python/GNUmakefile (INSTALLATION_OUT_DIR): Install binary .so
6875         module in libdir.  
6876
6877 2005-10-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6878
6879         * lily/main.cc: clarify --safe.
6880
6881 2005-10-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6882
6883         * VERSION: release 2.7.14
6884         
6885         * Documentation/user/*.itely: remove minimumVerticalExtent.
6886
6887         * scm/define-grobs.scm (all-grob-descriptions): remove
6888         RemoveEmptyVerticalGroup
6889
6890         * lily/hara-kiri-engraver.cc (get_spanner): create VerticalAxisGroup.
6891
6892         * lily/include/lily-guile.hh (GUILE_ELLIPSIS): define to get clean
6893         compile on MOSX
6894
6895         * python/convertrules.py (conv): add rules.
6896
6897         * lily/grob.cc: remove is_empty()
6898
6899         * lily/grob-property.cc: remove add_to_list_property().
6900
6901         * scripts/convert-ly.py (datadir): add prefix switching hack to
6902         .py too.
6903
6904         * input/mutopia/W.A.Mozart/mozart-hrn3-defs.ily (cresc): remove
6905         space-function tweak.
6906
6907         * lily/grob.cc: remove X-extent-callback / Y-extent-callback.
6908
6909         * scm/define-grob-properties.scm (all-user-grob-properties):
6910         remove callback property.
6911
6912         * lily/include/grob.hh (class Grob): remove property_callbacks_
6913         member. Properties of procedure type are assumed to be callbacks.
6914
6915         * lily/ligature-engraver.cc (override_stencil_callback):
6916         rewrite. Use noteHeadLigaturePrimitive as source.
6917
6918         * scm/define-grob-properties.scm (all-internal-grob-properties):
6919         remove ligature-primitive-callback
6920
6921         * lily/include/dimension-cache.hh (class Dimension_cache): make
6922         class, with Grob as friend.
6923
6924         * lily/grob.cc: remove set_extent_callback(), set_extent() and
6925         has_extent_callback()
6926
6927         * scm/translation-functions.scm (format-new-bass-figure): read
6928         figuredBassPlusDirection
6929
6930         * scm/define-context-properties.scm
6931         (all-user-translation-properties): add figuredBassPlusDirection.
6932
6933         * lily/staff-spacing.cc (next_notes_correction): oops. Init wishes.
6934
6935         * lily/align-interface.cc (set_ordered): new function.
6936
6937         * lily/grob.cc (flush_extent_cache): rewrite.
6938
6939         * lily/dimension-cache.cc (Dimension_cache): cache extent as
6940         Interval pointer directly.
6941
6942         * lily/main.cc (setup_paths): insert extra / .
6943         (setup_paths): junk cff entry.
6944
6945         * lily/font-config.cc (init_fontconfig): only add type1 / otf
6946         directories.
6947
6948         * lily/axis-group-engraver.cc (finalize): remove
6949         extraVerticalExtent, minimumVerticalExtent verticalExtent.
6950
6951         * lily/grob.cc (Grob): don't set extent from ctor.
6952         (extent): use property callbacks. 
6953
6954         * lily/axis-group-interface.cc: remove set_axes() function.
6955
6956         * lily/grob-property.cc (del_property): new function.
6957
6958 2005-10-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6959
6960         * lily/font-config.cc (init_fontconfig): resurrect mf/out/ check.
6961         
6962 2005-10-20  Jan Nieuwenhuizen  <janneke@gnu.org>
6963
6964         * stepmake/stepmake/script-vars.make (PYTHON_SCRIPTS_IN): Oops.  Add.
6965
6966 2005-10-19  Jan Nieuwenhuizen  <janneke@gnu.org>
6967
6968         * mf/SConscript: Updates.
6969
6970         * lily/GNUmakefile (OUT_DIST_FILES): Bugfix.
6971
6972         * stepmake/stepmake/*:
6973         * */GNUmakefile:
6974         * config.make.in:
6975         * GNUmakefile.in:
6976         * stepmake/aclocal.m4: Friendlier --srcdir build, allowing `make'
6977         from any directory in build-dir.  Cleanups.
6978
6979         * make/srcdir.make.in: Remove.
6980
6981         * lily/main.cc (setup_paths): Fix and document build-dir hack.
6982
6983         * SConstruct (CheckYYCurrentBuffer): Use TryCompile (there is no
6984         main).
6985
6986         * lily/SConscript: Remove ttftools.
6987
6988         * SConstruct: Resurrect.
6989
6990 2005-10-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6991
6992         * lily/tuplet-bracket.cc (print): use dy iso. positions[RIGHT] for
6993         Y coordinate. 
6994
6995         * lily/paper-book.cc (add_score_title): put Paper_score title into
6996         systems_ list.
6997
6998         * scm/translation-functions.scm (format-new-bass-figure): also
6999         allow plus in combination with _
7000
7001 2005-10-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7002
7003         * VERSION: 2.7.13 released.
7004
7005         * lily/note-collision.cc (check_meshing_chords): don't wipe
7006         stencil, merely set transparent.
7007
7008         * Documentation/topdocs/NEWS.tely (Top): mention John Mandereau. 
7009         (Top): document #'callbacks.
7010         (Top): document nested \override.
7011
7012         * input/regression/figured-bass.ly: update for slash and pluses.
7013
7014         * input/regression/figured-bass-continuation-forbid.ly (Module):
7015         new file.
7016
7017         * scm/translation-functions.scm (format-new-bass-figure): use
7018         slashed-digit if diminished is set.
7019         (format-new-bass-figure): add + if 'augmented is set.
7020
7021         * scm/define-markup-commands.scm (slashed-digit): new command slashed-digit.
7022
7023         * input/test/piano-staff-distance.ly: remove file.
7024
7025         * Documentation/user/advanced-notation.itely (Formatting cue
7026         notes): use length-fraction for making stems/beams smaller.
7027
7028         * lily/parser.yy (bass_figure): accept \+ \! and / as figured bass
7029         modifications.
7030
7031         * lily/new-figured-bass-engraver.cc: new property
7032         centerFiguredBassContinuations
7033
7034         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7035         use callbacks.
7036
7037         * lily/context-property.cc (execute_general_pushpop_property):
7038         robustness checks.
7039
7040         * input/regression/override-nest.ly: new file.
7041
7042         * python/convertrules.py (FatalConversionError.subber): conversion
7043         rule for #'callbacks
7044
7045         * input/regression/override-nest.ly: new function.
7046
7047         * lily/parser.yy (music_property_def): allow \override #'a #'b =
7048         #c too. 
7049
7050         * lily/context-property.cc (lookup_nested_property): new function.
7051         (evict_from_alist): new function.
7052         (general_pushpop_property): new function.
7053         (execute_general_pushpop_property): rewrite. Support nested
7054         properties too.
7055
7056 2005-10-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7057
7058         * lily/beam.cc: use length-fraction too.
7059
7060         * scm/define-grob-properties.scm (all-user-grob-properties):
7061         remove property flag-width-function
7062         (all-user-grob-properties): remove space-function.
7063
7064         * scm/layout-beam.scm: remove flag-width-function.
7065
7066         * lily/beam.cc: remove flag-width-function
7067
7068         * scm/layout-beam.scm: remove beam dir functions.
7069
7070         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): use length-fraction.
7071
7072         * lily/stem.cc (calc_length): multiply with length_fraction. Makes
7073         for easier grace tweaks.
7074
7075         * lily/beam.cc: remove dir-function.
7076
7077         * lily/system.cc (pre_processing): use callback to trigger spacing procedures.
7078
7079         * lily/grob.cc: remove spacing-procedure.
7080
7081         * lily/note-head.cc (calc_stem_attachment): new function.
7082         (internal_print): use callback to get glyph-name.
7083
7084         * lily/grob-property.cc (get_interfaces): new function.
7085
7086         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-interfaces
7087
7088         * lily/stem.cc (calc_stem_end_position): new function.
7089         (calc_length): new function.
7090         document details for stem.
7091         remove Stem::get_direction()
7092
7093         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-set-callback! 
7094
7095         * lily/grob-property.cc (set_callback): new function.
7096
7097         * lily/script-engraver.cc (make_script_from_event): don't trigger callback.
7098
7099         * lily/item-scheme.cc: new file.
7100
7101         * lily/bar-line.cc (before_line_breaking): remove function.
7102         remove bar-size-procedure, break-glyph-function
7103
7104         * lily/clef-engraver.cc (set_glyph): use glyph iso. glyph-name
7105
7106         * lily/clef.cc (before_line_breaking): change to calc_glyph_name.
7107
7108         * lily/system-start-delimiter.cc (print): suicide from
7109         here. Remove after_line_breaking_callback.
7110
7111         * lily/script-interface.cc (calc_direction): use callback for direction.
7112
7113         * lily/side-position-interface.cc (aligned_side): don't use
7114         Side_position_interface::get_direction directly. Use callback. 
7115
7116         * lily/grob.cc (get_stencil): simplify: use callback mechanism to
7117         calculate stencil.
7118         (get_print_stencil): rename from get_stencil: create stencil with
7119         transparency, color and cause. 
7120
7121         * scm/define-grobs.scm: change print-function to stencil callback everywhere.
7122
7123         * python/convertrules.py (conv): insert temporary warning rule.
7124
7125         * lily/multi-measure-rest.cc (set_text_rods): use stencil directly.
7126
7127         * lily/grob-property.cc (try_callback): remove marker if applicable.
7128
7129         * lily/grob.cc: elucidate doc about after/before-line-breaking
7130
7131         * lily/slur-scoring.cc (enumerate_attachments): robustness fix.
7132
7133         * lily/stem.cc (height): idem.
7134
7135         * lily/stem-tremolo.cc: idem.
7136
7137         * lily/slur.cc (height): don't use get_uncached_stencil()
7138
7139         * lily/rest.cc (y_offset_callback): use offset callback
7140         iso. after-line-breaking callback.
7141
7142         * lily/grob.cc: change after/before-line-breaking-callback to
7143         after/before-line-breaking dummy properties.
7144
7145         * lily/include/grob.hh: remove Grob_status.
7146
7147         * scm/define-context-properties.scm
7148         (all-user-translation-properties): remove verticalAlignmentChildCallback
7149
7150         * lily/tuplet-bracket.cc: use positions property iso. left,right-position.
7151         (calc_direction): use callback
7152         (calc_positions): use callback.
7153
7154         * lily/tie.cc (calc_direction): use callback. Only call parent
7155         positioning for more than one tie.
7156
7157         * lily/tie-column.cc (calc_positioning_done): use callback
7158
7159         * lily/slur-scoring.cc (calc_control_points): use callback
7160
7161         * lily/slur.cc (calc_direction): use callback.
7162
7163         * lily/note-collision.cc (force_shift_callback): remove.
7164
7165         * lily/dot-column.cc (force_shift_callback): remove. Use
7166         other_axis_parent_positioning.
7167
7168         * lily/grob.cc (other_axis_parent_positioning): new function.
7169         (same_axis_parent_positioning): new function
7170
7171         * lily/align-interface.cc (alignment_callback): remove function.
7172
7173         * lily/note-collision.cc (calc_positioning_done): use callback.
7174
7175         * lily/laissez-vibrer-tie.cc (calc_control_points): use callback.
7176         (calc_direction): idem.
7177         remove print function.
7178
7179         * lily/laissez-vibrer-tie-column.cc (calc_positioning_done): use callback.
7180
7181         * lily/dot-column.cc (calc_positioning_done): use callback.
7182
7183         * lily/break-align-interface.cc (calc_positioning_done): use callback.
7184
7185         * lily/beam.cc (calc_direction): use pseudo-property for beam
7186         direction callback.
7187         (calc_positions): use callback 
7188
7189         * lily/align-interface.cc (calc_positioning_done): use
7190         callback. Fold fixed  distance and normal alignment in one function.
7191
7192         * lily/stem.cc (calc_stem_end_position): use callback.
7193         (calc_positioning_done): idem.
7194         (calc_direction): idem.
7195         (calc_stem_end_position): idem
7196         (calc_stem_info): idem.
7197
7198         * lily/grob-property.cc (get_property_data): new function: 
7199         (try_callback): new function.
7200
7201         * scm/define-grob-properties.scm (all-user-grob-properties): doc
7202         callbacks property.
7203
7204         * lily/break-align-interface.cc: remove Break_align_interface::alignment_callback.
7205
7206 2005-10-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7207
7208         * lily/tie.cc (get_position): robustness fix. Don't crash if a
7209         tie
7210         has no heads.
7211         
7212         * lily/include/*.hh (Module): compile fixes.
7213
7214 2005-10-14  Heikki Junes <hjunes@cc.hut.fi>
7215
7216         * elisp/lilypond-font-lock.el, elisp/lilypond-indent.el: Avoid nil 
7217         as an argument for char-syntax: use (char-syntax (or nil 0)) 
7218         instead of (char-syntax nil), thanks to Milan Zamazal.
7219
7220 2005-10-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7221
7222         * make/lilypond.fedora.spec.in (Group): add lilypond-internals to
7223         dist.
7224
7225         * lily/tuplet-bracket.cc: check columns of bounds, not bounds
7226         themselves.
7227
7228 2005-10-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7229
7230         * flower/include/virtual-methods.hh (VIRTUAL_COPY_CONSTRUCTOR):
7231         add class_name() method.
7232
7233         * lily/music-scheme.cc: remove ly:music-name.
7234
7235 2005-10-11  Jan Nieuwenhuizen  <janneke@gnu.org>
7236
7237         * cygwin/postinstall-lilypond.sh: Remove cruft.
7238
7239         * cygwin/postremove-lilypond.sh: Remove.
7240
7241         * cygwin/GNUmakefile (default): Remove postremove rules.
7242
7243 2005-10-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7244
7245         * ly/titling-init.ly (evenHeaderMarkup): use space in header on
7246         even header too.
7247         
7248         * scm/define-markup-commands.scm (wordwrap-string): bugfix for
7249         MacOS 9 users.
7250
7251         * lily/hara-kiri-group-spanner.cc (consider_suicide): only
7252         consider break index for broken spanner.
7253
7254         * scm/define-markup-commands.scm (wordwrap-string): remove \r
7255         characters from string before splitting.
7256
7257 2005-10-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7258
7259         * scm/framework-ps.scm (output-preview-framework): use
7260         is-book-title to determine whether to chop off the booktitle.
7261
7262         * lily/paper-book.cc (systems): init from book-title-properties
7263         (add_score_title): init score-title-properties.
7264
7265         * ly/paper-defaults.ly: add {score,book}-title-properties.
7266
7267         * scm/document-backend.scm (lookup-interface): error message if
7268         using unknown interface.
7269
7270         * lily/volta-bracket.cc (after_line_breaking): new function. Set
7271         edge-height.
7272
7273         * lily/horizontal-bracket.cc (make_enclosing_bracket): rename from
7274         make_bracket.
7275         (make_bracket): new function.
7276
7277         * scm/lily.scm (define-scheme-options): add paper-size option.
7278
7279         * ly/declarations-init.ly (laissezVibrer): get paper size from
7280         -dpaper-size
7281
7282         * scm/translation-functions.scm: use \fontsize for changing the
7283         fontsize.
7284
7285         * scm/define-grobs.scm (all-grob-descriptions): set
7286         between-length-limit to 1.0
7287
7288         * lily/tie-helper.cc: add between_length_limit_ detail property.
7289
7290         * mf/feta-bolletjes.mf: typos.
7291
7292         * lily/note-head.cc (internal_print): don't shadow idx
7293         parameter. This fixes wrong attachment for do shape heads.
7294
7295 2005-10-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7296
7297         * scm/parser-ly-from-scheme.scm: rename from ly-from-scheme.scm
7298
7299         * scm/parser-clef.scm (supported-clefs): rename from clef.scm
7300
7301         * scm/layout-slur.scm: rename from slur.scm
7302
7303         * scm/layout-page-layout.scm: rename from page-layout.scm
7304
7305         * scm/layout-beam.scm: rename from beam.scm
7306
7307         * scm/define-grob-interfaces.scm (bass-figure-interface): add
7308         bass-figure-interface
7309
7310         * lily/new-figured-bass-engraver.cc (process_music): add
7311         implicitBassFigures property.
7312         
7313         * scm/define-markup-commands.scm (pad-x): new markup.
7314
7315         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): set
7316         minimumVerticalExtent on FiguredBass context.
7317
7318         * lily/figured-bass-continuation.cc (center_on_figures): kludge in
7319         case the continuation crosses a line break.
7320
7321 2005-10-09  Jan Nieuwenhuizen  <janneke@gnu.org>
7322
7323         * flower/file-name.cc (dos_to_posix)[__CYGWIN__]: Return
7324         unconverted value if cygwin_conv_to_posix_path () fails.  Fixes
7325         absolute file name bug.  
7326
7327 2005-10-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7328
7329         * VERSION (PACKAGE_NAME): release 2.7.12
7330
7331         * input/regression/figured-bass-continuation-center.ly: new file.
7332
7333         * input/regression/beam-outside-beamlets.ly: new file.
7334
7335         * lily/beam.cc (set_beaming): don't clip edges.
7336         (connect_beams): don't clip edges.
7337
7338         * lily/beaming-info.cc (clip_edges): new function.
7339
7340         * lily/enclosing-bracket.cc (struct Enclosing_bracket): new file.
7341
7342         * Documentation/user/instrument-notation.itely (Figured bass):
7343         demonstrate extenders, update seealso links.
7344
7345         * scm/titling.scm (marked-up-headfoot): change tagline
7346         handling. tagline = ##f will blank the tagline as well.
7347
7348 2005-10-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7349
7350         * Documentation/topdocs/NEWS.tely: add entry for Figured bass.
7351
7352         * lily/new-figured-bass-engraver.cc (struct
7353         New_figured_bass_engraver): add new_music_found_ member.
7354
7355         * lily/lilypond-version.cc (Lilypond_version): deal with
7356         incorrectly formatted version strings. 
7357
7358         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): switch on
7359         New_figured_bass_engraver by default.
7360
7361         * lily/ttf.cc (print_trailer): only define glyph names when
7362         FT_Face has FT_FACE_FLAG_GLYPH_NAMES
7363
7364 2005-10-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7365
7366         * lily/horizontal-bracket.cc (make_bracket): new function.
7367
7368         * scm/define-grobs.scm (all-grob-descriptions): new grobs
7369         NewBassFigure, BassFigureBracket, BassFigureContinuation,
7370         BassFigureLine, BassFigureAlignment
7371
7372         * lily/new-figured-bass-engraver.cc (process_music): new file.
7373
7374         * lily/figured-bass-continuation.cc: new file.
7375
7376         * lily/include/horizontal-bracket.hh (struct Horizontal_bracket):
7377         new file.
7378
7379 2005-10-04  Mats Bengtsson  <mabe@s3.kth.se>
7380
7381         * scripts/lilypond-book.py: Bug fix, put the quote around the
7382         actual score for LaTeX documents.
7383
7384         * scm/define-grobs.scm (all-grob-descriptions): Change
7385         collapse-height of the SystemStartBracket grob to 5.0, 
7386         so the bracket disappears for single stave score lines (similarly
7387         to SystemStartBraces). 
7388
7389         * Documentation/user/advanced-notation.itely (Polymetric
7390         notation): Clarify the use of compressMusic.
7391
7392         * Documentation/user/basic-notation.itely (Grace notes): Clarify
7393         that the grace spacer note in other staves need the same duration
7394         and document the stroke-style property.
7395
7396 2005-10-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7397
7398         * Documentation/user/global.itely (Vertical spacing): document
7399         alignment-extra-space and fixed-alignment-extra-space.
7400
7401         * Documentation/topdocs/NEWS.tely (Top): add entry.
7402
7403         * input/regression/alignment-vertical-spacing.ly: new file.
7404
7405         * python/convertrules.py (conv): add rule.
7406
7407         * ly/music-functions-init.ly: rename outputProperty to overrideProperty
7408
7409         * lily/align-interface.cc (stretch_after_break): new
7410         function. Read fixed-alignment-extra-space property.
7411         (align_elements_to_extents): read alignment-extra-space property.
7412
7413         * lily/lily-guile.cc (robust_scm2dir): new function.
7414
7415         * scm/page-layout.scm (page-headfoot): annotate headsep and footsep.
7416         (annotate-space-left): new function. Annotate space left on page. 
7417         (annotate-y-interval): new function.
7418         (paper-system-annotate-last): new function. Annotate bottom-space.
7419
7420         * mf/feta-beugel.mf (y): 
7421
7422 2005-10-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7423
7424         * VERSION (PACKAGE_NAME):  release 2.7.11
7425
7426         * scm/lily-library.scm (interval-translate): new function
7427         (interval-center): new function. 
7428
7429         * scm/page-layout.scm (paper-system-annotate): new function. Add
7430         arrows for dimensions.
7431  
7432         * scm/stencil.scm (dimension-arrows): new function.
7433
7434         * Documentation/user/global.itely (Vertical spacing): mention annotatespacing
7435
7436         * input/regression/page-spacing.ly: add annotatespacing
7437
7438         * lily/paper-system-scheme.cc (LY_DEFINE): remove ly:paper-system-{extent,stencil}
7439         (LY_DEFINE): new function ly:paper-system-set-property!
7440
7441         * Documentation/user/global.itely (Paper size): explain how to add
7442         sizes.
7443
7444         * scm/paper.scm (paper-alist): rename tabloid paper to 11x17 to
7445         correspond to GS's definition.
7446
7447         * lily/tuplet-bracket.cc (after_line_breaking): suicide empty
7448         tuplet bracket.
7449         (print): only connect to next bracket if the next one is alive.
7450         (print): set padding to 0.0 if the bound is a breakable
7451         column. This makes tupletFullLength brackets reach up to the staff
7452         line if it doesn't connect to the next line.
7453
7454 2005-09-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7455
7456         * lily/bar-number-engraver.cc: correct docs.
7457
7458         * scm/output-lib.scm (first-bar-number-invisible): rename from
7459         default-bar-number-visibility
7460
7461 2005-09-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7462
7463         * scm/define-music-properties.scm (all-music-properties): remove
7464         predicate property.
7465
7466 2005-09-28  Heikki Junes  <hjunes@cc.hut.fi>
7467
7468         * po/fi.po: refresh.
7469
7470 2005-09-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7471
7472         * input/regression/hara-kiri-pianostaff.ly (disappear): remove
7473         superfluous s1.
7474         (disappear): bugfix.
7475
7476         * lily/stem-tremolo.cc (raw_stencil): read slope property.
7477
7478         * lily/include/paper-system.hh (class Paper_system): remove
7479         staff_extents_ member.
7480
7481         * lily/paper-system-scheme.cc (LY_DEFINE): remove.
7482
7483         * lily/include/paper-system.hh (class Paper_system): remove
7484         number_ variable. Remove is_title_. Remove break_before_penalty_
7485
7486         * lily/paper-book.cc (systems): use 'number property iso. number_
7487         member.
7488
7489         * lily/paper-system-scheme.cc: remove ly:paper-system-break-before-penalty
7490         remove ly:paper-system-number.
7491
7492         * scm/lily-library.scm (paper-system-title?): new function.
7493
7494         * lily/book.cc (process): bugfix: flip ?: cases. 
7495
7496         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7497         add outputProperty.
7498
7499         * ly/music-functions-init.ly: add outputProperty music function.
7500
7501         * scm/paper.scm (set-paper-dimension-variables): add pagetopspace
7502
7503         * scm/page-layout.scm (ly:optimal-page-breaks): read next-space
7504         and next-padding.
7505         (optimal-page-breaks): rename from ly:optimal-page-breaks.
7506
7507         * lily/paper-system-scheme.cc (LY_DEFINE): new function.
7508
7509         * lily/paper-system.cc (internal_get_property): new function.
7510
7511         * Documentation/user/global.itely (Vertical spacing): refer to
7512         page-spacing.ly
7513
7514         * scm/page-layout.scm (ly:optimal-page-breaks): add support for
7515         pagetopspace
7516
7517         * input/regression/page-spacing.ly: new file.
7518
7519         * input/regression/page-top-space.ly: new file.
7520
7521         * lily/spacing-spanner.cc: cmath -> math.h
7522
7523         * lily/paper-system.cc (read_left_bound): new function. Read
7524         line-break-system-details from left bound to determine extents.
7525  
7526         * Documentation/user/programming-interface.itely (Using LilyPond
7527         syntax inside Scheme): change applyxxx -> applyXxx.
7528
7529         * ly/music-functions-init.ly: add outputProperty music function.
7530
7531         * lily/parser.yy (Generic_prefix_music_scm): add scm-scm-scm signature.
7532
7533         * lily/grob-scheme.cc (LY_DEFINE): add ! to ly:grob-suicide! name.
7534
7535         * python/convertrules.py (conv): rule
7536
7537         * ly/music-functions-init.ly: applyxxx -> applyXxx
7538
7539         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): alias
7540         TabVoice to Voice.
7541
7542 2005-09-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7543
7544         * flower/include/real.hh: include <math.h> iso. <cmath>
7545
7546         * flower/include/offset.hh: include real.hh
7547
7548 2005-09-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7549
7550         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7551         fix example, now that 'interfaces is no longer directly available.
7552
7553         * lily/book.cc (process): don't crash if paper == NULL.
7554
7555         * po/fr.po: update.
7556
7557 2005-09-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7558
7559         * scm/define-music-types.scm (music-descriptions): set length and
7560         start-callback for QuoteMusic
7561
7562 2005-09-15  Mats Bengtsson  <mabe@s3.kth.se>
7563
7564         * lily/tie.cc (get_configuration): Replace fabs -> abs for integer
7565         arguments. Fixes compilation error with gcc 3.3.
7566
7567 2005-09-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7568
7569         * VERSION: release 2.7.10
7570
7571         * stepmake/stepmake/python-module-rules.make
7572         ($(outdir)/%$(SHARED_MODULE_SUFFIX)): SHARED_FLAGS at the end.  
7573
7574         * lily/*.cc: remove <cmath> everywhere. <cmath> is included from
7575         real.hh
7576
7577 2005-09-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7578
7579         * stepmake/stepmake/c++-vars.make (#EXTRA_CXXFLAGS): don't add
7580         -Werror. Otherwise GCC barfs over various optimizations.
7581
7582         * scm/define-grob-properties.scm (all-internal-grob-properties):
7583         add note-head property
7584
7585         * Documentation/user/instrument-notation.itely (Laissez vibrer
7586         ties): new node.
7587
7588         * input/regression/laissez-vibrer-ties.ly: new file.
7589
7590         * lily/laissez-vibrer-engraver.cc: new file.    
7591
7592         * lily/include/tie-column-format.hh: new file.
7593
7594         * lily/tie-column-format.cc: new file. 
7595
7596         * lily/tie-column.cc (set_manual_tie_configuration): new function.
7597
7598         * lily/laissez-vibrer-tie.cc: new file.
7599
7600         * lily/include/laissez-vibrer-tie.hh: new file.
7601
7602         * ly/engraver-init.ly: add Laissez_vibrer_engraver
7603
7604         * ly/declarations-init.ly (laissezVibrer): add \laissezVibrer
7605
7606         * scm/define-grobs.scm (all-grob-descriptions): add
7607         LaissezVibrerTie, LaissezVibrerTieColumn
7608
7609         * lily/tie-column.cc (set_tie_config_directions): new function
7610         (final_shape_adjustment): new function.
7611         (shift_small_ties): new function.
7612
7613         * scm/define-music-types.scm (music-descriptions): add LaissezVibrerEvent
7614
7615         * lily/include/tie.hh (struct Tie_details): add x_gap_
7616         (struct Tie_configuration): add head_position_
7617
7618         * lily/tie-column.cc (set_chord_outline): new function.
7619
7620         * mf/cmr.enc.in:  remove file.
7621
7622 2005-09-11  Graham Percival  <gpermus@gmail.com>
7623
7624         * Documentation/user/examples.itely: typo fix.  Thanks, Matevž
7625
7626 2005-09-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7627
7628         * mf/feta-banier.mf: make vertical stem 1/2 stemthickness wide to
7629         reduce aliasing effects.
7630
7631         * lily/tie-column.cc (set_chord_outlines): bugfix: insert complete
7632         box in skyline.
7633
7634 2005-09-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7635
7636         * lily/tie.cc (get_configuration): don't crash if left_dot is NULL.
7637
7638         * flower/include/real.hh: std::fabs too.
7639
7640 2005-09-08  Jan Nieuwenhuizen  <janneke@gnu.org>
7641
7642         * Documentation/user/lilypond.tely: Spell Baßtuba in UTF-8 (Werner). 
7643
7644         * lily, flower: Include C++ iso C headers.  Import namespace std
7645         throughout.
7646
7647         * lily/side-position-interface.cc: 
7648         * lily/scm-hash.cc: 
7649         * lily/note-head.cc: 
7650         * lily/include/includable-lexer.hh: 
7651         * flower/include/string-data.icc: Remove using std::*.
7652
7653         * lily, flower: Include C++ iso C headers.  Import namespace std
7654         throughout.
7655
7656         * lily/side-position-interface.cc: 
7657         * lily/scm-hash.cc: 
7658         * lily/note-head.cc: 
7659         * lily/include/includable-lexer.hh: 
7660         * flower/include/string-data.icc: Remove using std::*.
7661
7662         * Documentation/user/instrument-notation.itely (Entering lyrics):
7663         Multiple latin-1->utf-8 conversion fix.
7664
7665         * Documentation/user/*tely: Update Emacs cookie to utf-8.
7666
7667 2005-09-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7668
7669         * lily/tie.cc (get_configuration): also avoid dots for non-space
7670         situations.
7671
7672 2005-09-07  Jan Nieuwenhuizen  <janneke@gnu.org>
7673
7674         * Documentation/user/instrument-notation.itely: Bugfix.
7675
7676 2005-09-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7677
7678         * tex/GNUmakefile: don't install texinfo.tex
7679
7680         * tex/ : cleanup: remove unused files.
7681
7682         * lily/general-scheme.cc: remove my_{isinf,isnan}.
7683
7684         * flower/include/real.hh: using std::{isnan,isinf}
7685         
7686         * VERSION (PATCH_LEVEL): release 2.7.9
7687
7688 2005-09-05  Graham Percival  <gpermus@gmail.com>
7689
7690         * Documentation/user/ instrument-notation.itely,
7691         advanced-notation.itely: minor tweaks.
7692
7693         * input/test/script-chart.ly: add item padding.
7694
7695 2005-09-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7696
7697         * flower/offset.cc: use math.h iso. <cmath>
7698
7699         * scm/ps-to-png.scm (make-ps-images): use png16m again, for sake
7700         of IE users.
7701
7702         * scm/framework-eps.scm (dump-stencils-as-EPSes): cleanup.
7703         (widen-left-stencil-edges): new function. Fix alignment problems
7704         with LaTeX includegraphics.
7705
7706         * lily/text-interface.cc (interpret_markup): use abort().
7707
7708 2005-09-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7709
7710         * input/regression/tie-chord.ly (testLong): add a chord in 4ths
7711
7712         * lily/tie.cc (get_configuration): update bezier shape as we
7713         change Y positions.
7714         (get_configuration): don't move large ties if we're outside of the
7715         staff.
7716
7717 2005-09-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7718
7719         * scm/define-markup-commands.scm (strut): swap X and Y dims.
7720         
7721 2005-09-03  Jan Nieuwenhuizen  <janneke@gnu.org>
7722
7723         * .cvsignore: Add auto-generated configure files and then some.
7724
7725 2005-09-02  Jan Nieuwenhuizen  <janneke@gnu.org>
7726
7727         * scm/define-grobs.scm (DynamicLineSpanner): Add
7728         X-extent-callback.  Fixes hairpin-slur collision.
7729
7730 2005-08-31  Graham Percival  <gpermus@gmail.com>
7731
7732         * Documentation/user/advanced-notation.itely,
7733         basic-notation.itely: minor changes.
7734
7735 2005-08-31  Mats Bengtsson  <mabe@s3.kth.se>
7736
7737         * scm/framework-eps.scm (dump-stencils-as-EPSes): Insert a
7738         \linebreak between each .eps file if \betweenLilyPondSystem is
7739         undefined. 
7740
7741         * Documentation/user/lilypond-book.itely (Integrating LaTeX and
7742         music): Document the \linebreak
7743
7744         * Documentation/user/lilypond-book.itely,
7745         input/tutorial/lbook-latex-test.tex,
7746         Documentation/user/examples.itely: Remove \usepackage{graphics}
7747
7748 2005-08-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7749
7750         * mf/aybabtu.pe.in (i): don't merge alphabet into aybabtu.
7751
7752         * lily/ly-module.cc (make_stand_in_procs_weak): 1.6.4 and earlier
7753         compat bugfix.
7754
7755         * scripts/lilypond-book.py (PREAMBLE_LY): define
7756         inside-lilypond-book
7757         (modify_preamble): new function. Insert \RequirePackage{graphics}
7758         when no {graphics found in preamble.  
7759
7760 2005-08030  Graham Percival  <gpermus@gmail.com>
7761
7762         * Documentation/user/basic-notation.itely, global.itely,
7763         tutorial.itely: misc small changes.
7764
7765 2005-08-30  Jan Nieuwenhuizen  <janneke@gnu.org>
7766
7767         * stepmake/aclocal.m4: Include MY_PATCH_LEVEL in config.make's
7768         VERSION.
7769
7770 2005-08-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7771
7772         * lily/tie-column.cc (new_directions): put Tie down on center
7773         staff line. 
7774
7775         * lily/script-interface.cc (before_line_breaking): use
7776         Grob::programming_error
7777
7778         * scm/ps-to-png.scm (make-ps-images): use pngalpha device.
7779
7780         * scripts/lilypond-book.py (get_latex_textwidth): oops. Take [0]
7781         of splitext.
7782
7783 2005-08-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7784
7785         * VERSION (PACKAGE_NAME): VERSION release 2.7.8
7786
7787 2005-08-29  Werner Lemberg  <wl@gnu.org>
7788
7789         * mf/GNUmakefile: Add `-f' flag to `rm' command while removing
7790         the `*.scale.pfa' files to avoid warnings.
7791
7792 2005-08-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7793
7794         * lily/tempo-performer.cc (process_music): idem.
7795
7796         * lily/midi-def.cc (get_tempo): Rational to int conversion bug.
7797
7798 2005-08-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7799
7800         * Documentation/user/advanced-notation.itely (Text markup): not a
7801         fragment.
7802
7803         * lily/midi-item.cc (to_string): use to_int() iso. int cast.
7804
7805         * lily/staff-performer.cc (initialize): add tempo/name to
7806         audio_staff_
7807
7808
7809 2005-08-26  Graham Percival  <gpermus@gmail.com>
7810
7811         * Documentation/user/advanced.itely: add text-only example.
7812
7813         * Documentation/user/invoking.itely: add index entries for
7814         convert-ly.
7815
7816         * Documentation/user/ tutorial.itely, basic-notation.itely:
7817         small fixes suggested by Steve D.  Thanks!
7818
7819 2005-08-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7820
7821         * input/regression/markup-bidi-pango.ly: new file.
7822
7823         * lily/pango-font.cc (pango_item_string_stencil): make Mingw code
7824         standard. Remove #ifdef. Remove memleak.
7825         (text_stencil): use text_dir to decide how to composite items.
7826         (text_stencil): determine uniform text direction for the entire
7827         string.
7828
7829         * scripts/lilypond-book.py (output_name): remove
7830         latex_filter_cmd. Non-portable to non-Unix systems. 
7831         (get_latex_textwidth): use File.write and os.unlink() instead.
7832
7833         * THANKS: add Vicente & Trevor.
7834
7835         * lily/grob.cc (discretionary_processing): look up origin for
7836         programming_error too. 
7837
7838         * input/regression/tie-broken.ly: new file.
7839
7840         * lily/tie-column.cc (set_chord_outlines): set outline for line
7841         break case too.
7842         
7843 2005-08-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7844
7845         * lily/pango-font.cc (text_stencil): don't translate glyphs in
7846         unscaled transform, just translate stencils.
7847
7848         * ly/performer-init.ly: init timing to #t.  Fixes bar checks in
7849         MIDI.
7850
7851         * scm/define-markup-commands.scm (wordwrap-string): use
7852         text-direction
7853         (wordwrap-stencils): idem.
7854         (line): idem.
7855         (fill-line): idem.
7856         (wordwrap-stencils): translate last line to right for
7857         text-direction = LEFT.
7858
7859         * scm/define-grob-properties.scm (all-user-grob-properties): add
7860         text-direction.
7861
7862 2005-08-25  Nicolas Sceaux  <nicolas.sceaux@free.fr>
7863
7864         * lily/lily-parser.cc (Lily_parser): also copy output_basename_
7865         when copying a Lily_parser object.
7866
7867 2005-08-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7868
7869         * scm/define-markup-commands.scm (null): add null markup.
7870
7871 2005-08-25  Mats Bengtsson  <mabe@s3.kth.se>
7872
7873         * lily/item.cc: Add documentation of center-invisible
7874
7875 2005-08-24  Graham Percival  <gpermus@gmail.com>
7876
7877         * Documentation/user/advanced-notation.itely: add info about
7878         raising text.
7879
7880         * Documentation/user/programming-interface.itely: fix example
7881         involving raised text.
7882
7883 2005-08-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7884
7885         * lily/beam.cc (print): fix X start/end points of isolated
7886         beamlets.
7887
7888         * scm/output-ps.scm (grob-cause): escape spaces in URLs.
7889
7890         * lily/multi-measure-rest.cc (set_text_rods): new function.
7891
7892         * lily/vertical-align-engraver.cc (process_music): call
7893         Align_interface::set_axis(). This forces #'elements to be ordered,
7894         preventing random vertical reordering of staves.
7895
7896         * scm/define-grob-interfaces.scm (dynamic-line-spanner-interface):
7897         add avoid-slur property. 
7898
7899         * Documentation/user/basic-notation.itely (Measure repeats): add
7900         countPercentRepeats example.
7901
7902         * Documentation/user/advanced-notation.itely (Other text markup
7903         issues): remove remark about normal-font.  We have \normal-text
7904
7905         * input/regression/tie-chord.ly: add note about remaining bugs.
7906
7907         * lily/tie.cc (print): try Tie_column::set_directions () if
7908         control-points not yet defined.
7909
7910 2005-08-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7911
7912         * lily/system-start-delimiter.cc (staff_brace): don't remove brace
7913         extent. This fixes braces falling out of the EPS bbox.
7914
7915         * mf/feta-beugel.mf (braces_per_font): make brace glyph align
7916         exactly to bbox.
7917
7918 2005-08-23  Graham Percival  <gpermus@gmail.com>
7919
7920         * {various} : change #up->#UP and #down->#DOWN.
7921
7922         * ly/titling-init.ly: Spacing fix when using printallheaders=##t.
7923
7924         * Documentation/user/advanced-notation.itely: clarify
7925         what objects handles text on a multimeasure rest.
7926
7927 2005-08-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7928
7929         * VERSION (PATCH_LEVEL): release 2.7.7
7930
7931 2005-08-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7932
7933         * make/lilypond-vars.make: set -dgs-font-load for "make web" 
7934
7935         * Documentation/topdocs/INSTALL.texi (Top): add GS bugfix requirement.
7936
7937         * input/regression/*.ly: formatting clean-up. Default layout
7938         before music expression.
7939
7940         * input/mutopia/R.Schumann/GNUmakefile (examples): switch off
7941         romanze28-2 example.
7942
7943         * scm/ps-to-png.scm: remove dir-re function.
7944         (make-ps-images): generate page names, instead of globbing them.
7945         This brings down LilyPond memory usage for make web by a factor
7946         10. 
7947
7948         * scripts/lilypond-book.py (Lilypond_snippet.png_is_outdated):
7949         don't use glob. With 3000 files, globbing
7950         Documentation/user/out-www/ can take too much time. 
7951         
7952         * lily/lily-guile.cc (gulp_file_to_string): take size argument.
7953
7954         * lily/general-scheme.cc (LY_DEFINE): take optional size argument.
7955
7956         * input/regression/tie-manual.ly: new file
7957
7958         * input/regression/tie-chord.ly: update.
7959
7960         * flower/include/interval.hh (struct Interval_t): 
7961
7962         * lily/tie.cc (distance): new function 
7963         (height): new function.
7964         (init): new function
7965         (Tie_details): new struct.
7966
7967         * lily/skyline.cc (skyline_height): new function.
7968
7969         * lily/tie-column.cc (set_chord_outlines): new function.
7970         (new_directions): read tie-configuration
7971
7972         * lily/skyline.cc: fix ASCII art.
7973         
7974 2005-08-22  Mats Bengtsson  <mabe@s3.kth.se>
7975
7976         * python/convertrules.py (string_or_scheme): Fix spelling error
7977
7978 2005-08-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7979         
7980         * lily/tie-column.cc (set_directions): set directions only once.
7981         (add_configuration): new function.
7982
7983         * lily/tie.cc (set_control_points): new function
7984
7985         * lily/tie-column.cc (new_directions): new function.
7986
7987         * ly/music-functions-init.ly: set 'pitch property
7988         iso. trill-pitch. This makes \relative work with \pitchedTrill
7989
7990         * lily/tie.cc (get_configuration): new function. Don't generate
7991         control points, rather, generate configuration.
7992         remove head-pair property.
7993
7994         * lily/include/tie.hh (struct Tie_configuration): new struct.
7995
7996 2005-08-22  Heikki Junes  <hjunes@cc.hut.fi>
7997
7998         * Documentation/topdocs/NEWS.tely: clarify.
7999
8000 2005-08-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8001
8002         * lily/tie.cc: remove minimum-length
8003
8004         * scm/define-grob-properties.scm (all-user-grob-properties):
8005         remove staffline-clearance, y-offset 
8006
8007         * input/regression/tie-dots.ly (Module): remove.
8008
8009         * lily/tie.cc (get_control_points): rewrite. Put short ties in
8010         staff-spaces, make long ties cross staff lines. Avoid flags and dots.
8011
8012         * input/regression/tie-single.ly: new file.
8013
8014 2005-08-21  Graham Percival  <gpermus@gmail.com>
8015
8016         * ly/bagpipe.ly: fix compile problem.
8017
8018 2005-08-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8019
8020         * lily/midi-item.cc (name): new method.
8021
8022         * lily/staff-performer.cc (acknowledge_audio_element): use
8023         signature of baseclass.
8024
8025         * lily/engraver-group.cc (do_announces): move recursion call out
8026         of while loop. 
8027
8028         * lily/drum-note-performer.cc (class Drum_note_performer): use
8029         process_music everywhere.
8030
8031         * ly/performer-init.ly: add default children everywhere.
8032
8033         * lily/paper-book.cc (output): call paper-book-write-midis
8034         directly: always write MIDI, even if no \layout {} block. 
8035
8036 2005-08-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8037
8038         * VERSION (PACKAGE_NAME): release 2.7.6
8039
8040         * lily/percent-repeat-engraver.cc (try_music): don't print warning
8041         about not being able to handle repeat.
8042
8043 2005-08-19  Jan Nieuwenhuizen  <janneke@gnu.org>
8044
8045         * Documentation/user/examples.itely (Piano templates):
8046         * lily/include/performer-group.hh: Remove last traces of
8047         Performer_group_performer.  Fixes make web.
8048
8049 2005-08-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8050
8051         * Documentation/user/examples.itely (Piano templates): change
8052         Engraver_group_engraver -> Engraver_group
8053
8054         * lily/ly-module.cc (make_stand_in_procs_weak): only kludge if
8055         scm_stand_in_procs is not weak_any.
8056
8057         * lily/volta-bracket.cc (print): don't use strcmp().
8058
8059         * lily/volta-engraver.cc (process_music): use
8060         Text_interface::is_markup() for setting the 'text property of the
8061         volta bracket.
8062
8063         * input/mutopia/claop.py (accents): update syntax to 2.6
8064
8065         * scm/define-context-properties.scm
8066         (all-user-translation-properties): add countPercentRepeats.
8067
8068         * Documentation/user/basic-notation.itely (Measure repeats): add
8069         isolated percent example.
8070
8071 2005-08-18  Graham Percival  <gpermus@gmail.com>
8072
8073         * input/ {various}: change direction #1, #-1 to
8074         #up/#down or \fooUp, \fooDown.
8075
8076         * Documentation/user/music-glossary.tely: #-1 to #down.
8077
8078         * ly/bagpipe.ly, engraver-init.ly, property-init.ly: #1
8079         to #up, #-1 to #down.
8080
8081 2005-08-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8082
8083         * lily/include/engraver-group.hh: rename.
8084
8085         * lily/include/performer-group.hh: rename.
8086
8087 2005-08-18  Mats Bengtsson  <mabe@s3.kth.se>
8088
8089         * input/test/script-abbreviations.ly: Removed some old LaTeX
8090         left overs.
8091
8092 2005-08-18  Jan Nieuwenhuizen  <janneke@gnu.org>
8093
8094         * python/convertrules.py (conv): inside-slur -> avoid-slur.
8095         Remove functions.  Remove if 1: constructs, reindent.
8096
8097         * scripts/convert-ly.py (add_version): Add functions from
8098         convertrules.py
8099
8100         * scm/script.scm (default-script-alist):
8101         s/priority/script-priority.  Fixes script stacking.  Backportme.
8102         (Fermata): Very low priority.
8103
8104 2005-08-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8105
8106         * input/regression/*.ly: remove superfluous \score blocks. Reindent.
8107
8108         * input/regression/slur-script.ly: remove padding tweaks. Add
8109         comment strings.
8110
8111         * lily/note-spacing.cc (get_spacing): remove kludge for EOL wide
8112         time sigs and related stuff.
8113
8114         * scm/define-grob-properties.scm (all-user-grob-properties): add
8115         @code{} tags to property description.
8116
8117         * lily/include/line-group-group-engraver.hh (Module): remove file.
8118
8119         * python/convertrules.py (conv): add rule for
8120         Engraver_group_engraver -> Engraver_group.
8121
8122         * lily/include/performer-group-performer.hh: analogous.
8123
8124         * lily/include/engraver-group-engraver.hh: rename to Engraver_group.
8125
8126         * lily/context-def.cc (instantiate): check for
8127         Engraver_group_engraver and Performer_group_performer not
8128         Engraver/Performer. Fixes crashes when doing \with { \consists .. }
8129  
8130 2005-08-18  Jan Nieuwenhuizen  <janneke@gnu.org>
8131
8132         * input/les-nereides.ly: Remove three fingering tweaks, update
8133         remaining one.
8134
8135         * input/regression/slur-script-inside.ly: Update, fix doc.
8136
8137         * scm/script.scm: Update to avoid-slur.
8138
8139         * scm/define-grob-properties.scm (avoid-slur): New property.
8140
8141         * lily/phrasing-slur-engraver.cc (acknowledge_extra_object):
8142         * lily/slur-engraver.cc (acknowledge_extra_object): Invoke
8143         outside_slur_callback if avoid-slur != #'inside.
8144
8145         * scm/define-grobs.scm (Fingering, Textscript): No
8146         inside-slur/outside-slur preference.
8147         (DynamicLineSpanner): Always outside slur.
8148
8149         * input/regression/slur-script.ly: More tests.
8150
8151 2005-08-17  Graham Percival  <gpermus@gmail.com>
8152
8153         * Documentation/user/lilypond-book: fix notime entry.
8154
8155         * Documentation/user/advanced-notation.itely: add info on
8156         getting an I rehearsal mark.
8157
8158         * Documentation/user/putting.itely: reinstate "I", re-enforce
8159         the fact that \override numbers are the result of
8160         experimentation and personal taste.
8161
8162         * Documentation/user/invoking.itely: update convert-ly bugs.
8163
8164 2005-08-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8165
8166         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): set timing
8167         to #t.
8168
8169         * lily/timing-translator.cc (initialize): don't initialize timing.
8170
8171         * input/regression/stem-spacing.ly (Module): remove file.
8172
8173         * input/regression/spacing-stick-out.ly: specify Score context for
8174         \override
8175
8176         * input/regression/clefs.ly: remove spurious {}s 
8177
8178 2005-08-17  Heikki Junes  <hjunes@cc.hut.fi>
8179
8180         * Documentation/topdocs/NEWS.tely,
8181         input/regression/repeat-percent-count.ly: clarify a bit.
8182
8183 2005-08-16  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8184
8185         * input/no-notation/display-lily-tests.ly: delete
8186         display-lily-init call.
8187
8188         * ly/music-functions-init.ly (displayLilyMusic): move
8189         display-lily-init call at top level, so that the user should not
8190         have to call it.
8191
8192         * scm/define-music-display-methods.scm (note-name->lily-string):
8193         retrieve note names directly from pitchnames using new function `rassoc'.
8194         (display-lily-init): note names list construction removed.
8195
8196 2005-08-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8197
8198         * THANKS: spello.
8199
8200         * lily/lily-parser.cc (get_header): copy module, instead of
8201         returning it.
8202
8203         * Documentation/topdocs/NEWS.tely (Top): add entry for percent
8204         counters.
8205
8206         * Documentation/user/basic-notation.itely (Measure repeats): add
8207         links to Counter grobs.
8208
8209         * scm/define-grobs.scm (all-grob-descriptions): add
8210         DoublePercentRepeatCounter
8211         (all-grob-descriptions): add PercentRepeatCounter
8212
8213         * lily/percent-repeat-engraver.cc (class Percent_repeat_engraver):
8214         also create counter grobs.
8215
8216         * lily/separation-item.cc (extremal_break_aligned_grob): don't
8217         return grob without space-alist.
8218
8219         * input/proportional.ly: tune staff-padding.
8220
8221         * input/regression/repeat-percent-count.ly: new file. 
8222
8223 2005-08-16  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8224
8225         * input/no-notation/display-lily-tests.ly: moved from
8226         input/regression/ to input/no-notation. Be sure to call
8227         `display-lily-init' before trying to use the display function.
8228
8229 2005-08-16  Mats Bengtsson  <mabe@s3.kth.se>
8230
8231         * scripts/lilypond-book.py (option_definitions): Don't localize
8232         the empty string. Fixes bug when --psfonts was used with
8233         non-English locale.
8234
8235 2005-08-15  Graham Percival  <gpermus@gmail.com>
8236
8237         * lily/tuplet-bracket.cc: simple build fix.
8238
8239         * Documentation/user/putting.itely: use "we" instead of "I".
8240
8241         * Documentation/user/basic-notation.itely: cautionary accidentals
8242         work with naturals, too.
8243
8244 2005-08-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8245
8246         * lily/tuplet-bracket.cc (calc_position_and_height): add
8247         staff-padding support.
8248
8249         * input/proportional.ly: set staff-padding.
8250         
8251         * VERSION (PATCH_LEVEL): release 2.7.5
8252
8253         * input/mutopia/J.S.Bach/wtk1-fugue2.ly (bassdux): text formatting
8254         fixes. Remove tweaks.
8255
8256         * input/regression/tuplet-slope.ly: add a test case.
8257
8258         * lily/tuplet-bracket.cc (calc_position_and_height): revert
8259         erroneous fix. Add spanner bounds to offset array with relative X
8260         positions.
8261
8262         * ly/engraver-init.ly: add Rest_engraver only once.
8263
8264         * scm/define-music-display-methods.scm (KeyChangeEvent): only do
8265         (*parser*) lookup if (*parser*) != #f.
8266
8267 2005-08-15  Jan Nieuwenhuizen  <janneke@gnu.org>
8268
8269         * lily/phrasing-slur-engraver.cc (acknowledge_extra_object):
8270         Cut-and paste update.
8271
8272         * input/regression/slur-script.ly: Add example of reverting
8273         inside-slur for fingering.
8274
8275         * scm/define-grobs.scm (DynamicLineSpanner, Fingering,
8276         TextScript): Explicitly set inside-slur #f, forcing these out of slur.
8277
8278         * lily/slur-engraver.cc (acknowledge_extra_object): Only invoke
8279         outside_slur_callback if inside-slur == #f (as opposed to unset).
8280
8281 2005-08-14  Jan Nieuwenhuizen  <janneke@gnu.org>
8282
8283         * tex/GNUmakefile (INSTALLATION_FILES): Remove enc symlink setup,
8284         encoding files are already removed.
8285
8286 2005-08-15  Mats Bengtsson  <mabe@s3.kth.se>
8287
8288         * Documentation/user/advanced-notation.itely (Instrument names):
8289         Document a workaround for instrument names that collide with
8290         system start braces/brackets.
8291
8292 2005-08-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8293
8294         * lily/rest-collision.cc (do_shift): spello.
8295
8296         * input/proportional.ly: use #'used property. Set break-overshoot
8297         property.
8298
8299         * mf/feta-arrow.mf: center on arrow tip center, iso. tip edge.
8300
8301         * lily/paper-column.cc: add #'used property
8302
8303         * lily/mark-engraver.cc (stop_translation_timestep): set grob
8304         array for staves found.
8305
8306         * lily/metronome-engraver.cc (stop_translation_timestep): set grob
8307         array for stavesFound.
8308
8309         * lily/staff-spacing.cc (next_note_correction): add fixed and
8310         space to calling convention. This fixes spacing of accidentals
8311         after barlines.
8312
8313         * input/regression/spacing-accidental-stretch.ly: add barline -
8314         accidental case.
8315
8316         * scm/framework-ps.scm (page-header): add version number to
8317         creator
8318         (eps-header): idem.
8319
8320         * mf/feta-bolletjes.mf: swap d0 and u0 fa heads.
8321         
8322 2005-08-13  Graham Percival  <gpermus@gmail.com>
8323
8324         * Documentation/user/global.itely: add "fit as much as
8325         possible onto this page" example (Vertical spacing).
8326
8327 2005-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
8328
8329         * *: Nitpick run.
8330
8331         * buildscripts/fixcc.py: Fixes.
8332
8333 2005-08-12  Graham Percival  <gpermus@gmail.com>
8334
8335         * Documentation/user/advanced-notation.itely: add markup
8336         example to Text spanners.
8337
8338 2005-08-12  Mats Bengtsson  <mabe@s3.kth.se>
8339
8340         * Documentation/user/basic-notation.itely (Ties): Add example of
8341         tying a tremolo to a chord. Thanks to Steve Doonan. 
8342
8343         * lily/tie-engraver.cc: Add tieWaitForNote to the list of read
8344         properties and move tieMelismaBusy to the list of written
8345         properties. 
8346
8347 2005-08-12  Heikki Junes  <hjunes@cc.hut.fi>
8348
8349         * po/TODO: suggest to use a dedicated tool like kbabel.
8350
8351         * po/fi.po: update using kbabel.
8352
8353 2005-08-12  Jan Nieuwenhuizen  <janneke@gnu.org>
8354
8355         * *: Remove obsolete files.  Nitpick run.
8356
8357         * lily/lily-guile.cc (parse_symbol_list): Bugfix.
8358
8359 2005-08-11  Jan Nieuwenhuizen  <janneke@gnu.org>
8360
8361         * mf/GNUmakefile (get-*-fonts): Rename from get-*-pfa.  Copy SVG
8362         too.
8363
8364         * Documentation/topdocs/NEWS.tely (Top): Add slur script feature.
8365
8366         * lily/lily-guile.cc (parse_symbol_list): Rewrite.  Grok multiple
8367         whitespace as symbol separator.
8368
8369         * lily/side-position-interface.cc: Add slur-padding.
8370
8371         * input/regression/slur-script.ly: Fixed.  Backportme?  This is
8372         quite a large fix, and it never worked in a stable release; so not
8373         really a regression.
8374
8375         * lily/phrasing-slur-engraver.cc (class Phrasing_slur_engraver):
8376         Update cut and paste code from Slur_engraver.
8377
8378         * scm/define-grob-interfaces.scm (dynamic-line-spanner-interface):
8379         Add.
8380
8381         * scm/define-grobs.scm (DynamicLineSpanner): Add
8382         dynamic-line-spanner-interface.
8383         (DynamicLineSpanner, TextScript, Fingering): Add slur-padding.
8384
8385 2005-08-09  Jan Nieuwenhuizen  <janneke@gnu.org>
8386
8387         * lily/slur-engraver.cc (acknowledge_extra_object): Bugfix: use
8388         to_boolean () so that non-set 'inside-slur means false.
8389
8390         * lily/slur.cc (outside_slur_callback): Bugfixes: make sure that
8391         slur has control-points.  Skip script without direction.  Always
8392         do_shift if script inside slur, even if slur not contained in
8393         script y-extent.  Increment k in loop.
8394
8395 2005-08-11  Mats Bengtsson  <mabe@s3.kth.se>
8396
8397         * scm/define-markup-commands.scm: Improved regexp to search for
8398         EPS bounding boxes and corrected call to ly:warning.
8399
8400 2005-08-10  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8401
8402         * Documentation/user/programming-interface.itely (Displaying music
8403         expressions): doc for \displayLilyMusic. Also some precisions in
8404         "Markup construction in Scheme"
8405
8406 2005-08-10  Mats Bengtsson  <mabe@s3.kth.se>
8407
8408         * scm/define-markup-commands.scm (normal-text): Added 2 new
8409         markup commands, \normal-text and \medium (the latter thanks to
8410         Bruce Fairchild). 
8411
8412 2005-08-08  Graham Percival  <gpermus@gmail.com>
8413
8414         * Documentation/user/programming-interface.itely: fix @{ @}.
8415
8416         * scm/define-markup-commands.scm: add linewidth info to
8417         \justify and \wordwrap, add "upright is the opposite of italic".
8418
8419         * Documentation/user/advanced-notation.itely: shaped->shape,
8420         add (cons (markup "foo")) type of example to text markup,
8421         reword multi-measure rests section.
8422
8423         * lily/note-heads-engraver.cc: changed Shaped->Shape in a
8424         comment.  No actual code was touched.
8425
8426         * Documentation/user/invoking.itely: add more info about
8427         \include.  Thanks, Bruce!
8428
8429         * THANKS: add Bruce Fairchild, alphabetise.
8430
8431         * Documentation/user/global.itely: document \score{\header{}}
8432         behavior.
8433
8434         * Documentation/user/basic-notation.itely: reword multi-measure
8435         rest discussion in Rests.
8436
8437 2005-08-08  Mats Bengtsson  <mabe@s3.kth.se>
8438
8439         * Documentation/user/programming-interface.itely (Markup
8440         construction in Scheme): Corrected example and tried to clarify
8441         the implicit \line in the table.
8442
8443 2005-08-07  Graham Percival  <gpermus@gmail.com>
8444
8445         * Documentation/user/instrument-notation.itely: moved
8446         some bagpipe info back into the bagpipe section.  Somehow
8447         it ended up in the "other vocal issues" section?!  :o_O
8448
8449 2005-08-07  Jan Nieuwenhuizen  <janneke@gnu.org>
8450
8451         * scm/framework-ps.scm (dir-join): Rename from path-join (joins
8452         directories, not paths).
8453
8454 2005-08-06  Jan Nieuwenhuizen  <janneke@gnu.org>
8455
8456         * scm/framework-ps.scm (munge-lily-font-name): Bugfix: Munge only
8457         plain emmentaler/aybabtu.  Backportme.
8458
8459         * lily/tuplet-bracket.cc (calc_position_and_height): Bugfix:
8460         missing dir correction.
8461
8462 2005-08-05  Graham Percival  <gperlist@shaw.ca>
8463
8464         * scm/define-markup-commands: fix reversed justify/wordwrap
8465         doc strings.
8466
8467 2005-08-05  Jürgen Reuter  <reuter@ipd.uka.de>
8468
8469         * lily/ligature-engaver.cc, lily/coherent-ligature-engaver.cc,
8470         lily/gregorian-ligature-engaver.cc,
8471         lily/include/ligature-engraver.hh,
8472         lily/include/coherent-ligature-engraver.hh,
8473         lily/include/gregorian-ligature-engraver.hh: make these classes
8474         truely abstract.  This should fix some internal oddities such as
8475         duplicate as well as dead translator/property declarations, and
8476         also some dead code.
8477
8478         * lily/ligature-bracket-engraver.cc, lily/ligature-engraver.cc:
8479         bugfix: avoid message "junking empty ligature" on ligature
8480         brackets by collecting dummy grobs.
8481
8482 2005-08-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8483
8484         * lily/tuplet-bracket.cc (print): default right overshoot to 0.0
8485
8486         * input/proportional.ly (staffKind): bugfix.
8487         (staffKind): updates by Trevor Baca.
8488
8489         * scm/define-grobs.scm (all-grob-descriptions): remove arrows as
8490         default layout. 
8491
8492         * lily/tuplet-bracket.cc (print): check whether edge-text is a
8493         pair.
8494
8495         * lily/beam.cc (rest_collision_callback): call position_beam() if
8496         necessary.
8497
8498         * VERSION: release 2.7.4
8499
8500         * input/regression/spacing-uniform-stretching.ly: new file.
8501
8502         * lily/spacing-loose-columns.cc (set_loose_columns): use robust_relative_extent().
8503
8504         * Documentation/topdocs/NEWS.tely (Top): add Nicolas as
8505         contributor.
8506
8507         * lily/include/ly-module.hh: define MODULE_GC_KLUDGE globally.
8508
8509         * input/proportional.ly: new file.
8510
8511         * lily/tuplet-bracket.cc (after_line_breaking): don't suicide if
8512         columns is empty
8513
8514         * lily/tuplet-engraver.cc (finalize): new function. Reset right
8515         bounds to currentCommandColumn for the last step.
8516         (start_translation_timestep): if tupletFullLength is set, set
8517         bound to Paper Column
8518
8519         * input/regression/tuplet-full-length.ly (indent): new file.
8520
8521         * lily/spacing-loose-columns.cc (set_loose_columns): space a whole
8522         clique of loose columns, eg. a set of grace notes in strict
8523         notespacing.
8524
8525         * input/regression/spacing-strict-spacing-grace.ly: new file.
8526
8527         * lily/key-signature-interface.cc: change property name to
8528         alteration-alist
8529
8530         * lily/key-engraver.cc (read_event): read keyAlterationOrder, not
8531         keyAccidentalOrder
8532
8533         * python/convertrules.py (conv): keyAccidentalOrder ->
8534         keyAlterationOrder
8535
8536         * lily/key-engraver.cc (create_key): always print a cancellation
8537         for going to C-major/A-minor, regardless of printKeyCancellation.
8538         (create_key): remove typecheck for visibility. This fixes key
8539         signature not being printed.
8540
8541         * lily/spacing-determine-loose-columns.cc: new file.
8542
8543         * input/regression/spacing-strict-notespacing.ly: new file.
8544
8545         * lily/spacing-spanner.cc (generate_springs): rename from
8546         do_measure. 
8547         (generate_pair_spacing): new function.
8548         (init, generate_pair_spacing): set between-cols for floating
8549         nonmusical columns.
8550
8551         * lily/spaceable-grob.cc (get_spring): new function. 
8552
8553         * lily/tuplet-bracket.cc (print): on the left, the overshoot is
8554         relative to the right edge of the prefatory matter.
8555
8556         * lily/beam.cc (print): read break-overshoot to determine where to
8557         stop/start broken beams.
8558
8559         * input/regression/spanner-break-overshoot.ly: new file.
8560
8561 2005-08-04  Graham Percival  <gperlist@shaw.ca>
8562
8563         * ly/bagpipe.ly: updated.
8564
8565         * Documentat/user/instrument.itely: un-comment out bagpipe example.
8566
8567 2005-08-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8568
8569         * lily/dynamic-engraver.cc (acknowledge_slur): add slur to
8570         support: now (de)crescs avoid slurs as well.
8571
8572         * Documentation/user/instrument-notation.itely (Bagpipe example):
8573         comment out non-functioning bagpipe example.
8574         (Bagpipe definitions): idem.
8575
8576         * Documentation/topdocs/NEWS.tely (Top): add uniform-stretching example.
8577         (Top): add proportionalNotationDuration example.
8578
8579         * input/regression/spacing-proportional.ly: new file.
8580
8581         * lily/tuplet-bracket.cc (parallel_beam): broken bracket never is
8582         synched to a beam.
8583
8584         * lily/beam.cc (shift_region_to_valid): divide by zero fix. This
8585         fixes beams with a single stem (eg. beams across linebreaks.)
8586
8587         * lily/parser.yy (simple_string): allow \new STRING_IDENTIFIER.
8588
8589         * flower/rational.cc (operator +): prevent overflow. This fixes
8590         heavily nested tuplets.
8591
8592         * lily/auto-beam-engraver.cc (derived_mark): new method. Yes. We
8593         have to protect even those unlikely to be corrupted data members.  
8594
8595 2005-08-04  Graham Percival  <gperlist@shaw.ca>
8596
8597         * ly/bagpipe.ly: new file.
8598
8599         * THANKS: added Sven Axelsson.
8600
8601 2005-08-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8602
8603         * lily/spacing-engraver.cc (stop_translation_timestep): directly
8604         copy proportionalNotationDuration into currentMusicalColumn if
8605         set.
8606
8607         * lily/spacing-spanner.cc (musical_column_spacing): if
8608         uniform-stretching set, fixed space is 0.0
8609
8610         * input/regression/spacing-multi-tuplet.ly: show
8611         uniform-stretching property.
8612
8613         * lily/spacing-spanner.cc (effective_shortest_duration): new function.
8614
8615         * lily/include/spacing-spanner.hh (class Spacing_spanner): new file.
8616         (struct Spacing_options): new struct.
8617
8618         * lily/spacing-basic.cc: new file.
8619
8620         * lily/spacing-spanner.cc (note_spacing): remove outdated code:
8621         delta_t doesn't have to be smaller than shortest_playing_len
8622
8623 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8624
8625         * input/regression/markup-arrows.ly:  new file.
8626
8627         * lily/tuplet-bracket.cc: document new behavior.
8628
8629         * input/regression/tuplet-broken.ly: new file. Demonstrate tuplets
8630         with line breaks.
8631
8632         * scm/define-markup-commands.scm (arrow-head): arrow-head markup command.
8633
8634         * scm/define-grobs.scm (all-grob-descriptions): set arrows as
8635         default 
8636
8637         * lily/tuplet-bracket.cc: add edge-text property.
8638         add break-overshoot.
8639         (print): read break-overshoot.
8640         (print): read edge-text, add stencils.
8641
8642         * mf/feta-arrow.mf: new file.
8643
8644         * mf/feta-generic.mf: add feta-arrow.
8645
8646 2005-08-03  Mats Bengtsson  <mabe@s3.kth.se>
8647
8648         * Documentation/user/lilypond-book.itely (An example of a
8649         musicological document): Added flag -o to dvips for people who use
8650         the default setting in teTeX where output is sent to the printer. 
8651
8652         * Documentation/user/global.itely (Vertical spacing): Added
8653         reference to the Axis_group_engraver which documents the *Extent
8654         properties.
8655
8656 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8657
8658         * Documentation/user/basic-notation.itely (Tuplets): add note
8659         about nested tuplets. Remove BUG. 
8660
8661         * input/regression/tuplet-nest.ly: update: remove manual hack. 
8662
8663         * lily/tuplet-bracket.cc (print): use robust_scm2drul
8664         (print): manually call print() for subtuplets.
8665         (calc_position_and_height): add subtuplets to the
8666         support. Vertically shift outer tuplet 
8667
8668         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): set
8669         remove-first for Lyrics, ChordNames and FiguredBass
8670
8671         * scm/define-grob-properties.scm (all-internal-grob-properties):
8672         use ly:grob-array? iso. grob-list?
8673         (all-internal-grob-properties): add tuplets grob-array.
8674
8675         * lily/tuplet-bracket.cc (add_tuplet_bracket):
8676         new function
8677
8678 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8679
8680         * input/test/time-signature-staff.ly: new file.
8681
8682         * ly/declarations-init.ly (center): escape to Scheme. Fixes
8683         spurious #<Music FingerEvent> errors. Backportme.
8684
8685 2005-08-03  Mats Bengtsson  <mabe@s3.kth.se>
8686
8687         * Documentation/user/programming-interface.itely (Markup
8688         construction in Scheme): Corrected markup syntax in the
8689         translation table.
8690
8691 2005-08-03  Graham Percival  <gperlist@shaw.ca>
8692
8693         * Documentation/user/instrument-notation.itely: small update
8694         to bagpipe notation docs; thanks Sven!
8695
8696         * Documentation/user/basic-notation.itely: add link about trills.
8697
8698 2005-08-02  Graham Percival  <gperlist@shaw.ca>
8699
8700         * Documentation/user/music-glossary: remove accidentally committed
8701         fink patch.
8702
8703 2005-08-02  Yoshinobu Ishizaki  <isizaki@mte.biglobe.ne.jp>
8704
8705         * lily/lily-parser.cc (get_header): new function. Enable multiple
8706         \header definitions.
8707
8708         * lily/parser.yy (lilypond_header_body): use get_header.
8709
8710         * ly/init.ly:
8711         * scm/lily-library.scm (print-score-with-defaults): renamed
8712         $globalheader to $defaultheader
8713             
8714         * Documentation/user/global.itely (Creating titles): added short
8715         explanation that multiple headers are useable.
8716
8717
8718 2005-08-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8719
8720         * lily/module-scheme.cc (LY_DEFINE): new file. 
8721
8722         * Documentation/user/advanced-notation.itely (Font selection): add
8723         doco for make-pango-font-tree.
8724
8725 2005-07-31  Graham Percival  <gperlist@shaw.ca>
8726
8727         * Documentation/user/music-glossary: more languages
8728         for tenuto.
8729
8730         * Docuemntation/user/instrument-notation.itely: minor
8731         update for bagpipe example.
8732
8733 2005-07-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8734
8735         * input/regression/+.ly (TODO): add some text.
8736
8737 2005-07-28  Graham Percival  <gperlist@shaw.ca>
8738
8739         * Documentation/user/invoking.itely: \score begins with music.
8740
8741         * Documentation/user/ basic-notation.itely,
8742         instrument-notation.itely: minor changes.
8743
8744         * Documentation/user/music-glossary.itely: began tenuto entry.
8745
8746 2005-07-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8747
8748         * scm/output-socket.scm (bezier-sandwich): add bezier-sandwich
8749
8750         * mf/feta-bolletjes.mf: swap up and down for aiken heads.
8751
8752 2005-07-27  Graham Percival  <gperlist@shaw.ca>
8753
8754         * Documentation/user/examples.itely: remove bagpipe template.
8755
8756         * Documentation/user/instrument-notation.itely: add bagpipe
8757         section, maybe fix quotes in lyrics.  I hate text encoding.
8758         Clarify chord durations, more bagpipe stuff.
8759
8760 2005-07-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8761  
8762         * lily/accidental-engraver.cc: formatting fixes.
8763
8764         * lily/spacing-spanner.cc (prune_loose_columns): right-items is a
8765         grob-array.
8766
8767         * lily/arpeggio.cc (print): suicide arpeggio for single notehead.
8768
8769         * lily/note-column.cc (arpeggio): new function.
8770
8771         * lily/note-spacing.cc (get_spacing): also take arpeggio into
8772         account for spacing.
8773
8774 2005-07-25  Jan Nieuwenhuizen  <janneke@gnu.org>
8775
8776         * lily/main.cc (sane_setenv)[!ARGV0_RELOCATION]: Also define.
8777         (setup_guile_env): Use it instead of nonstandard setenv.  Fixes
8778         mingw build.
8779         
8780 2005-07-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8781
8782         * scm/lily.scm (lilypond-all): clear anonymous modules after
8783         processing files.
8784
8785 2005-07-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8786
8787         * flower/include/guile-compatibility.hh (SCM_I_CONSP): add
8788         SCM_I_CONSP
8789
8790         * VERSION: 2.7.3 released
8791
8792         * Documentation/user/invoking.itely (Invoking lilypond): add
8793         LILYPOND_GC_YIELD documentation.
8794
8795         * lily/*: cleanups: use scm_from_int iso. scm_int2num. Idem for
8796         scm_from_real / scm_make_real.
8797
8798         * lily/main.cc (setup_guile_env): new function. Set GC min_yields
8799         higher. This increases memory footprint, but provides overall
8800         speedup of 15 to 20%. 
8801
8802         * lily/include/translator.hh (class Translator): remove
8803         PRECOMPUTED_VIRTUAL everywhere.
8804
8805         * lily/include/lily-guile.hh: inline scm_c[ad]r, scm_is_pair.
8806
8807         * lily/context.cc (now_mom): non-recursive now_mom() 
8808
8809         * lily/include/profile.hh: new file.
8810
8811         * lily/profile.cc: new file.
8812
8813         * lily/grob.cc (Grob::Grob): look properties up directly.
8814
8815         * lily/open-type-font.cc (get_indexed_char): cache index -> bbox
8816         lookups.
8817
8818         * lily/include/box.hh (class Box): smob Box type.
8819
8820         * lily/smobs.cc (protect_smob): O(1) GC (un)protection.
8821
8822         * lily/include/smobs.hh (DECLARE_BASE_SMOBS): add methods
8823         protect() and unprotect(). Use throughout.
8824
8825 2005-07-24  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8826
8827         * Documentation/topdocs/NEWS.tely: new item for \displayLilyMusic
8828
8829         * scm/define-music-display-methods.scm (markup->lily-string):
8830         markup elements can also be strings (without simple-markup
8831         appended)
8832
8833 2005-07-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8834
8835         * lily/context.cc (where_defined): also assign value in
8836         where_defined().
8837
8838         * lily/bezier.cc (get_other_coordinate): use curve_coordinate
8839         (curve_coordinate): new function
8840
8841         * lily/simple-spacer.cc (add_columns): only add rods between
8842         column i and begin/end if keep-inside-line is set (this repleces
8843         allow-outside-line as default)
8844
8845 2005-07-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8846
8847         * lily/tuplet-engraver.cc (start_translation_timestep): only read
8848         tupletSpannerDuration if applicable.
8849
8850         * lily/font-size-engraver.cc (process_music): read fontSize only
8851         once per timestep.
8852
8853         * lily/engraver*cc: use throughout.
8854         
8855         * lily/include/translator.icc (ADD_ACKNOWLEDGER): new macro.
8856
8857         * lily/translator.cc (add_acknowledger): new file. Directly jump
8858         into an Engraver::acknowledge_xxx () method based on a grobs
8859         interface-list.
8860
8861         * lily/include/translator-dispatch-list.hh (class
8862         Engraver_dispatch_list): new struct, new file.
8863
8864         * scm/define-context-properties.scm
8865         (all-internal-translation-properties): remove acceptHashTable,
8866         acknowledgeHashTable
8867
8868         * lily/translator-group.cc (mark_smob): idem for acceptHashTable.
8869
8870         * lily/engraver-group-engraver.cc (Engraver_group_engraver):
8871         change acknowledgeHashTable to C++ member. 
8872
8873         * lily/rest-collision.cc (do_shift): use extract_grob_set().
8874
8875 2005-07-22  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8876
8877         * scm/display-lily.scm: new file. Define a `display-lily-music'
8878         function, that displays the music expression given as an argument,
8879         using LilyPond notation.
8880
8881         * scm/define-music-display-methods.scm: new file. Implementation
8882         of display methods for each music type.
8883
8884         * ly/music-functions-init.ly (displayLilyMusic): new function for
8885         displaying music with LilyPond notation.
8886
8887         * input/regression/display-lily-tests.ly: new regression test file
8888         for `display-lily-music'.
8889
8890         * scm/markup.scm: remove obsolete debugging code (for printing
8891         markups with LilyPond notation).
8892
8893         * scm/define-music-types.scm (music-name-to-property-table):
8894         * scm/clef.scm (supported-clefs): export, in order to be accessible
8895         from the (scm display-lily) module.
8896
8897 2005-07-22  Jan Nieuwenhuizen  <janneke@gnu.org>
8898
8899         * Documentation/topdocs/NEWS.tely (Top): Typo.
8900
8901 2005-07-22  Heikki Junes  <hjunes@cc.hut.fi>
8902
8903         * Documentation/index.html.in, Documentation/texinfo.css,
8904           stepmake/bin/text2html.py, buildscripts/mutopia-index.py,
8905           Documentation/bibliography/index.html.in,
8906           Documentation/bibliography/html-long.bst: revert css-width patch,
8907           it does not work with IE6.
8908
8909 2005-07-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8910
8911         * Documentation/texinfo.css: revert 760px hack. 
8912
8913         * VERSION: release 2.7.2
8914
8915         * Documentation/topdocs/NEWS.tely (Top): mention barNumberCheck
8916
8917         * Documentation/user/basic-notation.itely (Barnumber check): add
8918         section.
8919
8920         * scm/music-functions.scm (skip-to-last): new function. Show only
8921         last showLastLength part of the \score.
8922
8923         * lily/moment-scheme.cc (LY_DEFINE): new function ly:moment-sub
8924
8925         * python/convertrules.py (conv): add ly:x-moment rule
8926
8927         * lily/moment-scheme.cc (LY_DEFINE): rename ly:X-moment  -> ly:moment-X
8928
8929         * Documentation/topdocs/NEWS.tely (Top): add new feature.
8930
8931         * Documentation/user/instrument-notation.itely (Flexibility in
8932         alignment): options in subsections.
8933
8934         * lily/lyric-engraver.cc (process_music): don't typeset text for _
8935         syllable text. Instead, assume that the previous lyric text is a
8936         melismated text.
8937
8938         * Documentation/index.html.in: revert 800x600 change.
8939
8940 2005-07-19  Jan Nieuwenhuizen  <janneke@gnu.org>
8941
8942         * lily/main.cc (main): Remove invalid handle kludge.
8943
8944         * scm/lily.scm (running-from-gui?): WINDOWS: check -dgui.
8945         (lambda): add gui define.
8946
8947 2005-07-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8948
8949         * Documentation/topdocs/NEWS.tely (Top): add note about Musica ficta.
8950
8951         * Documentation/user/instrument-notation.itely (Musica ficta
8952         accidentals): add section Musica ficta accidentals
8953
8954         * lily/accidental-engraver.cc (make_suggested_accidental): new
8955         function.
8956         (make_standard_accidental): move into new function.
8957         (create_accidental): new function.
8958
8959         * scm/define-grobs.scm (all-grob-descriptions): new Grob
8960         AccidentalSuggestion
8961
8962         * lily/output-def-scheme.cc (LY_DEFINE): take default  argument.
8963
8964         * lily/output-def.cc (lookup_variable): return SCM_UNDEFINED if
8965         undefined.
8966
8967         * Documentation/user/global.itely (Page formatting): document
8968         horizontalshift.
8969
8970         * scm/page-layout.scm (default-page-music-height):
8971         horizontalshift: new variable, shift all systems by
8972         horizontalshift to the right, to make space for instrument names.
8973
8974         * scm/paper.scm (set-paper-dimension-variables): add horizontalshift
8975
8976         * lily/input-scheme.cc (LY_DEFINE): take format commands.
8977
8978 2005-07-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8979
8980         * lily/note-column.cc (dir): idem.
8981
8982         * lily/spacing-spanner.cc (Module): idem.
8983
8984         * lily/script-column.cc (before_line_breaking): use extract_grob_set()
8985
8986         * lily/include/paper-column.hh (class Paper_column): add
8987         non-static get_rank() member.
8988
8989         * VERSION: release 2.7.1
8990         
8991         * scm/framework-null.scm: new file, used for benchmarking.
8992
8993 2005-07-20  Heikki Junes  <hjunes@cc.hut.fi>
8994
8995         * Documentation/topdocs/INSTALL.texi, configure.in: fix
8996         version dependencies for fontforge and gs.
8997
8998         * Documentation/index.html.in, Documentation/texinfo.css,
8999         stepmake/bin/text2html.py, buildscripts/mutopia-index.py,
9000         Documentation/bibliography/index.html.in, 
9001         Documentation/bibliography/html-long.bst: optimize width of
9002         html for a 800x600 screen (width:760), increases printability
9003         when 'fit to page' is not set and readability in wide screens.
9004
9005         * stepmake/bin/add-html-footer.py: add missing </p>.
9006
9007 2005-07-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9008
9009         * scm/define-markup-commands.scm (beam): use polygon in beam
9010         command.
9011
9012         * lily/grob-pq-engraver.cc (stop_translation_timestep): save up
9013         all acknowledged grobs, and do potentially expensive merge and
9014         write in one go.
9015
9016         * buildscripts/mf-to-table.py (write_fontlist): enforce noBreak.
9017
9018         * configure.in (reloc_b): add --enable-static-gxx to statically
9019         link to libstdc++
9020
9021         * lily/GNUmakefile (static-gxx-libs): new target
9022         static-gxx-libs. Create symlink to libstdc++.a
9023
9024         * lily/new-lyric-combine-music-iterator.cc: rename to
9025         Lyric_combine_music_iterator
9026
9027         * lily/lyric-combine-music-iterator.cc
9028         (Old_lyric_combine_music_iterator): rename to
9029         Old_lyric_combine_music_iterator
9030
9031         * lily/*-engraver.cc (various): remove double use of
9032         PRECOMPUTED_VIRTUAL function: only use
9033         start_translation_timestep() and stop_translation_timestep(), not
9034         both.
9035
9036         * lily/break-substitution.cc (fast_substitute_grob_array): do
9037         fast_substitute_grob_array for all unordered grob_arrays.
9038         (substitute_grob): return Grob *. Saves packing/unpacking SCMs.
9039         (substitute_grob_array): optimize.
9040
9041         * lily/align-interface.cc (set_axis): set ordered_ for 'elements
9042
9043         * lily/include/grob-array.hh (class Grob_array): ordered_ member.
9044
9045         * lily/parser.yy: revert $globalheader patch.
9046         
9047         * lily/include/translator.icc
9048         (IMPLEMENT_FETCH_PRECOMPUTABLE_METHODS): directly jump into
9049         Translator methods, without _static helper.
9050  
9051         * lily/grob-smob.cc (derived_mark): rename from
9052         do_derived_mark(). Return void.
9053
9054         * scm/define-context-properties.scm
9055         (all-internal-translation-properties): remove tweakCount/tweakRank.
9056
9057         * scm/output-lib.scm (begin-of-line-invisible): use vectors for
9058         predefined break-visibilities.
9059
9060         * lily/item.cc (handle_prebroken_dependencies): use a vector of 3
9061         booleans for break-visibility.
9062
9063         * Documentation/topdocs/NEWS.tely (Top): add note about engravers.
9064
9065         * python/convertrules.py (conv): rule for Timing_translator. 
9066
9067         * lily/include/translator.icc: new file. 
9068
9069         * lily/paper-column-engraver.cc (process_music): new
9070         file. Separate Paper_column factory from Score_engraver.
9071
9072         * lily/vertically-spaced-context-engraver.cc: administer
9073         spaceable-staves property of System.
9074
9075         * lily/translator-group-ctors.cc: new file.
9076
9077         * lily/context-property.cc (make_grob_from_properties): construct
9078         the right Grob class programmatically, looking at the class entry
9079         for the meta property.
9080
9081         * lily/break-align-engraver.cc (stop_translation_timestep): call
9082         Break_align_interface::add_element() directly.
9083
9084         * lily/context.cc (measure_position): measure_position() is now a
9085         normal function.
9086
9087         * lily/include/translator.hh (class Translator): rename
9088         process_acknowledged_grobs() to process_acknowledged() and move to
9089         Translator.
9090
9091         * scm/define-grobs.scm (all-grob-descriptions): add a 'class meta
9092         field for each grob description.
9093
9094         * lily/include/translator-group.hh (class Translator_group):
9095         change to base class. Separate class from Translator. This gets
9096         rid of virtual inheritance for Engravers/Performers.
9097
9098         * lily/staff-performer.cc (class Staff_performer): derive
9099         Staff_performer from Performer, not Performer_group_performer 
9100
9101         * Lily/translator-group.cc (precomputed_recurse_over_translators):
9102         new function.
9103         (precompute_method_bindings): new function. Precompute lists of
9104         Translators, so we only call methods (process_music,
9105         start_translation_timestep, etc.) for Translators needing
9106         it. Also: dispose of pointer-to-member-function calls.
9107
9108         * lily/engraver-group-engraver.cc: remove engraver_each,
9109         recurse_down_engravers ()
9110
9111         * lily/note-head.cc (internal_print): only call
9112         glyph-name-procedure if style != default. 
9113
9114 2005-07-16  Graham Percival  <gperlist@shaw.ca>
9115
9116         * ly/titling-init.ly: add printallheaders option.
9117
9118         * Documentation/user/global.itely: document printallheaders.
9119
9120 2005-07-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9121
9122         * lily/system.cc (do_derived_mark): don't mark from object_alist_
9123         anymore, but do it centrally.  
9124
9125         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
9126         hammer hack.
9127
9128         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-object
9129
9130         * scm/output-lib.scm: remove hammer-print-function.
9131
9132         * lily/include/pointer-group-interface.hh (extract_grob_set): new
9133         macro. Declare a Link_array<Grob> and fill it from a grob.
9134         (extract_item_set): idem for item.
9135
9136         * lily/break-substitution.cc: add header.
9137         (fast_substitute_grob_array): rewrite for Grob_arrays.
9138         (substitute_grob_array): idem.
9139
9140         * lily/group-interface.cc (add_thing): remove file.
9141
9142         * flower/include/parray.hh (class Link_array): slice() is const.
9143
9144         * lily/include/grob-array.hh: new file.
9145
9146         * lily/grob-array.cc (spanner): new file.
9147
9148         * lily/beam-quanting.cc (fill): read details property from beam.
9149
9150         * lily/beam.cc: support details property.
9151
9152         * total speedups below: approx 10%.
9153
9154         * lily/include/beam.hh: new struct, softcode beam quanting parameters
9155
9156         * lily/include/grob.hh (class Grob): add interfaces_ member.
9157
9158         * lily/bezier.cc (init_polynomial_cache): new function: cache
9159         binom(3,j) t^j (1-t)^{3-j}
9160         (curve_point): opps, actually use the cache for t^j , (1-t)^j! 
9161
9162         * lily/*.cc: substitution throughout.
9163
9164         * lily/grob-property.cc (internal_get_object): new routine.
9165         (internal_set_object): idem. Store grob refrences in separate
9166         alist. This saves processing time, since properties aren't
9167         break-substituted, and the per grob namespace is smaller, both for
9168         grobs and non-grob properties.
9169
9170         * scm/define-grob-properties.scm (all-internal-grob-properties):
9171         remove center-element.
9172
9173         * lily/grob.cc: remove tweak-count, tweak-rank.
9174
9175 2005-07-15  Graham Percival  <gperlist@shaw.ca>
9176
9177         * Documentation/user/lilypond-book.itely: fixes example.
9178
9179 2005-07-15  Nicolas Sceaux  <nicolas.sceaux@free.fr>
9180
9181         * Documentation/user/global.itely (Creating titles):    
9182         * Documentation/user/examples.itely (All headers): change the
9183         place of \header in \score blocks (after music block) to make
9184         examples compile (cf. changes on parser.yy on 2005-07-10)
9185
9186 2005-07-13  Graham Percival  <gperlist@shaw.ca>
9187
9188         * python/convertrules.py: add exc -> ecc rule.
9189
9190         * scripts/convert-ly.py: add location of convertrules.py
9191         in a comment.
9192
9193         * Documentation/user/changing-defaults.itely: fix language.
9194
9195 2005-07-12  Jan Nieuwenhuizen  <janneke@gnu.org>
9196
9197         * lily/lily-parser-scheme.cc (LY_DEFINE): Guile 1.6 fix.
9198
9199 2005-07-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9200
9201         * scm/output-socket.scm (grob-bbox): don't use inf? 
9202
9203         * flower/include/rational.hh: add operator bool() 
9204
9205         * scm/define-music-types.scm (music-descriptions): remove
9206         internal-class-name properties.
9207
9208         * lily/include/event.hh: remove file.
9209
9210         * lily/include/music-constructor.hh: remove file.
9211
9212         * lily/parser.yy (Lily_lexer): check EVENT_IDENTIFIER using 'event
9213         in 'types property.
9214
9215         * lily/music.cc (duration_length_callback): new function.
9216
9217         * lily/event.cc: remove file.
9218
9219         * lily/music-constructor.cc: remove file.
9220
9221         * lily/music-scheme.cc (LY_DEFINE): rename to ly:make-music
9222
9223         * lily/context.cc (get_grob_key): nop if use_object_keys not set.
9224         (get_context_key): idem.
9225
9226         * scm/lily.scm (lambda): new option object-keys (default to #f)
9227
9228         * scm/output-svg.scm (utf-8-string): rename  from utf8-string.
9229
9230         * scm/output-gnome.scm: remove beam routine.
9231
9232         * scm/output-ps.scm (scm): idem.
9233
9234         * scm/output-svg.scm: remove beam.
9235
9236         * ps/music-drawing-routines.ps: remove draw_beam.
9237
9238         * lily/lookup.cc (beam): use round_filled_polygon() for beam.
9239
9240         * flower/include/guile-compatibility.hh (scm_from_locale_string):
9241         add scm_from_locale_string compatibility glue. 
9242
9243 2005-07-13  Yoshinobu Ishizaki  <isizaki@mte.biglobe.ne.jp>
9244
9245         * scripts/lilypond-book.py: Prevent occuring error when
9246         'lilypond-book --output=foo/ somefile.ly' is executed multiple
9247         times and target file shoud be overwritten.  (Error message said
9248         'input file and output file is same'.)
9249
9250 2005-07-13  Graham Percival  <gperlist@shaw.ca>
9251
9252         * input/regression/slur-extreme.ly,
9253         input/regression/slur-scoring.ly, lily/slur-configuration.cc,
9254         lily/slur.cc, mf/feta-din-code.mf, mf/feta-timesig.mf,
9255         mf/parmesan-heads.mf, scm/define-grob-properties.scm: Change
9256         "excentricity" to "eccentricity".
9257
9258         * Documentation/user/converters.itely: fix URL for Noteedit and
9259         Rosegarden.
9260
9261         * THANKS: added Yoshinobu Ishizaki.
9262
9263 2005-07-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9264
9265         * scm/define-markup-commands.scm (justify-field): add. 
9266
9267         * scm/define-grobs.scm (all-grob-descriptions): decrease font size.
9268
9269 2005-07-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9270
9271         * lily/lookup.cc (filled_box): express filled_box with
9272         round_filled_box
9273
9274         * scm/midi.scm (paper-book-write-midis): new function. Write all
9275         performances in numbered MIDI files.
9276
9277         * lily/performance-scheme.cc (LY_DEFINE): new file.
9278         (LY_DEFINE): new function ly:performance-write.
9279
9280         * lily/lily-parser-scheme.cc (LY_DEFINE): ly:parser-output-name:
9281         new function.
9282         (LY_DEFINE): change name ly:parser-define -> ly:parser-define!
9283
9284         * scm/framework-*.scm: use port arguments throughout.
9285
9286         * lily/include/lily-guile.hh: rename ly_c_X_p -> ly_is_X
9287
9288         * lily/paper-outputter.cc (Paper_outputter): take port argument.
9289
9290         * lily/paper-outputter-scheme.cc (LY_DEFINE): take port argument.
9291
9292         * scm/framework-texstr.scm (output-framework): 
9293
9294         * input/regression/repeat-fold.ly (texidoc): remove TeX strings.
9295
9296         * scm/output-lib.scm (tablature-stem-attachment-function):
9297         tablature stem attachment fix. 
9298
9299 2005-07-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9300
9301         * lily/bezier.cc: hardcode binomial coefficients of order 3.
9302
9303         * lily/include/music-wrapper.hh: remove Music_wrapper as Music subtype.
9304
9305         * scm/define-music-types.scm (music-descriptions): don't use
9306         Music_wrapper type.
9307
9308         * lily/paper-column.cc (print): print moment too.
9309
9310         * scripts/mup2ly.py (cp_to_dir): remove 1.5.2 compat glue.  
9311         remove compatibility cruft.
9312
9313         * lily/parser.yy (score_body): \score can only begin with Music. 
9314
9315         * lily/score-scheme.cc (LY_DEFINE): rename scorify to
9316         make-score. Take music argument only. Move parser interaction to
9317         Scheme.
9318
9319         * scm/lily-library.scm (scorify-music): new function.
9320
9321         * python/lilylib.py (datadir): remove 2.1 compat kludge.
9322         (datadir): remove resource import.
9323         (print_environment): remove get_bbox()
9324         (cp_to_dir): remove pre 1.5.2 compat glue.
9325
9326 2005-07-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9327
9328         * lily/include/simple-spacer.hh (Module): idem.
9329
9330         * lily/include/spring.hh (struct Spring): store inverse
9331         strength. This prevents division by zero.
9332
9333         * VERSION: release 2.7.0
9334         
9335         * lily/include/music.hh (class Music): remove Music::duration_log()
9336
9337         * lily/stem-engraver.cc (make_stem): take duration log from event.
9338
9339         * lily/chord-tremolo-engraver.cc: don't ack note-head-interface.
9340
9341 2005-07-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9342
9343         * scm/lily.scm (ly:load): load autochange.scm
9344
9345         * Documentation/user/tutorial.itely (Running LilyPond for the
9346         first time): remove reference to DVI/TeX
9347
9348         * scm/define-markup-commands.scm (text): add \text markup command.
9349
9350         * configure.in (reloc_b): bump requirement to Python 2.2.
9351
9352         * lily/include/dots.hh (class Dots): make has_interface() static.
9353
9354         * python/convertrules.py (conv): add rule for ly:grob-default-font
9355
9356         * scm/define-grobs.scm (all-grob-descriptions): reorganize in
9357         alphabetical order.
9358
9359         * input/regression/trill-spanner-pitched.ly: new file.
9360
9361         * lily/font-interface-scheme.cc (LY_DEFINE): function
9362         ly:grob-default-font (changed from get-default-font).
9363
9364         * lily/axis-group-interface-scheme.cc (LY_DEFINE): new file.
9365
9366         * lily/note-head.cc (internal_print): if style is not a symbol,
9367         set style to 'default. 
9368         (internal_print): no style suffix if glyph-name-procedure not
9369         set. Default to quarter head.
9370
9371         * scm/define-grobs.scm (Module): new grob TrillPitchHead.
9372
9373         * scm/define-music-properties.scm (all-music-properties): add trill-pitch.
9374
9375         * ly/music-functions-init.ly: \pitchedTrill
9376
9377         * lily/pitched-trill-engraver.cc (acknowledge_grob): new file.
9378
9379         * ly/Welcome_to_LilyPond.ly: update to 2.6.0
9380
9381         * lily/trill-spanner-engraver.cc (finalize): rename req -> event
9382
9383         * scm/define-markup-commands.scm (pad-markup): pad-markup command.
9384
9385         * po/fr.po: update
9386
9387         * po/de.po: update.
9388
9389 2005-07-06  Graham Percival  <gperlist@shaw.ca>
9390
9391         * Documentation/user/changing-defaults.itely: add link
9392         to grob-iterface.
9393
9394         * Documentation/user/advanced-notation.itely: add material
9395         to Setting automatic beam behaviour.  Thanks, Joe!
9396
9397         * Documentation/user/lilypond.itely: change encoding to utf-8.
9398
9399 2005-07-01  Mats Bengtsson  <mabe@s3.kth.se>
9400
9401         * Documentation/user/advanced-notation.itely (Setting automatic
9402         beam behavior): Correct the documentation of
9403         revert-auto-beam-setting (backportme)
9404
9405 2005-07-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9406
9407         * lily/ly-module.cc (ly_make_anonymous_module): define
9408         %module-public-interface of module. 
9409
9410         * lily/lily-parser.cc (print_smob): allow printing of parser smob
9411         without lexer.
9412
9413 2005-07-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9414
9415         * input/regression/fret-diagrams.ly: stretch example.
9416
9417 2005-06-30  Jan Nieuwenhuizen  <janneke@gnu.org>
9418
9419         * cygwin/GNUmakefile ($(outdir)/%.sh): Bugfix: use TAB (Bertalan
9420         Fodor).
9421
9422 2005-06-30  Graham Percival  <gperlist@shaw.ca>
9423
9424         * Documentation/topdocs/AUTHORS.texi: update personal web address.
9425
9426         * Documentation/user/examples.itely, lilypond-book.itely:
9427         change \RequirePackage to \usepackage.
9428
9429         * Documentation/user/global.itely: document copyright and tagline.
9430
9431 2005-06-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9432
9433         * Documentation/user/basic-notation.itely (Transpose): remove link
9434         to nonexistent UntransposableMusic.
9435
9436         * scm/output-svg.scm: remove old definitions.
9437
9438         * scripts/lilypond-book.py (do_file): search for kpsewhich before
9439         invoking.
9440
9441         * python/lilylib.py (search_exe_path): new function.
9442
9443 2005-06-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9444
9445         * python/lilylib.py (mkdir_p): remove setup_environment()
9446         (backportme)
9447
9448         * buildscripts/mutopia-index.py (headertext): trim text.
9449
9450         * Documentation/topdocs/NEWS.tely (Top): refresh.
9451
9452         * scm/define-markup-commands.scm (wordwrap-string): new function:
9453         split string in paras and words.
9454         (wordwrap-markups): new function.
9455         (wordwrap-stencils): new function. 
9456         (justify): use it.
9457         (wordwrap): use it.
9458         (wordwrap-string): use it
9459         (justify-string): use it.
9460
9461         * scm/lily-library.scm (regexp-split): new function.
9462
9463         * scm/define-markup-commands.scm: remove encoded-simple. 
9464         remove font-markup.
9465         (fontsize): remove old version  of fontsize.
9466         (wordwrap): new markup function. Wrap into paragraphs.
9467
9468         * VERSION: Branch lilypond_2_6
9469         (MINOR_VERSION): go to 2.7.0
9470
9471 2005-06-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9472
9473         * po/zh_TW.po: update from translation project.
9474
9475 2005-06-28  Graham Percival  <gperlist@shaw.ca>
9476
9477         * scm/midi.scm: compile fix.
9478
9479 2005-06-28  Mats Bengtsson  <mabe@s3.kth.se>
9480
9481         * scripts/lilypond-book.py : Fix embarrassing bug in my previous
9482         patch. Now, the tempfile module is loaded too, not only used.
9483
9484 2005-06-28  Stephen Charles McCarthy  <stecmccarthy@hotpop.com>
9485
9486         * scm/midi.scm: changed midi volumes in absolute-volume-alist from
9487         0.05 - 1.00 to 0.25 - 1.00
9488
9489         * scm/midi.scm: moved the default-instrument-equalizer procedure
9490         to just under the insturment-equalizer-alist it takes as an
9491         argument.
9492
9493 2005-06-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9494
9495         * Documentation/user/advanced-notation.itely (Font selection):
9496         remove CMR note.
9497
9498         * scm/framework-ps.scm (write-preamble): ly:warning iso. ly:warn 
9499
9500 2005-06-28  Jan Nieuwenhuizen  <janneke@gnu.org>
9501
9502         * THANKS: Add UTF-8 marker.
9503
9504         * Documentation/user/point-and-click.itely (http): Update: use
9505         lilypond-invoke-editor.  Fix: instruct to use user.js.
9506
9507 2005-06-27  Graham Percival  <gperlist@shaw.ca>
9508
9509         * ly/titling-init.ly: implements printpagenumber, increases
9510         space between dedication and title (to avoid collisions with
9511         "g" and "q" in dedication), and nicer logic about copyright
9512         and instrument fields being printed on the first page.
9513         Thanks Vincent!
9514
9515         * Documentation/user/global.itely: document printpagenumber.
9516
9517 2005-06-27  Jan Nieuwenhuizen  <janneke@gnu.org>
9518
9519         * Documentation/topdocs/NEWS.tely: Update to 2.6.
9520
9521 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9522
9523         * THANKS: update to 2.6
9524
9525         * VERSION: 2.6.0 released.
9526
9527 2005-06-27  Jan Nieuwenhuizen  <janneke@gnu.org>
9528
9529         * cygwin/GNUmakefile (OUT_POSTREMOVES): Reinclude install script
9530         rule, errorneously removed probably because of misleading comment.
9531
9532 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9533
9534         * python/lilylib.py (datadir): py2exe comments.
9535
9536         * Documentation/topdocs/INSTALL.texi (Top): remove EC fonts requirement.
9537
9538         * configure.in (reloc_b): make fontconfig REQUIRED.
9539
9540 2005-06-27  Heikki Junes <hjunes@cc.hut.fi>
9541
9542         * po/fi.po: add latest translations.
9543
9544 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9545
9546         * ChangeLog: recode utf-8
9547
9548         * Documentation/pictures/lilypond.xpm (Module): edited photo as
9549         logo.
9550
9551         * Documentation/user/examples.itely (Module): 2.4.0 -> 2.6.0
9552
9553         * input/*.ly (Module): 2.4 -> 2.6 grand convert-ly s/r. 
9554
9555         * python/convertrules.py (do_conversion): don't print program_name
9556         from within a module
9557
9558         * configure.in (reloc_b): bump fontforge requirement to 20050624.
9559
9560         * python/convertrules.py (conv): add 2.6.0 dummy rule.
9561
9562 2005-06-23  Graham Percival  <gperlist@shaw.ca>
9563
9564         * Documentation/user/lilypond-book.itely,
9565         Documentation/user/examples.itely: add \RequirePackage{graphics}.
9566
9567         * ly/titling.ly: checks printfirstpagenumber, adds meter, and
9568         fixes baseline-skip.  Thanks Vincent!
9569
9570         * Documentation/user/advanced-notation.itely, global.itely:
9571         moved "Selecting font sizes" to global, since it deals with
9572         notation font size, not text fonts.
9573
9574 2005-06-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9575
9576         * buildscripts/gen-emmentaler-scripts.py (notice): add GPL notice
9577         to fonts.
9578
9579 2005-06-23  Mats Bengtsson  <mabe@s3.kth.se>
9580
9581         * scripts/lilypond-book.py (LATEX_DOCUMENT): More or less ugly
9582         workaround since /dev/stdin doesn't work on Cygwin. Using a
9583         temporary file in the current directory since latex doesn't
9584         understand the path name to the default TMP in Cygwin (at least on
9585         win XP).
9586         
9587         * Documentation/user/global.itely (Creating titles): Correct
9588         misprint in example. Thanks to Rob Vlasaty.
9589
9590 2005-06-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9591
9592         * VERSION (PATCH_LEVEL): release 2.5.32
9593
9594         * lily/lily-parser-scheme.cc (LY_DEFINE): don't set 'parser
9595         variable in lily module
9596
9597         * scm/framework-ps.scm (output-classic-framework): error message
9598         regarding the classic framework.
9599
9600         * Documentation/user/henle-flat-gray.png (Module): new file.
9601
9602         * Documentation/user/baer-flat-gray.png (Module): new file.
9603
9604         * scm/output-lib.scm (fret-number-tablature-format): vcenter and
9605         whiteout for markups.
9606
9607         * buildscripts/substitute-encoding.py (note_glyph): include _ in
9608         regex too. This fixes change clef appearance in PDF. 
9609
9610         * ttftool/include/*: remove.
9611
9612         * configure.in (reloc_b): remove TTFTOOL_ENDIAN
9613
9614         * config.make.in (WINDRES): remove TTFTOOL_ENDIAN.
9615
9616         * lily/GNUmakefile (MODULE_INCLUDES): remove ttftool
9617
9618         * ttftool/*: remove ttftool subdirectory.
9619
9620         * GNUmakefile.in (SUBDIRS): remove ttftool subdirectory.
9621
9622         * lily/ttf.cc (print_header): new file. Convert to type42, using
9623         FreeType to parse the TTF. 
9624
9625         * ttftool/parse.c (readPostTable): ugh. Kludge: nglyphs in maxp
9626         and post table may differ. Pass around post_nglyphs as well.
9627
9628 2005-06-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9629
9630         * ly/music-functions-init.ly (musicMap): new music function
9631         musicMap. 
9632         
9633 2005-06-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9634
9635         * make/mutopia-rules.make: anti-alias-factor = 2
9636
9637         * scm/ps-to-png.scm (make-ps-images): cleanup multipage vs. single
9638         page switch.
9639
9640         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): set
9641         anti-alias-factor for lilypond-book runs.
9642
9643         * scm/ps-to-png.scm (scale-down-image): new function.
9644         (my-system): new function.
9645         (make-ps-images): blow up GS resolution by anti-alias-factor,
9646         scale down image by anti-alias-factor.  This improves appearance
9647         of bitmaps
9648         (make-ps-images): remove showpage. Fixes spurious empty png at
9649         end.
9650
9651         * scm/framework-ps.scm (write-preamble): downcase filename before
9652         string-matching. Should fix .TTF files (as opposed to ttf files)  
9653
9654         * Documentation/user/tutorial.itely (Running LilyPond for the
9655         first time): separate subsections for windows, macos and unix.  
9656
9657         * Documentation/user/invoking.itely (Updating files with
9658         convert-ly): add MacOS X note.
9659
9660 2005-06-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9661
9662         * Documentation/user/introduction.itely (Engraving): don't include
9663         file optical-spacing, add directly.
9664
9665         * lily/paper-outputter.cc (file): open file in binary mode. This
9666         fixes OTF embedding on windows.
9667
9668 2005-06-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9669
9670         * scm/framework-ps.scm (write-preamble): remove debugging output.
9671
9672         * mf/aybabtu.pe.in (i): don't generate aybabtu.cff
9673
9674         * mf/GNUmakefile ($(outdir)/fonts.cache-1): create font cache for
9675         outdir.
9676         (install-fc-cache): install font cache in installation directories.
9677
9678 2005-06-17  Jan Nieuwenhuizen  <janneke@gnu.org>
9679
9680         * scm/editor.scm (editor-command-template-alist): Use char iso
9681         column, except for Emacs.
9682         (get-editor-command): Substitute char too (Bertalan Fodor).
9683
9684 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
9685
9686         * scm/ps-to-png.scm (make-ps-images): Use ~S instead of single
9687         quoted ~s.  This should fix PNG output on Windows; single quotes
9688         are regular characters on Windows.
9689
9690 2005-06-16  Graham Percival  <gperlist@shaw.ca>
9691
9692         * Documentation/user/basic-notation.itely: include ChoirStaff
9693         in System start delimiters.
9694
9695         * Documentation/user/putting.itely: new doc section on
9696         fixing overlapping notation.
9697
9698 2005-06-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9699
9700         * Documentation/user/global.itely (Paper size): \paper is in
9701         \book, not \score.
9702
9703         * make/mutopia-rules.make: -ddelete-intermediate-files
9704
9705         * ly/engraver-init.ly: make Staff default child of ChoirStaff.
9706
9707 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
9708
9709         * ChangeLog: Recode utf-8.
9710
9711         * python/GNUmakefile (INSTALLATION_OUT_DIR): Install .so module in
9712         datadir with .py modules.
9713
9714 2005-06-15  Heikki Junes  <hjunes@cc.hut.fi>
9715
9716         * Documentation/user/basic-notation.itely (Ties): add tieDashed.
9717
9718 2005-06-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9719
9720         * make/mutopia-rules.make: switch off ps, p&c for lilypond runs.
9721         
9722         * scm/framework-ps.scm (write-preamble): remove status check.
9723
9724         * Documentation/user/invoking.itely (Updating files with
9725         convert-ly): remove -o option.
9726
9727         * VERSION (PACKAGE_NAME): release 2.5.31
9728
9729         * scm/framework-ps.scm (write-preamble): use ly:system.
9730         (write-preamble): verbosity.
9731
9732         * scripts/convert-ly.py: cleanup. Use lilylib. Use convertrules.
9733
9734         * python/convertrules.py: new file. Store conversion rules
9735         separately.
9736
9737 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9738
9739         * scm/backend-library.scm (postprocess-output): remove debugging gobs.
9740
9741 2005-06-14  Mats Bengtsson  <mabe@s3.kth.se>
9742
9743         * Documentation/topdocs/NEWS.tely (Top): Corrected name of
9744         \musicDisplay 
9745
9746         * Documentation/user/instrument-notation.itely (More stanzas): Add
9747         reference to StanzaNumber.
9748
9749 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9750
9751         * THANKS: separate section for website translators.
9752
9753 2005-06-14  Graham Percival  <gperlist@shaw.ca>
9754
9755         * Documentation/topdocs/INSTALL.texi: update vim info;
9756         thanks Simon Bailey!
9757
9758         * Documentation/user/advanced-notation.itely: included
9759         color names.
9760
9761         * Documentation/user/advanced-notation.itely,
9762         Documentation/usr/notation-appendices.itely: moved
9763         color names into an appendix.
9764
9765 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9766         
9767         * lily/program-option.cc (LY_DEFINE): new function ly_add_option.
9768
9769         * scm/lily.scm (lambda): initialize program options from here.
9770
9771         * scm/framework-*.scm: add header info.
9772
9773         * lily/main.cc (parse_argv): only set output format to pdf if no
9774         other format specified.
9775
9776         * scm/backend-library.scm (postprocess-output): process
9777         'delete-intermediate-files after running convert-to-*. This fixes
9778         PNG generation when 'delete-intermediate-files is set.
9779         
9780 2005-06-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9781
9782         * buildscripts/mutopia-index.py (list_item): thinko. Fixes png
9783         links on website. 
9784
9785 2005-06-13  Graham Percival  <gperlist@shaw.ca>
9786
9787         * Documentation/topdocs/INSTALL.texi,
9788         Documentation/user/lilypond-book.itely: typos.
9789
9790 2005-06-12  Pal Benko  <benkop@freestart.hu>
9791
9792         * elisp/lilypond-mode.el (LilyPond-command-alist: 2PS): space
9793         added between program name and switch; -b changed to -f not
9794         to generate pdf
9795
9796 2005-06-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9797
9798         * elisp/lilypond-mode.el (LilyPond-command-alist): remove 2midi
9799         (LilyPond-command-alist): use -f ps (thanks to Pal Benko)
9800
9801         * input/sakura-sakura.ly: add \midi.
9802
9803         * buildscripts/mutopia-index.py (find): use /usr/bin/find
9804         iso. python find. 
9805
9806         * ttftool/test.c (main): cosmetics.
9807
9808         * ttftool/util.c (surely_lseek): use stdio FILE's for I/O 
9809
9810         * ttftool/test.c: new file. If compiled with -DTEST_TTFTOOL,
9811         create a ttf2ps binary.
9812
9813         * scm/ps-to-png.scm (make-ps-images): fix rename-page-1 functionality.
9814
9815         * scm/backend-library.scm (postscript->png): set rename-page-1 to
9816         true.
9817
9818 2005-06-11  Graham Percival <gperlist@shaw.ca>
9819
9820         * Documentation/user/lilypond-book.itely: add warning about
9821         the font warnings in dvips.
9822
9823 2005-06-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9824
9825         * THANKS: typo
9826
9827         * mf/GNUmakefile ($(outdir)/$(redhat-package)): Fedora-4 url.
9828
9829         * GNUmakefile.in: remove links for .map, .enc
9830         don't fail if out/ doesn't exist yet.
9831
9832 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9833
9834         * ttftool/util.c (surely_read): return nbytes
9835
9836         * stepmake/bin/text2html.py (txt2html): add utf-8 marker. 
9837
9838         * VERSION (PACKAGE_NAME): release 2.5.30
9839
9840         * flower/string-convert.cc (precision_string): >? fix.
9841
9842         * scm/ps-to-png.scm (make-ps-images): search-gs for multipage too.
9843         (make-ps-images): add verbose -q too.
9844
9845         * lily/default-actions.cc (Module): new file. default
9846         {book,score}-print functions.
9847
9848         * scm/ly-from-scheme.scm (ly:parse-string-result): use new setup:
9849         pass results via parseStringResult, lookup via ly:parser-lookup.  
9850
9851         * lily/lily-parser.cc (Lily_parser): only clone lexer in
9852         constructors.
9853         (parse_file): encapsulate do_yyparse() in scm_set_current_module()
9854         (parse_string): idem.
9855
9856         * ly/spanners-init.ly (assertBeamQuant): don't use #{ #} in init.
9857
9858         * lily/main.cc (main_with_guile): copy be_verbose_global into
9859         ly_set_option()
9860
9861 2005-06-10  Jan Nieuwenhuizen  <janneke@gnu.org>
9862
9863         * scm/backend-library.scm (postscript->pdf):
9864         * scm/ps-to-png.scm (make-ps-images): Do not use gs -q switch in
9865         verbose mode.  Search for several names of gs executable.
9866
9867 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9868
9869         * lily/ly-module.cc (ly_make_anonymous_module): call make-module
9870         directly. This fixes a massive memory leak, provided you use CVS
9871         GUILE.
9872
9873 2005-06-10  Erik Sandberg  <ersa9195@student.uu.se>
9874
9875         * ly/property-init.ly: Added tieDashed.
9876
9877         * THANKS: Added some bughunters for 2.5.
9878
9879 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9880
9881         * lily/program-option.cc: add debug-gc option.
9882
9883         * lily/include/lily-guile-macros.hh: don't protect exported module
9884         objects.
9885
9886         * lily/include/lily-parser.hh (class Lily_parser): remove beam_check().
9887
9888         * scm/backend-library.scm (postscript->pdf): use
9889         delete-intermediate-files iso. running-from-gui? 
9890
9891         * ttftool/util.c (surely_read): robustness. Allow read() to return
9892         less bytes than requested, as per posix standards.
9893
9894         * lily/pfb.cc (LY_DEFINE): set ttf_verbosity from ttf-verbosity
9895         program option.
9896
9897         * ttftool/include/ttftool.h ("C"): rename verbosity to
9898         ttf_verbosity. Add to public interface.
9899
9900         * scm/music-functions.scm (unfold-repeats): remove debugging display.
9901
9902         * lily/program-option.cc: rename from scm-option.cc
9903
9904         * lily/scm-option.cc (LY_DEFINE): handle no-foobar option setting.
9905         (get_help_string): Print pretty help string.
9906
9907         * scripts/lilypond-book.py (PREAMBLE_LY): add no-point-and-click
9908         to snippet preamble.
9909
9910         * lily/scm-option.cc: remove command-line-settings option. Fold
9911         all command-line options plus default settings in a generic
9912         interface. 
9913
9914         * flower/getopt-long.cc (table_string): indent 2nd lines of help
9915         texts too.
9916
9917 2005-06-09  Jan Nieuwenhuizen  <janneke@gnu.org>
9918
9919         * flower/file-name.cc: Bugfix: only append DIRSEP if BASE_
9920         or EXT_ components non-empty.
9921
9922 2005-06-08  Jan Nieuwenhuizen  <janneke@gnu.org>
9923
9924         * scm/lily.scm (running-from-gui?): Export.
9925
9926         * lily/lily-parser-scheme.cc (ly:parse-file): Use it to generate
9927         output in .ly source directory.
9928
9929 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9930
9931         * ttftool/util.c (surely_lseek): more verbosity.
9932
9933         * lily/include/lily-proto.hh: add Context_def. This fixes FC4
9934         compile.
9935
9936         * lily/parser.yy (Repeated_music): remove >? 
9937
9938         * scm/backend-library.scm (postscript->pdf): Support for
9939         -dgs-font-load=1
9940
9941         * scm/framework-ps.scm (write-preamble): make font loading
9942         switchable to GS via --define-default gs-font-load=1
9943
9944 2005-06-09  Graham Percival  <gperlist@shaw.ca>
9945
9946         * Documentation/user/global.itely: added \layout docs.
9947
9948 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9949
9950         * lily/lily-parser-scheme.cc: add unistd.h
9951
9952 2005-06-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9953
9954         * scm/editor.scm: add char argument.
9955
9956         * scripts/lilypond-invoke-editor.scm (dissect-uri): add char. 
9957
9958         * ttftool/util.c (syserror): use errno for better error reporting.
9959
9960         * lily/source-file.cc (get_counts): new function. Calc column,
9961         line and char count in one go.
9962
9963         * lily/binary-source-file.cc (quote_input): rename to quote_input
9964
9965         * lily/input.cc (set): new function.
9966
9967 2005-06-08  Jan Nieuwenhuizen  <janneke@gnu.org>
9968
9969         * flower/file-path.cc (find): Bugfix.  Append rather than prepend
9970         directory part of file name to search directory.
9971
9972         * lily/lily-parser-scheme.cc (ly:parse-file): Prepend cwd to
9973         search path and chdir to DIR if --outname=DIR used.
9974
9975         * lily/main.cc (prepend_env_path): Bugfix: Check directory
9976         existence before appending original path.
9977
9978 2005-06-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9979
9980         * ttftool/parse.c (readNamingTable): verbosity for "bad TTF
9981         file" massage.
9982
9983         * Documentation/user/GNUmakefile (TEXINPUTS): set TEXINPUTS so our
9984         texinfo.tex is always used.
9985         
9986 2005-06-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9987
9988         * flower/include/axis.hh: rename from axes.hh
9989
9990         * lily/include/text-interface.hh (Module): rename from text-item.hh
9991
9992         * VERSION (PATCH_LEVEL): release 2.5.29
9993
9994         * ttftool/parse.c (readNamingTable): handle Apple/8bit encoding too.
9995
9996         * scm/framework-ps.scm (font-file-as-ps-string): new function.
9997         (handle-macfont): new function. Call fondu for Native mac fonts.
9998
9999         * scm/define-markup-commands.scm (fill-line): handle text-widths =
10000         '() case.
10001
10002 2005-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
10003
10004         * scm/ps-to-png.scm (make-ps-images): Bugfix: `Pages: 1\n' is not
10005         multi-page.  Fix .eps regular expression.
10006
10007 2005-06-07  Graham Percival  <gperlist@shaw.ca>
10008
10009         * Documentation/user/putting.itely: add info on modifying templates.
10010
10011         * Documentation/user/lilypond.itely, converters.itely, invoking.itely:
10012         misc small changes.
10013
10014 2005-06-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10015
10016         * scm/ps-to-png.scm (make-ps-images): no paper size for multi-page.
10017
10018         * scripts/lilypond-ps2png.scm
10019
10020         * VERSION (PACKAGE_NAME): release 2.5.28
10021
10022 2005-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
10023
10024         * lily/main.cc (prepend_env_path): Do not append /, that does not
10025         work.  Localedir lives in datadir, not in prefix.
10026
10027         * scm/framework-ps.scm (write-preamble): Remove load-font-via-GS
10028         hack for windows.
10029
10030         * flower/include/file-cookie.hh: Compile fix.
10031
10032 2005-06-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10033
10034         * ly/engraver-init.ly: add \defaultchild to InnerStaffGroup. 
10035
10036         * scm/ps-to-png.scm (gulp-port): rename from read. Don't redefine
10037         system primitives.
10038         (gulp-port): using read-string!/partial. We don't want to read an
10039         entire PS file  (GUILE 1.6 limits strings to 16M) 
10040
10041         * scm/define-grobs.scm (all-grob-descriptions): remove arch-*
10042         properties. Add font-interface. 
10043
10044         * scm/define-grob-properties.scm (all-user-grob-properties):
10045         remove old bracket properties.
10046
10047         * scm/x11-color.scm: reformat. 
10048
10049         * lily/ledger-line-engraver.cc (acknowledge_grob): create new
10050         LedgerLineSpanner if new StaffSymbol is found. 
10051
10052         * lily/staff-symbol-engraver.cc (acknowledge_grob): also set
10053         staff-symbol for finishing staff. 
10054
10055         * lily/GNUmakefile (OUT_DIST_FILES): don't dist Flex output
10056
10057         * scm/output-svg.scm (setcolor): implement (re)setcolor with <g>
10058         change black to currentColor everywhere. This fixes color support
10059         in SVG.
10060
10061 2005-06-06  Carl Sorensen  <carldsorensen@comcast.net>
10062
10063         * input/regression/fret-diagrams.ly: new file to test fret diagram
10064         capability
10065
10066         * scm/output-tex.scm: remove white-dot and white-text
10067
10068         * scm/output-ps.scm: remove white-dot and white-text
10069
10070         * scm/fret-diagrams.scm (sans-serif-stencil-white): removed -- 
10071         using ly:stencil-in-color instead
10072         (draw-dots) : remove call to white-dot
10073
10074 2005-06-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10075
10076         * flower/memory-stream.cc (Memory_out_stream): remove fopencookie
10077         support.
10078
10079         * ttftool/ttfps.c: use lily_cookie functions everywhere. 
10080
10081         * flower/include/file-cookie.hh: new file. lily_cookie extension 
10082
10083         * flower/file-cookie.cc: new file. lily_cookie extension.
10084         
10085 2005-06-06  Jan Nieuwenhuizen  <janneke@gnu.org>
10086
10087         * scm/editor.scm (editor-command-template-alist): Add syn
10088         editor (Jaap [de Vos]).
10089
10090 2005-06-05  Jan Nieuwenhuizen  <janneke@gnu.org>
10091
10092         * scripts/lilypond-ps2png.scm:
10093         * scm/ps-to-png.scm: New file.
10094
10095         * scm/backend-library.scm (postscript->png): Use it.
10096
10097         * scripts/lilypond-ps-to-png.py: Remove file.
10098
10099         * python/lilylib.py (get_bbox, make_ps_images): Remove.
10100
10101 2005-06-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10102
10103         * lily/auto-beam-engraver.cc (acknowledge_grob): remove dead code.
10104
10105         * scm/auto-beam.scm (default-auto-beam-check): only forbid beam
10106         start on grace moment. Fixes autobeam-grace.ly.
10107
10108         * lily/auto-beam-engraver.cc (process_acknowledged_grobs): don't
10109         process anything unless we're at the end of a pending beam. Fixes
10110         syncopated 8ths beamed across a beat.
10111
10112 2005-06-03  Jan Nieuwenhuizen  <janneke@gnu.org>
10113
10114         * scm/editor.scm (editor-command-template-alist): Start emacs if
10115         emacslient fails.
10116
10117         * lily/main.cc (setup_localisation): Listen to LILYPOND_LOCALEDIR.
10118
10119         * flower/file-path.cc (is_file, is_dir): Export.
10120
10121         * lily/main.cc (prepend_env_path, set_env_file): Use them.
10122
10123 2005-06-02  Mats Bengtsson  <mabe@s3.kth.se>
10124
10125         * lily/easy-notation.cc: Added include cctype to correct
10126         compilation error.
10127
10128 2005-06-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10129
10130         * scm/backend-library.scm (postscript->pdf): set resolution to
10131         1200, so bitmap fonts aren't that ugly. 
10132
10133         * Documentation/topdocs/NEWS.tely (Top): add entry about font family.
10134
10135         * lily/dynamic-engraver.cc (acknowledge_grob): only center on
10136         parent if we have a notehead. Fixes incorrect offsets when
10137         Paper_column is very wide in the X direction.
10138
10139         * input/regression/font-family-override.ly (Module): new file.
10140
10141         * scm/font.scm (make-pango-font-tree): new function.
10142
10143         * lily/beam.cc (before_line_breaking): remove warning about less
10144         than 2 visible stems. We still get a warning when there is only
10145         one stem.
10146
10147 2005-06-01  Werner Lemberg  <wl@gnu.org>
10148
10149         * buildscripts/substitute-encoding.py: Handle PFAemmentaler-xx.pfa
10150         correctly.
10151
10152 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10153
10154         * lily/slur-scoring.cc (generate_avoid_offsets): new
10155         function. Generate avoid offsets once per slur.
10156
10157         * lily/slur.cc (add_extra_encompass): add dependency to
10158         extra-encompass object. This fixes bugs/c-phrasing-slur.ly
10159
10160         * lily/stencil.cc (is_empty): check dim_ field for is_empty()
10161         too. Fixes inf error with added bass notes.
10162
10163         * scripts/lilypond-book.py (do_options): --psfonts doesn't take
10164         argument anymore.
10165
10166         * make/ly-vars.make (DVIPS_FLAGS): use .psfonts as extension.
10167
10168         * input/tutorial/lbook-latex-test.tex: add line length test.
10169
10170         * scripts/lilypond-book.py (set_default_options): new
10171         function. Call this before dissecting snippets, so linewidth
10172         settings reach the snippets.
10173
10174 2005-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
10175
10176         * scm/lily.scm (PLATFORM, slashify): Remove double slashes.
10177
10178 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10179
10180         * input/mutopia/R.Schumann/romanze-op28-2.ly (leftb): bugfix.
10181
10182 2005-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
10183
10184         * stepmake/aclocal.m4: More autopackage friendliness.
10185
10186 2005-05-31  Graham Percival  <gperlist@shaw.ca>
10187
10188         * Documentation/index.html.in: remove link to LSR.
10189
10190         * Documentation/user/global.itely: remove duplicate
10191         "dedication" \header{} section.
10192
10193 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10194
10195         * VERSION (PACKAGE_NAME): release 2.5.27.
10196
10197         * lily/lily-parser-scheme.cc (LY_DEFINE): unprotect paper
10198         too. Plugs memory leak.
10199
10200         * make/lilypond.fedora.spec.in (Group): remove
10201         lilypond-pdfpc-helper.
10202
10203         * scripts/GNUmakefile (SEXECUTABLES): remove
10204         lilypond-pdfpc-helper. Use lilypond-invoke-editor instead.
10205
10206         * scm/font.scm (make-century-schoolbook-tree): add Mono as
10207         'typewriter family.
10208
10209         * lily/score.cc (Score): unprotect copy of Output_def. Plugs
10210         memory leak.
10211
10212         * lily/parser.yy (score_body): don't clone Score, that's done in
10213         Lily_lexer::try_special_identifiers(). This fixes a memory leak.
10214
10215         * lily/score-engraver.cc (derived_mark): new function.
10216         (initialize): unprotect Paper_score. This fixes a memory leak.
10217
10218         * lily/score-performer.cc (derived_mark): new function.
10219
10220         * lily/score-translator.cc (get_output): use SCM for get_output() call.
10221
10222         * stepmake/aclocal.m4: put FlexLexer.h test in conftest.cc. Fixes
10223         spurious warning.
10224
10225         * scm/font.scm (make-century-schoolbook-tree): use Sans for sans
10226         serif.
10227
10228 2005-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
10229
10230         * configure.in (reloc_b): Add --enable-relocation.
10231
10232 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10233
10234         * lily/pfb.cc (LY_DEFINE): show file name when loading PFB. 
10235
10236         * input/regression/alignment-order.ly: add Staff example.
10237
10238 2005-05-31  John Mandereau   <john.mandereau@free.fr>
10239
10240         * po/fr.po: update.
10241
10242 2005-05-31  Graham Percival  <gperlist@shaw.ca>
10243
10244         * Documentation/index.html.in: add link to LSR.
10245
10246 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10247
10248         * scm/define-stencil-commands.scm (Module): new file. Register all
10249         allowed stencil expression heads in a central place.
10250
10251         * lily/stencil-scheme.cc (LY_DEFINE): check is_stencil_head in
10252         ly:make-stencil
10253
10254         * lily/stencil-expression.cc (all_stencil_heads): registering
10255         stencil expressions.
10256
10257         * lily/stencil-interpret.cc: new file. Stencil expression
10258         interpreting.
10259
10260         * input/xiao-haizi-guai-guai.ly: move file back.
10261
10262 2005-05-30  Graham Percival  <gperlist@shaw.ca>
10263
10264         * Documentation/user/advanced.itely, converters.itely,
10265         instrument-notation.itely, lilypond-book.itely: misc small
10266         changes.
10267
10268 2005-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
10269
10270         * lily/lexer.ll: Skip UTF-8 BOM at BOF.
10271
10272         * make/lilypond.fedora.spec.in: Fix source url.
10273
10274         * cygwin: Update from mingw patches.
10275
10276         * scm/editor.scm (editor-command-template-alist): Use jedit
10277         -reuseview (Bertalan), add uedit (Patrick Huberts).
10278
10279         * input/xiao-hai-zi-guai-guai.ly: Rename from
10280         xiao-haizi-guai-guai.ly.
10281
10282         * input/*: Reindent, do not use TAB.
10283
10284         * Documentation/pictures/ly.xpm: Bugfix: do not anti-alias against
10285         white background.
10286
10287 2005-05-29  Jan Nieuwenhuizen  <janneke@gnu.org>
10288
10289         * scm/framework-ps.scm (dump-stencil-as-EPS): Add silly fix for
10290         numerical overflow error.
10291
10292 2005-05-29 Laura Conrad <lconrad@laymusic.org>
10293         
10294         * abc2ly.py: fix to syntax error in multi-part output.
10295
10296 2005-05-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10297
10298         * lily/span-bar.cc (print): sort bar line extents. Fixes problem
10299         with disappearing span bars when alignAboveContext is active
10300
10301         * lily/property-iterator.cc (check_grob): use is-grob?
10302         object-property. Fixes crash-key-sig-font-size.ly. 
10303
10304 2005-05-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10305
10306         * lily/bar-line.cc (print): don't round barlines; this produces
10307         odd aliasing effects in Acroread.
10308
10309         * lily/timing-engraver.cc (process_music): robustness fix.
10310
10311         * lily/context-def.cc (filter_engravers): bugfix.
10312
10313 2005-05-28  Jan Nieuwenhuizen  <janneke@gnu.org>
10314
10315         * lily/lilypond.rc.in: Add ly-icon.
10316
10317         * lily/GNUmakefile: 
10318         * Documentation/pictures/GNUmakefile (OUT_DIST_FILES): Add ly-icon
10319         rules.
10320
10321 2005-05-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10322
10323         * lily/stencil-scheme.cc (LY_DEFINE): ly:stencil-in-color
10324
10325         * ps/music-drawing-routines.ps: 
10326
10327         * scm/output-ps.scm: remove draw ez_ball.
10328
10329         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
10330         EasyNotation context definition.
10331
10332         * lily/easy-notation.cc (brew_ez_stencil): new file. Use
10333         Text_interface and color for making easy note heads.
10334
10335         * lily/stencil.cc (with_color): new function.
10336
10337         * ps/music-drawing-routines.ps: remove draw_zigzag_line
10338
10339         * lily/line-spanner.cc (zigzag_stencil): rewrite to use draw-line
10340         output routine. Zigzag now works in SVG too.
10341
10342         * scm/output-tex.scm (filledbox): idem.
10343
10344         * scm/output-svg.scm (filledbox): idem.
10345
10346         * scm/output-ps.scm (lily-def): remove horizontal-line. 
10347
10348         * lily/lookup.cc (horizontal_line): use draw-line. 
10349
10350         * lily/system-start-delimiter.cc: remove old staff bracket code.
10351
10352         * mf/feta-haak.mf: further tweaks.
10353
10354         * lily/system-start-delimiter.cc (staff_bracket): use glyphs.
10355
10356         * mf/feta-generic.mf: include feta-haak.
10357
10358         * mf/feta-haak.mf: rewrite. Make separate glyphs for the tips 
10359
10360         * scm/framework-ps.scm (write-preamble): only load fonts if their
10361         filename is a string. 
10362
10363 2005-05-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10364
10365         * scm/output-svg.scm (circle): support circle.
10366         (bracket): stub for bracket.
10367
10368         * scripts/lilypond-book.py (main): make sure --psfonts warning is
10369         correct.
10370
10371 2005-05-26  Graham Percival  <gperlist@shaw.ca>
10372
10373         * Documentation/user/lilypond.tely, advanced-notation.itely,
10374         basic-notation.itely, instrument-notation.itely, global.itely,
10375         introduction.itely, tutorial.itely: rearranging, editing,
10376         clean-up.
10377
10378         * mf/GNUmakefile: change a "make -C" to "${MAKE} -C", required
10379         for compiling on FreeBSD.
10380
10381 2005-05-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10382
10383         * lily/pfb.cc (LY_DEFINE): progress indication for opening ttf and
10384         otf files.
10385
10386         * input/mutopia/E.Satie/petite-ouverture-a-danser.ly (lower):
10387         bugfixes.
10388
10389         * VERSION: 2.5.26 released.
10390
10391         * scm/titling.scm (marked-up-headfoot): revert Pedro's patch. 
10392
10393 2005-05-25  Pedro Kroger  <kroeger@pedrokroeger.net>
10394
10395         * scm/titling.scm (marked-up-headfoot): doesn't print pagenumbers
10396         if printpagenumber is false.
10397
10398 2005-05-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10399
10400         * lily/font-config.cc (init_fontconfig): comment out FontConfig
10401         cache warning.
10402
10403         * lily/tie.cc (print): support dotted ties.
10404         
10405 2005-05-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10406
10407         * scm/define-grobs.scm (all-grob-descriptions): switch off
10408         debugging
10409         (all-grob-descriptions): Arpeggio has Y-extent.
10410
10411         * scm/define-music-properties.scm (all-music-properties): document
10412         length-callback and start-callback as "read-only".
10413
10414         * scm/music-functions.scm (unfold-repeats): rewrite. Cannot set
10415         length-callback after creation. 
10416
10417         * scripts/convert-ly.py (conv): unfoldrepeats -> unfoldRepeats,
10418         compressmusic -> compressMusic.
10419
10420         * ly/music-functions-init.ly (oldaddlyrics): idem.
10421
10422         * lily/parser.yy: NewLyricCombineMusic ->
10423         LyricCombineMusic. LyricCombineMusic -> OldLyricCombineMusic.
10424
10425 2005-05-24  Pedro Kroger  <kroeger@pedrokroeger.net>
10426
10427         * ly/Welcome_to_LilyPond.ly: typo.
10428
10429 2005-05-24  Graham Percival  <gperlist@shaw.ca>
10430
10431         * Documentation/user/lilypond.tely: move changing-defaults to be
10432         before global issues.
10433
10434         * Documentation/user/basic-notation.itely: move Transpose section
10435         here from advanced/Other.
10436
10437         * Documentation/user/changing-defaults.itely,
10438         advanced-notation.itely: move Fonts to advanced, edit.
10439
10440 2005-05-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10441
10442         * lily/parser.yy (bare_int): remove rule.  From now on, we require
10443         # before negative integers.
10444
10445 2005-05-23  Graham Percival  <gperlist@shaw.ca>
10446
10447         * ly/property.ly: Update tieDotted to have the same form as slurDotted.
10448
10449         * Documentation/user/lilypond.tely: change Unified index to
10450         LilyPond index.
10451
10452         * Documentation/user/advanced-notation.itely,
10453         instrument-notation.itely: editing.
10454
10455 2005-05-23  Jan Nieuwenhuizen  <janneke@gnu.org>
10456
10457         * scm/lily.scm (lilypond-all): Bugfix: return failed.
10458
10459         * lily/main.cc (setup_paths)[__MINGW32__]: Normalize LILYPONDPREFIX.
10460
10461 2005-05-21  Jan Nieuwenhuizen  <janneke@gnu.org>
10462
10463         * lily/general-scheme.cc (ly:stderr-redirect): Rename from
10464         ly:port-move.  Needs to be stderr-specific on mingw.
10465         Run fixcc.
10466
10467 2005-05-20  Jan Nieuwenhuizen  <janneke@gnu.org>
10468
10469         * lily/general-scheme.cc (ly:port-move): Remove.
10470
10471         * scm/backend-library.scm (postscript->pdf): Remove -dSAFER in
10472         windows.
10473
10474         * lily/main.cc (setup_paths) [ARGV0_RELOCATION]: Reinstate GS_*
10475         variables.  This eliminates the need for a gs.bat wrapper, which
10476         opens a console.
10477
10478         * scripts/lilypond-invoke-editor.scm (running-from-gui?): 
10479         * scm/lily.scm (running-from-gui?): 
10480         * lily/main.cc[MINGW]: Remove isatty inversion, this is an
10481         artifact of not compiling with -mwindows.
10482
10483         * scm/editor.scm: Define PLATFORM.
10484
10485 2005-05-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10486
10487         * scripts/lilypond-book.py (PREAMBLE_LY): add marker, where people
10488         can start to cut & paste lilypond-book fragments.  
10489
10490         * scm/define-music-types.scm (music-descriptions): remove
10491         UntransposableMusic
10492
10493 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10494
10495         * scm/output-ps.scm (glyph-string): remove / before CIDs.
10496
10497 2005-05-20  Graham Percival  <gperlist@shaw.ca>
10498
10499         * Documentation/user/instrument-notation.itely: remove *Engraver.
10500
10501         * Documentation/user/advanced-notation.itely: edit, rearrange.
10502
10503 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10504
10505         * scm/output-ps.scm (glyph-string): take cid? argument. Use
10506         findresource iso. findfont for CID CFF fonts.
10507
10508         * VERSION (PACKAGE_NAME): release 2.5.25
10509
10510         * ly/Welcome_to_LilyPond.ly: add  \version
10511
10512 2005-05-20  Graham Percival  <gperlist@shaw.ca>
10513
10514         * Documentation/user/programming-interface.itely: move
10515         \displayMusic into its own section.
10516
10517         * Documentation/user/basic-notation.itely: finish editing.
10518
10519 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10520
10521         * flower/file-path.cc (find): don't throw away file_name.dir, but
10522         append to it. Fixes \include with directories.
10523
10524         * flower/include/file-path.hh (class File_path): don't derive from
10525         Array<String>.
10526
10527         * flower/include/file-name.hh (class File_name): remove to_str0()
10528
10529         * lily/hara-kiri-engraver.cc (acknowledge_grob): split
10530         Hara_kiri_engraver in separate file.
10531
10532         * lily/slur-configuration.cc (score_encompass): oops, <? to min()
10533         translation went wrong. Fixes vertically translated slurs.
10534
10535 2005-05-19  Graham Percival  <gperlist@shaw.ca>
10536
10537         * Documentation/user/basic-notaton.itely: editing.
10538
10539 2005-05-18  Graham Percival  <gperlist@shaw.ca>
10540
10541         * Documentation/user/macros.itexi, basic-notation.itely:
10542         add @commonprop (commonly used properties) macro.
10543
10544 2005-05-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10545
10546         * ly/Welcome_to_LilyPond.ly: talk about icon, not program.
10547
10548         * scripts/lilypond-book.py (invokes_lilypond): new function
10549         (main): only run fontextract if invokes_lilypond() is true.
10550
10551         * lily/function-documentation.cc (ly_add_function_documentation):
10552         duh, use !=
10553
10554         * Documentation/topdocs/INSTALL.texi (Top): add MacOS command.
10555
10556         * stepmake/aclocal.m4: remove kpathsea warning, change to OPTIONAL.
10557
10558         * scm/lily.scm (running-from-gui?): lowercase Darwin.
10559
10560         * lily/function-documentation.cc (ly_add_function_documentation):
10561         use scm_hash_table_p() for checking.
10562
10563 2005-05-18  Jan Nieuwenhuizen  <janneke@gnu.org>
10564
10565         * Documentation/user/advanced-notation.itely (Text scripts):
10566         Change nonexisting @internalsref{Text markup} to @ref{Text
10567         markup}.  Change @internalsref{Text script} to
10568         @internalsref{TextScript}.
10569
10570         * lily/main.cc (setup_paths): Bugfix: pangorc is not pango.modules.
10571
10572 2005-05-17  Graham Percival  <gperlist@shaw.ca>
10573
10574         * Documentation/user/tutorial.itely, basic-notation.itely,
10575         changing-defaults.itely: remove duplicate cindex entries
10576         that appear on the same page.
10577
10578         * scm/define-grobs.scm: change default padding for TextSpanner.
10579
10580         * Documentation/topdocs/AUTHORS.texi: update email address.
10581
10582         * Documentation/user/global.itely: add info about \include.
10583
10584 2005-05-17  Jan Nieuwenhuizen  <janneke@gnu.org>
10585
10586         * scm/backend-library.scm (postscript->pdf): Remove (useless) .ps
10587         when running-from-gui.
10588
10589         * scm/editor.scm (get-editor): Add platform defaults.
10590
10591         * scm/backend-library.scm (postscript->pdf): Typo.
10592
10593 2005-05-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10594
10595         * scm/lily.scm (running-from-gui?): Darwin never runs from GUI.
10596
10597         * lily/font-config.cc (init_fontconfig): add warning about cache.
10598
10599 2005-05-16  Jan Nieuwenhuizen  <janneke@gnu.org>
10600
10601         * lily/main.cc (setup_paths)[ARGV0_RELOCATION]: Remove GS_*.
10602
10603 2005-05-16  Mats Bengtsson  <mabe@s3.kth.se>
10604
10605         * lily/horizontal-bracket.cc (print): Take care of the direction
10606         property so brackets above the stave point downwards. 
10607
10608         * scm/define-grobs.scm (all-grob-descriptions): Set staff-padding
10609         for HorizontalBracket so it doesn't end up within the stave.
10610
10611 2005-05-16  Jan Nieuwenhuizen  <janneke@gnu.org>
10612
10613         * lily/GNUmakefile (default): Typo.
10614
10615         * scm/lily.scm (PLATFORM): Export.
10616
10617         * scm/framework-ps.scm (write-preamble)[MINGW]: Use
10618         load-font-via-GS, ttftool or fopencookie is broken on windows.
10619         
10620         * scm/backend-library.scm (postscript->pdf)[MINGW]: Do not use
10621         -dSAFER, that is broken on windows.
10622
10623 2005-05-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10624
10625         * lily/GNUmakefile ($(outdir)/FlexLexer.h): conditional dependency
10626         for FlexLexer.h
10627
10628         * scripts/lilypond-invoke-editor.scm: remove stray -
10629
10630 2005-05-15  Jan Nieuwenhuizen  <janneke@gnu.org>
10631
10632         * lily/lily-guile.cc (ly_scm2newstr): Use scm_i_string_length.
10633         Fixes deprecation warning.
10634
10635         * flower/include/string.icc (to_string): Only inline if
10636         -DSTRING_UTILS_INLINED.
10637
10638         * lily/pango-font.cc (pango_item_string_stencil): Normalize file
10639         name.  Remove windows comment.
10640
10641         * scm/editor.scm (slashify): New function.
10642         (get-editor-command): Use it.
10643         (get-command-template): Do not alter editor command if
10644         environment value includes `%(file)s' magic.
10645
10646         * scripts/lilypond-invoke-editor.scm (unquote-uri): New function.
10647         (dissect-uri): Use it.
10648         (unquote-uri): Bugfix.
10649
10650 2005-05-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10651
10652         * scm/framework-ps.scm (write-preamble): add TTF rule.
10653
10654         * Documentation/topdocs/README.texi (Top): remove note about
10655         xdelta.
10656
10657         * Documentation/topdocs/INSTALL.texi (Top): remove Flex
10658         requirement.
10659
10660         * stepmake/aclocal.m4: STEPMAKE_FLEXLEXER_LOCATION: new
10661         function. Figure out where FlexLexer.h lives
10662
10663         * lily/GNUmakefile (OUT_DIST_FILES): dist lexer.cc and FlexLexer.h
10664         
10665 2005-05-14  Jan Nieuwenhuizen  <janneke@gnu.org>
10666
10667         * scripts/lilypond-invoke-editor.scm (dissect-uri): Handle URIs
10668         with Windows root in file name.
10669
10670         * scm/backend-library.scm (ly:system): Only redirect output (using
10671         system and shell, ugh) if /dev/null is writable.
10672
10673         * Documentation/pictures/GNUmakefile [PLATFORM_WINDOWS]: Build
10674         windows icon.
10675
10676         * scm/lily.scm (is-absolute?): New function.  Fixes absolute files
10677         on Mingw.
10678
10679         * scm/output-ps.scm (grob-cause): Use it.  Fixes PDF point and
10680         click.
10681
10682         * flower/file-path.cc (is_dir, is_file): New function.  Actually
10683         use result of stat when available.
10684
10685         * flower/file-path.cc (find): Use it.  Refactor.  Fixes Mingw,
10686         absolute file name and root.
10687
10688         * scm/lily.scm (PLATFORM): On mingw, slashify getcwd.
10689
10690         * scm/editor.scm (get-editor-command): Typo: do not apply editor.
10691
10692         * flower/file-name.cc (slashify): Bugfix, do substitute if no
10693         slashes in file name.
10694
10695 2005-05-13  Jan Nieuwenhuizen  <janneke@gnu.org>
10696
10697         * Documentation/user/preface.itely (Preface): Run
10698         texinfo-all-menus-update.
10699
10700         * scm/editor.scm (get-editor-command): Bugfix: allow full
10701         LYEDITOR setting, partial XEDITOR setting.  With typo fix.
10702
10703         * Documentation/pictures/lilypond-48.xpm: New file.
10704
10705         * flower/file-path.cc (to_string): Bugfix: use PATHSEP.
10706
10707         * ly/Welcome_to_LilyPond.ly: New file.
10708
10709         * lily/main.cc (main): Only identify if we have a terminal.
10710
10711         * scm/backend-library.scm (postscript->png)
10712         (postscript->pdf): Fix file name quoting for GS/MINGW (ie,
10713         non-/bin/sh).
10714
10715 2005-05-13  Heikki Junes  <hjunes@cc.hut.fi>
10716
10717         * Documentation/topdocs/AUTHORS.texi: polish, update.
10718
10719 2005-05-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10720
10721         * Documentation/user/preface.itely (Notes for version 2.6): new
10722         notes for 2.6
10723
10724         * lily/dynamic-engraver.cc (stop_translation_timestep): first set
10725         finished_span_, then call typeset_all(). Fixes spurious "Hairpin
10726         is not fully contained" warnings.
10727
10728         * lily/slur-scoring.cc (get_bound_info): remove warning.
10729
10730         * lily/staff-symbol-engraver.cc (process_music): start initial
10731         spanner in process_music(). This fixes overrides of StaffSymbol
10732         properties.
10733
10734         * scm/framework-pdf.scm (Module): remove.
10735
10736         * Documentation/topdocs/AUTHORS.texi (AUTHORS): clean up, update.
10737
10738         * lily/ambitus-engraver.cc: formatting cleanups.
10739
10740         * mf/feta-solfa.mf (Module): remove.
10741
10742         * ChangeLog: more details about contributions.
10743
10744 2005-05-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10745
10746         * lily/align-interface.cc (align_elements_to_extents): warn if
10747         called too early. Fixes: disappearing-staff-lines.ly
10748
10749         * VERSION (PACKAGE_NAME): release 2.5.24
10750
10751 2005-05-12  Jan Nieuwenhuizen  <janneke@gnu.org>
10752
10753         * stepmake/aclocal.m4: Typo.
10754
10755         * flower/string.cc (substitute): Take two strings or two
10756         characters.  Update callers.
10757
10758 2005-05-11  Jan Nieuwenhuizen  <janneke@gnu.org>
10759
10760         * flower/file-name.cc (File_name): Slashify.
10761
10762         * scm/lily.scm: Use gui-main iso lilypond-main on MINGW.
10763
10764         * scripts/GNUmakefile (SEXECUTABLES): Add lilypond-invoke-editor.
10765
10766         * stepmake/aclocal.m4 (STEPMAKE_WINDOWS): New function.
10767
10768         * configure.in (gui_b): Use it.
10769
10770         * lily/lilypond.rc.in: New file.
10771
10772         * lily/GNUmakefile[PLATFROM_WINDOWS]: Compile it into executable.
10773
10774 2005-05-12  Graham Percival  <gperlist@shaw.ca>
10775
10776         * Documentation/user/advanced-notation.itely: edit of Text
10777         section; clarify text scripts vs. text markup.
10778
10779 2005-05-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10780
10781         * lily/multi-measure-rest-engraver.cc
10782         (Multi_measure_rest_engraver): init bar_seen_ to true. Notice
10783         separation items on start. Fixes mm rests in start of score.
10784
10785         * lily/slur-scoring.cc (move_away_from_staffline): robustness,
10786         don't access StaffSymbol if not there.
10787         Fixes: crash-staff-symbol-engraver.ly.
10788
10789         * lily/instrument-name-engraver.cc (class
10790         Instrument_name_engraver): data member first_. Create
10791         InstrumentName on start. 
10792
10793 2005-05-12  Graham Percival  <gperlist@shaw.ca>
10794
10795         * Documentation/user/instrument-notation.itely: add guitar
10796         position.
10797
10798         * Documentation/user/introduction.itely,
10799         Documentation/user/lilypond.tely,
10800         Documentation/user/tutorial.itely: begin pruning
10801         unused (duplicated) cindex entries and misc cleanup.
10802
10803 2005-05-12  Mats Bengtsson  <mabe@s3.kth.se>
10804
10805         * input/test/volta-chord-names.ly: Bring the explanation up to
10806         date.
10807
10808 2005-05-11  Heikki Junes  <hjunes@cc.hut.fi>
10809
10810         * Documentation/topdocs/{AUTHORS.texi,INSTALL.texi,README.texi}:
10811         Specify `@documentencoding utf-8' for html, ignore warnings.
10812
10813 2005-05-11  Erik Sandberg  <ersa9195@student.uu.se>
10814
10815         * THANKS: Added bughunters.
10816
10817 2005-05-11  Heikki Junes  <hjunes@cc.hut.fi>
10818
10819         * lily/main.cc: update help string for `lilypond -H'.
10820
10821         * po/fi.po: update.
10822         
10823 2005-05-10  Graham Percival  <gperlist@shaw.ca>
10824
10825         * Documentation/user/advanced-notation.itely: minor fixes.
10826
10827 2005-05-10  Jan Nieuwenhuizen  <janneke@gnu.org>
10828
10829         * scm/editor.scm: New module.
10830
10831         * scm/lily.scm (gui-main): Use it.
10832
10833         * scm/framework-gnome.scm (spawn-editor): Use it.
10834
10835         * scripts/lilypond-invoke-editor.scm: Use it in new script.
10836
10837 2005-05-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10838
10839         * scm/framework-ps.scm (load-font-via-GS):  new function.
10840
10841         * lily/pango-font.cc (pango_item_string_stencil): add support for
10842         CID keyed font.
10843
10844         * scm/output-ps.scm (glyph-string): add support for CID keyed font.
10845
10846 2005-05-10  Graham Percival  <gperlist@shaw.ca>
10847
10848         * Documentation/user/basic-notation.itely: add @ref.
10849
10850         * Documentation/user/advanced-notation.itely: add example
10851         of 5/8 beaming.
10852
10853 2005-05-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10854
10855         * scripts/lilypond-pdfpc-helper.py (ly_pc_editor): robustness fixes.
10856
10857         * scm/backend-library.scm (postscript->pdf): Invoke gs instead of
10858         going through ps2pdf wrappers.
10859
10860 2005-05-09  Jürgen Reuter  <reuter@ipd.uka.de>
10861
10862         * Documentation/user/instrument-notation.itely: petrucci note
10863         heads: updated docu
10864
10865         * input/regression/note-head-style.ly: updated regression test;
10866         indentation fixes
10867
10868         * ly/engraver-init.ly: MensuralVoiceContext: use petrucci note
10869         heads as default
10870
10871         * mf/parmesan-heads.mf: minor editing; use musicological names
10872         (rather than optical description) as note head names
10873
10874         * scm/output-lib.scm: complete petrucci heads
10875
10876 2005-05-09  Pal Benko  <benkop@freestart.hu>
10877
10878         * mf/parmesan-heads.mf: add petrucci heads (like neo-mensural
10879         heads, but bigger)
10880
10881 2005-05-09  Jan Nieuwenhuizen  <janneke@gnu.org>
10882
10883         * lily/main.cc (main_with_guile): Remove no files check.
10884
10885         * lily/main.cc (ly:usage): Export to Scheme.
10886
10887         * scm/lily.scm (no-files-handler): New function.
10888
10889         * scm/lily.scm (lilypond-main): Use it.
10890
10891         * configure.in (gui_b): Add mbrtowc checking.
10892         Resurrect [utf8/]wchar.h checking.
10893
10894 2005-05-09  Mats Bengtsson  <mabe@s3.kth.se>
10895
10896         * Documentation/user/advanced-notation.itely (Metronome marks):
10897         Add link to the program reference for MetronomeMark
10898
10899         * Documentation/user/lilypond-book.itely (An example of a
10900         musicological document): Correct the example using psfonts 
10901
10902 2005-05-09  Heikki Junes  <hjunes@cc.hut.fi>
10903
10904         * po/fi.po: update after a lesson how to update entries against
10905         source.
10906         
10907         * po/TODO: document the lesson.
10908
10909 2005-05-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10910
10911         * configure.in (gui_b): remove wcrtomb checking.
10912
10913         * lily/general-scheme.cc (LY_DEFINE): hand-convert utf8 to 32
10914         bits. Patch by Matthias Neeracher. <neeracher@mac.com>
10915
10916 2005-05-09  Mats Bengtsson  <mabe@s3.kth.se>
10917
10918         * scripts/convert-ly.py: In the conversion to version 1.9.0, 
10919         keep Scheme expressions and strings unmodified when doing the
10920         conversion to postfix notation for slurs and beams. Should
10921         hopefully solve most related conversion problems. 
10922
10923         * Documentation/user/lilypond-book.itely : Clarify and correct how
10924         to call dvips with -h psfonts.
10925
10926 2005-05-09  Jan Nieuwenhuizen  <janneke@gnu.org>
10927
10928         * Documentation/user/instrument-notation.itely (Entering lyrics):
10929         Typo.  Fixes build.
10930
10931 2005-05-09  Graham Percival  <gperlist@shaw.ca>
10932
10933         * Documentation/user/lilypond-book.itely: document PSFONTS file.
10934
10935         * Documentation/user/lilypond.tely, lilypond-book.itely,
10936         tutorial.itely: change references to 2.5.x to 2.6.x.
10937
10938         * Documentation/user/instrument-notation.itely: clarified \addlyrics
10939         vs \lyricmode.
10940
10941         * Documentation/user/invoking.itely: remove old info about
10942         lilypond-profile.
10943
10944         * Documentation/topdocs/INSTALL.texi: remove old info about
10945         lilypond-profile, add warning about needing international fonts
10946         to build docs.
10947
10948 2005-05-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10949
10950         * lily/include/grob-info.hh (class Grob_info): make data member
10951         private. Changes throughout.
10952
10953         * input/regression/alignment-order.ly: new file. 
10954
10955         * lily/vertical-align-engraver.cc (acknowledge_grob): read
10956         alignAboveContext and alignBelowContext
10957
10958 2005-05-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10959
10960         * lily/pfb.cc (LY_DEFINE): add cast.
10961
10962         * scm/framework-ps.scm (write-preamble): embed CFFs if file name
10963         matches .otf
10964         (write-preamble): warn about unknown fonts.
10965
10966         * lily/pfb.cc (Module): new function ly:otf->cff
10967
10968         * lily/open-type-font.cc (get_otf_table): use ::get_otf_table
10969         (get_otf_table): new function.
10970
10971 2005-05-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10972
10973         * scm/backend-library.scm (postscript->png): call lilypond-ps2png
10974         iso. ps2png.
10975
10976 2005-05-06  Heikki Junes  <hjunes@cc.hut.fi>
10977
10978         * po/fi.po: apply second round of update.
10979
10980 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10981
10982         * scm/x11-color.scm (make-x11-color-handler): don't use
10983         #\sp. Apparently doesn't work on all platforms. 
10984
10985 2005-05-06  Graham Percival  <gperlist@shaw.ca>
10986
10987         * Documentation/user/advanced-notation.itely, putting.itely,
10988         tutorial.itely, global.itely, introduction.itely: really minor fixes.
10989
10990 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10991
10992         * VERSION (PACKAGE_NAME): release 2.5.23
10993
10994 2005-05-06  Jan Nieuwenhuizen  <janneke@gnu.org>
10995
10996         * Documentation/topdocs/AUTHORS.texi: Remove texinfo @accents,
10997         convert to utf-8.
10998
10999         * THANKS: Add translators for this release, convert to utf-8.
11000
11001         * mf/GNUmakefile (MFTRACE_FLAGS):
11002         * buildscripts/substitute-encoding.py (outdir): Build fix: pass
11003         outdir as option (WAS: hardcoded).
11004
11005 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11006
11007         * lily/staff-symbol-engraver.cc (Staff_symbol_engraver): init
11008         finished_span_
11009
11010         * THANKS: add Hans Forbrich.
11011
11012         * Documentation/topdocs/NEWS.tely (Top): document new feature.
11013
11014         * Documentation/user/basic-notation.itely (Staff symbol): document
11015         start/stop staff. Reference to ossia.ly
11016
11017         * input/test/ossia.ly: new example using stop and startStaff.
11018
11019         * lily/timing-engraver.cc: remove Timing_engraver::initialize(),
11020         in other words, don't create "|" barline at start of the score.
11021         (start_translation_timestep): don't set whichBar for start of score.
11022
11023         * input/regression/staff-halfway.ly: use new functionality.
11024
11025         * lily/staff-symbol-engraver.cc (try_music): take StaffSpanEvents,
11026         start and stop staff based on events.
11027
11028         * scm/define-music-types.scm (music-descriptions): add StaffSpanEvent
11029
11030         * ly/declarations-init.ly (startStaff, stopStaff): new identifiers.
11031
11032 2005-05-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11033
11034         * Documentation/user/programming-interface.itely (How markups work
11035         internally ): remove \encoding reference.
11036
11037 2005-05-04  Mats Bengtsson  <mabe@s3.kth.se>
11038
11039         * scripts/convert-ly.py: Attempt to do a smarter update of 
11040         text markups from versions < 1.9.0 with arbitrary nesting.
11041
11042 2005-05-04  Heikki Junes  <hjunes@cc.hut.fi>
11043
11044         * po/fi.po: convert to utf-8, and update.
11045
11046 2005-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11047
11048         * make/lilypond.suse.spec.in: update from suse 2.4 package.
11049
11050         * lily/*.cc: more <? >? to min/max changes
11051
11052         * lily/include/interpretation-context-handle.hh: rename
11053         Interpretation_context_handle to Context_handle.
11054
11055 2005-05-04  Heikki Junes  <hjunes@cc.hut.fi>
11056
11057         * input/regression/GNUmakefile (local_delete): use `find` together 
11058         with `xargs` to avoid too long argument-lists in cmd line.
11059
11060 2005-05-04  Graham Percival  <gperlist@shaw.ca>
11061
11062         * Documentation/user/introduction.itely: updates "About this manual".
11063
11064         * Documentation/user/advanced-notation.itely,
11065         invoking.itely: minor fixes.
11066
11067 2005-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11068
11069         * COPYING: add font exception. Update FSF address. 
11070
11071         * lily/context-def.cc (path_to_acceptable_context): bugfix, depth
11072         should be taken without child context.
11073
11074         * ly/chord-modifiers-init.ly (blackTriangleMarkup): use it.
11075
11076         * scm/define-markup-commands.scm (triangle): new command, as
11077         robust replacement for unicode Delta/Triangle.
11078
11079 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11080
11081         * ps/music-drawing-routines.ps: add fillp argument.
11082
11083         * lily/lookup.cc (round_filled_polygon): polygon takes filled? argument
11084
11085         * lily/font-config.cc (init_fontconfig): don't add cff/
11086
11087         * VERSION (PACKAGE_NAME): release 2.5.22
11088
11089         * mf/GNUmakefile: remove cff/cff.ps/.map install rules.
11090
11091         * lily/grace-engraver.cc (consider_change_grace_settings): use
11092         is_alias(). Fixes problem with CueVoice grace notes. 
11093
11094         * lily/simultaneous-music-iterator.cc (construct_children): call
11095         Music_iterator::quit() for iterators that start out invalid. This
11096         fixes indefinitely continuing contexts.
11097
11098         * buildscripts/substitute-encoding.py: new file
11099
11100         * Documentation/user/basic-notation.itely (Basic polyphony): fix
11101         missing @end 
11102
11103         * scripts/lilypond-book.py (write_if_updated): print file name.
11104
11105         * Documentation/user/basic-notation.itely (Explicitly
11106         instantiating voices): idem.
11107
11108         * Documentation/user/advanced-notation.itely (Text spanners):
11109         remove stray { } 
11110
11111         * lily/context.cc (default_child_context_name): the default child
11112         is now first in accepts_list_.
11113
11114         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
11115         \defaultchild to all relevant contexts.  This fixes:
11116         drums-pitch.ly.
11117
11118         (Probably also fixes similar problems with ancient
11119         transcriptions getting CueVoices instead of the desired voices.)
11120  
11121         * lily/context-def.cc (get_default_child): new function.
11122         (get_accepted): place default child in front of list.
11123
11124         * lily/parser.yy (FIXME): add DEFAULTCHILD token.
11125
11126         * lily/include/context-def.hh (struct Context_def): add
11127         default_accept_
11128
11129 2005-05-03  Graham Percival  <gperlist@shaw.ca>
11130
11131         * scm/define-grobs.scm: remove "remove-first" line, since
11132         the absent property is set to #f anyway.
11133
11134         * Documentation/user/basic-notation.itely,
11135         advanced-notation.itely, instrument-notation.itely: minor
11136         fixes.
11137
11138         * ly/property-init.ly: add textSpanner{Up,Down,Neutral}.
11139
11140         * Documentation/user/advanced-notation.itely,
11141         changing-defaults.itely: consolidate Text stuff in
11142         advanced notation.
11143
11144         * Documentation/user/global.itely: better docs for \header.
11145
11146         * Documentation/user/putting.itely: new chapter; placeholder
11147         for future expansion.
11148
11149         * Documentation/user/examples.itely: moved "suggestions for
11150         writing LP files" section into putting.itely.
11151
11152         * Documentation/user/lilypond.itely: added new chapter,
11153         fixed the short table of contents.
11154
11155 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11156
11157         * lily/beam-quanting.cc (quanting): robustness fix, don't produce
11158         infinity for unfeasible beams.
11159
11160         * make/lilypond.fedora.spec.in (Group): idem.
11161
11162         * scripts/GNUmakefile (SEXECUTABLES): rename ps2png to lilypond-ps2png
11163
11164         * mf/GNUmakefile (ALL_GEN_FILES): remove .map
11165
11166         * scm/framework-ps.scm (write-preamble): extract CFF from OTF
11167         fonts directly.
11168
11169         * buildscripts/gen-emmentaler-scripts.py (i): idem.
11170
11171         * mf/GNUmakefile: remove all CFF rules.
11172
11173         * scm/framework-ps.scm (ps-embed-cff): reinstate.
11174
11175         * lily/open-type-font-scheme.cc (LY_DEFINE):
11176         new function ly:otf-font-table-data.
11177         (LY_DEFINE): new function otf-font?
11178
11179 2005-05-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11180
11181         * mf/GNUmakefile ($(outdir)/lilypond.map): remove rule.
11182         ($(outdir)/Fontmap.lily): idem.
11183
11184         * buildscripts/gen-emmentaler-scripts.py (i): load fetaXX encoding
11185         for PFAEmmentaler-XXX.pfa. 
11186
11187         * Documentation/user/music-glossary.tely (accidental): NL
11188         translation of accidental.
11189
11190 2005-05-02  Jan Nieuwenhuizen  <janneke@gnu.org>
11191
11192         * flower/include/international.hh: Bugfix: include "string.hh".
11193
11194         * lily/include/mingw-compatibility.hh: New file.
11195
11196         * flower/include/libc-extension.hh (memrev): Rename from strrev.
11197
11198         * configure.in: Search for mingw wcrtomb library.
11199
11200 2005-05-02  Mats Bengtsson  <mabe@s3.kth.se>
11201
11202         * scripts/convert-ly.py: Bug fix
11203
11204         * Documentation/user/changing-defaults.itely (Common tweaks):
11205         Added example where the context has to be specified explicitly
11206         (MetronomeMark). 
11207
11208 2005-05-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11209
11210         * scripts/lilypond-book.py (ly_options): set timing to #f for
11211         notime option.
11212
11213         * scripts/convert-ly.py (conv): typo.
11214
11215         * flower/*.cc: remove <? and >?
11216         
11217         * lily/*.cc: remove <? and >?
11218
11219         * lily/tweak-registration.cc (insert_tweak_from_file): Make sure
11220         that 0x0 isn't passed into scm_cons(). Fixes crash with tweak
11221         editor.
11222
11223 2005-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11224
11225         * lily/part-combine-engraver.cc: add space to variable list.
11226
11227 2005-04-30  Graham Percival  <gperlist@shaw.ca>
11228
11229         * scm/define-grobs.scm: changed RemoveEmptyVerticalGroup's
11230         remove-first to false (matches docs)
11231
11232         * Documentation/user/advanced-notation.itely: corrected docs
11233         concerning remove-first.
11234
11235 2005-04-29  Mats Bengtsson  <mabe@s3.kth.se>
11236
11237         * lily/part-combine-engraver.cc: make sure that the relevant
11238         properties are included in the documentation.
11239
11240 2005-04-28  Graham Percival  <gperlist@shaw.ca>
11241
11242         * Documentation/user/lilypond-book.itely: Bernard's docs
11243         for \betweenLilyPondSystem.
11244
11245 2005-04-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11246
11247         * Documentation/topdocs/INSTALL.texi (Top): remove TeX outdated
11248         remarks.
11249
11250 2005-04-28  Pal Benko  <benkop@freestart.hu>
11251
11252         * lily/mensural-ligature.cc (brew_flexa): apply thickness property
11253         only on vertical lines of flexa shape, and use a constant
11254         thickness value for horizontal lines (patch slightly modified by
11255         Jürgen Reuter)
11256
11257         * lily/include/mensural-ligature.hh: make 2 comments clearer
11258
11259 2005-04-28  Jürgen Reuter  <reuter@ipd.uka.de>
11260
11261         * lily/vaticana-ligature-engraver.cc (need_extra_space): renamed
11262         to need_extra_horizontal_space; bugfix: use class scope to avoid
11263         global namespace pollution
11264
11265         * Documentation/user/instrument-notation.itely (ligatures): added
11266         comment on possible future syntax change and how to work around
11267
11268         * lily/vaticana-ligature-engraver.cc, mf/parmesan-heads.mf
11269         (epiphonus, cephalicus): fine-tune shape of plica head for narrow
11270         intervals (fixes agnus dei example)
11271
11272         * Documentation/user/instrument-notation.itely (white mensural
11273         ligatures): selected a more illustrative example
11274
11275 2005-04-28  Heikki Junes <hjunes@cc.hut.fi>
11276
11277         * Documentation/index.html.in: specify utf-8 charset in meta content.
11278
11279 2005-04-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11280
11281         * python/lilylib.py (make_ps_images): bugfixes; GS can produce
11282         empty 2nd page for single page.
11283
11284         * scm/lily.scm: remove p&c definitions.
11285
11286         * po/zh_TW.po (Module): new translation.
11287
11288         * lily/lily-guile.cc (ly_chain_assoc): remove.
11289
11290         * lily/general-scheme.cc (LY_DEFINE): export ly:chain_assoc_get
11291         (LY_DEFINE): recurse, iso. calling ly_chain_assoc.
11292
11293 2005-04-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11294
11295         * lily/beaming-info.cc: remove infinity_i
11296
11297         * scripts/abc2ly.py (out_filename): fix thinko with \version.
11298
11299 2005-04-26  Graham Percival  <gperlist@shaw.ca>
11300
11301         * Documentation/user/basic-notation.itely,
11302         instrument-notation.itely, advanced-notation.itely,
11303         changing-defaults.itely: minor fixes.  Added docs
11304         for colors to advanced-notation.itely.
11305
11306         * Documentation/user/advanced-notation.itely: fixed compile
11307         problem and added Bernard's x11-color doc patch.
11308
11309 2005-04-25  Jan Nieuwenhuizen  <janneke@gnu.org>
11310
11311         * scm/output-ps.scm (grob-cause): Yet another fix, hope it's
11312         alright this time round.
11313
11314 2005-04-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11315
11316         * Documentation/topdocs/INSTALL.texi (Top): idem.
11317
11318         * Documentation/topdocs/README.texi (Top): remove clean-fonts refs.
11319
11320         * VERSION (MAJOR_VERSION): release 2.5.21
11321
11322         * scm/output-ps.scm (grob-cause): bugfix.
11323
11324 2005-04-25  Jan Nieuwenhuizen  <janneke@gnu.org>
11325
11326         * cygwin/*: Update.
11327
11328         * cygwin/GNUmakefile (INSTALLATION_OUT_SUFFIXES): Remove profile
11329         stuff.
11330
11331         * scm/output-ps.scm (grob-cause): Bugfix.
11332
11333         * scm/lily.scm (ly:load): Remove x11-color.
11334
11335         * stepmake/aclocal.m4 (STEPMAKE_GET_EXECUTABLE): Bugfix: do not
11336         quote executable, fixes getting version from program --with
11337         --options.
11338         (STEPMAKE_KPATHSEA): Bugfix for Cygwin cross building: use
11339         $ac_exeect.
11340
11341         * Documentation/user/GNUmakefile: Only build music-glossary with
11342         rendered lilypond snippets during web.
11343
11344 2005-04-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11345
11346         * po/de.po: update.
11347
11348         * lily/GNUmakefile (OUT_DIST_FILES): don't dist lexer.cc
11349
11350 2005-04-22  Laura Conrad <lconrad@laymusic.org>
11351  
11352         * scripts/abc2ly:
11353         second title line append with punctuation dash character;
11354         encode abc2ly python strings in utf-8
11355        
11356 2005-04-21  Laura Conrad <lconrad@laymusic.org>
11357
11358         * scripts/abc2ly fix chords (again)
11359  
11360 2005-04-22  Bernard Hurley  <bernard@fong-hurley.org.uk>
11361
11362         * scm/x11-color.scm: new file
11363         All x11 color names can be accessed with:
11364         #(x11-color 'ColorName),
11365         #(x11-color "ColorName") or:
11366         #(x11-color "color name")
11367         If the x11 color name is not recognised then it defaults
11368         to black
11369
11370         * scm/lily.scm: amended to call scm/x11-color.scm
11371
11372 2005-04-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11373
11374         * Documentation/user/invoking.itely (Reporting bugs): comment out
11375         reference to online PNG bug repository.
11376
11377 2005-04-21  Jan Nieuwenhuizen  <janneke@gnu.org>
11378
11379         * lily/translator-scheme.cc (ly:translator-property): Remove.
11380         Update callers.
11381
11382         * lily/context-scheme.cc (ly:context-now): Move from translator.
11383         Update callers.
11384
11385 2005-04-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11386
11387         * input/regression/grid-lines.ly (skips): refine example.
11388
11389         * scm/define-context-properties.scm
11390         (all-user-translation-properties): doc autoBeamCheck
11391
11392         * input/regression/grid-lines.ly (Module): new file.
11393
11394         * lily/grid-point-engraver.cc (Module): new file.
11395
11396         * lily/grid-line.cc (Module): new file.
11397
11398         * lily/grid-line-span-engraver.cc (Module): new file.
11399
11400         * lily/grid-line-interface.cc (Module): new file.
11401
11402 2005-04-21  Jan Nieuwenhuizen  <janneke@gnu.org>
11403
11404         * scm/auto-beam.scm (revert-property-setting): Bugfixes: add
11405         missing parameter, actualy cdr through list.  Actually return a
11406         list with ENTRY removed (was '()).
11407
11408         * scripts/convert-ly.py: Update.  Print warning if file cannot be
11409         opened.
11410         (do_conversion): Fix printing of continuation comma.
11411
11412         * Documentation/user/advanced-notation.itely (Beam formatting):
11413         Remove refbugs about compound time and mixed duration.
11414
11415         * scm/auto-beam.scm (default-auto-beam-settings): Write out all
11416         modulo moments explicitely.
11417
11418         * lily/moment.cc (operator %): New function.
11419
11420         * lily/moment-scheme.cc (ly:mod-moment): Wrap it.
11421
11422         * lily/translator-scheme.cc (ly:translator-now,
11423         ly:translator-property): New function.
11424
11425         * scm/auto-beam.scm (default-auto-beam-check): New function.
11426
11427         * lily/auto-beam-engraver.cc (test_moment): Use it.
11428
11429         * flower/rational.cc (operator %): Bugfix.
11430
11431 2005-04-21  Erik Sandberg  <ersa9195@student.uu.se>
11432
11433         * scripts/abc2ly: Bugfix
11434
11435 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11436
11437         * python/fontextract.py (write_extracted_fonts): bugfix, too many
11438         %'s on EndFont comment.
11439
11440         * lily/ledger-line-spanner.cc: some more words of explanation.
11441
11442 2005-04-20  John Williams <williams@tni.com>  
11443         
11444         * scripts/lilypond-book.py: htmlquote bugfix.
11445         Allow snippets to be given distinct filenames.
11446         Allow the default alt text to be overridden.
11447
11448 2005-04-20  Erik Sandberg  <ersa9195@student.uu.se>
11449
11450         * ly/performer-init.ly: Bugfix
11451
11452         * THANKS: Added bughunters.
11453
11454 2005-04-20  Jan Nieuwenhuizen  <janneke@gnu.org>
11455
11456         * SConstruct (test_lib): Bump mftrace requirement to 1.1.9.
11457
11458         * lily/auto-beam-engraver.cc (test_moment): Test exact measure
11459         position (was: use modulo measure length).
11460
11461         * configure.in (no gui_b): Remove optional gtk+ requirement.
11462
11463 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11464
11465         * Documentation/user/basic-notation.itely (Pitches): add
11466         LedgerLineSpanner.
11467
11468         * lily/dynamic-engraver.cc (process_music): set right bound to
11469         script if present. Else, do not set.
11470         (acknowledge_grob): only set right bound of finished spanner to
11471         note column if no other bound is set.
11472
11473         * python/lilylib.py (make_ps_images): switch back to png16m.
11474         
11475 2005-04-19  Jan Nieuwenhuizen  <janneke@gnu.org>
11476
11477         * scripts/lilypond-book.py (write_if_updated): Bugfix for not
11478         writing up to date file.  Add dvips usage suggestion.
11479
11480         * scripts/convert-ly.py: Fix error message.
11481         Print usage if no files on command line.
11482         (usage): Add example usage.
11483
11484         * input/test/compound-time.ly: New file.
11485
11486         * input/test/circle.ly: New file.
11487
11488         * Documentation/topdocs/NEWS.tely: Use them.
11489
11490         * input/test/boxed-stencil.ly: Remove \score.
11491
11492         * buildscripts/mf-to-table.py (base): Add .log dependency.
11493
11494         * mf/GNUmakefile: Add PFAemmentaler and PFAaybabtu dependencies on
11495         pfa's.  Add .log dependency
11496
11497         * scm/define-markup-commands.scm (lower): New command.
11498
11499         * elisp/lilypond-mode.el (LilyPond-pdf-command): New command,
11500         make it default.
11501
11502 2005-04-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11503
11504         * lily/dynamic-engraver.cc (acknowledge_grob): add note-column
11505         also to finished cresc as right bound. This fixes:
11506         skip-string-decresc.ly
11507
11508         * lily/slur-scoring.cc (get_bound_info): robustness: substitute
11509         relative_coordinate if extent is empty.
11510
11511         * lily/stem.cc (width_callback): determine correct extent if flag
11512         is not there. This fixes slur-no-flag.ly
11513
11514         * lily/grace-engraver.cc (consider_change_grace_settings): new
11515         function.
11516         (initialize): also consider_change_grace_settings() on
11517         initialization. Fixes large grace notes at start of score.
11518
11519         * lily/break-align-interface.cc (do_alignment): don't translate if
11520         total_extent is empty.
11521
11522         * buildscripts/lilypond-{login,profile}.sh (Module): remove file.
11523
11524 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11525
11526         * scm/output-ps.scm (grob-cause): don't add cwd if path starts
11527         with slash.
11528
11529 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
11530
11531         * stepmake/aclocal.m4: Remove tfm_path.
11532
11533 2005-04-18  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11534
11535         * scm/music-functions.scm (markup-expression->make-markup): fix
11536         bug with cons arguments of markup commands.
11537         (music->make-music): fix music expression property list building
11538
11539 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
11540
11541         * aclocal.m4: Massage package names.
11542
11543         * SCons updates.
11544
11545 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11546
11547         * VERSION (PACKAGE_NAME): release 2.5.20
11548
11549         * lily/stem.cc (calc_stem_info): add minimum Y extent of
11550         stem-tremolo.  Fixes: bugs/tremolo-stem-length-beamed
11551
11552         * lily/percent-repeat-engraver.cc (try_music): add measure before
11553         next_moment to future processing moment. Fixes:
11554         percent-repeat-mm-rest.ly
11555         (process_music): don't add moment for 2nd time.
11556
11557         * input/regression/repeat-percent.ly: add mmrests as extra test.
11558
11559         * lily/axis-group-engraver.cc (acknowledge_grob): read
11560         keepAliveInterfaces to decide what to kill.
11561
11562         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): add
11563         percent-repeat-interface to keepAliveInterfaces. This fixes
11564         percent-repeat-harakiri.
11565
11566 2005-04-17  Jan Nieuwenhuizen  <janneke@gnu.org>
11567
11568         * SCons updates.
11569
11570 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11571
11572         * config.make.in (TTFTOOL_ENDIAN): rm TFM_PATH
11573
11574         * aclocal.m4: remove --enable-tfm-path configure option
11575
11576         * input/test/ancient-font.ly (lowerStaff): clef name errors.
11577
11578         * scm/backend-library.scm (postscript->png): newline after
11579         finishing command.
11580
11581         * lily/paper-score-scheme.cc (LY_DEFINE): new file.
11582         (LY_DEFINE): ly:paper-score-paper-systems: new function 
11583
11584         * lily/score-scheme.cc (LY_DEFINE): require music argument. 
11585
11586         * lily/score.cc (default_rendering): use Music_output too.
11587
11588         * input/test/chord-names-languages.ly (Module): rename file.
11589
11590         * lily/text-spanner.cc: add bound-padding.
11591
11592         * lily/paper-book.cc (systems): accept Paper_score
11593         iso. Paper_system vector. 
11594
11595         * input/regression/line-arrows.ly: new file.
11596
11597         * lily/paper-score.cc (process): run get_paper_systems() only once.
11598
11599         * lily/line-spanner.cc (line_stencil): add arrows.
11600
11601 2005-04-18  Jonatan Liljedahl  <lijon@kymatica.com>
11602
11603         * lily/line-interface.cc (make_arrow): new function. 
11604         (arrows): idem.
11605
11606 2005-04-18  Mathieu Giraud  <magiraud@free.fr>
11607
11608         * input/test/chord-names-german.ly: update for italian/french
11609         chords.
11610         
11611         * Documentation/user/instrument-notation.itely (Printing chord
11612         names): update.
11613
11614 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11615
11616         * lily/include/paper-score.hh (class Paper_score): remove unused
11617         prototypes.
11618
11619         * lily/book.cc (process): add -COUNT to midi output.
11620
11621         * lily/score.cc (book_rendering): remove outname argument
11622         (book_rendering): return list of Music_outputs. 
11623
11624         * lily/global-context-scheme.cc (LY_DEFINE): remove outname argument.
11625
11626         * lily/book.cc (process): loop over Music_outputs returned from
11627         Score::book_rendering().
11628
11629         * lily/*.cc (width_callback): remove spurious "unused" warnings
11630         for assert (axis==[XY]_AXIS); 
11631
11632         * lily/include/music-output.hh (class Music_output): smobify class.
11633
11634         * lily/include/paper-score.hh (class Paper_score): make members
11635         private.
11636
11637         * lily/performance.cc (process): return #f iso. #<undefined>. This
11638         prevents #<undefined> leaking into GUILE-userspace.
11639
11640 2005-04-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11641
11642         * config.hh.in: remove HAVE_PANGO_FC_FONT_MAP_ADD_DECODER_FIND_FUNC.
11643
11644 2005-04-17  Mathieu Giraud  <magiraud@free.fr>
11645
11646         * scm/chord-name.scm : support for italian and french
11647         chords names.
11648
11649         * scm/chord-ignatzek-names.scm (ignatzek-chord-names): add
11650         a space defined by chordPrefixSpacer when the root name is
11651         direclty followed by a prefix.
11652
11653         * ly/engraver-init.ly : chordPrefixSpacer       
11654         * scm/define-context-properties.scm : chordPrefixSpacer
11655         * ly/property-init.ly : italianChords, frenchChords 
11656
11657 2005-04-17  Jan Nieuwenhuizen  <janneke@gnu.org>
11658
11659         * mf/feta-din.mf: Remove.
11660
11661         * mf/GNUmakefile (fontdir): Bugfix.
11662
11663         * mf/SConstruct: Some updates.
11664
11665         * SConstruct: Require pkg-config.
11666         (test_program): Bugfix for double digit version compares, use
11667         integer (not string-) compare.
11668         Optionally require gs 8.14.
11669
11670         * stepmake/aclocal.m4 (STEPMAKE_PANGO_FT2): Define HAVE_PANGO16 too.
11671
11672         * lily/*: s/ifdef HAVE_*/if have/.
11673
11674         * SConstruct (test_lib): New function.  Update pkg-config and some
11675         other requirements.
11676
11677         * configure.in: Require pkg-config.  Enforce REQUIRE and version for
11678         freetype, pangof2t.
11679
11680 2005-04-16  Jan Nieuwenhuizen  <janneke@gnu.org>
11681
11682         * po/lilypond.pot, ...: Update using bison-CVS.
11683
11684         * python/lilylib.py (make_ps_images): Fixo.
11685
11686 2005-04-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11687
11688         * python/lilylib.py (make_ps_images): typo.
11689
11690         * configure.in (gui_b): make bison optional.
11691
11692         * lily/GNUmakefile (OUT_DIST_FILES): dist parser and lexer.
11693
11694 2005-04-16  Bernard Hurley  <bernard@fong-hurley.org.uk>
11695
11696         * framework-eps.scm: code added so that a macro \betweenLilyPondSystem
11697         with one parameter can be defined in a LaTeX file when processed
11698         by lilypond-book this will be evaluated between the systems of
11699         a multi-system score. The parameter is the number of systems processed.
11700
11701 2005-04-16  Jan Nieuwenhuizen  <janneke@gnu.org>
11702
11703         * python/lilylib.py (make_ps_images): Escape newline.
11704
11705         * Documentation/user/music-glossary.tely: Run
11706         texinfo-all-menus-update.
11707
11708 2005-04-14  Jan Nieuwenhuizen  <janneke@gnu.org>
11709
11710         * scm/lily-library.scm (old-relative-not-used-message)
11711         (version-not-seen-message): Add input-file-name-location to message.
11712
11713         * lily/parser.yy (lilypond): Add token aliases.
11714
11715         * Documentation/user/music-glossary.tely (accidental): Fixes.  Do
11716         not confuse with alteration.
11717         (alteration): Add.
11718
11719 2005-04-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11720
11721         * python/lilylib.py (make_ps_images): use -dEPSCrop
11722
11723         * VERSION (PACKAGE_NAME): release 2.5.19 
11724
11725         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
11726         only put xrefs in info documentation.
11727
11728         * make/ly-rules.make ($(outdir)/%.html.omf): transplant .dvi ->
11729         .pdf rule to tex-rules.make.
11730
11731         * scm/framework-eps.scm (dump-stencils-as-EPSes): remove comments
11732         from -systems.* output.
11733
11734         * stepmake/stepmake/tex-rules.make ($(outdir)/%.pdf): make PDF
11735         directly, remove -$(PAGESIZE) target.
11736
11737         * input/test/embedded-postscript.ly: update.
11738
11739 2005-04-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11740
11741         * make/lysdoc-targets.make (local-WWW): remove ps.gz target.
11742
11743         * Documentation/user/changing-defaults.itely (Font selection):
11744         document font-name.
11745
11746         * input/regression/font-name.ly: show Pango fonts for
11747         font-name. Update example. 
11748
11749         * lily/pango-select.cc (properties_to_pango_description): don't
11750         convert symbol font-size to number, but use to lookup.
11751
11752         * python/fontextract.py (write_extracted_fonts): add VMusage 0.
11753
11754         * scm/framework-ps.scm (write-preamble): use (NAME . CONTENTS) and
11755         (NAME . FILE-NAME) tuples for font descriptions. 
11756         (write-preamble): display BeginFont DSC comments.
11757
11758         * python/fontextract.py (write_extracted_fonts): new file. Extract
11759         font resources from a PS file.
11760
11761         * scripts/lilypond-book.py (option_definitions): --psfonts option.
11762         (Compile_error.process_include): do_file returns chunks.
11763
11764         * make/ly-vars.make (DVIPS_FLAGS): don't load .map file.
11765
11766         * make/lysdoc-targets.make: .texi is .PRECIOUS
11767
11768         * scripts/lilypond-book.py (write_if_updated): new function.
11769
11770 2005-04-13  Jan Nieuwenhuizen  <janneke@gnu.org>
11771
11772         * scm/framework-eps.scm (dump-stencils-as-EPSes): Massage messages.
11773
11774 2005-04-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11775
11776         * scm/framework-eps.scm (dump-stencils-as-EPSes): no massages.
11777
11778         * input/regression/markup-syntax.ly: remove \score.
11779
11780         * scm/define-markup-commands.scm (draw-circle): add fill argument
11781
11782         * scm/stencil.scm (make-circle-stencil): add fill argument
11783
11784         * ps/music-drawing-routines.ps: add fill argument.
11785
11786         * ly/performer-init.ly: add CueVoice to MIDI too.
11787
11788         * ps/music-drawing-routines.ps: new routine BeginEPSF /
11789         EndEPSF.
11790
11791         * input/regression/markup-eps.ly: new file.
11792
11793         * scm/framework-ps.scm (write-preamble): change order: vars should
11794         be inited before procedures.
11795
11796         * scm/output-ps.scm (glyph-string): break lines. 255 chars is max
11797         for EPS files.
11798
11799         * scm/define-markup-commands.scm (epsfile): add epsfile command.
11800
11801 2005-04-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11802
11803         * configure.in (gui_b): add check for ghostscript 8.15
11804
11805 2005-04-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11806
11807         * lily/hairpin.cc (after_line_breaking): suicide the hairpinlet at
11808         start of line. Fixes cresc-after-newline.ly
11809
11810         * lily/source-file.cc (file_line_column_string): use get_column().
11811
11812 2005-04-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11813
11814         * lily/source-file.cc (get_column): utf-8 support for column numbers.
11815
11816 2005-04-12  Jan Nieuwenhuizen  <janneke@gnu.org>
11817
11818         * lily/*: use message () iso progress_indication () for messages.
11819         Revise/uniformise user messages.
11820
11821         * flower/warn.cc (progress_indication): New function.
11822         (message): Use it.  Fixes newline problems.
11823
11824         * config.make.in (webdir): Sort out install dirs.
11825
11826         * stepmake/stepmake/generic-targets.make (final-install): Bugfix.
11827
11828         * python/lilylib.py (command_name): Bugfix.
11829         (make_ps_images):
11830
11831 2005-04-11  Pedro Kroger  <kroeger@pedrokroeger.net>
11832
11833         * lily/main.cc: --help says what types of backends are availabe
11834
11835 2005-04-11  Jan Nieuwenhuizen  <janneke@gnu.org>
11836
11837         Fix ./VERSION dependency, and without need to reconfigure.
11838
11839         * lily/main.cc (setup_paths): Update.
11840
11841         * stepmake/bin/make-version.py (defs): Add TOPLEVEL_VERSION define..
11842
11843         * config.hh.in (LILYPOND_DATADIR): Remove TOPLEVEL_VERSION.
11844
11845         * scripts/convert-ly.py (\markup): Fix too simplistic regexps.
11846         Add \line for some simplistic cases.
11847
11848         * lily/GNUmakefile (main.o): Add missing dependency on version.hh.
11849
11850 2005-04-10  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11851
11852         * elisp/lilypond-mode.el (LilyPond-lilypond-command): command used
11853         to compile LY files (useful for adding eg. "-I" args)
11854         (LilyPond-command-alist): use `LilyPond-lilypond-command'. Add a
11855         2Gnome command for gnome backend.
11856         (LilyPond-command-formatgnome): call the 2Gnome command. key
11857         binding: C-c C-g
11858
11859 2005-04-10  Jan Nieuwenhuizen  <janneke@gnu.org>
11860
11861         * Documentation/user/GNUmakefile (lilypond/index.html): Bugfix:
11862         depend on all PNG images.
11863
11864 2005-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
11865
11866         * GNUmakefile.in: Bugfix: also link .map files.
11867
11868 2005-04-09  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11869
11870         * scm/music-functions.scm (music->make-music): generate 
11871         a (make-music ...) sexpr from a music expression.
11872         (display-scheme-music): use guile pretty printer to display the
11873         make-music sexpr.
11874
11875 2005-04-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11876
11877         * ly/engraver-init.ly: reindent.
11878         Add CueVoice.
11879
11880         * scm/music-functions.scm (music-pretty-string): handle moments
11881         too.
11882         (music-pretty-string): only print non-empty lists.
11883         (cue-substitute): create CueVoice context, which has smaller type.
11884
11885         * lily/moment-scheme.cc (LY_DEFINE): new methods
11886         ly:moment-grace-{numerator,denominator}
11887
11888         * lily/context-handle.cc: remove quit() method. 
11889
11890         * lily/font-config.cc (init_fontconfig): be verbose about font path.
11891         (init_fontconfig): success is 0, not !0
11892
11893 2005-04-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11894
11895         * mf/feta-nummer-code.mf (code): add plus glyph.
11896
11897         * lily/tie.cc (print): idem.
11898
11899         * lily/slur.cc (print): don't use thickness property for
11900         slur shape-thickness.
11901
11902         * lily/stencil-scheme.cc (LY_DEFINE): don't reverse the order
11903         while adding stencils.
11904
11905         * scm/define-markup-commands.scm (with-color): with-color markup
11906         command.
11907         (whiteout): new markup command 
11908         (filled-box): new markup command
11909
11910 2005-04-07  Jan Nieuwenhuizen  <janneke@gnu.org>
11911
11912         * Documentation/topdocs/NEWS.tely (Top): Make tex-able.  Handy
11913         test for PDF docs.
11914
11915         * mf/GNUmakefile (lilypond.map): Add PFAEmmentaler,
11916         PFAAybabtu-Regular.  Fixes feta font in PDFs.
11917         
11918         Notes for tetex-3.0 make web:
11919            psclean.map: s/uhv8a/uhvr8a/
11920            config.ps add:
11921                 p +psfonts_t1.map
11922                 p +psclean.map
11923                 p +typeface.map
11924
11925 2005-04-06  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11926
11927         * scm/music-functions.scm (music-pretty-string): fix bug with
11928         string argument.
11929
11930 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
11931
11932         * stepmake/bin/add-html-footer.py (i18n): Bugfix.
11933
11934 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11935
11936         * scripts/lilypond-book.py (Lilypond_snippet.__init__): 
11937         only process options if they're there.
11938         (write_file_map): add version-seen? to snippet-map.ly
11939
11940 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
11941
11942         * scripts/lilypond-book.py (split_options): Bugfix.  Small code
11943         formatting cleanups.
11944
11945         * mf/GNUmakefile: Rewrite $addprefix, $addsuffix using % short-forms.
11946         Add PFAaybabtu.pfa dependency on aybabtu.subfonts.
11947
11948 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11949
11950         * scm/framework-ps.scm (ps-font-command): don't hash, just use
11951         name directly.
11952
11953         * lily/main.cc (setup_paths): either add mf/out to search path or 
11954         fonts/{otf,type1,etc}
11955         
11956         * lily/font-config.cc (init_fontconfig): either add mf/out to
11957         FontConfig or fonts/{otf,type1,etc}
11958
11959         * GNUmakefile.in: don't put mf/ link in share/ dir.
11960
11961         * lily/staff-spacing.cc: move same-direction-correction to
11962         note-spacing-interface
11963
11964         * scm/lily.scm (lilypond-main): use variable argument count for
11965         exception handler.
11966
11967         * lily/font-config.cc (init_fontconfig): add operator pacification
11968         message.
11969
11970         * mf/aybabtu.pe.in (i): generate PFAAybabtu.pfa
11971
11972         * buildscripts/gen-emmentaler-scripts.py (i): generate
11973         PFAEmmentaler as well.
11974
11975         * scm/framework-ps.scm (munge-lily-font-name): new function
11976         (write-preamble): hack: insert PFA equivalent of CFF into
11977         .PS. This makes LilyPond output printable on normal PS printers
11978         again.
11979
11980         * buildscripts/gen-emmentaler-scripts.py (i): generate
11981         PFAEmmentaler.pfa aswell.
11982
11983 2005-04-06  John Williams <williams@tni.com>  
11984         
11985         * scripts/lilypond-book.py: refactor the compose_ly procedure.
11986         
11987 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11988
11989         * scm/page-layout.scm (default-page-make-stencil): always combine
11990         the header stencil, even if empty. This prevents the body text to
11991         reach up to the margins.
11992
11993         * po/rw.po (Module): new file, for Kinyarwanda.
11994
11995         * input/test/spacing-optical.ly (Module): new file.
11996
11997         * lily/staff-spacing.cc: add same-direction-correction
11998
11999 2005-04-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12000
12001         * Documentation/user/introduction.itely (Engraving): Comment-out
12002         non-existent file.
12003
12004 2005-04-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12005
12006         * scm/define-grob-properties.scm (all-user-grob-properties): add
12007         same-direction-correction
12008
12009         * VERSION: release 2.5.18
12010
12011 2005-04-05  Jan Nieuwenhuizen  <janneke@gnu.org>
12012
12013         * lily/grob.cc (mark_smob): Check pscore->layout_ before
12014         dereferencing.  Fixes make web.
12015
12016         * lily/midi-stream.cc: Handle unwritable midi file.  Include
12017         errno.h.
12018
12019         * Documentation/user/: Fix links.
12020
12021 2005-04-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12022
12023         * lily/text-interface.cc (Module): rename from text-item.cc
12024
12025         * input/regression/apply-output.ly (texidoc): function naming fix.
12026
12027         * lily/time-signature-performer.cc (derived_mark): new function.
12028
12029         * lily/lily-parser-scheme.cc:  print mapped file name for progress
12030
12031         * scripts/lilypond-book.py (find_linestarts): new function.
12032         (find_toplevel_snippets): keep track of line numbers.
12033
12034         * lily/key-performer.cc (try_music): remove FIXME warning, gobble
12035         all key changes.
12036
12037         * ly/declarations-init.ly (partCombineListener): use
12038         ignoreBarChecks. Fixes: warn-partcombine-barcheck.ly
12039
12040         * lily/bar-check-iterator.cc (process): ignoreBarChecks property.
12041
12042 2005-04-04  Jan Nieuwenhuizen  <janneke@gnu.org>
12043
12044         * lily/text-item.cc: Fix link.
12045
12046         * Documentation/user/changing-defaults.itely (Changing defaults):
12047         Fix programs reference links.
12048
12049         * Documentation/user/music-glossary.tely: Convert to utf-8.
12050
12051 2005-04-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12052
12053         * make/lilypond-vars.make: remove TEXMF from variables.
12054         remove DEB_BUILD pk font variables.
12055         remove GUILE_LOAD_PATH
12056         remove TeX memory vars.
12057
12058 2005-04-04  Werner Lemberg  <wl@gnu.org>
12059
12060         * lilypond/scm-option.cc (ly_option_usage): Add final newline.
12061
12062 2005-04-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12063
12064         * ps/lilyponddefs.ps: remove reencode-font
12065
12066         * lily/simple-spacer.cc (add_columns): also compare
12067         directly. Column rank doesn't distinguish between broken and
12068         unbroken columns. This fixes large spaces before time sig changes.
12069
12070         * Documentation/user/point-and-click.itely: document ly:set-option.
12071
12072         * lily/grob.cc (get_uncached_stencil): only set grob-cause if
12073         point_and_click_global is set.
12074
12075         * lily/scm-option.cc (LY_DEFINE): add point-and-click
12076         ly:set-option argument.
12077
12078 2005-04-03  Jan Nieuwenhuizen  <janneke@gnu.org>
12079
12080         * GNUmakefile.in: Include symlinks in webball.
12081
12082         * Documentation/user/GNUmakefile (source-links): Add symlinks to
12083         source dir for split and non-split manuals.
12084
12085         * Documentation/user/*y: Fix @uref/@inputfile links for
12086         split/non-split HTML documents.
12087
12088         * Documentation/user/GNUmakefile (local-WWW): Do not generate
12089         .ps.gz.
12090         
12091 2005-04-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12092
12093         * GNUmakefile.in: Add newline.
12094
12095 2005-04-01  Erlend Aasland  <erlenda@gmail.com>
12096
12097         * tex/lilyponddefs.tex: use color instead of xcolor
12098         * scm/output-tex.scm: minor editing
12099
12100 2005-04-02  Nicolas Sceaux  <nicolas.sceaux@free.fr>
12101
12102         * scm/music-functions.scm (display-scheme-music): pretty printer
12103         for music expressions.
12104
12105 2005-04-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12106
12107         * buildscripts/install-info-html.sh (index_file): Fix link.
12108
12109 2005-04-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12110
12111         * input/test/dynamic-extra.ly (piuf): Use utf-8 iso TeX accent.
12112
12113         * Documentation/index.html.in: Add size estimates with some big pages.
12114
12115         * Documentation/user/tutorial.itely (Running LilyPond for the
12116         first time): Add/replace some @rglos links.  TODO: add more
12117         @rglos links in tutorial, test non-intrusiveness (.css).
12118
12119         * stepmake/bin/add-html-footer.py (do_file): Remove info's
12120         annoying's indication of referencing external document.
12121
12122         * Documentation/user/GNUmakefile: Split version of glossary too.
12123         * Documentation/user/macros.itexi (@rglos): Have makeinfo produce
12124         links, not only for html.
12125
12126         * Documentation/user/introduction.itely: Fix some links for other
12127         than html, do not use `here' as link name.
12128
12129 2005-03-31  Jan Nieuwenhuizen  <janneke@gnu.org>
12130
12131         * scm/documentation-generate.scm (string-append): Fix @usermanref,
12132         @glossaryref.
12133
12134 2005-03-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12135
12136         * scm/page-layout.scm (default-page-make-stencil): only add header
12137         if existing and not empty. Fixes spurious programming error.
12138
12139         * lily/span-bar.cc (print): don't make rounded edges for spanbars.
12140
12141 2005-03-31  Erlend Aasland  <erlenda@gmail.com>
12142
12143         * scm/output-tex.scm: implement {re,}setcolor
12144         * tex/lilyponddefs.tex: use color package
12145
12146 2005-03-31  Jan Nieuwenhuizen  <janneke@gnu.org>
12147
12148         * GNUmakefile.in (local-WWW-post): Restore .htaccess and .html
12149         additions to website.
12150
12151         * Documentation/user/lilypond.tely: Remove reference to ps.gz.
12152
12153         * Documentation/user/macros.itexi: Fix @usermanref html links in
12154         split documents: use @inforef.
12155
12156 2005-03-30  Graham Percival  <gperlist@shaw.ca>
12157
12158         * Documentation/user/programming-interface.itely: minor fix.
12159
12160         * Documentation/user/advanced-notation.itely: added info to
12161         Metronome markings.
12162
12163 2005-03-30  Jan Nieuwenhuizen  <janneke@gnu.org>
12164
12165         * scm/output-lib.scm (make-stencil-boxer): Junk code duplication,
12166         use box-stencil.  Remove y-padding argument.
12167         (make-stencil-circler): New function.
12168
12169         * buildscripts/lilypond-words.py (F): 
12170         * elisp/SConscript (a): 
12171         * elisp/GNUmakefile (LILYPOND_WORDS_DEPENDS):
12172         * vim/SConscript (a): 
12173         * vim/GNUmakefile (LILYPOND_WORDS_DEPENDS): Update.
12174
12175         * lily/general-scheme.cc: Build fix.
12176
12177         * scm/markup.scm:
12178         * input/regression/markup-scheme.ly: 
12179         * input/regression/markup-syntax.ly: Drop 'new-' from name.
12180
12181         * scm/stencil.scm (make-circle-stencil): New function.
12182
12183         * scm/define-markup-commands.scm (draw-circle): Use it.  New
12184         name (was cicle).  Update callers.
12185         (circle): New markup command, similar to box.
12186
12187         * scm/stencil.scm (circle-stencil): New function.
12188
12189 2005-03-29  David Jedlinsky  <lilypond@ipnh.com>
12190
12191         * configure.in: Detect libutf8/wchar.h variant.
12192
12193         * stepmake/aclocal.m4: Modify shared size test.
12194
12195 2005-03-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12196
12197         * make/lilypond.fedora.spec.in (Group): remove texmf profile stuff.
12198
12199 2005-03-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12200
12201         * scripts/convert-ly.py (conv): add stencil-aligned-to! rule.
12202         
12203         * VERSION (PACKAGE_NAME):  release 2.5.17
12204
12205 2005-03-29  Jan Nieuwenhuizen  <janneke@gnu.org>
12206
12207         * scm/backend-library.scm (postscript->png): Fix comment and png
12208         message.
12209
12210         * GNUmakefile.in (link-tree): Fix locales.
12211
12212 2005-03-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12213
12214         * lily/stencil-scheme.cc (LY_DEFINE): change to
12215         ly:stencil-aligned-to, non mutating.
12216
12217         * scm/safe-lily.scm (lambda): remove ly:stencil-set-extent!
12218
12219         * lily/stencil-scheme.cc: remove ly:stencil-set-extent!
12220
12221         * lily/quote-iterator.cc (derived_mark): call
12222         Music_wrapper_iterator::derived_mark() too.
12223
12224         * lily/grace-engraver.cc (derived_mark): change signature, add
12225         const.
12226
12227 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12228
12229         * SConstruct (symlink): 
12230         * GNUmakefile.in (link-tree): Add scripts to prefix.
12231
12232         * lily/general-scheme.cc (ly:effective-prefix): New function.
12233
12234         * scm/backend-library.scm (postscript->png): Use it.
12235
12236 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12237
12238         * lily/paper-score.cc (process): don't delete grobs after
12239         producing stencils. 
12240
12241         * scm/part-combiner.scm (determine-split-list): switch off
12242         debugging info.
12243
12244         * scm/backend-library.scm (postscript->png): explicitly use ps2png.py
12245         if available.
12246
12247         * scm/define-context-properties.scm
12248         (all-user-translation-properties): add stringNumberOrientations.
12249
12250         * lily/new-fingering-engraver.cc (position_scripts): make generic,
12251         so fingering and string-numbers are separately controlled.
12252
12253 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12254
12255         * stepmake/aclocal.m4: Fix shared size test: add missing comma, do
12256         not use debugging.
12257
12258 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12259
12260         * GNUmakefile.in (local-WWW-post): remove UTF8 .htaccess.
12261
12262         * config.hh.in: add HAVE_FONTCONFIG.
12263
12264         * Documentation/user/instrument-notation.itely (String number
12265         indications): new node.
12266
12267         * input/regression/new-markup-syntax.ly (texidoc): add circle.
12268
12269         * lily/new-fingering-engraver.cc (add_string): new function. 
12270         (acknowledge_grob): accept string-number-event as well.
12271
12272         * scm/define-markup-commands.scm (circle): new markup command.
12273
12274         * scm/output-lib.scm (print-circled-text-callback): new function.
12275
12276         * lily/GNUmakefile: move ifeq after include stepmake.make.
12277
12278 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12279
12280         * config.make.in (HAVE_LIBKPATHSEA_SO):
12281         * stepmake/aclocal.m4: Also subst HAVE_LIBKPATHSEA_SO.
12282
12283         * lily/GNUmakefile (MODULE_LDFLAGS): Only if not HAVE_KPATHSEA_SO,
12284         add KPATHSEA_LIBS.
12285
12286         * debian/watch: 
12287         * debian/control: Update.
12288
12289 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12290
12291         * input/test/title-markup.ly (spaceTest): remove.
12292
12293         * input/test/embedded-tex.ly (Module): remove.
12294
12295         * input/test/music-box.ly: use 'name property, not ly:music-name.
12296
12297         * lily/GNUmakefile (MODULE_LDFLAGS): add KPATHSEA_LIBS.
12298
12299         * stepmake/aclocal.m4: STEPMAKE_FONTCONFIG: add.
12300
12301 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12302
12303         * Documentation/topdocs/INSTALL.texi (Top): Remove information
12304         about xdeltas.  Add information about CVS.
12305
12306         * scm/lily.scm (lilypond-main): Fix invocation of handler,
12307         gracefully handle failed files.
12308
12309         * lily/GNUmakefile (MODULE_LDFLAGS): Remove KPATHSEA_LIBS.
12310
12311         * Documentation/topdocs/INSTALL.texi (Top): Whitespace and other
12312         small fixes.
12313
12314         * scm/framework-tex.scm (convert-to-ps): Proper option spacing.
12315         No unnecessarily specific i18n messages.  Remove stray `1'.
12316
12317 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12318
12319         * buildscripts/lys-to-tely.py (strip_extension): add utf-8
12320         documentencoding
12321
12322         * scm/documentation-lib.scm (texi-file-head): set utf-8
12323         documentencoding.
12324
12325         * ly/chord-modifiers-init.ly (whiteTriangleMarkup): use the greek
12326         Delta, not the Symbol one. 
12327
12328         * mf/GNUmakefile ($(outdir)/lilypond.map): add -Regular to Aybabtu
12329         for the .map file.
12330
12331         * Documentation/topdocs/INSTALL.texi (Top): add running
12332         requirement as compilation requirement.
12333
12334 2005-03-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12335
12336         * buildscripts/mutopia-index.py (headertext): add h1 header and
12337         utf-8 charset meta field.
12338
12339         * input/GNUmakefile: prune example list.
12340
12341         * scm/framework-tex.scm (convert-to-ps): add -ofoo.ps to dvips
12342         options.
12343
12344         * lily/slur-scoring.cc (get_base_attachments): only look at stem
12345         extent for visible stems.
12346
12347         * lily/grob.cc (mark_smob): mark \layout block from Grob::mark_smob().
12348
12349 2005-03-27  Jan Nieuwenhuizen  <janneke@gnu.org>
12350
12351         * Documentation/topdocs/INSTALL.texi (Top): Updates.
12352
12353         * scripts/convert-ly.py: Python 2.2 compatibility (thanks Mats).
12354
12355 2005-03-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12356
12357         * lily/slur-scoring.cc (get_base_attachments): robustness. Don't
12358         pass inf/nan into slur scoring.
12359
12360         * ly/titling-init.ly (oddHeaderMarkup): don't show page no. on 1st
12361         page.
12362
12363         * scripts/abc2ly.py (dump_voices): use alphabet().
12364
12365 2005-03-27  Jeff Smith <whydoubt@yahoo.com>
12366         
12367         * mf/GNUmakefile (depth): use $(FONTFORGE). 
12368
12369 2005-03-27 Matthias Neeracher <neeracher@mac.com>
12370         
12371         * flower/include/virtual-methods.hh: simplify. Patch by
12372
12373 2005-03-25  John Williams <williams@tni.com>  
12374
12375         * scripts/lilypond-book.py (main): add png for HTML too, guess
12376         only if necessary. 
12377
12378 2005-03-25  Graham Percival  <gperlist@shaw.ca>
12379
12380         * Documentation/topdocs/INSTALL.texi: now recommends
12381         lexer-gcc-3.1.sh for gcc 3.1.1 or higher.
12382
12383         * Documentation/user/basic-notation.itely,
12384         Documentation/user/tutoria.itely: warn about
12385         only one (phrasing) slur at once.
12386
12387 2005-03-24  Pedro Kroger  <kroeger@pedrokroeger.net>
12388
12389         * ly/music-functions-init.ly (removeWithTag): fixed to return "music".
12390
12391 2005-03-23  Graham Percival  <gperlist@shaw.ca>
12392
12393         * Documentation/user/basic-notation.itely: fixed info about
12394         ending a (de)cresc.
12395
12396         * Documentation/user/lilypond-book.itely: fixed
12397         lilypond-book filter example and warned about not doing
12398         --filter and --process at the same time.
12399
12400 2005-03-23  Mats Bengtsson  <mabe@s3.kth.se>
12401
12402         * lily/parser.yy (bass_number),
12403         Documentation/user/instrument-notation.itely (Figured bass): 
12404         Add the possibility to use text markup in figured bass. 
12405
12406 2005-03-19  Graham Percival  <gperlist@shaw.ca>
12407
12408         * Documentation/user/global.itely: added info about naming
12409         identifiers and breakbefore.
12410
12411         * Documentation/user/invoking.itely: added info about batch
12412         processing files with convert-ly, removed references to TeX
12413         in the jail section.
12414
12415         * Documentation/user/examples.itely: possibly fixed piano
12416         dynamics.
12417
12418         * Documentation/user/advanced-notation.itely: added info
12419         about removing other types of Staff.
12420
12421         * Documentation/user/instrument-notation.itely: possibly
12422         fixed piano staff line switch.
12423
12424         * Documentation/user/changing-defaults.itely: added info
12425         about using normal font in titles.
12426
12427 2005-03-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12428
12429         * VERSION (PATCH_LEVEL): release 2.5.16
12430
12431         * make/ly-vars.make (DVIPS_FLAGS): include lilypond.map path
12432         explicitly.
12433
12434 2005-03-18  Jan Nieuwenhuizen  <janneke@gnu.org>
12435
12436         * scm/framework-tex.scm (convert-to-dvi): Barf if NAME contains
12437         whitespace.
12438
12439         * python/lilylib.py (make_ps_images):
12440         * scm/backend-library.scm (postscript->pdf, postscript->png):
12441         Quote file name.  Use format rather than string-append juggling.
12442
12443 2005-03-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12444
12445         * python/lilylib.py (make_ps_images): add x to -g argument. 
12446
12447         * lily/key-performer.cc (create_audio_elements): don't use
12448         scm_eval_string. Check for minor 3rd directly.
12449   
12450         * input/mutopia/J.S.Bach/baerenreiter-sarabande.ly
12451         (sarabandeCelloGlobal): key is D minor, not F major.
12452
12453 2005-03-17  Jan Nieuwenhuizen  <janneke@gnu.org>
12454
12455         Fix truncated --png output (Peter Danenberg).
12456         
12457         * python/lilylib.py (make_ps_images):
12458         * scripts/ps2png.py (copyright): Grok --papersize option.
12459
12460         * scm/backend-library.scm (postscript->png): Add parameter
12461         PAPERSIZE.  Update callers.
12462
12463         * scm/output-gnome.scm (music-font?): Bugfix: use "Emmentaler".
12464         Fixes symbol placement.
12465
12466         * lily/spanner.cc: 
12467         * lily/stencil.cc: Use "libc-extension.hh" (WAS:
12468         <libc-extension.hh>).
12469
12470 2005-03-16  Jan Nieuwenhuizen  <janneke@gnu.org>
12471
12472         * Nitpick run.
12473
12474         * buildscripts/fixcc.py: Update.
12475
12476         Builddir run fixes.
12477
12478         * HACKING (datadir): Add VERSION.
12479
12480         * GNUmakefile.in (linktree): Bugfix: outconfdirs are one dir
12481         higher up.
12482
12483 2005-03-15  Werner Lemberg  <wl@gnu.org>
12484
12485         * mf/feta-klef.mf (draw_gclef): Move z10' slightly so that the
12486         diagonal stem doesn't become thinner.
12487
12488 2005-03-15  Jan Nieuwenhuizen  <janneke@gnu.org>
12489
12490         * buildscripts/fixcc.py: Fixes (Werner).
12491
12492 2005-03-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12493
12494         * mf/GNUmakefile ($(outdir)/lilypond.map): capitalize
12495         Emmentaler/Aybabtu.
12496
12497         * GNUmakefile.in: fix lilypond-words path.
12498
12499         * po/tr.po: update to 2.3.21
12500
12501         * lily/new-fingering-engraver.cc (position_scripts): take priority
12502         from head position.
12503
12504         * input/regression/finger-chords-order.ly (texidoc): new file.
12505
12506 2005-03-14  Jan Nieuwenhuizen  <janneke@gnu.org>
12507
12508         * make/ly-rules.make: 
12509         * stepmake/aclocal.m4: 
12510         * Documentation/user/GNUmakefile: Remove old makeinfo compatibility.
12511
12512         * buildscripts/fixcc.py (rules): Leave space after operator.
12513
12514 2005-03-14  Werner Lemberg  <wl@gnu.org>
12515
12516         * mf/feta-klef.mf (draw_gclef): Replace `simple_serif' for
12517         top of the glyph with smooth curve.
12518
12519 2005-03-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12520
12521         * Documentation/user/global.itely (Page layout): remove
12522         printpagenumber.
12523
12524 2005-03-13  Jürgen Reuter  <reuter@ipd.uka.de>
12525
12526         * input/regression/mensural-ligatures.ly: new file (with examples
12527         compiled by Pal Benko).
12528
12529         * Documentation/user/instrument-notation.itely: Bugfix: yet some
12530         other "custodes.*-u0" -> "custodes.*.u0" renaming victims in
12531         musicglyph access.  Many small beautifications in ancient
12532         examples.
12533
12534         * input/test/divisiones.ly: fixed indentation; small
12535         beautifications
12536
12537         * ly/engraver-init.ly: added FIXME comment
12538
12539         * scripts/lilypond-book.py,
12540         Documentation/user/lilypond-book.itely: added music fragment
12541         option "packed" to lilypond-book
12542
12543         * Documentation/user/instrument-notation.itely: Bugfix: added
12544         missing LedgerLineSpanner color setting in several places.  Added
12545         music fragment option "packed" to VaticanaContext example.
12546
12547 2005-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12548
12549         * scm/define-grobs.scm (all-grob-descriptions): switch off
12550         Hyphen_spanner::set_spacing_rods 
12551
12552         * lily/lyric-hyphen.cc (print): add padding between syllable and
12553         hyphen.
12554         (print): shorten hyphen in tight situations (determine using
12555         minimum-length)
12556
12557         * scm/paper.scm (layout-set-staff-size): increase blotdiameter to
12558         0.4pt.
12559
12560 2005-03-13  Jan Nieuwenhuizen  <janneke@gnu.org>
12561
12562         * ly/titling-init.ly (bookTitleMarkup): Refinements.
12563
12564         * input/regression/page-breaks.ly (paper): Set not raggedlastbottom,
12565         header/footer markings for regression-test.
12566
12567         * scm/backend-library.scm (output-scopes, header-to-file): Move
12568         from framework-tex.scm.
12569
12570         * scm/framework-ps.scm (output-framework)
12571         (output-preview-framework):
12572         * scm/framework-eps.scm (output-classic-framework)
12573         (output-framework): Use it.  Fixes collated files.
12574
12575 2005-03-12  Jan Nieuwenhuizen  <janneke@gnu.org>
12576
12577         * input/sakura-sakura.ly: 
12578         * input/xiao-haizi-guai-guai.ly: Add from Debian package (Anthony).
12579
12580         * buildscripts/guile-gnome.sh: Update.
12581
12582         * mf/GNUmakefile (aybabtu.otf): Add dependency on .pe.
12583
12584         * mf/aybabtu.pe.in: Capitalize Aybabtu.
12585
12586 2005-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12587
12588         * lily/separating-group-spanner.cc (find_rods): oops. Fix the real
12589         culprit: always exit the loop if we find a rod, even if it has
12590         distance < 0. 
12591
12592         * lily/ledger-line-spanner.cc (set_spacing_rods): rewrite to O(n)
12593         algorithm.
12594
12595         * stepmake/stepmake/metafont-rules.make ($(outdir)/%.pfb
12596         $(outdir)/%.svg $(outdir)/%.pfa): add --simplify.
12597
12598         * scm/output-svg.scm (dashed-line): new  function body.
12599         
12600         * GNUmakefile.in: create .htaccess.
12601
12602 2005-03-11  Jan Nieuwenhuizen  <janneke@gnu.org>
12603
12604         * Documentation/topdocs/NEWS.tely (Top): Fix text example.
12605
12606 2005-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12607
12608         * VERSION (PACKAGE_NAME): release 2.5.15
12609
12610         * scm/output-{pdf,pdftex,sketch}.scm (Module): remove bitrotted files.
12611
12612         * scm/framework-svg.scm (output-framework): put scaling in
12613         document header. Apply scaling only once.
12614         (output-framework): dump page size in px, not mm. 
12615
12616         * scm/lily-library.scm (modified-font-metric-font-scaling): rename
12617         from font-size.
12618
12619         * lily/paper-outputter-scheme.cc (LY_DEFINE):
12620         ly:outputter-output-scheme, new function.
12621
12622         * scm/output-svg.scm (pango-description-to-svg-font): new function
12623
12624 2005-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12625
12626         * Documentation/user/GNUmakefile (deep-symlinks): remove outimages
12627         target.
12628
12629         * input/typography-demo.ly: new file.
12630
12631 2005-03-10  Jan Nieuwenhuizen  <janneke@gnu.org>
12632
12633         * Documentation/user/global.itely (File structure): Add markup blocks
12634         to toplevel expressions.
12635         (Multiple movements, Creating titles): Add markup blocks.
12636
12637         * lily/stencil-scheme.cc: Use "libc-extension.hh" (WAS:
12638         <libc-extension.hh>).
12639
12640         * lily/accidental.cc (accurate_boxes): Compile fix: 1.51 was broken.
12641
12642         * flower
12643         * lily
12644         * kpath-guile: Nitpick run: buildscripts/fixcc.py.
12645
12646 2005-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12647
12648         * lily/accidental.cc: special bboxes for natural. 
12649
12650         * mf/feta-toevallig.mf: make stems heavier.
12651
12652         * lily/dynamic-text-spanner.cc (print): add bound padding for edge
12653         texts as well.
12654
12655         * mf/feta-klef.mf: revise. 
12656
12657         * mf/feta-schrift.mf: make thinning of accent less pronounced.
12658
12659         * mf/feta-klef.mf: add rounded curve at top. 
12660         make thinnib a little heavier.
12661
12662 2005-03-10  Jan Nieuwenhuizen  <janneke@gnu.org>
12663
12664         * lily/parser.yy (book_body): Oops, allow \markup in \book too.
12665
12666         * buildscripts/fixcc.py: New file.
12667
12668         * input/regression/utf8.ly: Update Debian font description.
12669
12670 2005-03-09  Jan Nieuwenhuizen  <janneke@gnu.org>
12671
12672         * stepmake/aclocal.m4: Fix test.
12673
12674 2005-03-09  Graham Percival  <gperlist@shaw.ca>
12675
12676         * Documentation/user/invoking.itely: added Sebastino Vigna's
12677         docs for the --jail option.
12678
12679 2005-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12680
12681         * lily/stem.cc (print): only produce stemlets if there are no
12682         noteheads on this stem.
12683
12684         * lily/note-spacing.cc (stem_dir_correction): robustness fix:
12685         don't crash on stemlet (visible stem without heads).
12686
12687         * scm/define-grobs.scm (all-grob-descriptions): junk LeftEdge for
12688         unbroken situations. 
12689
12690         * scm/output-lib.scm (center-invisible): new function.
12691
12692         * lily/spacing-loose-columns.cc (set_loose_columns): use spacing
12693         wishes to determine loose column space.
12694
12695         * lily/font-config.cc (init_fontconfig): add
12696         fonts/{otf,type1,cff}  to path.
12697
12698         * lily/main.cc (setup_paths): add fonts/{otf,svg,tfm,cff} to path
12699
12700         * mf/GNUmakefile (Module): install all fonts under otf/
12701
12702         * scm/framework-ps.scm (Module): read fonts from fonts/extension,
12703         replace /fonts/otf/ by /ps/ 
12704
12705         
12706 2005-03-09  Jan Nieuwenhuizen  <janneke@gnu.org>
12707
12708         * lily/paper-book.cc (classic_output): Reinstate header_0_ hack.
12709
12710         * lily/book.cc (process): Oops, add score_.header_.
12711
12712         * lily/paper-book.cc: Fold hearders, score and texts into scores_.
12713
12714         * lily/parser.yy: Handle toplevel and book texts as score.
12715
12716         * scm/page-layout.scm (default-page-make-stencil):
12717         Bugfix: (page-properties rename.
12718
12719         * scm/backend-library.scm (ly:system): Typo.
12720
12721 2005-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12722
12723         * stepmake/stepmake/executable-targets.make (installexe): don't
12724         strip installed executables
12725
12726         * lily/font-select.cc (get_font_by_design_size): revert
12727         pango_description_string as well.
12728
12729         * lily/system.cc (set_loose_columns): put loose column just left
12730         of next column.
12731
12732         * lily/include/group-interface.hh (extract_grob_array): rename
12733         from Pointer_group_interface__extract_grobs
12734
12735         * input/regression/ledger-line-minimum.ly (texidoc): new file.
12736
12737         * lily/ledger-line-spanner.cc (set_spacing_rods): new
12738         function. Keep ledgered note heads at a minimum distance.
12739         Introduce minimum-length-fraction
12740         (print): introduce length-fraction property.
12741
12742 2005-03-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12743
12744         * tex/GNUmakefile: remove latin1.enc rules.
12745
12746 2005-03-08  Jan Nieuwenhuizen  <janneke@gnu.org>
12747
12748         * scm/titling.scm: Typo.
12749
12750         * input/regression/score-text.ly: Really add.
12751
12752         * lily/score.cc: Bugfixes for SCM header_ and texts_ members.
12753
12754 2005-03-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12755
12756         * lily/open-type-font-scheme.cc:  new file.
12757
12758 2005-03-08  Jan Nieuwenhuizen  <janneke@gnu.org>
12759
12760         * scm/titling.scm (layout-extract-page-properties): Rename from
12761         page-properties.  Update callers.
12762
12763         * lily/lexer.ll (Lily_lexer):
12764         * lily/parser.yy: Junk lyric_markup state.
12765
12766         * Documentation/topdocs/NEWS.tely (Top): Mention markup text feature.
12767
12768         * scripts/lilypond-book.py (PREAMBLE_LY): toplevel-music-handler:
12769         Add texts parameter.
12770
12771 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
12772
12773         * lily/lexer.ll (lyric_markup): New mode.
12774         (Lily_lexer::push_lyric_markup_state): New method.
12775         (MARKUPCOMMAND): Markup during lyric mode returns LYRIC_MARKUP.
12776
12777         * lily/parser.yy (book_body):
12778         (toplevel_expression): Grok \markup texts.
12779
12780         * lily/score-scheme.cc (ly:music-scorify): 
12781         * scm/lily-library.scm (collect-music-for-book): Take texts
12782         parameter.
12783
12784         * lily/score.cc (texts_): New member.
12785
12786         * lily/paper-book.cc (systems): Format score texts.
12787
12788         * score-text.ly: New file.
12789
12790         * ttftool/SConscript:
12791         * kpath-guile/SConscript: New file.
12792
12793         * lily/SConscript:
12794         * SConstruct: Update.
12795
12796 2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12797
12798         * VERSION (PACKAGE_NAME): release 2.5.14
12799
12800 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
12801
12802         * lily/main.cc: Add dummy xgettext markers.
12803
12804 2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12805
12806         * make/lilypond.fedora.spec.in (Requires): scrap kpathsea/tex
12807         requirements
12808
12809         * stepmake/aclocal.m4: check dynamic link, by checking if kpathsea
12810         executable is < 40k
12811
12812         * lily/main.cc (setup_paths): remove tfm1 tfm2 tfm3 include path
12813         hack.
12814
12815 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12816
12817         * flower/libc-extension.cc:
12818         * flower/include/libc-extension.hh: [Open]BSD simply cast
12819         cookie/funopen declarations.
12820
12821         * stepmake/aclocal.m4: Check for libkpathsea.so.
12822
12823         * kpath-guile/kpath.c (ly_kpathsea_expand_variable): Use
12824         dl_kpse_find_file.
12825
12826 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12827
12828         * kpath-guile/kpath.c (open_library): dlopen libkpathsea.so
12829         (open_library): alternative for static library.
12830
12831 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12832
12833         * configure.in: Set TTFTOOL_ENDIAN iso global CFLAGS.
12834
12835         * ttftool/GNUmakefile (MODULE_CFLAGS): Add $(TTFTOOL_ENDIAN).
12836
12837         Drop run-time dependency on teTeX.
12838
12839         * lily/kpath.cc (initialize_kpathsea): dlopen libkpathsea.
12840
12841         * stepmake/aclocal.m4 (STEPMAKE_KPATHSEA): Do not include
12842         KPATHSEA_LIBS in LIBS.
12843         (STEPMAKE_DLOPEN): New function.
12844
12845         * lily/font-config.cc (init_fontconfig): Use dir for directory,
12846         not path.
12847
12848         * flower/file-path.cc (directories): Rename from paths, as this
12849         return an array of directories (a single path).
12850
12851 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12852
12853         * lily/GNUmakefile (MODULE_LIBS): link with kpath-guile
12854
12855         * lily/all-font-metrics.cc (kpathsea_find_file): wrapper around
12856         new ly:kpathsea-find-file
12857
12858         * kpath-guile/kpath.c: new file. Put kpath bindings in lib.
12859
12860         * kpath-guile/GNUmakefile: new file
12861
12862         * buildscripts/gen-emmentaler-scripts.py (i): generate
12863         emmentaler-X.fontname as well.
12864
12865         * buildscripts/ps-embed-cff.py: new script
12866
12867         * scm/lily-library.scm: remove ps-embed-cff.
12868
12869         * scm/framework-ps.scm (write-preamble): don't use kpathsea for
12870         font loading. 
12871
12872         * scm/font.scm (add-music-fonts): load dynamics/numbers through
12873         fontconfig as well.
12874
12875         * lily/font-config.cc (init_fontconfig): add cff/ too.
12876
12877         * ly/generate-embedded-cff.ly: capitalize.
12878
12879         * lily/pango-select.cc (select_pango_font): use ::find_pango_font,
12880         so as to register the pango font.
12881
12882         * lily/font-config.cc (init_fontconfig): add
12883         prefix/{otf,type1,mf/out} to fontconfig path.
12884
12885         * lily/main.cc: only look at one prefix directory, LILYPONDPREFIX
12886         overrides all. 
12887
12888         * configure.in (gui_b): remove ec mftrace check
12889
12890         * config.hh.in: use lilypond-Major.Minor as data directory.
12891
12892         * scm/framework-ps.scm (dump-page): use output-units for landscape.
12893
12894         * buildscripts/gen-emmentaler-scripts.py (i): lower case file
12895         name.
12896
12897 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12898
12899         * lily/main.cc (do_chroot_jail): Small cleanups.  Avoid constant
12900         error messages.
12901
12902         * flower/libc-extension.cc:
12903         * flower/include/libc-extension.hh: [Open]BSD fixes for
12904         cookie/funopen declarations.
12905
12906 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12907
12908         * buildscripts/gen-emmentaler-scripts.py (outdir): capitalize
12909         emmentaler.
12910
12911         * lily/score-engraver.cc (initialize): remove check for ecrm10 /
12912         lcrm10.
12913
12914         * scm/define-markup-commands.scm (fontsize): new markup
12915         command. Also set baseline-skip
12916
12917 2005-03-06 Sebastiano Vigna <vigna@dsi.unimi.it>.
12918         
12919         * lily/main.cc (do_chroot_jail): paranoia security for webserver
12920         use.
12921
12922 2005-03-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12923
12924         * stepmake/bin/add-html-footer.py (do_file): make wiki link optional.
12925
12926         * lily/pdf.cc: remove PDF related files
12927
12928 2005-03-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12929
12930         * ly/deutsch.ly: add quarter tones, patch by Arno Waschk.
12931         <hamamatsu@gmx.de>
12932
12933 2005-03-05  Graham Percival  <gperlist@shaw.ca>
12934
12935         * Documentation/user/advanced-notation.itely: first draft
12936         of reorg done.
12937
12938         * Documentation/user/global.itely: fixed (sub)section
12939         bits of MIDI.
12940
12941 2005-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12942
12943         * cygwin/mknetrel (extras): Bufix (Bertalan).
12944
12945         * Documentation/user/basic-notation.itely (Chords): @ref fix.
12946         * Documentation/user/instrument-notation.itely (Introducing chord
12947         names): Compile fix: must have unique name.
12948
12949 2005-03-02  Graham Percival  <gperlist@shaw.ca>
12950
12951         * Documentation/user/instrument-notation.itely: reorg.
12952
12953 2005-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12954
12955         * scm/output-gnome.scm:
12956         * scm/output-svg.scm: Fix font scaling.
12957
12958 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12959
12960         * ly/titling-init.ly (tagline): Use Engraving.  Add comment about
12961         what link to use best.
12962
12963         * Documentation/user/instrument-notation.itely (Ancient accidentals): 
12964         * Documentation/user/tutorial.itely (Automatic and manual beams):
12965         Fix @ref.
12966
12967         * lily/tweak-registration.cc (replace_grob_tweak): New function.
12968         * lily/tweak-registration-scheme.cc (LY_DEFINE): Wrap it.
12969         * scm/framework-gnome.scm (tweak): Use it.
12970
12971 2005-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12972
12973         * Documentation/topdocs/NEWS.tely (Top): elucidate GS problem.
12974
12975         * scm/output-ps.scm (white-text): reinstate white-text
12976
12977 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12978
12979         * scm/output-ps.scm (offset-add): Remove.
12980
12981         * scm/lily-library.scm (offset-flip-y): New function.
12982         * scm/framework-gnome.scm (tweak): Use it.
12983
12984         * scm/output-gnome.scm (grob-cause): Add parameter.
12985
12986         * scm/lily.scm (ly:all-stencil-expressions): Add url-link.
12987         * scm/output-ps.scm (url-link): Move.
12988         (white-text): Warn user about brokenness.
12989
12990         * Documentation/topdocs/NEWS.tely: Be more accurate and respectful
12991         wrt ghostscript.
12992
12993 2005-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12994
12995         * lily/slash-repeat-engraver.cc (try_music): always make slashes
12996         if body length smaller than measure length.
12997
12998         * scm/define-markup-commands.scm (with-url): oops. use Y extent
12999         for Y.
13000
13001         * ly/titling-init.ly (tagline): put default tagline in \paper
13002
13003 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13004
13005         * lily/kpath.cc: 
13006         * lily/pdf.cc (Pdf_file): Use more generic error messages.
13007
13008         * scm/lily-library.scm (version-not-seen-message): New function.
13009         * ly/init.ly: Use it.
13010
13011         * scm/page-layout.scm (ly:optimal-page-breaks): Display page
13012         breaks as progess.
13013
13014         * scripts/lilypond-book.py (do_process_cmd): Do not lump
13015         whitespace with l10n message.
13016
13017         * scm/framework-tex.scm (convert-to-ps):
13018         (convert-to-dvi): Do not use overly specific l10n messages.
13019
13020         * ly/titling-init.ly (bookTitleMarkup): Add baseline skips from 2.4.
13021
13022         * tex/GNUmakefile $(outdir)/latin1.enc: Build fix:
13023         merge stderr with stdout.  
13024
13025 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13026
13027         * flower/libc-extension.cc: Tested BSD compile fix (Matthias
13028         Neeracher).
13029
13030 2005-02-29  Graham Percival  <gperlist@shaw.ca>
13031
13032         * Documentation/user/instrument-notation.teily: moved
13033         \arpeggio to Basic.
13034
13035         * Documentation/user/advanced-notation.itely: Articulation to
13036         Basic, a bunch of stuff from Basic moved to Advanced.
13037
13038         * Documentation/user/basic.itely: swapped various sections,
13039         reorganized Basic.
13040
13041 2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13042
13043         * flower/memory-stream.cc: 
13044         * flower/libc-extension.cc: Remove obsolete #undefs.
13045
13046         * flower/include/libc-extension.hh: Bugfix for BSD, place #ifdef
13047         more carefully.
13048
13049 2005-02-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13050
13051         * make/lilypond.fedora.spec.in (Requires): add GS 8.15 as
13052         dependency.
13053
13054         * VERSION (PACKAGE_NAME): release 2.5.13
13055
13056         * GNUmakefile.in (web-ext): don't ship ps.gz
13057
13058         * tex/GNUmakefile ($(outdir)/latin1.enc): redirect stderr to
13059         stdout
13060
13061 2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13062
13063         * lily/general-scheme.cc (LY_DEFINE): Compile fix for systems
13064         without libintl.  Now it compiles too.
13065
13066 2005-02-28  Graham Percival  <gperlist@shaw.ca>
13067
13068         * Documentation/user/basic-notation.itely,
13069         instument-notation.itely, advanced-notation.itely:
13070         split up contents of notation.itely.
13071
13072         * Documentation/user/notation.itely: file removed.
13073
13074         * Documentation/user/invoking.itely, converters.itely:
13075         moved convert-ly info to invoking.itely.
13076
13077         * Documentation/user/global.itely, changing-defaults.itely,
13078         sound-output.itexi: moved global settings, file layout, and
13079         sound into global.itely.
13080
13081         * Documentation/user/sound-output.itexi: file removed.
13082
13083         * Documentation/user/lilypond.tely: removed links to
13084         notation.itely and sound.itely.
13085
13086 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13087
13088         * scm/output-ps.scm (grob-cause): only do mark_URI if non-empty.
13089
13090         * scm/framework-ps.scm (write-preamble): remove pdf-viewer code.
13091  
13092         * THANKS: add sponsor.
13093
13094         * scm/define-markup-commands.scm (with-url): new markup command.
13095
13096         * scm/page-layout.scm (TAGLINE): add www.lilypond.org with URL to
13097         tagline.
13098         
13099         * scm/output-tex.scm (url-link): stub.
13100
13101         * scm/output-ps.scm (url-link): new function.
13102
13103         * lily/lily-parser-scheme.cc (LY_DEFINE): deprecate
13104         ly:set-point-and-click
13105
13106 2005-02-27  Jan Nieuwenhuizen  <janneke@gnu.org>
13107
13108         * ps/music-drawing-routines.ps (mark_file_line): Switch Action
13109         based on pdf-viewer setting.
13110
13111         * scm/framework-ps.scm (write-preamble): Find and set preferred
13112         pdf-viewer.
13113
13114 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13115
13116         * Documentation/user/point-and-click.itely: update for PDF point &
13117         click.
13118
13119         * scripts/lilypond-pdfpc-helper.py: new file. Invoke different
13120         editors based on EDITOR setting.
13121
13122 2005-02-27  Jan Nieuwenhuizen  <janneke@gnu.org>
13123
13124         * scm/*: Oops, more grand 2005 replace bits.
13125
13126 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13127
13128         * ps/music-drawing-routines.ps: new routine: insert PDF mark
13129
13130         * scm/output-ps.scm (grob-cause): point & click support for
13131         PostScript
13132
13133 2005-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13134
13135         * lily/input-scheme.cc (LY_DEFINE): rename to
13136         ly:input-file-line-column
13137
13138 2005-02-26  Graham Percival  <gperlist@shaw.ca>
13139
13140         * Documentation/user/examples.itely: small fix from Steve Doonan.
13141
13142         * Documentation/user/scheme-tutorial.itely: small fix from Steve Doonan.
13143
13144         * THANKS: added Yuval Harel.
13145
13146         * Documentation/user/{various}: inserted two spaces after a period.
13147
13148         * Documentation/user/lilypond.tely: added framework for reorg.
13149
13150         * Documentation/user/basic-notation.itely, instrument-notation.itely,
13151         advanced-notation.itely, global.itely: new files, placeholder for
13152         future reorg.
13153
13154 2005-02-26 Yuval Harel  <yuvalh@hotpop.com>
13155
13156         * Documentation/user/notation.itely: revamped Polyphony section
13157         
13158 2005-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13159
13160         * Documentation/user/lilypond-book.itely (Music fragment options):
13161         doc fontload.
13162
13163         * Documentation/user/changing-defaults.itely (Text encoding): add
13164         fontload option to utf8 include
13165
13166         * scripts/lilypond-book.py (compose_ly): add fontload option
13167
13168         * scm/framework-eps.scm (dump-stencils-as-EPSes): add
13169         force-eps-font-include option.
13170
13171         * ly/chord-modifiers-init.ly (blackTriangleMarkup): reinstate
13172         black triangle
13173
13174         * Documentation/user/invoking.itely (Editor support): remove
13175         lilypond-latex section.
13176
13177         * scripts/lilypond-latex.py (Module): remove script.
13178
13179         * cygwin/lily-wins.py (stat): write to .lylog, so as not to
13180         overwrite .log. 
13181
13182         * lily/main.cc: remove -m, --no-layout
13183
13184         * flower/include/libc-extension.hh: add ALIAS_FILE_TO_FILECOOKIE
13185         to define. We don't want to override fprintf everywhere.
13186
13187 2005-02-26  Jan Nieuwenhuizen  <janneke@gnu.org>
13188
13189         * cygwin/lilypond.hint: 
13190         * cygwin/README.in: Update dependencies.
13191
13192         * stepmake/aclocal.m4 (STEPMAKE_PANGO, STEPMAKE_PANGO_FT2):
13193         Bugfix: do not pollute CPPFLAGS, LIBS.
13194
13195         * cygwin/mknetrel (extras): Cross compile fixes.
13196
13197         * ttftool/util.c: 
13198         * ttftool/ttfps.c: 
13199         * ttftool/ps.c: #include libc-extension.hh
13200
13201         * flower/include/libc-extension.hh:
13202         * flower/libc-extension.cc (fopencookie)[!HAVE_FOPENCOOKIE]: Add
13203         wrapper using funopen.
13204         (fopencookie, handle_cookie_io_fclose, handle_cookie_io_fprintf,
13205         handle_cookie_io_fprintf): Add wrappers catching Memory_out_stream.
13206
13207         * config.hh.in:
13208         * configure.in (AC_CHECK_FUNCS): Add fopencookie, funopen.
13209         (AC_CHECK_HEADERS): Add libio.h
13210
13211         * scripts/convert-ly.py: Uniformize, internationalize.
13212         (2.5.2): Remove fatal encoding rule.
13213         (2.5.13): Handle latin1 encoding gracefully.
13214
13215 2005-02-23  Jan Nieuwenhuizen  <janneke@gnu.org>
13216
13217         * HACKING: Fix line breaks.
13218
13219 2005-02-23  Werner Lemberg  <wl@gnu.org>
13220
13221         * mf/graycx.mf, mf/graylj.mf: Removed.  Any decent TeX distribution
13222         contains those two files.
13223
13224 2005-02-21  Werner Lemberg  <wl@gnu.org>
13225
13226         * mf/feta-nummer-code.mf ("Numeral 5"): Include intersection point
13227         to improve overlap removal process.
13228
13229         * mf/feta-slag.mf (draw_trillelement): Add parameter to control
13230         left and right ending.  This ensures better overlapping.
13231         Update all callers.
13232         ("lineprall"): Don't use draw_gridline to get better overlapping.
13233
13234 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13235
13236         * scm/lily-library.scm (ps-embed-cff): add \n after EndResource
13237
13238         * Documentation/topdocs/NEWS.tely (Top): oops.
13239
13240 2005-02-21  Pedro Kroger  <kroeger@pedrokroeger.net>
13241
13242         * HACKING: new file.
13243
13244         * input/regression/utf8.ly (portuguese): added a portuguese example
13245         to show latin1 accents.
13246
13247 2005-02-21  Pal Benko  <benkop@freestart.hu>
13248
13249         * lily/mensural-ligature-engraver.cc:
13250         * lily/mensural-ligature.cc:
13251         * lily/include/mensural-ligature.hh: new algorithm implemented
13252
13253         * scm/define-grob-properties.scm: join-left killed (add-join may
13254         be used); join-left-amount changed to join-right-amount
13255
13256 2005-02-21  Graham Percival  <gperlist@shaw.ca>
13257
13258         * Documentation/user/notation.itely: small but urgent fix.
13259
13260 2005-02-21  Jürgen Reuter  <reuter@ipd.uka.de>
13261
13262         * lily/duration-scheme.cc: bugfix: correct parameters to
13263         SCM_ASSERT_TYPE.
13264
13265         * THANKS: added Pal.
13266
13267         * Documentation/user/notation.itely: bugfix: unTeXified
13268         $\\backslash$.  Bugfix: yet another glyph renaming victim:
13269         "timesig.*x/y" -> "timesig.*xy".
13270
13271 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13272         
13273         * VERSION (PACKAGE_NAME): release 2.5.12
13274
13275 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13276
13277         * ly/engraver-init.ly: set tieWaitForNote to #t by default
13278
13279         * configure.in (gui_b): bump GUILE requirement to 1.6.5 
13280
13281         * Documentation/topdocs/NEWS.tely: add inputfileref macro.
13282
13283         * scm/framework-ps.scm (supplies-or-needs): uniq font name list.
13284
13285 2005-02-20  Jan Nieuwenhuizen  <janneke@gnu.org>
13286
13287         * input/mutopia/E.Satie/petite-ouverture-a-danser.ly: recode
13288         latin1..utf-8.
13289
13290         * input/regression/stanza-number.ly:
13291         * input/regression/utf8.ly (hebrew): Use addlyrics.  Update.
13292
13293         * lily/tie-engraver.cc (acknowledge_grob): Compile fix.
13294
13295 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13296
13297         * Documentation/topdocs/NEWS.tely (Top): only mention 2.5
13298         NEWS. Refer to website for older news.  
13299
13300         * stepmake/bin/add-html-footer.py (i18n): don't strip .PNG /
13301         .HTML. This should be done for specific servers only.
13302
13303         * Documentation/topdocs/NEWS.tely (Top): move to .tely. Add some
13304         .ly image examples.
13305
13306         * scm/define-grobs.scm (all-grob-descriptions): put ledger lines
13307         in layer 0 too.
13308
13309         * scm/define-context-properties.scm
13310         (all-user-translation-properties): add tieWaitForNote
13311
13312         * scm/define-grobs.scm (all-grob-descriptions): add
13313         Tie_column::before_line_breaking
13314
13315         * lily/tie.cc (get_column_rank): new function
13316
13317         * lily/tie-column.cc (before_line_breaking): new function.
13318         (werner_directions): take into account ties that start on
13319         different columns.  
13320
13321         * lily/score-engraver.cc (set_columns): move add_column() so we
13322         have column rank available.
13323
13324         * lily/tie.cc (get_column_rank): new function.
13325
13326         * input/regression/utf8.ly (japanese): add japanese lyrics.
13327
13328         * lily/pfb.cc (LY_DEFINE): ly:ttf->pfa, new function.
13329
13330         * THANKS: add Steve D
13331
13332         * ttftool/*.c: add TTF -> Type42 conversion library. Based on
13333         Public Domain work by Juliusz Chroboczek <jch@pps.jussieu.fr>
13334
13335 2005-02-20  Tatsuya Ono  <tats_ono@infoseek.jp>
13336
13337         * mf/parmesan-heads.mf: "0harmonic" -> "s0harmonic"
13338         to show harmonic notes
13339         * scm/define-markup-commands.scm: in \markup-by-number
13340         "dots-dot" -> "dots.dot" to show dotted notes
13341
13342 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13343
13344         * flower/include/memory-stream.hh (class Memory_out_stream): new file.
13345
13346         * flower/memory-stream.cc (writer): new file.
13347
13348         * configure.in: add endian test.
13349
13350 2005-02-19  Jürgen Reuter  <reuter@ipd.uka.de>
13351
13352         * Documentation/user/examples.itely: small
13353         simplification/beautification
13354
13355         * Documentation/user/notation.ietly: bugfix: fixed many artefacts
13356         from the "x-y-z"->"x.y.z" renaming of glyphs throughout the whole
13357         notation manual.
13358
13359         * lily/mensural-ligature.cc: bugfix: another few victims of the
13360         "x-y-z"->"x.y.s-z" symetrical notehead glyph renaming.
13361
13362         * ly/gregorian-init.ly: commit some experimental code for hi-level
13363         ligature input language lying around here for several months.
13364
13365         * lily/mensural-ligature-engraver.cc: bugfix: another victim of
13366         the "x-y-z"->"x.y.s-z" symetrical notehead glyph renaming.
13367
13368         * lily/vaticana-ligature-engraver.cc: bugfix: another few
13369         "x-y-z"->"x.y.s-z" fixes.
13370
13371 2005-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13372
13373         * scm/framework-pdf.scm (scm): new file
13374
13375         * lily/include/pdf.hh (class Pdf_file): new file.
13376
13377         * lily/pdf.cc (write_trailer): new file.
13378
13379 2005-02-18  Erlend Aasland  <erlenda@gmail.com>
13380
13381         * input/regression/color.ly: new file
13382
13383         * lily/stencil.cc (interpret_stencil_expression):
13384         when a color expression is encountered: save current color,
13385         process the rest of the expression, and restore previous color.
13386
13387         * lily/system.cc (get_line): check all grobs for color property and
13388         prepare the stencil scheme expressions for further processing.
13389         Fix layer-loop.
13390
13391         * scm/define-grob-properties.scm: introduce the color property.
13392
13393         * scm/output-lib.scm: color helper functions.
13394
13395         * scm/output-ps.scm: introduce setcolor/resetcolor.
13396
13397 2005-02-07  Erik Sandberg  <ersa9195@student.uu.se>
13398
13399         * ly/*.ly, input/regression/*.ly: Added missing \version
13400         statements in some files.
13401
13402 2005-02-15  Graham Percival  <gperlist@shaw.ca>
13403
13404         * Documentation/user/notation.itely: minor editing.
13405
13406         * Documentation/user/converters.itely: updated convert-ly bugs.
13407
13408         * Documentation/user/lilypond-book.itely: add info about using
13409         feta characters in latex.
13410
13411 2005-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13412
13413         * scripts/convert-ly.py: new slur dash patch by Bertalan Fodor.
13414
13415 2005-02-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13416
13417         * scm/define-grob-properties.scm (all-user-grob-properties):
13418         removed 'dashed property.
13419
13420 2005-02-13  Nicolas Sceaux  <nicolas.sceaux@free.fr>
13421
13422         * scm/lily.scm (define-safe-public): new macro for defining
13423         variables that can be used in --safe mode. Use it in *.scm
13424         instead of manually setting safe-objects in safe-lily.scm.
13425
13426 2005-02-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13427         
13428         * lily/slur.cc: Slur-dash patch by Bertalan.
13429
13430         * ly/engraver-init.ly (EasyNotation): glyph name dash -> period.
13431
13432         * stepmake/bin/add-html-footer.py (do_file): do i18n only once. 
13433
13434 2005-02-10  Jan Nieuwenhuizen  <janneke@gnu.org>
13435
13436         * stepmake/aclocal.m4: teTeX-3.0 inimf fix.  Comment-out.
13437
13438 2005-02-09  Jan Nieuwenhuizen  <janneke@gnu.org>
13439
13440         * mf/GNUmakefile: teTeX-3.0 install fix.
13441
13442         * Cygwin patch from Bertalan.
13443
13444         * stepmake/stepmake/metafont-rules.make: Remove bashism.
13445
13446 2005-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
13447
13448         * GNUmakefile.in: 
13449         * SConstruct (symlink): teTeX-3.0 build fix: add map symlink.
13450
13451         * tex/GNUmakefile: teTeX-3.0 fix: install .enc in fonts/enc.  Add
13452         2.0.x compatibility.
13453
13454 2005-02-08  Werner Lemberg  <wl@gnu.org>
13455
13456         * mf/feta-din-code.mf: Format; clean up code.
13457         Replace `---' with `--' plus explicit path directions.
13458         (linethickness#, stafflinethickness#): Remove.
13459         ("dynamic f"): Replace `draw' with `draw_rounded_block'.
13460         ("dynamic s"): Improve shape.
13461         ("dynamic p"): Improve shape.
13462         Replace `draw' with better outline approximation.
13463         ("dynamic r"): Improve shape.
13464         Don't call `fill' and `draw' at the same time.
13465
13466 2005-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
13467
13468         * SConstruct (symlink):
13469         * GNUmakefile.in ($(builddir)/share/lilypond-force): teTeX-3.0
13470         build fix: add enc symlink.
13471
13472         * lily/general-scheme.cc: Compile fixes: include wchar.h, string.h.
13473
13474         Support for DESTDIR besides prefix=/foo
13475
13476         * vim/GNUmakefile (local-install): Use $(INSTALL) -d iso mkdir.
13477
13478         * stepmake/stepmake/*.make:
13479         * */GNUmakefile:
13480         * GNUmakefile.in: Prepend $(DESTDIR) to installation directory.
13481
13482         * config.make.in (prefix): Remove broken $(DESTDIR) hack.
13483
13484         * stepmake/aclocal.m4: Use %0.f iso %d to quiet gawk < 3.1.4 and
13485         mawk in fontforge (date) test.
13486
13487 2005-02-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13488
13489         * scm/font.scm (make-century-schoolbook-tree): add NCS as
13490         font-family=roman. Add Luxi Sans as sans
13491
13492 2005-02-07  Graham Percival  <gperlist@shaw.ca>
13493
13494         * Documentation/user/notation.itely: add warning about
13495         percent repeats and Voice contexts.
13496
13497         * Documentation/user/lilypond-book.itely: clarified the
13498         necessity of dvips -u arguments.
13499
13500 2005-02-07  Erik Sandberg  <ersa9195@student.uu.se>
13501
13502         * THANKS: Added a bunch of bug hunters.
13503
13504 2005-02-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13505
13506         * scm/framework-ps.scm (output-preview-framework): bugfix.
13507
13508         * ly/chord-modifiers-init.ly (ignatzekExceptionMusic): use unicode
13509         o/ for chord modifier..
13510
13511         * lily/general-scheme.cc (LY_DEFINE): new function ly:wide-char->utf-8.
13512
13513         * lily/drum-note-performer.cc:  remove unused (thanks Michael
13514         Welsh Duggan). 
13515
13516 2005-02-06  Jan Nieuwenhuizen  <janneke@gnu.org>
13517
13518         * Documentation/user/changing-defaults.itely (Text encoding): Clarify.
13519
13520         * ly/titling-init.ly: Do not also print intstrument in header on
13521         first page.  Do not print page number on first and only page.
13522
13523 2005-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13524
13525         * input/regression/*.ly: remove old-relative everywhere
13526
13527         * lily/music-sequence.cc (simultaneous_relative_callback): do
13528         what-if analysis on copy, not on original. Fixes old-relative
13529         compatibility.
13530
13531         * scm/backend-library.scm (postscript->png): space before
13532         --verbose.
13533         
13534 2005-02-05  Werner Lemberg  <wl@gnu.org>
13535
13536         * mf/feta-autometric.mf (fet_beginchar): Check whether `feta_group'
13537         is defined.
13538
13539         * mf/feta-alphabet.mf: Define `staffsize#'.
13540         Include `feta-params.mf'.
13541         s/staffheight/design_size/.
13542
13543         * mf/feta-alphabet??.mf: s/staffheight/design_size/.
13544
13545         * mf/feta-alphabet26.mf: Fix a serious bug (design size off by 8pt).
13546
13547         * mf/feta-nummer-code.mf: Reformatted.
13548         (draw_six): Use outline intersection to avoid a self-intersecting
13549         path.
13550         ("Numeral comma"): Fix serious outline glitches.  This slightly
13551         changes the glyph shape.
13552         ("Numeral dash"): Use `draw_rounded_block'.
13553         ("Numeral dot"): Use `drawdot'.
13554         ("Numeral 1"): Assure identical tangent directions for the
13555         intersection points of paths.  The glyph shape improvement is only
13556         visible at very high magnifications.
13557         ("Numeral 2"): Use `solve' macro to make the lower right part of
13558         the glyph outline touch the x axis exactly.  This changes the
13559         glyph shape.
13560         Minor fixes for better overlap removal support.
13561         ("Numeral 4"): Make lefter corner `rounder'.
13562         ("Numeral 5"): Assure identical tangent directions for the
13563         intersection points of paths.  This improves the glyph shape at
13564         high magnifications.
13565         ("Numeral 7"): Use `solve' macro to make the upper right part of
13566         the glyph outline touch the metrics box exactly.  This changes the
13567         glyph shape.
13568         Avoid corner in the upper left part of the glyph (causing a minor
13569         shape change).
13570
13571         * mf/feta-ital-*.mf: Removed.  Unused.
13572
13573 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13574
13575         * VERSION (PATCH_LEVEL): release 2.5.11
13576
13577         * input/regression/fill-line-test.ly: new file.
13578
13579         * buildscripts/gen-emmentaler-scripts.py (i): insert dash in
13580         emmentaler name, eg. emmentaler-23. 
13581
13582 2005-02-04  Christian Hitz  <chhitz@gmx.net>
13583
13584         * scm/scm/define-markup-commands.scm (fill-line): rework for better
13585         alignment with centered texts
13586
13587         * scm/stencil.scm (stack-stencils-padding-list): new function, takes a
13588         list of paddings
13589
13590 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13591
13592         * mf/GNUmakefile ($(outdir)/lilypond.map): add aybabtu to .map file.
13593
13594         * lily/note-column.cc (translate_rests): call flush_extent_cache()
13595         of parents when translating rests. Fixes: c-chord-rest.ly 
13596
13597         * lily/include/dimension-cache.hh (struct Dimension_cache): add
13598         dimension_callback_ member.
13599
13600         * lily/grob.cc (flush_extent_cache): new function. Force recompute
13601         of extents.
13602
13603 2005-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
13604
13605         * all but lily/*: The grand 2004/2005 replace.
13606
13607 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13608
13609         * lily/*: add space after ,  
13610
13611         * scm/music-functions.scm (has-request-chord): don't use
13612         ly:music-name anywhere. Fixes <<\\>> notation. 
13613
13614         * scm/define-markup-commands.scm (box): use font-size for
13615         padding. Fixes boxed-rehearsal-marks.ly
13616
13617         * lily/parser.yy (assignment_id): allow LYRICS_STRING as
13618         identifier definition too, so foo = \lyrics { ...   } bar = #1
13619         doesn't complain about "bar" being LYRICS_STRING.
13620
13621         * lily/paper-def.cc (find_pango_font): new routine; Store
13622         pango_fonts in hash tab too. This is necessary for retrieving
13623         Pango_fonts::physical_font_tab() later on.
13624  
13625         * lily/pango-font.cc (pango_item_string_stencil): bugfix: don't
13626         crash if psname is null.
13627
13628         * lily/lily-guile.cc (ly_hash2alist): new function
13629
13630         * Documentation/user/changing-defaults.itely (Text encoding):
13631         rewrite. 
13632
13633         * lily/pango-font.cc (physical_font_tab): new member. Store PSname
13634         -> font_filename mapping.
13635
13636         * lily/pango-font-scheme.cc (LY_DEFINE): new file. New function
13637         ly_pango_font_physical_fonts
13638
13639         * scm/framework-ps.scm (supplies-or-needs): extract names from
13640         physical Pango_fonts.
13641
13642         * utf8.ly: new file.
13643
13644 2005-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13645
13646         * Documentation/user/changing-defaults.itely (Page layout): add
13647         doco about systemSeparatorMarkup.
13648
13649         * scm/page-layout.scm (default-page-make-stencil): add-to-page
13650         function.
13651         (default-page-make-stencil): insert system separators.
13652
13653         * scm/define-markup-commands.scm (hcenter): add
13654         (beam): add.
13655
13656 2005-02-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13657
13658         * scm/output-ps.scm (ez-ball): reinstate ez notation.
13659
13660 2005-02-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13661
13662         * lily/main.cc: Spell backend consistently.  Sort options.
13663
13664 2005-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13665
13666         * scripts/lilypond-book.py (Module): revert @include.
13667         
13668 2005-01-31  Jan Nieuwenhuizen  <janneke@gnu.org>
13669
13670         * scripts/lilypond-book.py: Resurrect HTML links to .ly source.
13671         Bugfix: @include .tex (not .texi).  Small cleanups.
13672
13673         * stepmake/bin/add-html-footer.py (i18n): New function.
13674
13675 2005-01-31  Werner Lemberg  <wl@gnu.org>
13676
13677         * mf/feta-nummer.mf: Removed.  Unused.
13678
13679 2005-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13680
13681         * lily/ : 2004 -> 2005 s&r
13682
13683         * scm/file-cache.scm (cached-file-contents): add file. Read each
13684         file only once.
13685
13686         * scm/font.scm (add-pango-fonts): change order. Medium weight is
13687         now default.
13688
13689         * VERSION: release 2.5.10
13690         
13691         * mf/GNUmakefile (INSTALLATION_OUT_FILES4): install cff.ps files.
13692
13693         * make/ly-rules.make ($(outdir)/%.texi): detect new EOF marker.
13694
13695         * scm/framework-ps.scm (dump-stencil-as-EPS): robustness: ensure
13696         that both X and Y extents of bbox are non-nil.
13697
13698 2005-01-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13699
13700         * scm/chord-name.scm (alteration->text-accidental-markup): change
13701         - to . 
13702
13703         * scm/output-ps.scm (utf8-string): add utf8-string for completeness.
13704
13705         * scm/framework-ps.scm (dump-stencil-as-EPS): new function
13706
13707         * Documentation/user/invoking.itely (Invoking lilypond): add note
13708         about EPS backend.
13709
13710         * scm/framework-eps.scm: new file: create per-system/per-page EPS
13711         files for inclusion in lilypond-book document.
13712
13713         * input/tutorial/lbook-latex-test.tex: rename from lilbook.tex
13714
13715         * input/tutorial/lbook-texi-test.texi: new file.
13716
13717         * scm/safe-lily.scm (safe-objects): add
13718         {begin,end}-of-line-(in)?visible as safe.
13719  
13720 2005-01-30  Graham Percival  <gperlist@shaw.ca>
13721
13722         * Documentation/user/changing-defaults.itely: fixed example
13723         of (dynamics).
13724
13725 2005-01-29  Graham Percival  <gperlist@shaw.ca>
13726
13727         * lily/main.cc: fix info about -o=FILE.
13728
13729 2005-01-29  Werner Lemberg  <wl@gnu.org>
13730
13731         * mf/feta-toevallig.mf ("Natural"): Completely changed the
13732         construction to assure smooth transition from straight to curved
13733         lines.
13734
13735 2005-01-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13736
13737         * lily/stencil.cc (moved_to_edge): don't halt on adding empty
13738         stencils.
13739
13740         * ps/lilyponddefs.ps: add start-page, start-system doesn't
13741         translate to top of page. Fixes alignment problems of
13742         lilypond-generated EPS files.
13743
13744 2005-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13745
13746         * scm/part-combiner.scm (analyse-spanner-states): trigger on
13747         crescendo-end as well, since Decrescendo maybe ended with Stop
13748         Crescendo.). Fixes: partcombine-diminuendo.ly
13749
13750         * scm/script.scm (default-script-alist): swap portato symbols.
13751
13752         * lily/instrument-name-engraver.cc (acknowledge_grob): typo.
13753
13754         * lily/paper-outputter-scheme.cc (LY_DEFINE):
13755         ly:outputter-port. New function.
13756
13757         * scm/framework-ps.scm (output-classic-framework): dump a
13758         -systems.texi too
13759         (output-classic-framework): dump multiple systems on an "infinite"
13760         page EPS including fonts. 
13761
13762         * scripts/lilypond-book.py (Lilypond_snippet.ly_is_outdated): use
13763         .eps files for both texi and tex formats. Use PNG coming from
13764         lilypond.
13765         
13766 2005-01-28  Graham Percival  <gperlist@shaw.ca>
13767
13768         * Docuemntation/user/invoking.itely: fix info about -o=FILE.
13769
13770         * scripts/lilypond-latex.py: fix info about -o=FILE.
13771
13772 2005-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13773
13774         * ly/generate-embedded-cff.ly: write .cff.ps files.
13775
13776         * mf/GNUmakefile ($(outdir)/lilypond.map): add .cff.ps to .map file.
13777
13778         * stepmake/stepmake/metafont-rules.make ($(outdir)/%.pfb
13779         $(outdir)/%.svg $(outdir)/%.pfa): remove --simplify
13780
13781 2005-01-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13782
13783         * lily/include/guile-compatibility.hh (SCM_VECTOR_P): Compile fix.
13784
13785 2005-01-28  Werner Lemberg  <wl@gnu.org>
13786
13787         * mf/feta-macros.mf (soft_start_penstroke, soft_end_penstroke): New
13788         macros.
13789         (draw_bulb): Improved.
13790
13791         * mf/feta-pendaal.mf ("Pedal asterisk"): Remove workaround for
13792         metapost bug.
13793         (draw_pedal_P): Use soft_end_penstroke.
13794         (draw_pedal_d): Use soft_start_penstroke.
13795
13796         * mf/feta-schrift.mf ("Trill (`tr')"): Remove redundant point in
13797         path.
13798         ("Varied Coda"): Move some points to avoid fontforge warnings.  This
13799         doesn't change the glyph shape.
13800
13801         * mf/feta-accordion.mf ("accOldEE"): Draw glyph differently (without
13802         changing the shape) to avoid fontforge warnings.
13803
13804         * mf/feta-klef.mf (draw_tab_T, draw_tab_A, draw_tab_B): Use
13805         soft_end_penstroke and fix glyph shape.
13806
13807 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13808
13809         * lily/*.cc: Scheme deprecation of SCM_VECTOR_* 
13810
13811 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13812
13813         * scm/define-markup-commands.scm (line): filter out empty stencils
13814         from line command.
13815
13816         * lily/stencil-scheme.cc (LY_DEFINE): only allow finite real
13817         amount.
13818
13819 2005-01-27  Graham Percival  <gperlist@shaw.ca>
13820
13821         * Documentation/user/notation.itely: added info about what
13822         \voiceFoo does.  Also rewrote warning about marks at
13823         a line break.
13824
13825         * Documentation/user/changing-defaults.itely: added info
13826         about putting dynamics in parenthesis and brackets.
13827
13828 2005-01-27  Werner Lemberg  <wl@gnu.org>
13829
13830         * mf/feta-schrift.mf ("Trill (`tr')"): Fix typo.
13831
13832 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13833
13834         * mf/feta-schrift.mf: reverse u and d portato. Fixes:
13835         portato-direction.ly
13836
13837         * lily/beam.cc (consider_auto_knees): add beam height to
13838         threshold. Fixes: knee-multiple-beam.ly
13839
13840         * lily/instrument-name-engraver.cc (acknowledge_grob): also ignore
13841         pedal line spanners. Fixes: instrument-center-pedal.ly
13842
13843         * lily/auto-beam-engraver.cc (acknowledge_grob): stop beam
13844         if encountering barline. Fixes: auto-beam-repeat.ly
13845
13846 2005-01-26  Werner Lemberg  <wl@gnu.org>
13847
13848         * mf/feta-slag.mf (draw_trillelement): Fix shape to get clean
13849         overlapping.
13850
13851         * mf/feta-toevallig.mf (draw_meta_sharp): Fix shape to avoid curves
13852         with inflections for the 1/2 sharp glyph.
13853
13854         * mf/feta-schrift.mf ("Trill (`tr')"): Fix start position of
13855         connection between `t' and `r'.
13856         Unify bulb with the rest of `r' to avoid grazing outlines which
13857         confuses the overlap removal algorithm of fontforge.
13858
13859         * mf/feta-bolletjes.mf (draw_slash): Fix shape to avoid curves with
13860         inflections.
13861         (draw_cross): Fix shape to have uniform thickness in corners.
13862
13863         * mf/feta-pendaal.mf (draw_pedal_P): Break shape into smaller pieces
13864         to avoid an uneven number of self-intersections; this confuses
13865         fontforge.
13866         Fix a slight bug in the shape at left bottom (which is visible only
13867         at high magnifications).
13868         `Center' the stem horizontally to avoid overlapping.
13869
13870 2005-01-24  Werner Lemberg  <wl@gnu.org>
13871
13872         * mf/feta-autometric.mf (fet_beginfont): Set font_coding_scheme
13873         to `asis'.
13874         (fet_begingroup): Save group name in string `feta_group'.
13875         (fet_endgroup): Updated.
13876         (fet_beginchar): Emit `glyph_name' special for mf2pt1.
13877
13878         * mf/feta-bolletjes.mf: s/p/pat/ for paths.
13879
13880         * mf/feta-pendaal.mf ("Pedal asterisk"): Add workaround for bug
13881         in metapost.
13882
13883 2005-01-24  Graham Percival  <gperlist@shaw.ca>
13884
13885         * Documentation/user/notation.itely: really minor editing.
13886
13887 2005-01-22  Graham Percival  <gperlist@shaw.ca>
13888
13889         * Documentation/user/examples.itely: minor editing.
13890
13891         * Documentation/user/changing-defaults.itely: minor editing.
13892
13893         * Documentation/user/notation.itely: clarified info on polyphony
13894         and \addlyrics.
13895
13896 2005-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
13897
13898         * scm/output-gnome.scm: 
13899         * scm/output-svg.scm:
13900         * scm/lily-library.scm (font-name-style): Update font name
13901         kludging for fontconfig use.
13902
13903 2005-01-20  Erlend Aasland  <erlenda@gmail.com>
13904
13905         * scm/define-markup-commands.scm: Document right-align and
13906         larger markup commands. Remove "TODO" from the topmost comment
13907         "each markup function should have a doc string." More consistent
13908         use of new-lines.
13909
13910 2005-01-22  Graham Percival  <gperlist@shaw.ca>
13911
13912         * Documentation/user/changing-defaults: removed info about
13913         copyright symbol, since it's likely to change soon.
13914         Added info about betweensystemspace.
13915
13916         * Documentation/user/notation.itely: minor fixes.
13917
13918         * Documentation/user/lilypond.tely,
13919         Documentation/user/music-glossary.tely: changed copyright
13920         date to 2005 instead of 2004.
13921
13922         * input/test/volta-chord-names.ly: added old example back.
13923
13924 2005-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13925
13926         * mf/feta-beugel.mf: use design size 20 (not 15).
13927
13928         * mf/aybabtu.pe.in: scale brace fonts to design sizes.
13929         change name to aybabtu completely
13930
13931 2005-01-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13932
13933         * buildscripts/gen-emmentaler-scripts.py (outdir): add
13934         design_size to fontname
13935
13936 2005-01-19  Werner Lemberg  <wl@gnu.org>
13937
13938         * mf/feta-accordion.mf, mf/feta-klef.mf, mf/feta-pendaal.mf,
13939         mf/feta-schrift.mf: s/p/pat/ if a path variable.
13940
13941         * mf/feta-autometric.mf (set_char_box): Add code which emits
13942         specials for mf2pt1 if run with metapost.
13943         (to_bp): New macro for mf2pt1.
13944
13945 2005-01-18  Graham Percival  <gperlist@shaw.ca>
13946
13947         * Documentation/user/changing-defaults: added info on
13948         creating a copyright symbol.
13949
13950 2005-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13951
13952         * VERSION: release 2.5.9
13953         
13954 2005-01-18  Erlend Aasland  <erlenda@gmail.com>
13955
13956         * scm/auto-beam.scm: Simplify score-override-auto-beam-setting
13957
13958         * Documentation/user/notation.itely: Document
13959         score-override-auto-beam-setting Fix documentation for
13960         revert-auto-beam-setting.
13961
13962 2005-01-18  Werner Lemberg  <wl@gnu.org>
13963
13964         * scm/framework-ps.scm (ps-embed-cff): Fix DSC comments.
13965         (procset): New function to define a procset resource.
13966         (ps-embed-pfa): New function to define a font resource.
13967         (setup): New function to define a `Setup' environment.
13968         (preamble): Use new functions.
13969
13970         * ps/lilypond.defs (init-lilypond-parameters): New function to
13971         get rid of directly executed PS code.  Used in scm/framework-ps.scm.
13972
13973 2005-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13974
13975         * mf/GNUmakefile (MFTRACE_FLAGS): add --no-afm to MFTRACE_FLAGS
13976
13977 2005-01-17  Erlend Aasland  <erlenda@gmail.com>
13978
13979         * scm/define-markup-commands.scm: Change number->markletter-string
13980         to take two arguments (vector number). Add number->mark-alphabet-vector
13981         and markalphabet markup command.
13982
13983         * scm/translation-functions.scm: Add format-mark-box-alphabet,
13984         format-mark-alphabet, format-mark-box-barnumbers and
13985         format-mark-barnumbers. Fix bug in format-mark-box-numbers.
13986
13987 2005-01-17  Graham Percival  <gperlist@shaw.ca>
13988
13989         * Documentation/user/examples.itely: add SATB automatic piano
13990         reduction template.
13991
13992         * Documentation/user/notation.itely: added info about changing
13993         partcombine texts.  Also adds examples of alternate lyrics.
13994
13995         * Documentation/user/changing-defaults.itely: added warning
13996         about \RemoveEmptyStaffContext overriding previous changes.
13997
13998 2005-01-17  Werner Lemberg  <wl@gnu.org>
13999
14000         * buildscripts/mf-to-table.py: Use `FetaAlphabetEncoding' for
14001         feta-alphabet*.
14002
14003 2005-01-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14004
14005         * python/lilylib.py (make_ps_images): don't do final showpage for
14006         multi-page documents.
14007         
14008         * VERSION (MY_PATCH_LEVEL): release 2.5.8
14009
14010 2005-01-16  Graham Percival  <gperlist@shaw.ca>
14011
14012         * Documentation/user/lilypond.tely: changed order of appendices;
14013         unified index should be last.
14014
14015         * Documentation/user/notation.itely: add example of key signatures
14016         and info about Staff.printKeyCancellation.
14017
14018 2005-01-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14019
14020         * lily/include/repeated-music.hh (class Repeated_music): change
14021         into "namespace" class.
14022
14023         * lily/event.cc: remove Key_change_event.
14024
14025         * lily/include/transposed-music.hh (class Transposed_music): remove.
14026
14027         * lily/transposed-music.cc: remove
14028
14029         * lily/include/relative-music.hh: remove.
14030
14031         * lily/include/music-sequence.hh (struct Music_sequence): change
14032         into "namespace" class.
14033
14034         * lily/untransposable-music.cc (Module): remove
14035
14036         * lily/include/un-relativable-music.hh (Module): remove
14037
14038         * lily/include/untransposable-music.hh (Module): remove
14039
14040         * lily/include/music-list.hh (Module): remove file
14041
14042         * lily/un-relativable-music.cc: remove file.
14043
14044 2005-01-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14045
14046         * lily/parser.yy: Compile fix.
14047
14048 2005-01-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14049
14050         * lily/include/music.hh (class Music): unvirtualize transpose().
14051
14052         * lily/sequential-music.cc: remove file.
14053
14054         * lily/include/lyric-combine-music.hh ("music.hh"): remove file.
14055
14056         * lily/slur-scoring.cc (get_best_curve): only switch on
14057         DEBUG_SLUR_SCORING for non NDEBUG builds.
14058
14059         * lily/include/music.hh (class Music): replace Music::start_mom()
14060         by start-callback property
14061
14062         * lily/include/grace-music.hh: remove file. 
14063
14064         * lily/stem.cc (height): robustness fix.
14065
14066         * lily/time-scaled-music.cc: remove file.
14067
14068         * lily/include/music.hh (class Music): include SCM init argument.
14069         (class Music): replace Music::get_length() virtual by
14070         length-callback property everywhere.
14071
14072         * scripts/convert-ly.py (conv): add  # to \property scalar value.
14073
14074         * mf/GNUmakefile: don't install *list.ly
14075
14076 2005-01-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14077
14078         * mf/GNUmakefile (CFF_FILES): Bugfix: only big cheeses and braces.
14079
14080 2005-01-12  Werner Lemberg  <wl@gnu.org>
14081
14082         This patch addresses the following problems in the feta sources
14083         files which contribute to the fetaXX fonts.
14084
14085         . Many fixes for rasterization at low resolutions (consistent use of
14086           `vround' and `hround', integer shift values for paths, applying
14087           `eps' for mirrored paths, use of `define_whole_pixels' and
14088           friends, etc.) -- while this probably looks like a waste of time
14089           it has revealed deficiencies in some glyph shapes.  See comment at
14090           the end of feta-params.mf how vertical symmetry is achieved.
14091
14092         . The `---' operator has been replaced everywhere with `--'; this
14093           both improves and considerably reduces the font size after
14094           conversion with mf2pt1.
14095
14096         These change aren't explicitly mentioned below since virtually all
14097         glyphs are affected.
14098
14099         Other notable differences:
14100
14101         . Glyphs from feta-accordion.mf now have charboxes around the
14102           outline.
14103
14104         . Fixed incorrect charbox for `accDot'.
14105
14106         . The `rcomma' and `lcomma' glyphs were distorted due to a typo.
14107
14108         . Fixed position of the bow in the `upprall' glyph and its siblings.
14109
14110         . The bulb size in the `2/2 meter' and `4/4 meter' glyphs is now
14111           dependent on the staff line thickness to avoid touching the middle
14112           staff line at smaller sizes.
14113
14114         . Largely extended output for feta-testXX: Where useful, glyphs
14115         are shown both between and on staff lines.
14116
14117
14118         * mf/feta-params.mf (staff_space_rounded,
14119         stafflinethickness_rounded, linethickness_rounded,
14120         ledgerlinethickness_rounded, stemthickness_rounded): New variables.
14121         Update all code which uses them where appropriate.
14122         (feta_eps, feta_shift, feta_space_shift, feta_offset, feta_fillpen):
14123         New variables used to control rasterization at low resolutions.  Set
14124         to zero if feta code is processed with metapost.
14125
14126         * mf/feta-macros.mf (draw_staff, draw_staff_outline): Updated.
14127         (draw_rounded_block, draw_square_block): Updated to use `--' only.
14128         (flare_path): Updated.
14129         Make it work with `filldraw' (but only circular pens).
14130         (hfloor, vfloor, hceiling, vceiling): New macros.
14131
14132         * mf/feta-accordion.mf ("accDiscant", "accFreebase", "accStdbase"):
14133         Use `draw' again in mf mode to have good pixel dropout control.
14134         Fix intersection points of horizontal lines with circle.
14135         ("accDot"): Fix parameters for set_char_box.
14136         ("accOldEE"): Use `draw' again in mf mode to have good pixel dropout
14137         control.
14138
14139         * mf/feta-banier.mf: Updated.
14140
14141         * mf/feta-bolletjes.mf (remember_pic): New variable, used for
14142         testing.
14143         (undraw_inside_ellipse): Remove `center' argument.  Update all
14144         callers.
14145         (draw_brevis): New macro, called by "Brevis notehead".
14146         (draw_whole_triangle_head): New macro, called by "Whole
14147         trianglehead".
14148         (draw_small_triangle_head): Use `filldraw'.
14149
14150         * mf/feta-eindelijk.mf: Remove useless global group.
14151         Updated.
14152
14153         * mf/feta-klef.mf (draw_c_clef): Correct point positions for using
14154         `filldraw'.
14155
14156         * mf/feta-pendaal.mf: Updated.
14157
14158         * mf/feta-puntje.mf: Updated.
14159
14160         * mf/feta-schrift.mf (draw_very_long_fermata): Simplified to use
14161         less points.
14162         ("Flageolet"): Use `draw' again in mf mode to have good pixel
14163         dropout control.
14164         ("Varied Coda"): Use `draw_block'.
14165         (draw_comma): Fix typo.
14166         (draw_arpeggio_arrow): Use `draw' also in mf mode to have good
14167         pixel dropout control.
14168
14169         * mf/feta-slag.mf ("upprall", "downprall", "lineprall"): Fix start
14170         position of bow.
14171
14172         * mf/feta-timesig.mf (draw_C): Reduce bulb size for smaller design
14173         sizes.
14174
14175         * mf/feta-toevallig.mf (remember_pic): New variable, used for
14176         testing.
14177         (draw_meta_sharp): Much simplified.
14178         ("Sharp", "1/2 Sharp", "3/4 Sharp"): Don't rotate but shift.
14179
14180         * mf/feta-test-generic.mf: Include all files as in feta-generic.mf.
14181
14182 2005-01-13  Mats Bengtsson  <mabe@s3.kth.se>
14183
14184         * Documentation/user/notation.itely (Ancient rests): Fix typo
14185         (thanks Anthony)
14186
14187 2005-01-13  Jan Nieuwenhuizen  <janneke@gnu.org>
14188
14189         * scm/auto-beam.scm (score-override-auto-beam-setting): New function.
14190
14191         * lily/main.cc (setup_paths): Add cff.
14192
14193         * mf/GNUmakefile (foe): Include actual target %.cff.
14194         (INSTALLATION_OUT_SUFFIXES): Install CFF and SVG fonts too.
14195
14196 2005-01-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14197
14198         * lily/include/lily-lexer.hh (class Lily_lexer): lose hungarian _b
14199         suffix for main_input_b_.
14200
14201         * scm/music-functions.scm (toplevel-music-functions):
14202         precompute music lengths for music expressions.  
14203
14204 2005-01-11  Nicolas Sceaux  <nicolas.sceaux@free.fr>
14205
14206         * lily/include/input.hh (class Input): new `end_' slot for end of
14207         input. Renamed defined_str0_ to start_.
14208
14209         * lily/input.cc (Input): Add Input::Input (Input const &) and
14210         remove Input::Input (Source_file*, char const *). Use the new
14211         slots.
14212         (set_location): method used by bison to propagate input
14213         locations (YYLLOC_DEFAULT).
14214         (end_line_number, end_column_number, step_forward): new methods
14215         
14216         * lily/input-scheme.cc (ly:input-both-locations): new function,
14217         similar to ly:input-location, but also return the end line and
14218         column.
14219
14220         * lily/include/includable-lexer.hh: 
14221         * lily/includable-lexer.cc: 
14222         * lily/include/lily-lexer.hh (class Lily_lexer): 
14223         * lily/lily-lexer.cc (add_lexed_char): Move add_lexed_char from
14224         Includable_lexer to Lily_lexer, in order to update lexloc (the
14225         yylloc), a new slot of Lily_lexer.
14226         (here_input, LexerError): simplify by using the lexloc slot (aka
14227         yylloc)
14228
14229         * lily/lexer.ll: #define yylloc to use input locations (it may
14230         be useless here?). Fixed the #embedded_scm rule (step the location
14231         forward in order to skip the sharp sign before parsing the scheme
14232         expression)
14233
14234         * lily/include/lily-parser.hh (class Lily_parser): 
14235         * lily/lily-parser.cc: Remove push_spot(), pop_spot() and
14236         here_input()
14237         (parser_error): overload for more precise locations of errors.
14238
14239         * lily/parser.yy (YYLTYPE): set location type to Input
14240         (YYLLOC_DEFAULT): use Input::set_location()
14241         (yylex): add the YYLTYPE* location parameter.
14242         Clean push_spot()/pop_spot()/here_input(), and use @$, @1, etc.
14243         Give an Input parameter to THIS->parser-error() for more accurate
14244         messages.
14245
14246 2005-01-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14247
14248         * stepmake/aclocal.m4: do NDEBUG for optimizing builds.
14249
14250         * lily/include/beam.hh (DEBUG_QUANTING): performance: only switch
14251         on BEAMQUANTING for non-NDEBUG builds.
14252
14253         * lily/stem.cc (head_count): performance: avoid String::String()
14254         inside oft called function.
14255
14256 2005-01-09  Graham Percival  <gperlist@shaw.ca>
14257
14258         * Documentation/user/examles.itely: attempted fix for broken
14259         string quartet template.
14260
14261         * Documentation/user/notation.itely: remove unnecessary broken
14262         link.
14263
14264 2005-01-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14265
14266         * VERSION (PACKAGE_NAME): release 2.5.7
14267
14268 2005-01-09  Jan Nieuwenhuizen  <janneke@gnu.org>
14269
14270         * config.make.in (METAFONT): Append -progname=mf, fixes use with
14271         mf-nowin for teTeX-3.0.  Backportme.
14272
14273         * scm/output-svg.scm (utf8-string): New function.
14274
14275         * scm/output-gnome.scm (utf8-string): New function.
14276         (otf-name-mangling): Remove.
14277
14278         * lily/pango-font.cc (Pango_font): Use font string iso font
14279         filename for utf8-text.
14280
14281         * buildscripts/gen-emmentaler-scripts.py: Remove designsize from
14282         name.
14283
14284 2005-01-08  Graham Percival  <gperlist@shaw.ca>
14285
14286         * Documentation/user/notation.itely: add info about
14287         Staff.extraNatural = ##f in Pitches section.  Also
14288         fixed some minor issues in the Vocal music section.
14289
14290 2005-01-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14291
14292         * scm/output-ps.scm (white-text): comment out Helvetica font,
14293         which is broken for my GS install.
14294
14295         * lily/pango-font.cc (pango_item_string_stencil): use ink_rect,
14296         which provides a tighter bbox.
14297
14298         * scm/define-grobs.scm (all-grob-descriptions): remove all
14299         extra-offsets from definitions.
14300
14301 2005-01-08  Erlend Aasland  <erlenda@gmail.com>
14302
14303         * scm/output-lib.scm: Rename guitar-tunings to guitar-tuning and
14304         add tuning for 4-string bass and some common 4/5-string banjo
14305         tunings.  New function (four-string-banjo) turns a 5-string tuning
14306         into a 4-string tuning.  New function
14307         (fret-number-tablature-format-banjo) computes correct fret numbers
14308         on 5-string banjos.
14309
14310         * ly/engraver-init.ly: Default stringTunings = #guitar-tuning
14311         Add beam correction to TabVoice.
14312
14313         * scm/define-grobs.scm: Adjust notehead offset. Print fret numbers
14314         using bold font; makes tabs more readable.
14315
14316 2005-01-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14317
14318         * lily/font-select.cc (get_font_by_design_size): don't make
14319         Modified_font_metric; this causes trouble, since we don't know the
14320         font magnification from inside Pango_font::text_stencil()
14321
14322         * lily/all-font-metrics.cc (find_pango_font): take magnification argument.
14323
14324         * Documentation/user/notation.itely (The Lyrics context): comment out
14325         broken {Small ensembles} link.
14326
14327         * scm/framework-svg.scm (output-framework): change calling convention.
14328
14329         * lily/object-key-dumper-scheme.cc: new file.
14330
14331         * lily/object-key-undumper-scheme.cc: new file.
14332
14333         * lily/tweak-registration-scheme.cc: new file.
14334
14335         * lily/pango-select.cc (symbol_to_pango_variant): init local variable.
14336
14337         * Documentation/user/examples.itely (String quartet): uncomment
14338         broken example.
14339
14340         * lily/font-config.cc: new file.
14341
14342 2005-01-08  Jan Nieuwenhuizen  <janneke@gnu.org>
14343
14344         * scm/output-svg.scm: 
14345         * scm/output-gnome.scm: s/bigcheese/emmentaler.
14346
14347         * lily/score-engraver.cc (MUSIC_FONT): Use emmentaler20.
14348
14349 2005-01-07  Jan Nieuwenhuizen  <janneke@gnu.org>
14350
14351         * lily/general-scheme.cc (LY_DEFINE): Use snprintf (WAS: sprintf).
14352         Add headers.
14353
14354         * lily/GNUmakefile (general-scheme.o): Add version.hh dependency.
14355
14356 2005-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14357
14358         * mf/GNUmakefile (debian-mirror): rename bigcheese to emmentaler.
14359
14360         * lily/include/main.hh: lose _b hungarian suffixes for global
14361         variables.
14362
14363         * lily/include/lily-guile-macros.hh: new file.
14364
14365         * lily/pango-select-scheme.cc (LY_DEFINE): new file.
14366
14367         * lily/general-scheme.cc: new file. 
14368
14369         * lily/font-select.cc (get_font_by_design_size): retrieve
14370         PangoFont for (designsize . "pango-descr") entries.
14371
14372         * lily/lily-parser-scheme.cc: new file.
14373
14374         * lily/output-def-scheme.cc: new file.
14375
14376         * lily/paper-book-scheme.cc: new file.
14377
14378         * lily/duration-scheme.cc (LY_DEFINE): new file.
14379
14380         * lily/pitch-scheme.cc:  new file.
14381
14382         * scm/font.scm (add-cmr-fonts): use real dimens in font selection.
14383
14384 2005-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14385
14386         * lily/dimensions.cc (LY_DEFINE): add ly:{inch,cm,mm,bp,pt}.
14387
14388 2005-01-06  Graham Percival  <gperlist@shaw.ca>
14389
14390         * Documentation/user/notation.itely: minor editing.
14391
14392         * Documentation/user/changing-defaults: minor editing.
14393
14394         * Documentation/user/examples.itely: add template for
14395         string quartet part extraction; demonstrates tag.
14396
14397 2005-01-06  Erlend Aasland  <erlenda@gmail.com>
14398
14399         * Documentation/user/notation.itely: documents
14400         format-mark-box-letters and format-mark-box-numbers
14401
14402         * scm/define-context-properties.scm: change comment.
14403
14404 2005-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14405
14406         * scm/framework-ps.scm (output-classic-framework): new function:
14407         dump systems as separate .eps files (without fonts) and write a
14408         single collecting .tex file.
14409
14410 2005-01-05  Mats Bengtsson  <mabe@s3.kth.se>
14411
14412         * Documentation/user/notation.itely (Setting simple songs):
14413         Correct several errors in the equivalent formulation of
14414         \addlyrics. 
14415         (The Lyrics context): Corrected link to the SATB example.
14416
14417 2005-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14418
14419         * scm/lily.scm (completize-formats): new function
14420         (postprocess-output): new function
14421
14422         * lily/paper-book.cc (classic_output): change calling
14423         convention. Give basename as first argument. 
14424         remove Paper_book::post_processing().
14425
14426         * lily/lily-guile.cc (LY_DEFINE): ly:output-backend, new function.
14427
14428 2005-01-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14429
14430         * lily/paper-outputter.cc (LY_DEFINE): new function
14431         ly:outputter-close.
14432
14433         * lily/main.cc: change --format,-f to --backend,-b
14434
14435         * lily/include/main.hh: rename format to backend.
14436
14437         * scm/translation-functions.scm (format-mark-box-numbers): add.
14438         patch by Erlend Aasland
14439
14440 2005-01-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14441
14442         * lily/pango-font.cc (text_stencil): dump string as
14443         (utf-8-string FONTDESC UTF8) for use in -f gnome, -f svg.
14444
14445 2005-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
14446
14447         * configure.in (gui_b): Remove handy developer-only
14448         PKG_CONFIG_PATH settings that cater for Jan-and-Han-Wen ~/usr/pkg/
14449         CVS source installations (but break other non-default but correct
14450         PKG_CONFIG_PATH setups), as this is no longer developer-only.
14451
14452         * SConstruct: 
14453         * ps/GNUmakefile (INSTALLATION_FILES): teTeX-3.0
14454         compatibility (backportme).
14455
14456         * GNUmakefile.in: teTeX-3.0 compatibility (backportme).
14457
14458 2005-01-03  Werner Lemberg  <wl@gnu.org>
14459
14460         Prepare glyph shapes for mf2pt1 conversion.
14461
14462         * mf/feta-accordion.mf (accreg_pen): Removed.  No longer used.
14463         (accDiscant, accFreebase, accStdbase): Replace `draw' with
14464         `penstroke'.
14465         (accDot): Use `drawdot'.
14466         (accBayanbase): Replace `draw' with `draw_gridline'.
14467         (print_penpos): Moved to feta-macros.mf.
14468         (accOldEE): Replace `filldraw' with `penstroke'.
14469         Replace `draw' with `penstroke' and `drawdot'.
14470
14471         * mf/feta-banier.mf: Code clean-up.
14472         ("grace dash (up)", "grace dash (down)"): Replace `draw' with
14473         `fill'.
14474
14475         * mf/feta-bolletjes (draw_cross): Remove call to `labels'.
14476
14477         * mf/feta-eindelijk.mf (draw_rest_bulb, draw_eigth_rest): Add
14478         paremeter to control drawing of labels.  Update all callers.
14479
14480         * mf/feta-klef.mf (draw_c_clef): Use `&' not `..' to connect paths.
14481         (new_bulb): Return a bulb as a single path.  To do that, it now
14482         takes some more parameters.  Updated all callers.
14483         (draw_gclef): Major clean-up.  `draw' has been replaced with
14484         `penstroke', unnecessary outlines have been removed.
14485         Remove (unused) gnome-canvas code.
14486
14487         * mf/feta-macros.mf (print_penpos): New macro (from
14488         feta-accordion.mf).
14489         Other minor fixes.
14490
14491         * mf/feta-pendaal.mf ("Pedal asterisk"): Use `undrawdot'.
14492         ("Pedal dot"): Use `drawdot'.
14493         (draw_pedal_P): Add parameter to control drawing of labels.  Update
14494         all callers.
14495         Fix shape at top.
14496         (draw_pedal_e): Add parameter to control drawing of labels.  Update
14497         all callers.
14498         (draw_pedal_d): Add parameter to control drawing of labels.  Update
14499         all callers.
14500         Revert drawing direction.
14501
14502         * mf/feta-schrift.mf (draw_fermata): Use single path.
14503         (draw_short_fermata): Replace `filldraw' with `fill'.
14504         (draw_long_fermata, draw_very_long_fermata): Replace calls to
14505         `draw_rounded_block' with a single path.
14506         ("Thumb"): Draw full circle instead of mirroring segments.
14507         (draw_accent): New macro.
14508         ("> accent", "espr"): Use it.
14509         (draw_marcato): Replace `filldraw' and `draw' with `fill'.
14510         ("open (unstopped)"): Draw full circle instead of mirroring
14511         segments.
14512         (draw_vee): Removed.
14513         ("Upbow"): Use `draw_accent' instead of `draw_vee'.
14514         ("Downbow"): Replace calls to `draw_rounded_block' with a single
14515         path.
14516         ("Trill (`tr')"): Replace overlapping loop drawn with `draw' with
14517         partial pieces drawn with `fill' -- these do still overlap with the
14518         stem of the `t' but just once, not multiple times so that fontforge
14519         can handle it gracefully.
14520         Change other parts of the glyph so that fontforge's overlapping
14521         algorithm reliably works.
14522         (draw_heel): Replace `draw' with `fill'.
14523         (draw_toe): Use `draw_accent' instead of `draw_vee'.
14524         ("Flageolet"): Replace `draw' with `penstroke'.
14525         ("Segno"): Replace `filldraw' with `penstroke'.
14526         Replace `draw' with `drawdot'.
14527         ("Coda"): Replace `fill' with `penstroke', using a single path.
14528         ("Varied Coda"): Use less overlapping paths.
14529         (draw_arpeggio_arrow): Replace `filldraw' with `fill', using a
14530         single path.
14531
14532         * mf/feta-slag.mf (draw_trillelement): Put `clearxy' outside of
14533         group to better control the `labels' command.
14534         Rename argument to `offset' and use it actually.  Update all
14535         callers.
14536         Replace `filldraw' with `fill'.
14537         ("mordent", "prallmordent", "upmordent", "downmordent",
14538         "lineprall"): Replace `draw' with `draw_gridline'.
14539         ("upprall", "downprall"): Replace `draw' with `fill'.
14540
14541         * mf/feta-timesig.mf: Formatting.
14542
14543         * mf feta-toevallig.mf (draw_meta_flag): Move code to draw labels
14544         to...
14545         ("Flat"): Here.
14546         (draw_paren): Move code to draw labels to...
14547         ("Right Parenthesis"): Here.
14548
14549 2005-01-02  Graham Percival <gperlist@shaw.ca>
14550
14551         * Documentation/user/notation.itely: add example of \setTextDecresc
14552         and \setTextDim.
14553
14554 2005-01-02  Tatsuya Ono <tats_ono@infoseek.jp>
14555
14556         * scm/define-markup-commands.scm :  fix glyph-strings of
14557         accidentals and \note-by-number
14558
14559 2005-01-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14560
14561         * VERSION: 2.5.6 released.
14562         
14563         * ps/lilyponddefs.ps: put mm -> pt scaling in here.
14564
14565         * input/regression/new-markup-scheme.ly: oops. font-family=music
14566         -> font-encoding fetaMusic.  
14567
14568         * lily/main.cc: put default to PS.
14569
14570         * lily/tfm.cc: idem.
14571
14572         * lily/afm.cc: idem.
14573
14574         * lily/include/modified-font-metric.hh (struct
14575         Modified_font_metric): remove coding_scheme() method.
14576
14577         * input/mutopia/F.Schubert/morgenlied.ly: convert to utf8
14578
14579         * scripts/convert-ly.py (conv): crash on encountering \encoding.
14580
14581         * input/les-nereides.ly: convert to utf8
14582
14583         * lily/modified-font-metric.cc (text_dimension): idem.
14584
14585         * lily/parser.yy (TODO): idem.
14586
14587         * lily/include/lily-lexer.hh (class Lily_lexer): idem.
14588
14589         * lily/lexer.ll: remove encoding
14590
14591         * scm/framework-ps.scm (output-variables): separately scale the
14592         page to mm 
14593
14594         * lily/pango-font.cc (Pango_font): fix scaling.
14595
14596         * lily/font-metric.cc (design_size): design_size returns a
14597         dimension now as well.
14598
14599 2004-12-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14600
14601         * mf/GNUmakefile ($(outdir)/%.otf-table): use findstring. Fixes
14602         brace generation. 
14603
14604         * lily/text-metrics.cc (LY_DEFINE): use scm_c_make_hash_table().
14605
14606 2004-12-30  Jan Nieuwenhuizen  <janneke@gnu.org>
14607
14608         * mf/GNUmakefile (INSTALLATION_OUT_SUFFIXES): Do not try to
14609         install unbuildable Fontmap and Fontmap.lily (Simon Aridis-Lang).
14610
14611 2004-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14612
14613         * mf/GNUmakefile ($(outdir)/%.otf-table): include parmesan20.lisp
14614         in first run as well.
14615
14616         * scm/paper.scm (layout-set-staff-size): use text-font-size in
14617         dimension less points (ie. 12 = 12 point)
14618
14619         * lily/pango-select.cc (select_pango_font): use find_scaled_font().
14620
14621         * lily/all-font-metrics.cc (find_pango_font): set description_
14622
14623         * lily/pango-font.cc (text_stencil): export size as well.
14624         (text_stencil): fix scaling and extents box.
14625
14626 2004-12-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14627
14628         * Documentation/topdocs/NEWS.texi (Top): add -f texstr
14629
14630         * Documentation/user/invoking.itely (Invoking lilypond): document
14631         texstr
14632
14633         * scripts/convert-ly.py (conv): add ancient rules.
14634
14635         * scm/clef.scm (c0-pitch-alist): replace - with .
14636
14637         * scripts/lilypond-book.py (process_snippets): add texstr support.
14638
14639         * scm/framework-texstr.scm (header): change extension to .textmetrics
14640
14641         * lily/lily-parser.cc (parse_file): do try_load_text_metrics for
14642         -f tex.
14643
14644         * lily/text-metrics.cc: new file.
14645         (try_load_text_metrics): new function
14646
14647         * lily/include/text-metrics.hh: new file.
14648
14649 2004-12-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14650
14651         * lily/include/lily-guile.hh (ly_lily_module_constant): rename
14652         ly_scheme_function to ly_lily_module_constant.
14653
14654         * lily/modified-font-metric.cc (text_dimension): try
14655         lookup_tex_text_dimension() first.
14656
14657         * lily/tfm.cc: new function ly:load-text-dimensions
14658
14659 2004-12-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14660
14661         * scm/output-texstr.scm (text): use \lilygetmetrics
14662
14663         * scm/framework-texstr.scm (header): dump in new format.
14664
14665         * tex/lilypond-tex-metrics: new file.
14666         
14667 2004-12-27  Jan Nieuwenhuizen  <janneke@gnu.org>
14668
14669         * lily/pango-font.cc (text_stencil): Quick try at glyph->charcode
14670         mapping.
14671         (index_to_charcode): New method.
14672
14673         * scm/output-ps.scm (glyph-string): 
14674         * scm/output-gnome.scm (glyph-string): Add FONT parameter.
14675
14676 2004-12-26  Jan Nieuwenhuizen  <janneke@gnu.org>
14677
14678         * scm/output-gnome.scm (FIXME-glyph-string): New function.  Cannot
14679         implement fully, need FONT to get to charcode.
14680
14681         * scm/lily.scm (ly:all-stencil-expressions): Add glyph-string.
14682
14683         * scm: Cleanups.
14684
14685         * Documentation/user/changing-defaults.itely: Fix internalsrefs
14686         {Tunable context properties},
14687         {All layout objects},
14688         {Music definitions}.
14689
14690 2004-12-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14691
14692         * VERSION: release 2.5.5
14693         
14694         * lily/main.cc: use TeX as default output format.
14695
14696         * flower/file-path.cc (find): try to open directly as well, so we
14697         find absolute path files. 
14698
14699         * lily/pango-select.cc: new file.
14700
14701         * scm/framework-ps.scm: remove all encoding code. 
14702         load pfb/pfa for PangoFont too.
14703         
14704         * lily/lily-guile.cc (ly_chain_assoc_get): new function.
14705
14706 2004-12-22  Werner Lemberg  <wl@gnu.org>
14707
14708         Prepare glyph shapes for mf2pt1 conversion.
14709
14710         * mf/feta-toevallig.mf ("Double Sharp"): Minor path fix.
14711
14712         * mf/feta-bolletjes.mf (penposx): New auxiliary macro.
14713         (define_triangle_shape): Use it to replace `draw' with `fill' and
14714         `unfill'.  Update all callers.
14715         (draw_slash): Replace `filldraw' with `fill'.  Update all callers.
14716         (draw_cross): Ditto.
14717         ("X-Circled notehead"): Replace `draw' with `fill' and `unfill'.
14718         Use penrazor for better conversion with mf2pt1.
14719         (generic_draw_solfa_note_shape, draw_solfa_note_shape,
14720         draw_solfa_quarter_note_shape, triangle): Removed.  Unused.
14721         (draw_do_head, draw_re_head, draw_mi_head, draw_fa_head,
14722         draw_la_head, draw_ti_head): Replace `filldraw' with
14723         `fill'.  Update all callers.
14724
14725 2004-12-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14726
14727         * lily/paper-book.cc (output): revert: only allow a single output
14728         format.
14729
14730         * lily/include/pango-font.hh: new file.
14731
14732         * lily/pango-font.cc: new file.
14733
14734         * lily/font-metric.cc (text_stencil): new routine
14735
14736         * lily/all-font-metrics.cc (find_pango_font): new routine.
14737
14738         * lily/include/font-metric.hh (struct Font_metric): add
14739         text_stencil()
14740
14741         * configure.in (PKG_CONFIG_PATH): require PANGO_FT2
14742
14743 2004-12-22  Werner Lemberg  <wl@gnu.org>
14744
14745         Prepare glyph shapes for mf2pt1 conversion.
14746
14747         * mf/feta-macros.mf, mf_feta-eindelijk.mf: Some formatting.
14748
14749         * mf/feta-toevallig.mf: Formatting.
14750         (draw_meta_sharp): Modify path to replace `filldraw' with `fill'.
14751         ("Natural"): Fix paths to allow better postprocessing.
14752         (draw_meta_flat): Use `z3l' as additional point in path to get
14753         better conversion with mf2pt1.
14754         Other minor cleanups.
14755         ("3/4 Flat"): Add auxiliary points and modify path to replace
14756         `draw' with `fill'.
14757         ("Double Sharp"): Mirror path segments instead of picture elements
14758         to get a single outline.
14759         Modify path to replace `filldraw' with `fill'.
14760
14761 2004-12-22  Graham Percival  <gperlist@shaw.ca>
14762
14763         * input/test/unfold-all-repeats.ly: added file back.
14764
14765         * Documentation/user/notation.itely,
14766         Documentation/user/programming-interface.itely
14767         Documentation/user/changing-defaults.itely: fixed misc broken
14768         links to input/test/ files.
14769
14770 2004-12-22  Jan Nieuwenhuizen  <janneke@gnu.org>
14771
14772         * tex/texinfo.tex: Update.  We should not be distributing this,
14773         but since we do, use latest version.
14774
14775         * Documentation/user/macros.itexi: Comment-out \fetaflat,
14776         \fetasharp.  Fixes make web.  FIXME: make usable (compatible?) TeX
14777         macros for feta glyphs.
14778
14779 2004-12-22  Graham Percival  <gperlist@shaw.ca>
14780
14781         * Documentation/user/changing-defaults.itely: fix index for set.
14782
14783         * Documentation/user/converters.itely: added convert-ly bugs list
14784         from CVS.
14785
14786 2004-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
14787
14788         * python/lilylib.py (setup_environment): Set GS_FONTPATH, GS_LIB
14789         to empty.  Fixes make web, using gs-gpl-8.01.  In fact,
14790         gs-afpl-8.50 has more trouble with make web (ie, uses *a lot* more
14791         resourses; 3x MAXSIZE, 4x MAXRSS, 1.5x user).
14792
14793         * mf/GNUmakefile (pfa_warning): Use less broken check.
14794
14795         * python/lilylib.py (setup_environment): Remove cruft from
14796         GS_FONTPATH.
14797
14798         * configure.in: Bump mftrace requirement to 1.1.1.
14799
14800 2004-12-20  Jan Nieuwenhuizen  <janneke@gnu.org>
14801
14802         * scm/output-svg.scm (beam): Use polygon.
14803
14804         * scm/lily-library.scm: Bugfix.
14805
14806         * Documentation/user/invoking.itely (Invoking lilypond): Bugfix.
14807
14808         * mf/GNUmakefile (ALL_GEN_FILES): Remove unbuildable Fontmap.lily.
14809
14810 2004-12-19  Werner Lemberg  <wl@gnu.org>
14811
14812         Prepare glyph shapes for mf2pt1 conversion.
14813
14814         * mf/feta-eindelijk: Some formatting.
14815         (multi_rest_x, multi_beam_height): Removed.  Unused.
14816         ("Quarter rest"): Use `intersectiontimes' to create a single
14817         outline.
14818         (rest_crook): Removed.  Unused.
14819         (draw_rest_bulb): Return path (without filling).  Update callers.
14820         Simplified.
14821         (draw_eighth_rest, "16th rest", "32th rest", "64th rest",
14822         "128th rest"): Simplify `pat'.
14823         Create single outline.
14824
14825 2004-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
14826
14827         * mf/GNUmakefile (ALL_GEN_FILES):
14828         (INSTALLATION_OUT_SUFFIXES): Remove unbuildable fonts.scale.
14829
14830         * scm/output-svg.scm (polygon, draw-line, dashed-line): New
14831         function.
14832
14833 2004-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14834
14835         * scm/output-texstr.scm (placebox): add routine
14836
14837         * VERSION (PACKAGE_NAME): release 2.5.4
14838
14839         * scm/framework-texstr.scm (output-framework): new file.  
14840
14841         * scm/output-texstr.scm: new file. Collect (TEXT . ) calls for TeX
14842         processing.
14843
14844         * Documentation/user/invoking.itely (Invoking lilypond): add SVG
14845
14846         * stepmake/stepmake/metafont-rules.make: make single SVG/PFA/PFB
14847         rule.
14848
14849         * configure.in (gui_b): bump mftrace requirement to 1.1.0
14850
14851         * mf/feta-bolletjes.mf (triangle): add s to 0triangle.
14852
14853         * mf/GNUmakefile (ALL_GEN_FILES): make SVG files too.
14854
14855 2004-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
14856
14857         * scm/framework-svg.scm (dump-page): Implement landscape.
14858
14859 2004-12-18  Jan Nieuwenhuizen  <janneke@gnu.org>
14860
14861         * lily/main.cc (setup_paths): Add svg to search path.
14862
14863         * scm/output-svg.scm:
14864         * scm/framework-svg.scm: Add pageSet.  Update.
14865         (dump-fonts): New function.
14866         (output-framework): Use it.
14867
14868         * mf/GNUmakefile: 
14869         * buildscripts/gen-bigcheese-scripts.py: Also generate SVG font.
14870
14871 2004-12-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14872
14873         * tex/lilyponddefs.tex: comment out new ifpdf code.
14874
14875 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14876
14877         * GNUmakefile.in: 
14878         * SConstruct (symlink): Replace afm by otf.
14879
14880         * scm/framework-gnome.scm (gnome-main): Remove invocation of
14881         ly:pango-add-afm-decoder.
14882
14883         * lily/lily-guile.cc ("ly:pango-add-afm-decoder"): Build fix: Remove.
14884
14885 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14886
14887         * scm/output-ps.scm (new-text): don't access t glyph for getting
14888         space dimension.
14889
14890         * ly/init.ly: warn about \version
14891
14892         * lily/lexer.ll: set version-seen?
14893
14894 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14895
14896         * scm/output-svg.scm (string->entities): Update.
14897
14898 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14899
14900         * lily/main.cc (setup_paths): replace afm by otf for path. 
14901
14902         * lily/pangofc-afm-decoder.cc: remove.
14903
14904         * lily/include/pangofc-afm-decoder.hh: remove.
14905
14906         * scm/framework-scm.scm (output-framework): new file.
14907
14908         * mf/GNUmakefile: remove SAUTER_FONTS.
14909         remove SVG/sodipodi hacks.
14910
14911         * scm/lily-library.scm (stderr): move stderr.
14912
14913         * mf/GNUmakefile: remove AFM support.
14914
14915         * buildscripts/mf-to-table.py (base): remove AFM support.
14916
14917         * lily/open-type-font.cc (design_size): use design_size
14918
14919 2004-12-17  Pedro Kroger  <kroeger@pedrokroeger.net>
14920
14921         * lily/font-metric.cc (LY_DEFINE): Fix the docstring.
14922
14923 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14924
14925         * mf/GNUmakefile: Generate combined aybabtu info.
14926         * mf/aybabtu.pe.in (i): Load it.
14927
14928         * scm/framework-tex.scm (otf-font-load-command): Bugfix: subfonts
14929         are not symbols.
14930
14931         * lily/include/open-type-font.hh (count): New method.
14932
14933         * mf/aybabtu.pe.in: Typo.
14934
14935         * Documentation/user/out/lilypond-internals.nexi (Scheme
14936         functions): Typo.
14937
14938         * lily/include/guile-compatibility.hh (SCM_HASHTABLE_P): Add compat.
14939
14940 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14941
14942         * buildscripts/gen-bigcheese-scripts.py (i): use symbols for
14943         subfonts.
14944
14945         * scm/output-tex.scm (named-glyph): new function. This fixes TeX output.
14946
14947         * scm/framework-tex.scm (otf-font-load-command): load subfonts.
14948         (tex-font-command-raw): new function.
14949
14950         * lily/include/virtual-font-metric.hh (Module): remove file
14951
14952         * lily/virtual-font-metric.cc (Module): remove file.
14953         
14954
14955         * lily/open-type-font.cc (LY_DEFINE): ly:otf-font-glyph-info
14956         (get_indexed_char): read bbox from lily table if present.
14957
14958 2004-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14959
14960         * mf/GNUmakefile ($(outdir)/aybabtu.subfonts): rule for
14961         aybabtu.subfonts
14962
14963         * mf/feta-beugel.mf (y): don't number consecutively, instead, use
14964         global glyphname. Enables more than 64 glyphs in the OTF.
14965
14966 2004-12-16  Jan Nieuwenhuizen  <janneke@gnu.org>
14967
14968         * scm/font.scm (add-music-fonts): Load aybabtu iso all separate
14969         braces.
14970
14971         * lily/open-type-font.cc (design_size): Use 12 as default for
14972         design size.
14973
14974         * mf/aybabtu.pe.in: New file.  Merge all our braces.
14975
14976         * mf/GNUmakefile: Generate aybabtu.
14977
14978         * tex/lilyponddefs.tex: teTeX 3.0 pdfetex fix.
14979
14980 2004-12-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14981
14982         * scm/lily-library.scm (char->unicode-index): Remove.
14983
14984         * scm/output-gnome.scm (text): Bugfix for plain string input.
14985         Updates.
14986
14987         * scm/output-svg.scm (svg-font): Add weight to font selection.
14988
14989 2004-12-14  Mats Bengtsson  <mabe@s3.kth.se>
14990
14991         * Documentation/topdocs/INSTALL.texi (Top): Point to
14992         buildscripts/out/clean-fonts instead of
14993         buildscripts/clean-fonts.sh. 
14994
14995 2004-12-13  Graham Percival  <gperlist@shaw.ca>
14996
14997         * input/regression/figured-bass.ly: attempt to clarify text.
14998
14999         * Documentation/user/notation.tely: add cindex for tag, attempt to
15000         add figured bass example.
15001
15002         * Documentation/user/changing-defaults: basic editing.
15003
15004 2004-12-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15005
15006         * buildscripts/gen-bigcheese-scripts.py (i): load .subfonts table. 
15007
15008         * lily/open-type-font.cc (LY_DEFINE): new function
15009         ly:font-sub-fonts
15010
15011         * lily/include/font-metric.hh (struct Font_metric): new method
15012         sub_fonts()
15013
15014         * lily/vaticana-ligature-engraver.cc (transform_heads): replace
15015         . with - in add.stem.
15016         
15017 2004-12-13  Jan Nieuwenhuizen  <janneke@gnu.org>
15018
15019         * scm/encoding.scm (coding-alist): Fix encodings for fetaNumber
15020         and fetaDynamic.
15021
15022         * lily/rest.cc (glyph_name): Change - to . .
15023
15024         * scm/output-gnome.scm (text): Hello world, again.
15025
15026         * scm/output-svg.scm (named-glyph): New function.  Hello world!
15027
15028         * lily/modified-font-metric.cc (index_to_charcode): New method.
15029
15030         * lily/include/font-metric.hh (index_to_charcode): New function.
15031
15032         * lily/font-metric.cc (ly:font-glyph-name-to-charcode): Use it in
15033         new function.
15034         (ly:font-glyph-to-index): Remove.
15035
15036 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15037
15038         * lily/open-type-font.cc (make_index_to_charcode_map): new method.
15039
15040         * mf/feta-autometric.mf (code): remove tex name from fet_beginchar.
15041
15042         * lily/open-type-font.cc (load_scheme_table): new function
15043
15044         * lily/dots.cc (print): replace - 
15045
15046         * lily/open-type-font.cc (attachment_point): new function.
15047         (load_table): read LILC table
15048
15049         * buildscripts/gen-bigcheese-scripts.py (Module): new
15050         file. Generate FF scripts.
15051
15052         * mf/feta-din10.mf: idem.
15053
15054         * mf/feta-nummer10.mf: remove mf files.
15055
15056         * mf/feta-alphabet.mf (dynamic_design_size): merge din and number font.
15057
15058 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15059
15060         * lily/lily-guile.cc: Use scm_from_locale_stringn.
15061
15062         * lily/include/guile-compatibility.hh (scm_from_locale_stringn): Add
15063         compatibility.
15064
15065 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15066
15067         * lily/open-type-font.cc (get_indexed_char): scale metrics by
15068         design-size and units_per_EM.
15069
15070         * mf/bigcheese.pe.in: set PUA codepoints before loading din & nummer.
15071
15072 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15073
15074         * mf/bigcheese.pe.in (i): Map to 0xe000 (PUA) for testing, which
15075         does not crash fontforge.
15076
15077         * scm/lily-library.scm (char->unicode-index): Hack to map onto
15078         PUA.
15079
15080 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15081
15082         * scm/framework-ps.scm (ps-embed-cff): new function.
15083
15084         * lily/lily-guile.cc (LY_DEFINE): make ly:gulp-file binary proof.
15085
15086 2004-12-12  Werner Lemberg  <wl@gnu.org>
15087
15088         * mf/bigcheese.pe.in: Add PUA mapping.
15089         Don't create Type 42 but bare CFF font.
15090
15091 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15092
15093         * scm/output-gnome.scm (placebox): Hackery to get bigcheese symbols
15094         within canvas boundaries.
15095
15096         * mf/merge.pe.in: Set font names, version, license GPL.
15097
15098         * make/substitute.make: Add FONTFORGE.
15099
15100         * config.make.in (FONTFORGE): Add.
15101
15102         * configure.in (gui_b): Use PATH_PROG for fontforge.
15103
15104 2004-12-11  Graham Percival  <gperlist@shaw.ca>
15105
15106         * scm/define-markup-commands.scm: add baseline-skip to info
15107         about \column.
15108
15109 2004-12-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15110
15111         * lily/font-metric.cc (ly:font-get-glyph-index): New function.
15112
15113         * scm/output-gnome.scm (named-glyph): Use it.
15114
15115         * scm/lily.scm (ly:all-stencil-expressions): Add named-glyph.
15116
15117         * flower/string.cc (substitute_char): Rename, rewrite, modify this.
15118         (upper_string, lower_string, reverse_string): Remove.
15119
15120         * configure.in (fontforge): Reinstate version check.
15121
15122         * ly/engraver-init.ly: Fix clef glyph names.
15123
15124         * lily/time-signature.cc (special_time_signature): Fix fraction
15125         glyph names.
15126
15127 2004-12-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15128
15129         * mf/merge.pe: new file.
15130
15131         * lily/freetype.cc: new file.
15132
15133         * lily/include/open-type-font.hh (class Open_type_font): new file.
15134
15135         * lily/include/freetype.hh: new file.
15136
15137         * lily/open-type-font.cc: new file.
15138
15139         * lily/all-font-metrics.cc (find_otf): new function.
15140
15141 2004-12-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15142
15143         * lily/time-signature.cc (special_time_signature): Fix.
15144
15145         * configure.in (PKG_CONFIG_PATH): Remove stray `i'.  Check for
15146         GTK2 before checking for pango.  Fixes -fgnome.
15147
15148         * lily/font-metric.cc (LY_DEFINE): Also rename C name to match
15149         Scheme name.
15150
15151         * scm/define-markup-commands.scm:
15152         * scm/safe-lily.scm: Bugfix: ly:font-by-name.
15153
15154         * configure.in: Require makeinfo 4.7 (needed for @ifdocbook).
15155
15156         * stepmake/aclocal.m4 (STEPMAKE_GET_VERSION): Grok fontforge-like
15157         date versions.  Fixes configure.
15158         (STEPMAKE_CHECK_VERSION): Support optional actual program version
15159         argument.
15160
15161 2004-12-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15162
15163         * buildscripts/mf-to-table.py (write_ps_encoding): write real
15164         names in .enc
15165
15166         * lily/*.cc: use '.' iso. '-' for separating glyph name elements.
15167
15168 2004-12-09  Graham Percival  <gperlist@shaw.ca>
15169
15170         * Documentation/user/changing-defaults.itely: add info about
15171         make-dynamic-script
15172
15173         * Documentation/user/notation.itely: add link in dynamics to
15174         section about make-dynamic-script.
15175
15176 2004-12-09  Christian hitz  <chhitz@gmx.net>
15177
15178         * lily/lily-guile.cc: change MACOS_X to __APPLE__
15179
15180 2004-12-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15181
15182         * buildscripts/mf-to-table.py (parse_logfile): use . for
15183         concatting name and group.
15184         (parse_logfile): use M for Minus (negative.)
15185
15186         * lily/include/type-swallow-translator.hh
15187         (DECLARE_EVENT_SWALLOWER): ENTER_DESCRIPTION -> ADD_TRANSLATOR
15188
15189         * lily/*.cc: cosmetics around = sign.
15190
15191         * lily/paper-column.cc (Paper_column): copy rank_. This fixes
15192         lyric spacing on the penultimate column.
15193
15194 2004-12-05  Christian Hitz  <chhitz@gmx.net>
15195
15196         * configure.in:
15197         * lily/accidental-placement.cc:
15198         * lily/bar-line.cc:
15199         * lily/beam-concave.cc:
15200         * lily/beam-quanting.cc:
15201         * lily/beam.cc:
15202         * lily/bezier-bow.cc:
15203         * lily/bezier.cc:
15204         * lily/break-align-interface.cc:
15205         * lily/custos.cc:
15206         * lily/dimension-cache.cc:
15207         * lily/dot-column.cc:
15208         * lily/font-metric.cc:
15209         * lily/font-select.cc:
15210         * lily/gourlay-breaking.cc:
15211         * lily/grob-property.cc:
15212         * lily/grob.cc:
15213         * lily/lily-guile.cc:
15214         * lily/line-spanner.cc:
15215         * lily/lookup.cc:
15216         * lily/lyric-extender.cc:
15217         * lily/lyric-hyphen.cc:
15218         * lily/mensural-ligature.cc:
15219         * lily/midi-def.cc:
15220         * lily/misc.cc:
15221         * lily/note-collision.cc:
15222         * lily/note-column.cc:
15223         * lily/note-head.cc:
15224         * lily/paper-outputter.cc:
15225         * lily/percent-repeat-item.cc:
15226         * lily/rest-collision.cc:
15227         * lily/side-position-interface.cc:
15228         * lily/simple-spacer.cc:
15229         * lily/slur-configuration.cc:
15230         * lily/slur-scoring.cc:
15231         * lily/slur.cc:
15232         * lily/spaceable-grob.cc:
15233         * lily/spacing-spanner.cc:
15234         * lily/spanner.cc:
15235         * lily/staff-symbol-referencer.cc:
15236         * lily/stem.cc:
15237         * lily/stencil.cc:
15238         * lily/system-start-delimiter.cc:
15239         * lily/system.cc:
15240         * lily/text-item.cc:
15241         * lily/tie.cc:
15242         * lily/tuplet-bracket.cc:
15243         * lily/vaticana-ligature.cc: Fix for MacOS X: use <math.h> instead of
15244         <cmath> beacause isinf/isnan is undefined in <cmath>
15245
15246 2004-12-03  Mats Bengtsson  <mabe@s3.kth.se>
15247
15248         * cygwin/lily-wins.py (stat): remove old flag -p when calling lilypond.
15249
15250 2004-12-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15251
15252         * VERSION: release 2.5.3
15253         
15254 2004-11-29  Arno Waschk <arno@arnowaschk.de>
15255
15256         * mf/feta-schrift.mf: added <>-like articulation mark as "espressivo"
15257
15258 2004-12-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15259
15260         * scm/music-functions.scm (cue-substitute): voice counts start at 0.
15261
15262         * lily/note-head.cc (internal_print): always try the "s" head if
15263         u/d not found.
15264
15265         * scm/titling.scm (marked-up-headfoot): reinstate default tagline.
15266
15267 2004-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15268
15269         * mf/parmesan-heads.mf (overdone_heads): typos.
15270
15271 2004-11-30  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15272
15273         * lily/parser.yy (markup): in markups, { .. } without command
15274         before are also flattened, ie \line must be explicitely used.
15275
15276         * Documentation/user/changing-defaults.itely:
15277         * Documentation/user/notation.itely: 
15278         * input/wilhelmus.ly: 
15279         * input/regression/instrument-name-markup.ly: 
15280         * input/regression/markup-score.ly: 
15281         * input/regression/new-markup-scheme.ly: 
15282         * input/regression/new-markup-syntax.ly: 
15283         * input/test/coriolan-margin.ly: use \line in markups where
15284         appropriate
15285         
15286 2004-11-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15287
15288         * scm/new-markup.scm (map-markup-command-list): helper function
15289         used in parser.yy to map markup commands on a markup list.
15290
15291         * lily/parser.yy: get rid off < > in markups by treating { } as
15292         real lists.
15293
15294         * lily/lexer.ll: remove < > from markup lexer mode.
15295
15296         * scripts/convert-ly.py (conv): add rule for converting 
15297         \markup < > to \markup { }
15298
15299         * ly/titling-init.ly: 
15300         * input/test/coriolan-margin.ly: 
15301         * input/regression/new-markup-syntax.ly: 
15302         * input/regression/new-markup-scheme.ly: 
15303         * input/regression/multi-measure-rest-text.ly: 
15304         * input/regression/markup-stack.ly: 
15305         * input/regression/markup-score.ly: 
15306         * input/regression/instrument-name-markup.ly: 
15307         * input/mutopia/W.A.Mozart/mozart-hrn-3.ly: 
15308         * input/mutopia/R.Schumann/romanze-op28-2.ly: 
15309         * input/mutopia/J.S.Bach/wtk1-fugue2.ly: 
15310         * input/wilhelmus.ly: 
15311         * Documentation/user/notation.itely: 
15312         * Documentation/user/music-glossary.tely: 
15313         * Documentation/user/changing-defaults.itely: change < > to { } in
15314         markups
15315
15316 2004-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15317
15318         * lily/accidental-placement.cc (position_accidentals): shortcut if
15319         no accidentals to place.
15320
15321 2004-11-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15322
15323         * scm/define-grob-properties.scm (all-user-grob-properties): fixed
15324         typo s/ly:dimension ?/ly:dimension?/
15325
15326         * input/regression/lily-in-scheme.ly: 
15327         * input/regression/music-function.ly: 
15328         * ly/spanners-init.ly (assertBeamSlope): 
15329         * scm/music-functions.scm (def-grace-function): add the paper
15330         argument to music function definitions.
15331
15332 2004-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15333
15334         * lily/moment.cc (LY_DEFINE):
15335         ly:moment-main-{denominator,numberator}, new function.
15336
15337         * lily/score-engraver.cc (typeset_all): assign to column on basis
15338         of axis-group-parent-X setting.
15339
15340         * lily/axis-group-engraver.cc (process_acknowledged_grobs): do
15341         add_element() on basis of axis-group-parent-Y setting.
15342
15343         * lily/grob.cc: add axis-group-parent-{XY} properties.
15344
15345         * input/regression/spacing-stick-out.ly: new file.
15346
15347         * lily/simple-spacer.cc (add_columns): use binary search for
15348         setting column rods. Changes O(n^2) to O(n log(n)) for
15349         constructing spacing problem from columns.
15350         (add_columns): read allow-outside-line to make sure no texts stick
15351         out.
15352         (solve): Simple_spacer::is_active() only determines
15353         satisfies_constraints_ for non-ragged typesetting.
15354
15355         * lily/simultaneous-music.cc (to_relative_octave): only set
15356         old_relative_used if return pitch actually changed.
15357
15358         * scm/define-context-properties.scm
15359         (all-user-translation-properties): change to match implementation.
15360
15361         * python/lilylib.py: Replace re.match by re.search and adds "-c
15362         showpage" to the gs command line (Johannes Schindelin)
15363
15364         * scm/framework-ps.scm (output-preview-framework): sanitize bbox
15365         before processing. Prevents crash when inf is in the extent.
15366
15367         * scm/define-markup-commands.scm (note-by-number): add "s" to
15368         "noteheads-" glyphname.
15369  
15370         * lily/parser.yy (Generic_prefix_music): supply parser argument to
15371         music function as well.
15372         
15373 2004-11-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15374
15375         * VERSION: release 2.5.2
15376
15377         * Documentation/user/changing-defaults.itely (Creating titles):
15378         add breakbefore variable.
15379
15380         * lily/paper-book.cc (set_system_penalty): new function. Set
15381         penalty_ based on breakBefore setting
15382
15383         * lily/context-specced-music-iterator.cc (construct_children):
15384         interpret special context id $uniqueContextId 
15385
15386         * lily/context.cc (create_unique_context): new method. Move
15387         creation of unique (\new) contexts into interpreting phase. This
15388         makes
15389
15390           foo= \new Staff ..
15391           << \foo \foo >>
15392
15393         produce 2 staves.
15394         
15395
15396         * scm/define-music-properties.scm (all-music-properties): add
15397         quoted-voice-direction
15398
15399         * ly/music-functions-init.ly: killCues function.
15400
15401         * scm/music-functions.scm (cue-substitute): move creation of voice
15402         contexts further to the back. 
15403
15404 2004-11-25  Werner Lemberg  <wl@gnu.org>
15405
15406         * tex/GNUmakefile ($(outdir)/latin1.enc): Replace `/minus' with
15407         `/hyphen' in encoding vector to get correct glyph name for EC fonts.
15408
15409 2004-11-24  Erik Sandberg  <ersa9195@student.uu.se>
15410
15411         * buildscripts/guile-gnome.sh: Fixed typo.
15412
15413 2004-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15414
15415         * lily/lexer.ll: add < >  to markup lexer mode (backportme)
15416
15417         * scripts/abc2ly.py (dump_slyrics): add ord(). 
15418
15419         * lily/note-heads-engraver.cc (process_music): add shapeNoteStyles
15420         to regular engraver. 
15421
15422 2004-11-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15423
15424         * mf/feta-bolletjes.mf (triangle): rewrite solfa heads.
15425
15426 2004-11-22  Jan Nieuwenhuizen  <janneke@gnu.org>
15427
15428         * scm/define-markup-commands.scm (fill-line): Typo.
15429
15430         * buildscripts/guile-gnome.sh (GGVERSION): Build update for 2.7.96
15431         and newer.
15432
15433 2004-11-22  Erik Sandberg  <ersa9195@student.uu.se>
15434
15435         * ly/dynamic-scripts-init.ly: Fixed typo.
15436
15437 2004-11-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15438
15439         * mf/feta-bolletjes.mf (overdone_heads): cleanup triangle
15440         note-head, to have different attachment points for up and down.
15441
15442         * mf/feta-bolletjes.mf: merge solfa heads into main note heads.
15443
15444         * mf/feta-generic.mf (else): remove solfa.
15445
15446         * mf/feta-bolletjes.mf (tishape): remove unicode test.
15447
15448         * scm/define-context-properties.scm
15449         (all-user-translation-properties): add shapeNoteStyles property.
15450
15451         * lily/shape-note-heads-engraver.cc (process_music): new file.
15452
15453         * lily/event.cc (transpose): call Event::transpose() for
15454         transposing the tonic.
15455
15456 2004-11-21  Jan Nieuwenhuizen  <janneke@gnu.org>
15457
15458         * scm/output-gnome.scm: Save some pointers about pango/fontconfig
15459         Unicode/OpenType and AFM.
15460
15461         * lily/include/guile-compatibility.hh (scm_from_bool): Add.
15462
15463 2004-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15464
15465         * lily/grob.cc (Grob): idem. Plugs mem leaks. 
15466
15467         * lily/context.cc (Context): unprotect key from ctor.
15468
15469         * scm/stencil.scm (stack-lines): return empty-stencil if argument
15470         is '()
15471         (stack-stencils): idem.
15472
15473         * Documentation/user/changing-defaults.itely (Creating titles):
15474         document new title layout options.
15475
15476         * lily/parser.yy (lilypond_header_body): copy previous
15477         $globalheader if present.
15478
15479         * lily/ly-module.cc (LY_DEFINE): rename ly:import-module to
15480         ly:module-copy
15481         
15482         * scm/page-layout.scm (marked-up-headfoot): remove old functions.
15483
15484         * scm/titling.scm: remove old titling functions
15485
15486         * lily/stencil.cc (translate): remove absolute dimension.
15487
15488         * ly/titling-init.ly (oddFooterMarkup): new file. Generate titles
15489         via markup.
15490
15491         * scm/page-layout.scm (marked-up-headfoot): create header/footer
15492         field from user-supplied markup
15493
15494         * scm/define-markup-commands.scm (on-the-fly): new markup
15495         command. Enter SCM markup procedure directly in Scheme.
15496         (fromproperty): new markup command. Read markup from props argument.
15497
15498         * scm/titling.scm (marked-up-title): create title via
15499         user-specified markup. 
15500
15501         * scm/define-markup-commands.scm (column): remove empty stencils
15502         from column.
15503
15504         * lily/ly-module.cc (LY_DEFINE): use ly_module_lookup(). This does
15505         not have side-effect of creating variable stub.
15506
15507         * lily/stencil-scheme.cc (LY_DEFINE): add ly:stencil-empty?
15508
15509 2004-11-21  Jan Nieuwenhuizen  <janneke@gnu.org>
15510
15511         * scm/encoding.scm (coding-alist): 
15512         * scm/font.scm (add-ec-fonts):
15513         * ly/paper-defaults.ly: Use actual name for EC fontencoding:
15514         Extended-TeX-Font-Encoding---Latin.
15515
15516         * lily/side-position-interface.cc (general_side_position): Add
15517         actual offset to error message (avoid constant error messages).
15518
15519         * lily/all-font-metrics.cc (find_font): Add "lm" to try-AFM-first
15520         block.
15521
15522         * lily/font-select.cc (select_encoded_font)
15523         (get_font_by_mag_step, get_font_by_design_size): 
15524         * lily/modified-font-metric.cc (Modified_font_metric): 
15525         * lily/paper-def.cc (find_scaled_font): Add font_encoding parameter.
15526
15527         * scm/encoding.scm (coding-alist): Add fetaDynamic.
15528         (read-encoding-file): Bugfix: do not require space after bracket.
15529
15530         * scm/font.scm (add-cork-lm-fonts): Remove lmbxi8 and lmbxi14,
15531         these do not exist.
15532
15533 2004-11-20  Graham Percival  <gperlist@shaw.ca>
15534
15535         * Documentation/user/notation.itely: added info about typesetting
15536         boxed bar numbers.
15537
15538 2004-11-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15539
15540         * flower/interval.cc (T_to_string): gcc4 fixes.
15541
15542         * scm/define-markup-commands.scm (fill-line): use
15543         stack-stencils. This fixes problems with putting already centered
15544         stencils in a line.
15545
15546         * VERSION: release 2.5.1
15547
15548         * lily/bar-line.cc (get_staff_bar_size): add line thickness.
15549
15550 2004-11-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15551
15552         * input/example-[1-3].ly: simplify.
15553
15554         * lily/cluster-engraver.cc (try_music): react to busy-playing-event
15555
15556         * scm/output-ps.scm (new-text): new function. Use glyphshow to
15557         show glyphs.
15558
15559         * scm/encoding.scm (decode-byte-string): new function.
15560
15561         * scripts/convert-ly.py (conv): add warning about
15562         set-global-staff-size.
15563
15564         * Doxyfile: add. 
15565
15566         * scripts/convert-ly.py (conv): add raggedlastbottom rule
15567         (conv): warn for TextSpanner split.
15568         (conv): warn for textheight.
15569
15570 2004-11-19  Jan Nieuwenhuizen  <janneke@gnu.org>
15571
15572         * GNUmakefile.in (install-WWW): Invoke install-info, so that when
15573         building the documentation, info with images are installed.
15574         (final-install): Fix description.  Mention sourcing of login
15575         scripts (instead of running).
15576
15577 2004-11-18  Jan Nieuwenhuizen  <janneke@gnu.org>
15578
15579         * Debian lmodern support.  Note that LilyPond will issue warnings
15580         
15581             no such encoding: "FontSpecific"
15582
15583           The font selection mechanism wants to get the encoding from the
15584           font itself, but the idea of lmodern is that it is usable with
15585           different encodings, ie, Lily should get the encoding from the
15586           font tree, rather than the font itself.  This would require some
15587           more work.
15588         
15589         * configure.in: Test for and accept lmodern if EC fonts not found.
15590
15591         * scm/framework-tex.scm (font-load-command): TeX font name
15592         mangling for latin1 encoded cork-lm fonts.
15593         (convert-to-ps): Load lm.map if available.
15594
15595         * ly/paper-defaults.ly: Use cork-lm encoding if ec is not
15596         available.
15597
15598         * scm/encoding.scm (coding-alist): Add cork-lm encoding.
15599
15600         * scm/font.scm: Add header.  Autoload cork-lm and ec fonts if
15601         available.
15602
15603         * lily/kpath.cc (ly_kpathsea_find_file): Rename.  Do not use
15604         path for absolute file name, that is silly.
15605
15606         * lily/score-engraver.cc (initialize): 
15607
15608         * Documentation/user/GNUmakefile (local-install-info): Invoke
15609         install-info --remove first.
15610
15611         * #include cleanup (Andreas Scherer).
15612
15613 2004-11-18  Heikki Junes  <hjunes@cc.hut.fi>
15614
15615         * input/test/script-abbreviations.ly: fix typos.
15616
15617 2004-11-17  Werner Lemberg  <wl@gnu.org>
15618
15619         * python/lilylib.py (options_help_str): Support pretty-printing of
15620         newlines in fourth element of option description.
15621
15622         * scripts/lilypond-book.py (option_definitions): Use new lilylib
15623         feature.
15624         Sort options.
15625
15626         * Documentation/user/lilypond-book.itely: Finish update.
15627
15628 2004-11-17  Jan Nieuwenhuizen  <janneke@gnu.org>
15629
15630         * Documentation/user/macros.itexi: Add comment about \command.
15631
15632         * Documentation/user/lilypond.tely:
15633         * Documentation/user/lilypond-book.itely: Fix names of lilypond
15634         and lilypond-book nodes, so that `info lilypond' visits the manual
15635         at top level, and `info lilypond-book' visits the lilypond-book
15636         section.
15637
15638         * Documentation/user/GNUmakefile (local-install-info): Fix rules
15639         and packager messages.
15640
15641         * lily/pangofc-afm-decoder.cc: Update test.
15642
15643 2004-11-16  Jan Nieuwenhuizen  <janneke@gnu.org>
15644
15645         * scm/lily-library.scm (char->unicode-index): New function.
15646
15647         * scm/output-gnome.scm: 
15648         * scm/output-svg.scm: Cleanup.  Map custom fonts to PUA.
15649
15650         * Proper naming of file name throughout; s/filename/file[-_]name/.
15651
15652         * lily/modified-font-metric.cc ("ly:font-encoding"): New function.
15653
15654         * lily/pangofc-afm-decoder.cc (pango_fc_afm_get_glyph): Map onto PUA.
15655
15656 2004-11-16  Werner Lemberg  <wl@gnu.org>
15657
15658         * scripts/lilypond-book.py: The Lord has commanded me to use only
15659         tabs for indentation.  Your humble servant obeys.
15660
15661 2004-11-16  Jan Nieuwenhuizen  <janneke@gnu.org>
15662
15663         * scm/output-svg.scm: Font fixes.  Sodipodi now groks svg
15664         including font, if LilyPond-feta font is only feta font in path.
15665
15666         * scm/output-gnome.scm (text): Revert to file name of font if font
15667         has no name.  Fixes ec font selection.
15668         (char): Bugfix: do not utf8 twice.  Fixes clefs.
15669
15670         * scm/framework-svg.scm:
15671         * scm/output-svg.scm: New file.  TODO: figure out how to
15672         do character by index in font.
15673
15674         * scm/output-sodipodi.scm: Remove.
15675
15676         * scm/output-ps.scm (stem): Remove.
15677
15678 2004-11-15  Jan Nieuwenhuizen  <janneke@gnu.org>
15679
15680         * scm/output-gnome.scm (beam): New function.
15681         (slur): Round corners.
15682         (round-filled-box): Round corners.
15683
15684 2004-11-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15685
15686         * scm/output-gnome.scm (beam): add function.
15687         (draw-line): new routine.
15688         (dashed-line): stub; call draw-line
15689         (polygon): new routine.
15690
15691 2004-11-15  Werner Lemberg  <wl@gnu.org>
15692
15693         * Documentation/user/lilypond-book.itely: Revise section on
15694         lilypond-book options.
15695         Other minor fixes.
15696
15697         * scripts/lilypond-book.py: Change indentation to 4.
15698         Minor formatting.
15699
15700 2004-11-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15701
15702         * lily/system.cc (apply_tweaks): new function. Run tweaks on all
15703         grobs that have tweaks specced.
15704         
15705 2004-11-14  Heikki Junes  <hjunes@cc.hut.fi>
15706
15707         * Documentation/user/sound-output.itexi: add code snippets for MIDI.
15708
15709 2004-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
15710
15711         * lily/font-metric.cc (get_indexed_char_stencil): Bugfix: get
15712         actual char #, not 0 based index.
15713
15714         * lily/system-start-delimiter.cc (staff_brace): Start at 65.
15715
15716         * mf/feta-beugel.mf: Actually start at char #65.  Add header.
15717         Warning: do make -C mf clean.
15718
15719         * lily/context-property.cc: Compile fix.
15720
15721         * scm/output-gnome.scm: Add ec-fonts-mftraced to ~/.fonts.conf.
15722         Grok ec-fonts, braces and dynamics.
15723
15724         * scm/framework-gnome.scm (gnome-main): Register braces with pango.
15725
15726 2004-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15727
15728         * lily/include/tweak-registration.hh: new file.
15729
15730         * lily/tweak-registration.cc: new file.
15731
15732         * scm/framework-gnome.scm (save-tweaks): use new key mechanism for
15733         saving tweaks.
15734
15735         * scm/output-gnome.scm (text): comment dribble.
15736
15737 2004-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
15738
15739         * lily/pangofc-afm-decoder.cc (main): Test more feta fonts.
15740
15741         * scm/output-gnome.scm (bezier-sandwich): New function.  Reset
15742         path-def before using.  Fixes muchtomany slurs in wrong places
15743         bug.
15744
15745 2004-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15746
15747         * lily/grob-scheme.cc (LY_DEFINE): add new function ly:grob-key.
15748
15749         * lily/include/object-key-undumper.hh (Module): new file.
15750
15751         * lily/object-key-undumper.cc (Module): New file. Deserialize
15752         keys. SCM bindings
15753
15754         * lily/object-key-dumper.cc (Object_key_dumper): idem.
15755         Provide SCM bindings.
15756
15757         * lily/include/object-key-dumper.hh (class Object_key_dumper): 
15758         new file. Serialize object keys.
15759         
15760         * lily/object-key.cc (dump): new function.
15761         (as_scheme): new virtual function
15762         (undump): new function
15763         (undumpers): new table.
15764
15765         * lily/include/global-context.hh (Context): take \score key upon init.
15766
15767         * lily/object-key-dumper.cc (serialize_key): new file.
15768
15769         * lily/include/object-key-dumper.hh (class Object_key_dumper): new file.
15770
15771         * lily/lily-lexer.cc: remove \quote.
15772
15773         * lily/lookup.cc (triangle): rewrite, obviating symmetric_x_triangle().
15774
15775         * lily/context.cc (Context): take key argument in ctor.
15776         (create_context): new function
15777
15778         * lily/grob.cc (Grob): take key argument in ctor.  
15779
15780         * lily/lilypond-key.cc (do_compare): new file.
15781
15782         * lily/object-key.cc (Object_key): new file.
15783
15784         * lily/include/object-key.hh (class Object_key): new file.
15785
15786         * lily/include/lilypond-key.hh (class Lilypond_context_key): new file.
15787
15788 2004-11-13  Graham Percival  <gperlist@shaw.ca>
15789
15790         * Documentation/user/lilypond-book.itely: add small warning about
15791         noindent default in lilypond-book.
15792
15793         * Documentation/user/converters.itely: add examples for convert-ly.
15794
15795         * Documentation/user/examples.itely: change version string in templates
15796         to 2.4.0.
15797
15798 2004-11-12  Karl Hammar  <karl@aspodata.se>
15799
15800         * GNUmakefile.in (local-WWW-post): `find ...` overflows the
15801         cmdline, use xargs instead (backportme)
15802
15803 2004-11-10  Andreas Scherer  <andreas_mutopia@freenet.de>
15804         
15805         * Documentation/user/: Numerous fixes in the user manual.
15806
15807 2004-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15808
15809         * lily/parser.yy (re_rhythmed_music): search music expression for
15810         context-id, surround by \new Voice if not found. Fixes:
15811         addlyrics-second-staff.ly
15812
15813         * VERSION: 2.5.0 released.
15814         
15815 2004-11-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15816
15817         * Documentation/index.html.in: Fix url to one big page.  (backportme)
15818
15819         * Documentation/user/GNUmakefile: Separate rules for split and
15820         unsplit html documents.  Remove perl massaging.  (backportme)
15821
15822 2004-11-11  Graham Percival  <gperlist@shaw.ca>
15823
15824         * Documentation/user/lilypond-book.itely: add short warning about
15825         \lilypond{} in LaTeX docs.
15826
15827 2004-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15828
15829         * stepmake/aclocal.m4: Barf if kpathsea/kpathsea.h is not
15830         found.  (backportme)
15831
15832         * Documentation/topdocs/INSTALL.texi (ec-fonts-mtraced): Add
15833         version requirement.  (backportme)
15834
15835         * configure.in: Be explicit about old versions of
15836         ec-fonts-mtraced.  (backportme)
15837
15838         * lily/context-selector.cc (set_tweaks): New function.
15839         * lily/grob-selector.cc (set_tweaks): (Re)set hash table.  Fixes
15840         web with -DTWEAK.
15841
15842         * Documentation/user/introduction.itely (Automated engraving):
15843         Remove fragment option.  Fixes web.
15844
15845         * lily/context-property.cc (make_item_from_properties):
15846         * lily/context.cc (add_context)[TWEAK]: Tweak registration behind
15847         #ifdef.
15848
15849         * scm/define-context-properties.scm
15850         (all-internal-translation-properties): Add tweakRank and tweakCount.
15851
15852         * lily/grob.cc: 
15853         * scm/define-grob-properties.scm (all-internal-grob-properties):
15854         Add tweak-rank and tweak-count.
15855
15856 2004-11-10  Jan Nieuwenhuizen  <janneke@gnu.org>
15857
15858         * scm/output-gnome.scm (string->utf8-string, char->utf8-string):
15859         New function.
15860         (text): Use them.
15861
15862         * scm/framework-gnome.scm (item-event): Add support from TLA.  Support
15863         animated/opaque grob dragging tweaks.
15864
15865         * buildscripts/guile-gnome.sh: Update.
15866
15867 2004-11-10  Mats Bengtsson  <mabe@s3.kth.se>
15868
15869         * scm/define-grobs.scm (all-grob-descriptions): Added
15870         line-interface to the LigatureBracket object.
15871
15872 2004-11-10  Jan Nieuwenhuizen  <janneke@gnu.org>
15873
15874         * scm/framework-gnome.scm (item-event): Support non-animated mouse
15875         dragging tweaks.
15876
15877         * lily/lily-guile.cc (ly_to_string, ly_to_symbol): New function.
15878
15879         * lily/context-selector.cc (store_context): New function.
15880
15881         * lily/grob-selector.cc (register_grob)[TWEAK]: Apply tweak.
15882         (store_grob): New function.
15883         (identify_grob): Add Moment parameter.
15884
15885         * lily/lily-parser.cc (parse_file)[TWEAK]: Read .ly.t file if it
15886         exists.
15887
15888         * scm/framework-gnome.scm (save-tweaks): Write as alist.
15889
15890 2004-11-09  Jan Nieuwenhuizen  <janneke@gnu.org>
15891
15892         * scm/framework-gnome.scm (item-event): Print grob id.
15893         (save-tweaks): New function.
15894         (tweak): New funtion.
15895         (item-event): Use it, bound to arrow keys.
15896
15897         * lily/context-property.cc (make_item_from_properties): Register grob.
15898         * lily/context.cc (add_context): Register context.
15899
15900         * lily/include/context-selector.hh:
15901         * lily/include/grob-selector.hh:
15902         * lily/context-selector.cc:
15903         * lily/grob-selector.cc: New file.
15904
15905 2004-11-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15906
15907         * lily/slur.cc: add 'positions to interface
15908
15909         * lily/main.cc: reinstate PS as standard output format. 
15910
15911         * scm/framework-tex.scm (output-preview-framework): print systems
15912         up to first non title system.
15913
15914         * lily/grace-engraver.cc (start_translation_timestep): split
15915         scm_cadddr
15916         
15917 2004-11-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15918
15919         * lily/quote-iterator.cc (Module): remove old quote-iterator
15920
15921         * scm/define-music-types.scm (music-descriptions): move
15922         NewQuoteMusic over QuoteMusic
15923
15924         * Documentation/user/notation.itely (Formatting cue notes): use
15925         \cueDuring.
15926
15927         * lily/new-quote-iterator.cc (quote_ok): new function.
15928
15929         * input/regression/quote-cue-during.ly: new file.
15930
15931         * input/regression/quote-grace.ly: new file.
15932
15933         * scm/define-context-properties.scm (Module): change definition of
15934         graceSettings
15935
15936         * lily/context-property.cc (Module): rename from
15937         translator-property.cc
15938
15939         * lily/context.cc (context_name_symbol): new function
15940
15941         * lily/grace-engraver.cc: new file. Set properties for grobs based
15942         on the grace-ness of now_moment().
15943
15944         * scm/music-functions.scm (add-grace-property): use list
15945         iso. vector for graceSettings
15946         remove set-{start,stop}-grace-properties. 
15947
15948         * lily/new-quote-iterator.cc (construct_children): set
15949         quote_outlet_ if no quoted-context-{id,type} specified.
15950
15951         * scripts/convert-ly.py (conv): \quote -> \quoteDuring.
15952
15953         * lily/parser.yy (command_element): remove \quote.
15954
15955         * ly/music-functions-init.ly (location): add quoteDuring music
15956         function. 
15957
15958         * lily/lexer.ll: allow \encoding in lyrics as well.  Remove
15959         optional semicolon. (backportme)
15960
15961 2004-11-06  Jan Nieuwenhuizen  <janneke@gnu.org>
15962
15963         * python/GNUmakefile (STEPMAKE_TEMPLATES): Unset USER_LDFLAGS, no
15964         need to link to GUILE et al.
15965
15966 2004-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15967
15968         * scm/define-music-properties.scm (all-music-properties): add
15969         quoted-context-type, quoted-context-id.
15970
15971         * scm/lily.scm (type-check-list): new function.
15972         
15973         * scm/lily-library.scm: new file. Generic library routines.
15974
15975         * lily/parser.yy (Generic_prefix_music): move typechecking out of
15976         parser.
15977
15978         * ly/music-functions-init.ly: add quoteDuring function.
15979
15980         * lily/include/music-iterator.hh (class Music_iterator): rename
15981         set_translator -> set_context
15982
15983         * lily/parser.yy (Generic_prefix_music_scm): add
15984         MUSIC_FUNCTION_SCM_SCM_MUSIC
15985
15986         * scm/lily.scm (sanitize-command-option): new function. (backportme)
15987
15988         * scm/framework-tex.scm (header): sanitize TeX paper size.
15989         (backportme)
15990
15991 2004-11-06  Jan Nieuwenhuizen  <janneke@gnu.org>
15992
15993         * elisp/lilypond-indent.el (LilyPond-indent-level): 2 is now standard.
15994
15995         * tex/lilyponddefs.tex: If no inputencoding use latin1.  (backportme)
15996
15997         * scm/framework-tex.scm (font-load-command): Use T1 if no
15998         font-encoding set.  (backportme)
15999
16000         * scm/lily.scm (postscript->pdf): Remove .pdf file if it
16001         exists before converting.  (backportme)
16002
16003         * scm/framework-tex.scm (convert-to-dvi): Remove .dvi file if it
16004         exists before converting.  (backportme)
16005         (convert-to-ps): Remove .ps file if it exists before
16006         converting.  (backportme)
16007
16008         * lily/lexer.ll: Remove extra progress newline, use present tense.
16009
16010         * scm/paper.scm (paper-alist): public.
16011         * scm/framework-tex.scm (convert-to-ps):
16012         * scm/lily.scm (postscript->pdf): Do not leak papersizename into
16013         command line.
16014
16015 2004-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16016
16017         * scm/lily.scm (ly:system): add > /dev/null 2>&1 . (backportme)
16018
16019         * lily/recording-group-engraver.cc (derived_mark): mark
16020         now_events_. (backportme)
16021
16022 2004-11-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16023
16024         * mf/GNUmakefile: use Fedora-3 in download link. (backportme.)
16025
16026         * scm/framework-tex.scm (convert-to-dvi): use ly:system for
16027         invoking latex. (backportme.)
16028
16029         * lily/stem.cc (off_callback): center stems for all rest stems.
16030
16031 2004-11-05  Werner Lemberg  <wl@gnu.org>
16032
16033         * Documentation/user/lilypond.tely: Add more guidelines for writing
16034         lilypond texinfo documents.
16035
16036 2004-11-05  Heikki Junes  <hjunes@cc.hut.fi>
16037
16038         * Documentation/index.html.in: remove <hr>.
16039
16040         * THANKS: change 2.3 to 2.4.
16041
16042 2004-11-05  Jan Nieuwenhuizen  <jannneke@gnu.org>
16043
16044         * scm/output-gnome.scm: More fontconfig comment.
16045
16046 2004-11-05  Pedro Kroger  <kroeger@pedrokroeger.net>
16047
16048         * GNUmakefile.in ($(builddir)/share/lilypond-force): create the
16049         <package> directory in $(builddir)/share according with
16050         PACKAGE_NAME defined in the VERSION file.
16051
16052 2004-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16053
16054         * lily/beam.cc (rest_collision_callback): use local beam
16055         multiplicity.
16056
16057         * input/regression/stem-stemlet.ly: new file.
16058
16059         * lily/stem.cc (add_head): store rests as well.
16060
16061         * scm/define-grob-properties.scm (all-user-grob-properties): add
16062         stemlet-length
16063
16064         * lily/stem.cc: store rests as well.
16065         
16066         * input/regression/new-slur.ly: mention forcing.
16067
16068 2004-11-04  Werner Lemberg  <wl@gnu.org>
16069
16070         * Documentation/user/*: A new round of layout fixes and document
16071         structure cleanup.
16072
16073 2004-11-04  Heikki Junes <hjunes@cc.hut.fi>
16074
16075         * Documentation/user/lilypond.tely: changes 2.3.x to 2.5.x.
16076
16077 2004-11-04  Jan Nieuwenhuizen  <janneke@gnu.org>
16078
16079         * Documentation/topdocs/INSTALL.texi (Top): Remove geometry.
16080
16081 2004-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
16082
16083         * Documentation/topdocs/INSTALL.texi (Top): Fix geometry url (dax).
16084
16085         * lily/lily-parser.cc (LY_DEFINE): Remove "Now " from message.
16086
16087         * lily/main.cc (main): Invoke identify.
16088
16089         * scm/lily.scm (postscript->pdf): Remove progress newline.
16090         Write progress to stderr.
16091
16092         * lily/paper-book.cc (output): Remove progress newline.
16093
16094         * scm/framework-tex.scm (convert-to-dvi, convert-to-ps): Call
16095         gettext on user messages, and remove whitespace.
16096
16097         * lily/paper-outputter.cc (get_paper_outputter): Add progress newline.
16098
16099         * scripts/lilypond-latex.py (program_name): Bugfix: use only basename of
16100         argv[0] (Thomas Scharkowski).
16101
16102         * configure.in: Bugfix: add REQUIRED parameter to STEPMAKE_TEXMF
16103         call (carlyannehorse).  Also check for mf and mf-nowin.  Add check
16104         for ec-fonts-mtraced.
16105
16106         * GNUmakefile.in (builddir-exec): Add symlink tex/out.  Fixes
16107         --srcdir build (Bertalan).
16108
16109         * stepmake/aclocal.m4 (STEPMAKE_GUILE_DEVEL): Check for guile
16110         headers and library too (Laura Conrad).
16111
16112         * Documentation/topdocs/INSTALL.texi (Top): Mention development
16113         package for guile too (Laura Conrad).
16114
16115         * lily/main.cc (usage): Typo.
16116
16117 2004-11-02  Werner Lemberg  <wl@gnu.org>
16118
16119         * Documentation/user/notation.ly: More fixes to improve appearance.
16120
16121         * tex/texinfo.tex: Updated from texinfo CVS -- this version provides
16122         better output for multicolumn tables.
16123
16124 2004-11-01  Mats Bengtsson  <mabe@s3.kth.se>
16125
16126         * lily/main.cc (dir_info): Fixed typo in the printouts.
16127
16128 2004-11-01  Werner Lemberg  <wl@gnu.org>
16129
16130         * buildscripts/mf-to-table.py (write_fontlist): Improve formatting
16131         of output.
16132         Set `per_line' to 2; replace hard-coded value with it.
16133
16134         * Documentation/user/*: Many fixes to improve appearance of
16135         printed manual.
16136
16137 2004-11-01  Werner Lemberg  <wl@gnu.org>
16138
16139         * Documentation/user/changing-defaults.itely,
16140         Documentation/user/notation.ly,
16141         Documentation/user/programming-interface.itely: Use @/.
16142         Fix formatting of some lilypond snippets and tables.
16143
16144         * scripts/lilypond-book.py (compose_ly): Provide useful default
16145         for LINEWIDTH in `override'.
16146
16147 2004-10-31  Graham Percival  <gperlist@shaw.ca>
16148
16149         * Documentation/user/invoking.itely: change "3.0" -> "2.4"
16150
16151 2004-10-31  Werner Lemberg  <wl@gnu.org>
16152
16153         Resetting @exampleindent to `5' gives ugly results with texinfo's
16154         DVI output.  Use `@format @exampleindent 0 ... @end format' instead
16155         (if not quoting) to change @exampleindent only locally.
16156
16157         * scripts/lilypond-book.py (NOQUOTE): New variable.
16158         (output) [LATEX]: Remove AFTER and BEFORE.
16159         [TEXINFO]: Remove AFTER and BEFORE.
16160         Fix QUOTE and VERBATIM pattern.
16161         Add NOQUOTE pattern.
16162         (Lilypond_snippet) [output_info, output_latex]: Don't handle AFTER
16163         and BEFORE.
16164         [output_texinfo]: Use NOQUOTE.
16165
16166 2004-10-31  Graham Percival  <gperlist@shaw.ca>
16167
16168         * Documentation/user/changing-defaults.itely: clarify paper
16169         size commands with correct info.
16170
16171         * Documentation/user/lilypond-book.itely: add more docs for
16172         filename extensions.
16173
16174 2004-10-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
16175
16176         * VERSION (PATCH_LEVEL): Branch lilypond_2_4, release 2.4.0
16177         (PATCH_LEVEL): start 2.5.0.
16178
16179 #Local variables:
16180 #coding: utf-8
16181 #End:
16182