]> git.donarmstrong.com Git - lilypond.git/blob - ChangeLog
* Documentation/user/tweaks.itely (Fitting music onto fewer
[lilypond.git] / ChangeLog
1 2006-09-21  Mats Bengtsson  <mabe@drongo.s3.kth.se>
2
3         * Documentation/user/tweaks.itely (Fitting music onto fewer
4         pages): Add between-system-space setting. 
5
6 2006-09-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
7
8         * lily/accidental-placement.cc (calc_positioning_done): don't
9         trigger Y-extent calculation too early. Use pure_height instead.
10
11         * lily/scale.cc (LY_DEFINE): new file. 
12
13 2006-09-20  Joe Neeman  <joeneeman@gmail.com>
14
15         * lily/page-breaking.cc (find_chunks_and_breaks): ignore breaks
16         that happen at the start of a score: having a zero-length
17         chunk was messing up min_system_count calculations.
18
19         * lily/source-file.cc (get_line): lower_bound, not
20         binary_search. Fixes problem where point-and-click would
21         always point to the first line.
22
23 2006-09-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
24
25         * lily/accidental-placement.cc (calc_positioning_done): also put
26         stems into accidental support. 
27
28         * lily/tie-engraver.cc (process_music): also set tieMelismaBusy if
29         event_ detected.
30
31         * scm/script.scm (default-script-alist): avoid-slur and
32         slur-padding for portato script.
33
34         * lily/stem-tremolo.cc (translated_stencil): new function. 
35         (height): use new function. Fixes tremolos on whole notes.
36
37         * lily/slur-scoring.cc (get_best_curve): don't crash if no optimal
38         slur found.
39
40 2006-09-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
41
42         * scripts/abc2ly.py (try_parse_comment): idem.
43
44         * scripts/lilypond-book.py (find_toplevel_snippets): use 'foo' in
45         bar_string iso. string.find()
46
47         * lily/*.cc: idem.
48
49         * lily/slur.cc (get_curve): always use scm_is_pair() looping
50         scheme lists.  
51
52 2006-09-18  Graham Percival  <gpermus@gmail.com>
53
54         * Documentation/user/basic-notation.itely: add bug
55         warning about ties and octavation/clef.
56
57 2006-09-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
58
59         * VERSION (PACKAGE_NAME): release 2.9.18
60
61 2006-08-29  Milan Zamazal  <pdm@brailcom.org>
62
63         * elisp/lilypond-mode.el (LilyPond-command-alist): Don't try to
64         figure out midi file names right here.
65         
66 2006-09-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
67
68         * scm/framework-ps.scm (dump-stencil-as-EPS): naming pad-eps-boxes.
69
70         * scm/backend-library.scm: option naming:  gs-font-load*s*
71
72         * scm/framework-eps.scm (dump-stencils-as-EPSes): rename option to
73         include-eps-fonts
74
75 2006-09-17  Joe Neeman  <joeneeman@gmail.com>
76
77         * scm/define-music-types.scm (music-descriptions): remove
78         BreakEvent and fix {Page,Line}{Break,Turn}Event so
79         Music::to_event doesn't complain.
80
81         * lily/accidental-placement.cc (ape_compare):
82         * lily/semi-tie.cc (compare): 
83         * lily/note-column.cc (shift_compare): replace by XXX_less
84
85         * lily/tie-formatting-problem.cc (set_chord_outline): 
86         * lily/tie-column.cc (calc_positioning_done): 
87         * lily/system.cc (post_processing)
88         (get_paper_system): 
89         * lily/stem.cc (note_head_positions)
90         (calc_positioning_done): 
91         * lily/spanner.cc (do_break_processing)
92         (find_broken_piece): 
93         * lily/span-bar.cc (print): 
94         * lily/semi-tie-column.cc (calc_positioning_done): 
95         * lily/rest-collision.cc (calc_positioning_done): 
96         * lily/program-option.cc (get_help_string): 
97         * lily/note-collision.cc (get_clash_groups):
98         * lily/new-fingering-engraver.cc (position_scripts):
99         * lily/keyword.cc (Keyword_table):
100         * lily/hara-kiri-group-spanner.cc (request_suicide):
101         * lily/grob-pq-engraver.cc (stop_translation_timestep):
102         * lily/accidental-placement.cc (calc_positioning_done):
103         (stagger_apes):
104         * lily/beam.cc (get_beam_segments):
105         * lily/grob-array.cc (remove_duplicates):
106         use new vector_sort
107         
108         * input/mutopia/W.A.Mozart/mozart-hrn3-defs.ily:
109         ragged-last-bottom = ##f (test the new page breaker)
110
111         * flower/include/std-vector.hh (vector_sort): use STL sort stuff
112
113         * scm/define-context-properties.scm
114         (all-internal-translation-properties): remove properties that
115         were used to communicate page-turn stuff to the paper-column
116         engraver.
117
118         * lily/lily-guile.cc (robust_scm2string): new function
119
120         * lily/paper-column-engraver.cc: Clean up page turn stuff
121
122         * lily/page-turn-engraver.cc: Re-write the page turn logic here
123         instead of cluttering up paper-column-engraver.cc
124
125 2006-09-17  Nicolas Sceaux  <nicolas.sceaux@free.fr>
126
127         * scm/layout-page-dump.scm (scm): export utility function names,
128         to allow user writing cutsom dumping functions.
129
130         * scm/layout-page-layout.scm: export utility function names to
131         enable custom page breaking function writing. Tabify.
132         (line-next-space): use ?-suffix only for predicates
133         (page-maximum-space-to-fill): new function. Return the space
134         between first and bottom system of a page, to give to
135         space-systems.
136         (space-systems): use a space-to-fill argument (for instance as
137         computed by page-maximum-space-to-fill) instead of computing
138         internaly this space with the page height. That way, the caller
139         can adjust the space to use.
140         (make-page-from-systems, walk-paths): compute space to fill before
141         calling space-systems.
142
143 2006-09-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
144
145         * scm/script.scm (default-script-alist): set paddings for every
146         type here, increase for portato mark.
147
148         * scm/lily.scm (define-scheme-options): typo: add s, so it is 
149         -dinclude-eps-fonts
150
151 2006-09-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
152
153         * scm/define-grobs.scm (all-grob-descriptions): oops, typo:
154         use spanner::set-spacing-rods
155
156         * lily/note-column.cc: reformat.
157
158         * lily/rest-collision.cc (calc_positioning_done): fix whole/half
159         step positioning for note/rest combinations.
160
161         * input/regression/rest-note-collision.ly: new file.
162
163         * scm/define-grobs.scm (all-grob-descriptions): add
164         springs-and-rods
165
166         * flower/include/std-vector.hh: switch off again.
167
168         * VERSION (PATCH_LEVEL): bump to 2.9.18
169
170         * flower/include/std-string.hh: idem.
171
172         * flower/include/std-vector.hh (_GLIBCXX_DEBUG): set if NDEBUG not set.
173
174 2006-09-15  Mats Bengtsson  <mabe@drongo.s3.kth.se>
175
176         * ly/engraver-init.ly: Make FiguredBass accepted in GrandStaff and
177         PianoStaff. 
178
179 2006-09-08  Joe Neeman  <joeneeman@gmail.com>
180
181         * Documentation/user/page.itely: update page breaking documentation
182
183 2006-09-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
184
185         * lily/note-collision.cc (calc_positioning_done): only access
186         first head if available.
187
188         * lily/tuplet-engraver.cc: add tupletFullLengthNote to description.
189
190         * scm/framework-ps.scm (output-preview-framework): use new name.
191
192         * lily/program-option.cc (internal_set_option): use new names.
193
194         * Documentation/user/SConscript (lilypond_book_flags): update -d
195         variable names.
196
197         * Documentation/user/lilypond-book.itely (Inserting LilyPond
198         output into other programs): new variable names.
199
200         * scm/lily.scm (define-scheme-options): uniformize var names.
201
202         * lily/tuplet-engraver.cc (listen_tuplet_span): verify that
203         tuplets_ is non-empty before popping.
204
205 2006-09-07  Joe Neeman  <joeneeman@gmail.com>
206
207         * lily/spanner.cc (find_broken_piece): 
208         * lily/spacing-spanner.cc (get_columns): 
209         * lily/source-file.cc (get_line): 
210         * lily/simple-spacer.cc (get_column_description): 
211         * lily/keyword.cc (lookup): 
212         use the new binary search.
213
214         * flower/include/std-vector.hh: replace binary_search with
215         a more STL-like version
216
217 2006-09-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
218
219         * lily/tie-performer.cc: remove unused last_event_ property.
220         (class Tie_performer): add now_tied_heads_ property for
221         partially-tied heads.
222         (acknowledge_audio_element): when adding an Audio_note, put the
223         note in now_tied_heads_ if the audio note is partially tied.
224         (stop_translation_timestep): always include entries in
225         now_tied_heads_ in heads_to_tie_.
226
227         * lily/drum-note-performer.cc (process_music): look for tie-events
228         in the articulations; pass to Audio_note constructor.
229
230         * lily/note-performer.cc (process_music): look for tie-events in
231         the articulations; pass to Audio_note constructor.
232
233         * lily/audio-item.cc (Audio_note): Initialize tie_event_ in
234         constructor.
235
236         * lily/include/audio-item.hh (class Audio_note): add tie_event_.
237         include initializer in constructor.
238
239 2006-09-02  Joe Neeman  <joeneeman@gmail.com>
240
241         * lily/simple-spacer.cc (get_line_forces): Ignore loose columns
242         unless they are breakable. This fixes discrepancies between the forces
243         calculated here and the forces calculated in get_line_configuration.
244
245         * lily/grob.cc (pure_relative_y_coordinate): fix some
246         mis-estimation that was happening with piano staves.
247
248         * lily/constrained-breaking.cc (resize): don't choke if we get a
249         measure that won't fit on a line.
250         (combine_demerits): don't consider uniformity when ragged
251
252         * lily/page-spacing.cc (solve): why the f* were there two of these?
253         (calc_subproblem): properly handle the case where a system is taller
254         than the page.
255
256         * lily/system.cc (get_paper_system): ensure that all the permissions
257         and penalties are passed to the paper systems.
258
259         * lily/page-breaking.cc (create_system_list): support system-count.
260
261         * scm/define-grobs.scm (pure-print-callbacks): add
262         ly:script-interface::print
263
264         * lily/page-spacing.cc (min_page_count): fix calculation of min
265         pages if we are ragged and there are non-zero springs.
266
267         * scm/layout-page-layout.scm: if the pure-height estimates are under
268         the real height, allow space-systems to ignore padding if it is
269         needed in order to fit the systems on one page
270
271         * lily/optimal-page-breaking.cc (try_page_spacing): fix reading
272         ragged properties
273         (solve): fix performance problem. Make sure we always get at least
274         one solution
275
276         * lily/page-breaking.cc (make_pages): include write-page-breaks
277         and page-stencil
278
279         * lily/paper-score.cc (calc_breaking): remove Gourlay breaker
280
281         * scm/define-grobs.scm: add the new slur-callback
282         fix pure-relevant to not exclude grobs whose extent is already
283         calculated
284
285         * ly/paper-defaults.ly: make ly:optimal-breaking the new default
286         page breaker
287
288         * lily/slur.cc (pure_height): new callback to estimate the height
289         of a slur
290
291 2006-09-02  Graham Percival  <gpermus@gmail.com>
292
293         * Documentation/user/invoking.itely: small update on
294         MacOS X notes; thanks Trevor!
295
296 2006-09-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
297
298         * VERSION (MY_PATCH_LEVEL): release 2.9.17
299
300         * lily/lexer.ll: accept EOF in all states.
301
302         * lily/tempo-performer.cc (Tempo_performer): initialize last_tempo_.
303
304         * lily/source-file.cc (Source_file): always 0-terminate character
305         array, to prevent Flex from barfing.
306
307         * lily/global-context.cc (get_output): robustness: don't crash if
308         no Score context found.
309
310         * lily/include/book.hh (class Book): idem.
311
312         * lily/include/context-def.hh (struct Context_def): idem.
313
314         * lily/include/score.hh (class Score): don't derive from Input.
315
316         * lily/book.cc (Book): add a copy ctor. 
317
318         * buildscripts/output-distance.py (FileLink.calc_distance): count
319         orphans in distance too.
320
321         * python/midi.c (midi_parse_track): robustness: don't read past
322         end of string.
323
324         * ly/performer-init.ly: add Control_track_performer, move
325         Tempo_performer and Time_signature_performer to Score.        
326
327         * lily/score-performer.cc (acknowledge_audio_elements): override
328         from base class: add to audio-columns
329
330         * lily/control-track-performer.cc (add_text): new file: generate
331         the control track.
332
333         * lily/performance.cc: move output_header_track to
334         Control_track_performer ()
335
336         * lily/midi-walker.cc (Midi_walker): get channel in constructor.
337
338         * lily/include/midi-item.hh (class Midi_channel_item): insert
339         class into hierarchy, for items that can have a channel setting. Dehungarify.
340
341         * lily/include/performer.hh (class Performer): remove
342         play_element();  move functionality into announce/acknowledge.
343
344         * lily/audio-staff.cc (output): remove channel_ from Midi_track.
345
346         * lily/tie-engraver.cc (stop_translation_timestep): only wipe
347         heads_to_tie_ if there are new heads to tie.  Fixes polyphony in ties.
348
349 2006-08-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
350
351         * lily/tie-engraver.cc (stop_translation_timestep): robustness for
352         ambituses.
353
354         * lily/all-font-metrics.cc: remove TFM support.
355
356         * lily/include/tfm.hh: remove TFM support, TFM reader.
357
358         * lily/include/binary-source-file.hh: remove Binary_source_file.
359
360 2006-08-27  Graham Percival  <gpermus@gmail.com>
361
362         * Documentation/topdocs/NEWS.itely: add @c marker for
363         stuff I've processed.
364
365         * Documentation/user/ various: info from NEWS.
366
367 2006-08-27  Joe Neeman  <joeneeman@gmail.com>
368
369         * lily/paper-column-engraver.cc (finalize): Oops, this change
370         should have gone in on 2006-08-23
371
372 2006-08-26  Mats Bengtsson  <mabe@s3.kth.se>
373
374         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use double
375         quotes to quote arguments. Fixes Windows problem.
376
377         * python/lilylib.py (progress): idem
378
379 2006-08-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
380
381         * scripts/musicxml2ly.py: fix for importing
382         minor key signatures from MusicXML.  (Phillip Kirlin)
383
384 2006-08-24  Phillip Kirlin  <pkirlin@acm.org>
385
386         * python/musicxml.py: 
387         (Attributes.get_key_signature): now correctly retrieves mode from 
388         MusicXML. 
389
390 2006-08-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
391
392         * lily/parser.yy (output_def_body): take ownership of identifier
393         back to C++.
394
395         * Documentation/user/advanced-notation.itely (Metronome marks):
396         update use of \tempo in \midi.
397
398         * VERSION: release 2.9.16
399         
400 2006-08-24  Erik Sandberg  <mandolaerik@gmail.com>
401
402         * input/mutopia/*: upgrade to new midi tempo syntax (repairs make
403         web partially)
404
405 2006-08-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
406
407         * input/regression/tie-chord-partial.ly: clarify example.
408
409         * scm/define-music-properties.scm (all-music-properties): remove
410         untied.
411
412         * ly/music-functions-init.ly: remove \untied.
413
414         * lily/tie-engraver.cc (struct Head_event_tuple): store both
415         stream events and music events.
416         (stop_translation_timestep): search acknowledged heads for
417         tie-event.
418
419         * input/regression/tie-chord-partial.ly: new file.
420
421         * scm/define-markup-commands.scm (char): use ly:wide-char->utf-8
422         for \char markup command.
423
424         * scm/define-event-classes.scm (unlistened-music-event-classes): idem.
425
426         * scm/define-music-types.scm (music-descriptions): consistency:
427         Use solo-{one,two}-event iso. solo-[12]-event.
428
429         * lily/part-combine-engraver.cc (process_music):
430         Use solo-{one,two}-event iso. solo-[12]-event.
431
432         * ly/declarations-init.ly (partCombineListener): add Timing as
433         alias
434
435         * flower/std-string.cc (string_copy): use copy ()
436
437         * lily/source-file.cc (Source_file): use copy(). Remove contents_str0()
438
439 2006-08-24  Graham Percival  <gpermus@gmail.com>
440
441         * Documentation/user/changing-defaults.itely, global.itely,
442         lilypond-book.itely, page.itely: minor changes from mailist.
443
444 2006-08-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
445
446         * buildscripts/mutopia-index.py (allfiles): filter lily-XXX and
447         snippet-map
448
449         * scm/define-context-properties.scm
450         (translator-property-description): robustness: detect type errors
451         in property definitions.
452
453         * lily/parser.yy (score_body): protect SCORE_IDENTIFIER result
454         after getting it from SCM. 
455
456         * lily/smobs.cc (protect_smob): switch off fancy smob protection
457         for now. 
458
459         * lily/include/performer.hh (class Performer): strip get_tempo()
460         method.
461
462         * lily/midi-def.cc: strip file.
463
464         * lily/lexer.ll (Lily_lexer): don't protect hash key separately.
465
466         * lily/include/context-def.hh (struct Context_def): use
467         VIRTUAL_COPY_CONSTRUCTOR().
468
469         * lily/source-file.cc: smobification.
470
471         * lily/include/source-file.hh (class Source_file): smobify
472         Source_file. Trim redundant members.
473
474         * lily/parser.yy (Lily_lexer::try_special_identifiers): unprotect
475         clones after creation. This plugs a huge memory leak.
476
477         * python/convertrules.py (FatalConversionError.sub_tempo):
478         complete rule for \midi{ \tempo }
479
480         * input/mutopia/J.S.Bach/wtk1-fugue2.ly (bassdux): idem.
481
482         * input/mutopia/F.Schubert/morgenlied.ly (pianoLH): update tempo.
483
484 2006-08-23  Joe Neeman  <joeneeman@gmail.com>
485
486         * input/regression/optimal-page-breaking-hstretch.ly: test for
487         ragged-last-bottom also
488
489         * lily/paper-column-engraver.cc (finalize): make the end of a score
490         breakable by default. This is to balance out a change in behaviour
491         of the page-turn-breaker which no longer makes the end of a score
492         breakable.
493
494         * lily/paper-book.cc (pages): set the systems_ once the pages are
495         broken
496
497         * lily/page-turn-page-breaking.cc (calc_subproblem): use the new
498         Page_breaking interface.
499
500         * lily/page-breaking.cc (class Page_breaking): make the interface
501         more consistent and provide abstractions for dealing with
502         Line_divisions.
503
504         * lily/optimal-page-breaking.cc (solve): use a more straightforward
505         algorithm. Use the new interface to Page_breaking.
506
507         * lily/page-spacing.cc: better support for ragged-bottom and
508         ragged-last-bottom
509
510 2006-08-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
511
512         * python/convertrules.py (conv): warning on \tempo{}
513
514         * ly/performer-init.ly: set tempoWholesPerMinute.
515
516         * ly/midi-init.ly: remove \midi
517
518         * lily/tempo-performer.cc: look at tempoWholesPerMinute to set
519         MIDI tempo.
520
521         * lily/metronome-engraver.cc (process_music): use tempoUnitCount
522         tempoUnitDuration for determining what to print.
523
524         * lily/lyric-extender.cc: typo.
525
526         * lily/parser.yy (output_def_body): disallow \tempo in \midi{}
527
528         * lily/duration-scheme.cc (LY_DEFINE): ly:duration-length: new
529         function.
530
531         * scm/lily.scm (define-scheme-options): alphabetize, add eps-pad-boxes.
532
533         * scm/framework-ps.scm (dump-stencil-as-EPS): only pad boxes if
534         eps-pad-boxes is set.
535
536         * scripts/lilypond-book.py (main): use -deps-pad-boxes.
537
538         * THANKS: update sponsors.
539
540         * ly/english.ly: quarter tone naming (thanks, Trevor Baca)
541
542         * Documentation/topdocs/NEWS.tely (Top): doc new feature.
543
544         * input/regression/tie-chord-untied.ly: new file.
545
546         * lily/tie-engraver.cc (acknowledge_note_head): check 'untied property.
547
548         * scm/define-music-properties.scm (all-music-properties): add
549         'untied property.
550
551         * buildscripts/mutopia-index.py (allfiles): look for .ly rather
552         than .ly.txt.
553         (headertext_nopics): sanitize no-examples text.
554
555         * scm/page.scm (make-page-stencil): don't rely on extents of
556         page-stencil. This fixes spurious space around .EPS files produced
557         with the EPS backend.
558
559 2006-08-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
560
561         * lily/stencil-scheme.cc (LY_DEFINE): make extent arguments optional.
562
563         * lily/hara-kiri-engraver.cc (process_music): remember
564         keepAliveInterfaces after processing \set
565
566         * lily/lyric-extender.cc (print): support left/right-padding for
567         extenders.
568
569         * scm/documentation-generate.scm (string-append): revert lilypond/
570         path, doc why.
571
572 2006-08-20  Graham Percival  <gpermus@gmail.com>
573
574         * Documentation/user/lilypond.tely: clarification to
575         license presentation (not to actual license).
576
577         * Documentation/user/basic-notation.itely,
578         instrument-notation.itely: minor changes.
579
580         * input/ {regression, test}/+.ly: clarification to
581         text (you can click on examples).  Thanks, Mats!
582
583         * input/manual/bar-lines.ly: adds ||: repeats.
584
585 2006-08-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
586
587         * make/ly-vars.make (OMF_FILES): strip ps.gz from OMF_FILES 
588
589         * scm/documentation-lib.scm (texi-file-head): category LilyPond.
590
591         * Documentation/user/lilypond.tely: strip lilypond/ from info
592         links, rename to category LilyPond
593
594         * lily/pango-font.cc (description_string): new function.
595
596         * VERSION: release 2.9.15
597
598         * lily/spacing-engraver.cc (stop_translation_timestep): use
599         Dscho's fix for spacing spanner. 
600
601         * scm/define-music-types.scm (music-descriptions): use
602         apply-output-event for ApplyOutputEvent
603
604         * lily/output-property-engraver.cc (listen_apply_output): rename
605         from listen_layout_instruction.
606
607         * lily/piano-pedal-engraver.cc (struct Pedal_type_info): new
608         function protect()
609
610 2006-08-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
611
612         * scm/lily.scm (lilypond-all): option read-file-list: substitute
613         commandline args with contains, split by \n.
614
615         * scripts/lilypond-book.py (Lilypond_file_snippet.my_system):
616         write snippet-names file, call with -dread-file-list. Fixes
617         command limitations on 64-bit systems.
618
619         * input/regression/stencil-color-rotation.ly: new file.
620
621         * lily/include/translator.hh (struct Acknowledge_information):
622         revert: don't use Protected_scm in global objects, as GUILE can't
623         handle gc_unprotect from automated destructors on MacOS X.
624  
625         * lily/grob.cc (get_print_stencil): use retval.expr() as base for
626         color, not the original stencil. Fixes combinations of
627         color/transparency/rotation. 
628
629         * scripts/lilypond-book.py (main): add --formats=eps for
630         texinfo/latex.
631
632         * lily/spacing-engraver.cc (stop_translation_timestep): don't
633         crash if spacing_ is nonexistent.
634
635 2006-08-14  Mats Bengtsson  <mabe@s3.kth.se>
636
637         * scripts/lilypond-book.py (output): Remove obsolete(!?)
638         \catcode`\@=12 in the LaTeX output.
639
640 2006-08-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
641
642         * scm/define-music-types.scm (music-descriptions):
643         use sustain-event iso. sustain-pedal-event.
644
645 2006-08-11  Joe Neeman  <joeneeman@gmail.com>
646
647         * scripts/convert-ly.py: honour the -n command-line switch
648
649 2006-08-10  Han-Wen Nienhuys  <hanwen@lilypond.org>
650
651         * scm/output-lib.scm (bar-line::calc-glyph-name): add dashed liine
652         break specification.
653
654 2006-08-10  Joe Neeman  <joeneeman@gmail.com>
655
656         * Documentation/user: convert-ly the user manual
657
658 2006-08-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
659
660         * stepmake/aclocal.m4: version check patch (thanks MWD)
661
662         * ly/music-functions-init.ly: robustness. Don't crash if
663         currentBarNumber is not a number.
664
665         * VERSION (PATCH_LEVEL): bump.
666
667 2006-08-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
668
669         * stepmake/aclocal.m4: better version check; handle fooX.Y
670         binaries too.
671
672         * ly/performer-init.ly: instrument name fixup.
673
674         * input/manual/chord-names-jazz.ly (banterProperties):
675         instrumentName update
676
677         * scm/define-event-classes.scm (lambda): use ly:is-listened-event-class
678
679         * lily/ly-module.cc (ly_module_symbols): use ly_hash_table_keys
680
681         * lily/translator.cc (LY_DEFINE): ly:is-listened-event-class: new
682         function. Use hash tables to check membership.
683
684         * lily/general-scheme.cc (LY_DEFINE): new function.
685
686         * lily/piano-pedal-engraver.cc (struct Pedal_type_info): idem
687
688         * lily/include/translator.hh (struct Acknowledge_information): add
689         Protected_scm
690
691         * ly/music-functions-init.ly: change name to BreathingEvent
692
693         * input/regression/*.ly: apply it.
694
695         * python/convertrules.py (conv): better instrumentName conversion
696         rule.
697
698         * scm/define-music-types.scm (music-descriptions): add
699         line-break-event to LineBreakEvent music
700
701         * lily/music.cc (to_event): don't crash if music type not set.
702
703         * lily/spacing-loose-columns.cc (set_loose_columns): don't barf if
704         spacing not set.
705
706         * lily/spacing-engraver.cc (stop_translation_timestep): set
707         spacing for proportional notation too.
708
709         * scm/translation-functions.scm (format-bass-figure): inspect
710         stream-event.
711
712         * scripts/lilypond-book.py (bindir): add bindir to $PATH.
713
714 2006-08-08  Joe Neeman  <joeneeman@gmail.com>
715
716         * lily/include/constrained-breaking.hh: add Line_details (Prob*)
717
718         * scm/page.scm (make-page): make it friendlier to call (esp. from C++)
719
720         * scm/layout-page-layout.scm (make-page-from-systems): new function
721         (optimal-page-breaks): use the new page-breaking calling convention
722
723         * scm/define-context-properties.scm (all-user-translation-properties):
724         add revokePageTurns
725
726         * lily/paper-column-engraver.cc (stop_translation_timestep): add
727         revokePageTurns  functionality. If there is a special barline within
728         the breakable region, break there instead of at the end of the region.
729
730         * lily/paper-book.cc (pages): use the new page-breaking calling
731         convention
732
733 2006-08-07  Erik Sandberg  <mandolaerik@gmail.com>
734
735         * lily/lexer.ll, lily/source-file.cc: Add \sourcefileline command
736
737         * scripts/lilypond-book.py: insert \sourcefileline command in
738         output, so lilypond error messages refer to the spot in the
739         original .lytex / .itely sourcefile.
740
741 2006-08-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
742
743         * lily/spacing-loose-columns.cc (set_loose_columns): oops: use
744         space to next column for distance to fixed col.
745
746         * VERSION (PACKAGE_NAME): release 2.9.14
747
748         * lily/pitched-trill-engraver.cc (make_trill): do set_parent also
749         if no accidental.
750
751         * lily/accidental-engraver.cc (process_acknowledged): don't create
752         accidental for trill span event. This fixes spurious accidentals
753         on trills.
754
755 2006-08-04  Mats Bengtsson  <mabe@s3.kth.se>
756
757         * scm/define-grob-properties.scm (all-user-grob-properties):
758         Clarify documentation of side-axis and direction. Thanks to Paul
759         for the inspiration.
760
761         * lily/bar-line.cc: Add documentation for "||:" also in the
762         interface documentation.
763
764 2006-08-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
765
766         * lily/spacing-loose-columns.cc (set_loose_columns): bugfix.
767
768         * lily/paper-column.cc (set_system): new function.
769
770         * lily/spacing-engraver.cc (stop_translation_timestep): store
771         SpacingSpanner refs in Paper_column.
772
773         * lily/spacing-loose-columns.cc (set_loose_columns): rewrite
774         compute loose clique spacing using GraceSpacing/SpacingSpanner.
775
776 2006-08-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
777
778         * lily/beam-engraver.cc (listen_beam): add method for
779         Grace_beam_engraver too.
780
781 2006-08-03  Mats Bengtsson  <mabe@s3.kth.se>
782
783         * python/convertrules.py: Fix indentation bug that broke
784         conversion of files older than 1.3.117.
785         Fix escape error in the description for 2.9.6.
786
787 2006-08-02  Erik Sandberg  <mandolaerik@gmail.com>
788
789         * lily/*-engraver.cc: convert all try_music functions to listen_*
790         functions.
791
792         * lily/piano-pedal-engraver.cc: some additional cleanups: use
793         enums to represent pedal types, and calculate more data statically.
794
795         * scm/part-combiner.scm (recording-group-emulate): create a
796         softcoded substitute for recording-group-engraver.cc.
797
798         * lily/music.cc: make a common transpose function for events and
799         music
800
801         * ly/declarations-init.ly: change melisma/melismaEnd. Eliminates
802         ManualMelismaEvent, and obsoletes Melisma_translator.
803
804 2006-08-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
805
806         * input/test/instrument-name-align.ly: update version.
807
808 2006-08-02  Mats Bengtsson  <mabe@s3.kth.se>
809
810         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
811         Doc the --pdf flag to lilypond-book.
812
813 2006-07-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
814
815         * Documentation/topdocs/NEWS.tely (Top): add description.
816
817         * input/regression/tuplet-full-length-note.ly: add file.
818
819         * lily/instrument-name-engraver.cc (acknowledge_axis_group):
820         always store axis group.
821
822 2006-07-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
823
824         * input/regression/instrument-switch.ly: new file.
825
826         * lily/instrument-switch-engraver.cc (process_music): new file.
827
828         * ly/engraver-init.ly: add Instrument_switch_engraver
829
830         * ly/music-functions-init.ly: \instrumentSwitch
831
832         * scm/define-context-properties.scm
833         (all-user-translation-properties): add instrumentCueName
834
835         * scm/define-grobs.scm (all-grob-descriptions): add InstrumentSwitch
836
837 2006-07-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
838
839         * ly/music-functions-init.ly: music function \transposition.
840
841         * lily/parser.yy (command_element): softcode \transposition.
842
843         * lily/fall-engraver.cc (process_music): delta-pitch -> delta-step.
844         (process_music): oops.
845
846         * lily/instrument-name-engraver.cc (start_spanner): new
847         function. Create spanner when property changes.
848         (stop_spanner): new function.
849
850         * python/convertrules.py (conv): add rule.
851
852         * lily/instrument-name-engraver.cc: shortVocalName iso. vocNam,
853         shortInstrumentName iso. instr.
854
855         * scm/output-ps.scm (dashed-line): add phase argument to
856         dashed-line.
857
858         * lily/bar-line.cc (dashed_bar_line): new function.
859         (compound_barline): support \bar "dashed". 
860
861         * lily/lily-parser-scheme.cc (LY_DEFINE): only write
862         --output=DIR to DIR/BASE if it is a dir. 
863
864         * flower/file-name.cc (file_part): new function
865         (dir_part): new function
866
867         * lily/lily-parser-scheme.cc (LY_DEFINE): 
868
869         * DEDICATION: update
870
871 2006-07-25  Han-Wen Nienhuys  <hanwen@lilypond.org>
872
873         * lily/instrument-name-engraver.cc: formatting.
874
875         * python/convertrules.py (conv): bugfix for \epsfile.
876
877 2006-07-25  Joe Neeman  <joeneeman@gmail.com>
878
879         * lily/grob.cc:
880         
881         * lily/gourlay-breaking.cc: Oops, these should have been included
882         in my last commit
883
884 2006-07-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
885
886         * scripts/*.py (program_name): cleanup relocation snippets.
887
888         * scripts/convert-ly.py (datadir): remove LILYPONDPREFIX support.
889
890 2006-07-24  Joe Neeman  <joeneeman@gmail.com>
891
892         * scm/define-grobs.scm (all-grob-descriptions): make NonMusicalPaperColumn
893         page-breakable by default
894
895         * scm/layout-page-layout.scm (space-systems): fix bug where the force isn't
896         correctly calculated for a single-system page
897
898         * scm/lily-library.scm (interval-sane?): also check that the first number is no
899         bigger than the second number
900
901         * lily/simple-spacer.cc (solve): allow compression even when ragged (but we
902         acknowledge that we aren't satisfying constraints)
903
904         * lily/hara-kiri-group-spanner.cc (request_suicide): give equal treatment to
905         non-Items
906
907         * lily/grob.cc (pure_height): add minimum-Y-extent
908
909         * lily/gourlay-breaking.cc (solve): don't ignore a compression force, even if we're
910         ragged
911
912         * lily/constrained-breaking.cc: convert code to use new Matrix class
913         (get_best_solution): new function
914
915         * scm/page.scm (make-page-stencil): don't crash if we annotate-layout when there
916         is a page with no systems
917
918 2006-07-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
919
920         * VERSION (PACKAGE_NAME): release 2.9.13
921
922         * scm/define-grobs.scm (all-grob-descriptions): remove stray
923         assignment.
924
925 2006-07-21  Han-Wen Nienhuys  <hanwen@lilypond.org>
926
927         * Documentation/topdocs/NEWS.tely (Top): doc new features.
928
929         * scm/output-lib.scm (grace-spacing::calc-shortest-duration): new
930         function.
931
932         * scm/define-grob-properties.scm (all-user-grob-properties):
933         remove grace-space-factor.
934
935         * scm/define-grob-interfaces.scm (grace-spacing-interface): add
936         grace-spacing-interface
937         (spacing-options-interface): add.
938
939         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): add Grace_spacing_engraver
940
941         * lily/spacing-options.cc (get_duration_space): move function from spacing-basic.cc
942
943         * lily/spacing-basic.cc (note_spacing): do init_from_grob on
944         GraceSpacing object.
945
946         * lily/note-spacing.cc: fix prop list formatting
947
948         * lily/beaming-pattern.cc (de_grace): new function. Sensible
949         beaming for grace notes too.
950
951         * input/regression/spacing-grace.ly: update.
952
953         * lily/grace-spacing-engraver.cc: new file.
954
955         * lily/spacing-spanner.cc: add strict-grace-spacing.
956
957 2006-07-20  Graham Percival  <gpermus@gmail.com>
958
959         * lily/parser.yy: compile fix.
960
961 2006-07-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
962
963         * scm/define-grobs.scm (all-grob-descriptions): typo.
964
965         * scm/framework-eps.scm (dump-stencils-as-EPSes): just strip
966         .eps extension from includegraphics.
967
968         * scripts/lilypond-book.py (main): add support for --pdf. 
969
970         * lily/spacing-spanner.cc (calc_common_shortest_duration): use
971         callback to compute common shortest duration.
972         (set_springs): typo.
973
974         * scm/define-grob-properties.scm (all-user-grob-properties): add
975         strict-grace-spacing.
976
977         * lily/spacing-determine-loose-columns.cc (is_loose_column):
978         support float_grace_columns_.
979
980         * lily/spacing-options.cc (init_from_grob): new file.
981
982         * Documentation/topdocs/NEWS.tely (Top): doc tupletFullLengthNote.
983
984         * input/regression/spacing-loose-grace.ly: new file.
985
986         * Documentation/topdocs/NEWS.tely (Top): document new feature.
987
988         * lily/tuplet-engraver.cc (struct Tuplet_description): read
989         tupletFullLengthNote too. Choose right bound depending on value.
990
991         * input/regression/tuplet-full-length-note.ly: new file.
992
993 2006-07-19  Erik Sandberg  <mandolaerik@gmail.com>
994
995         * lily/*-performer.cc: Converted try_music to listen_*
996
997         * lily/grob-info.cc, lily/engraver.cc: represent the cause of grob
998         as a stream-event internally. Introduce event_cause (), deprecate
999         music_cause ().
1000
1001         * scm/define-music-types.scm: Removed BusyPlayingEvent
1002         
1003 2006-07-19  Mats Bengtsson  <mabe@s3.kth.se>
1004
1005         * Documentation/user/advanced-notation.itely (Font selection):
1006         Document how to get a list of available fonts using 'lilypond
1007         -dshow-available-fonts blabla'.
1008
1009 2006-07-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1010
1011         * GNUmakefile.in: filter lily-XXX.pdf files.
1012
1013         * scm/define-grob-interfaces.scm (bend-after-interface): add thickness.
1014
1015         * scm/define-grob-properties.scm (all-internal-grob-properties):
1016         remove delta-pitch. Use delta-position everywhere.
1017
1018         * scm/output-lib.scm (fall::print): use new order.
1019
1020         * scm/output-ps.scm (path): reorder arguments.
1021
1022         * scm/output-svg.scm (path): support for path primitive.
1023
1024         * input/regression/bend-after.ly: new file.
1025
1026         * Documentation/user/GNUmakefile ($(outdir)/%.pdf): foolproof
1027         recipe for eps -> pdf conversion.
1028
1029 2006-07-19  Erik Sandberg  <mandolaerik@gmail.com>
1030
1031         * lily/parser.yy, lily/lexer.ll: added some simplifications by
1032         Angelo Contardi.
1033
1034 2006-07-19  Graham Percival  <gpermus@gmail.com>
1035
1036         * input/manual/screech-boink.ly: moved to here.
1037
1038         * input/screech-boink.ly: deleted.
1039
1040         * scm/define-grob-properties.scm: clarify doc string.
1041
1042 2006-07-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1043
1044         * Documentation/topdocs/NEWS.tely (Top): doc new feature.
1045
1046         * scm/output-ps.scm (path): define path.
1047
1048         * scm/define-stencil-commands.scm
1049         (ly:register-stencil-expression): add path.
1050
1051         * scm/define-music-properties.scm (all-music-properties): add delta-pitch.
1052
1053         * ly/engraver-init.ly: add Fall_engraver
1054
1055         * lily/parser.yy (music_function_event): allow musicfunction
1056         without music arg as music_function_event.
1057
1058         * lily/grob-scheme.cc (LY_DEFINE):
1059         ly:grob-robust-relative-extent. New function.
1060
1061         * scm/define-grobs.scm (all-grob-descriptions): add BendAfter
1062
1063         * scm/define-music-types.scm (music-descriptions): add BendAfterEvent.
1064
1065         * scm/output-lib.scm (fall::print): new function
1066
1067         * lily/fall-engraver.cc (stop_fall): new file.
1068
1069         * ly/music-functions-init.ly: alphabetise.
1070
1071         * Documentation/user/GNUmakefile (OUT_PNG_IMAGES): pdf iso. eps as
1072         base.
1073
1074 2006-07-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
1075
1076         * VERSION (PATCH_LEVEL): bump version. Release 2.9.12
1077
1078         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
1079         doc pdftex usage.
1080
1081         * lily/translator-group.cc (connect_to_context): non const error message.
1082
1083         * Documentation/user/GNUmakefile ($(outdir)/%.pdf): update to use PDF
1084
1085         * scm/paper.scm (internal-set-paper-size): define landscape to #f
1086         if unset.
1087
1088         * scm/framework-ps.scm (convert-to-pdf): swap h and w in case of landscape. 
1089
1090         * stepmake/stepmake/texinfo-rules.make: strip DVI support.
1091
1092         * scm/framework-eps.scm (dump-stencils-as-EPSes): generate
1093         systems.pdftex too.
1094
1095         * scm/backend-library.scm (postscript->pdf): use -dEPSCrop for PDF.
1096
1097         * make/lilypond-vars.make (TEXINPUTS): add pdf output format.
1098
1099         * Documentation/topdocs/NEWS.tely (Top): add pdftex note.
1100
1101         * scm/output-ps.scm (resetrotation): use gsave/grestore for rotation.
1102
1103         * lily/main.cc (parse_argv): don't overwrite previous --formats string.
1104
1105         * scm/backend-library.scm (postscript->pdf): strip .eps too. 
1106
1107 2006-07-14  Nicolas Sceaux  <nicolas.sceaux@free.fr>
1108
1109         * scm/layout-page-layout.scm: Define module, tidy code, use more
1110         functions iso. a single big one.
1111
1112         * scm/layout-page-dump.scm: move page dump functions used in two
1113         pass spacing to this file. Define module.
1114
1115         * scm/lily.scm (ly:load): don't load layout-page-layout.scm
1116          (separate module)
1117
1118         * ly/paper-defaults.ly: use module layout-page-layout.
1119
1120 2006-07-14  Erik Sandberg  <mandolaerik@gmail.com>
1121
1122         * lily/music.cc: Revised MusicEvent event class. It now contains
1123         event data directly instead of encapsulating it in music. The
1124         previously used class is renamed to OldMusicEvent.
1125
1126         * lily/stream-event.cc: Stream events are now probs.
1127         
1128         * lily/translator-group.cc, lily/translator.cc: Translators can
1129         now listen directly to stream events, by using macros
1130         [DECLARE,IMPLEMENT]_TRANSLATOR_LISTENER.
1131
1132         * lily/arpeggio-engraver.cc: Converted to use new event system
1133
1134         * THANKS: Corrected spelling mistake.
1135
1136 2006-07-12  Graham Percival  <gpermus@gmail.com>
1137
1138         * Documentation/user/SConscript, make/lilypond-vars.make,
1139         input/GNUmakefile: doc build looks in input/manual instead
1140         of input/test/
1141
1142         * input/manual/ GNUmakefile, SConscript: build files for
1143         input/manual/
1144
1145         * input/test/ various: some files moved to input/manual/ 
1146
1147         * Documentation/user/basic-notation.itely: small updates;
1148         thanks Kieren and Charles!
1149
1150 2006-07-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
1151
1152         * VERSION (PACKAGE_NAME): release 2.9.11
1153
1154         * Documentation/topdocs/NEWS.tely (Top): update prop value 
1155
1156         * Documentation/user/basic-notation.itely (Tuplets): new property
1157         value.
1158
1159 2006-07-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
1160
1161         * python/convertrules.py (conv): tweaks. 
1162
1163         * VERSION (PATCH_LEVEL): bump version.
1164
1165         * python/convertrules.py (conv): add rule for
1166         tupletNumberFormatFunction.
1167
1168         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
1169         tupletNumberFormatFunction.
1170
1171         * scm/define-grobs.scm (all-grob-descriptions): calc TupletNumber
1172         text through 'text callback.
1173
1174         * lily/time-scaled-music-iterator.cc (construct_children): copy
1175         tweaks generated events.
1176
1177         * scm/define-context-properties.scm
1178         (all-user-translation-properties): remove tupletNumberFormatFunction
1179
1180         * lily/tuplet-engraver.cc (process_music): don't read
1181         tupletNumberFormatFunction
1182
1183         * scm/output-lib.scm (tuplet-number::calc-fraction-text): new
1184         function.
1185
1186 2006-07-11  Erik Sandberg  <mandolaerik@gmail.com>
1187
1188         * lily/global-context-scheme.cc: Separated ly:run-translator into
1189         smaller pieces.
1190
1191         * lily/score-engraver.cc, lily/score-performer.cc,
1192         scm/define-context-properties.scm: Make paper/midi output
1193         accessable as a context property.
1194
1195         * lily/score-translator.cc, lily/score-context.cc: Removed.
1196
1197 2006-07-07  Guido Amoruso  <guidonte@katamail.com>
1198
1199         * scm/ps-to-png.scm (Module): 
1200         * scm/framework-tex.scm (Module): 
1201         * scm/framework-ps.scm (Module): 
1202         * scm/backend-library.scm (Module): 
1203         * scm/framework-ps.scm: invoke gs with "-dDEVICEWIDTHPOINTS" and
1204         "dDEVICEHEIGHTPOINTS".
1205
1206 2006-07-04  Graham Percival  <gpermus@gmail.com>
1207
1208         * Documentation/user/ various: general improvements to
1209         "working with lilypond files" section.
1210
1211 2006-07-03  Erik Sandberg  <mandolaerik@gmail.com>
1212
1213         * lily/sequential-iterator.cc: Change the default get_music_list
1214         to read elements-callback music property
1215
1216         * scm/define-music-types.scm, scm/music-functions.scm: Cleaner
1217         processing of multimeasure rests. Softcoded
1218         sequential-music-iterator.
1219
1220         * lily/sequential-music-iterator.cc: Removed.
1221
1222 2006-06-28  Graham Percival  <gpermus@gmail.com>
1223
1224         * Documentation/user/basic-notation.itely: clarify \repeatTie.
1225
1226 2006-06-27  Erik Sandberg  <mandolaerik@gmail.com>
1227
1228         * lily/parser.yy: Wrap non-post-events in EventChords before
1229         assigning them to identifiers.
1230
1231 2006-06-27  Mats Bengtsson  <mabe@s3.kth.se>
1232
1233         * lily/bar-line.cc (compound_barline): Fix parenthesis error,
1234         gives correct vertical placement of \bar ":" in all staff
1235         sizes. Thanks Martial!
1236
1237 2006-06-26  Graham Percival  <gpermus@gmail.com>
1238
1239         * Documentation/user/invoking.itely : minor update from mailist.
1240
1241 2006-06-26  Erik Sandberg  <mandolaerik@gmail.com>
1242
1243         * lily/ various: Introduce stream events of types Prepare,
1244         OneTimeStep, CreateContext, AnnounceNewContext, RemoveContext,
1245         ChangeContext, SetProperty, RevertProperty, Override and Revert.
1246
1247         * lily/global-context*.cc: Time is now -inf before iteration
1248         starts.
1249
1250         * lily/include/context.hh: Removed unique_, init_
1251
1252         * Documentation/topdocs/NEWS: Make the feathered beam example
1253         avoid triggering a bug.
1254
1255 2006-06-24  Graham Percival  <gpermus@gmail.com>
1256
1257         * Documentation/user/ various: small additions from mailist.
1258
1259 2006-06-22  Mats Bengtsson  <mabe@s3.kth.se>
1260
1261         * ly/performer-init.ly: Add some missing links in the context
1262         hierarchy for MIDI output. There are probably some more missing!
1263
1264 2006-06-21  Graham Percival  <gpermus@gmail.com>
1265
1266         * Documentation/user/ various: minor spelling fixes;
1267         thanks Dave Luttinen!
1268
1269         * Documentation/user/ various: small clarifications;
1270         thanks Anthony Youngman!
1271
1272 2006-06-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
1273
1274         * po/fr.po: add \n appropriately.
1275
1276         * lily/lexer.ll: remove ? from version-seen?  
1277
1278 2006-06-19  John Mandereau  <john.mandereau@free.fr>
1279
1280         * po/fr.po; update translation, by Jean-Charles Malahieude and
1281         John Mandereau.
1282
1283 2006-06-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
1284
1285         * THANKS: add Markus Schneider.
1286
1287         * lily/tab-staff-symbol-engraver.cc: derive from Engraver, not
1288         Staff_symbol_engraver
1289
1290         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): don't
1291         replace staff_engraver
1292
1293         * lily/staff-symbol-engraver.cc (stop_spanner): announce end of
1294         spanner.
1295
1296         * lily/staff-collecting-engraver.cc
1297         (acknowledge_end_staff_symbol): new function
1298
1299         * lily/volta-engraver.cc (acknowledge_end_staff_symbol): new function. 
1300
1301         * lily/staff-collecting-engraver.cc
1302         (acknowledge_end_staff_symbol): new function.
1303
1304         * lily/main.cc: switch on relocation by default.
1305
1306 2006-06-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
1307
1308         * lily/spacing-spanner.cc (musical_column_spacing): set
1309         compound_fixed_note_space to 0.0. Document why.
1310
1311         * lily/simple-spacer.cc (is_sane): also have a kludge for numeric
1312         range of inverse_hooke_
1313         (Simple_spacer): init completely.
1314         (fits): const
1315         (get_line_configuration): don't use cols.resize(); it introduces
1316         initialized data.
1317
1318         * scm/framework-ps.scm (dump-page): add setstrokeadjust. 
1319
1320         * ps/music-drawing-routines.ps: remove selectfont L1 hack.
1321
1322         * lily/beaming-pattern.cc (best_splitpoint_index): urg, 2nd
1323         try. Divide by beatlength.
1324
1325         * input/regression/beaming-ternary-metrum.ly: update doc.
1326         add beatLength hack.
1327
1328         * scm/music-functions.scm (make-time-signature-set): add
1329         standard-beat-grouping. 
1330
1331 2006-06-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
1332
1333         * input/regression/tie-whole.ly: new file.
1334
1335         * lily/tie-formatting-problem.cc (set_column_chord_outline): don't
1336         cross center of note head in case of invisible stem. 
1337
1338 2006-06-16  Graham Percival  <gpermus@gmail.com>
1339
1340         * Documentation/user/ various: small fixes from mailist.
1341
1342 2006-06-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
1343
1344         * lily/breathing-sign.cc (offset_callback): idem.
1345
1346         * lily/align-interface.cc (align_to_fixed_distance): remove
1347         hungarian suffix.
1348
1349         * lily/beaming-pattern.cc (count_factor_twos): oops. We want
1350         x%2==0.
1351
1352 2006-06-15  Han-Wen Nienhuys  <hanwen@lilypond.org>
1353
1354         * VERSION (PACKAGE_NAME): release 2.9.9
1355
1356         * ly/lilypond-book-preamble.ly: add \version
1357
1358 2006-06-14  Han-Wen Nienhuys  <hanwen@lilypond.org>
1359
1360         * scripts/lilypond-book.py (PREAMBLE_LY): include
1361         lilypond-book-preamble.ly
1362
1363         * lily/stem.cc (get_beaming): return max of 0 and
1364         scm_ilength. Fixes slurring from/to beams.
1365
1366         * ly/lilypond-book-preamble.ly: new file.
1367
1368         * lily/slur.cc: add inspect-index feature.
1369
1370 2006-06-13  Graham Percival  <gpermus@gmail.com>
1371
1372         * Documentation/user/tutorial.itely: trivial fix.
1373
1374 2006-06-13  Erik Sandberg  <mandolaerik@gmail.com>
1375
1376         * lily/parser.yy, scm/ly-syntax-constructors.scm: Produce almost
1377         all non-event music in the parser via MAKE_SYNTAX.
1378
1379         * lily/parser-scheme.cc: Add ly:parser-error function
1380
1381         * scm/paper.scm: fix typo
1382
1383 2006-06-13  Han-Wen Nienhuys  <hanwen@lilypond.org>
1384
1385         * THANKS: add RT.
1386
1387         * lily/font-config.cc (init_fontconfig): add warning if cache_file
1388         is null.
1389
1390         * buildscripts/output-distance.py (test_compare_signatures):
1391         timing routines.
1392         (read_signature_file): use new signature format.
1393
1394         * scm/stencil.scm (write-system-signature): simpler signature
1395         format.
1396
1397         * lily/stem.cc (calc_stem_end_position): calc quantized-positions
1398         for beamed case. 
1399
1400         * lily/note-spacing.cc (stem_dir_correction): don't inspect
1401         stem_end_position, but estimate instead. 
1402
1403         * lily/tuplet-bracket.cc (calc_positions): look at
1404         stem-end-position for tuplet bracket slope. Fixes sloped tuplet
1405         brackets narrower than beams. 
1406
1407         * lily/lexer.ll: set version-seen? even if version is
1408         INVALID. 
1409
1410         * lily/rest.cc (y_offset_callback): bugfix: decide position
1411         override based on scm_is_number(). Fixes \rest on center staff
1412         line. 
1413
1414         * lily/beaming-pattern.cc (best_splitpoint_index): fix beaming
1415         patterns for 16th triplets.
1416
1417 2006-06-10  Graham Percival  <gpermus@gmail.com>
1418
1419         * Documentation/user/ page.itely, global.itely: editing
1420         and reorg.
1421
1422         * Documentation/user/ various: findex -> funindex.
1423
1424 2006-06-10  Erik Sandberg  <mandolaerik@gmail.com>
1425
1426         * lily/time-scaled-music-iterator.cc: Use tupletSpannerDuration to
1427         insert extra tuplet events.
1428
1429 2006-06-10  Graham Percival  <gpermus@gmail.com>
1430
1431         * Documentation/user/programming-interfaces.itely: add
1432         info from NEWS.
1433
1434         * python/convertrules.py: add annotatefoo -> annotate-foo
1435         rules.
1436
1437         * Documentation/user/global.itely: start editing.
1438
1439         * Documentation/user/page.itely: major editing, new spacing
1440         docs.
1441
1442 2006-06-10  Han-Wen Nienhuys  <hanwen@lilypond.org>
1443
1444         * scm/define-markup-commands.scm (wordwrap-markups): use
1445         output-def 'line-width if undefined.
1446
1447         * HACKING: trim outdated info.
1448
1449 2006-06-09  Mats Bengtsson  <mabe@s3.kth.se>
1450
1451         * scm/define-grobs.scm (all-grob-descriptions): Add
1452         line-spanner-interface to all grobs that already have
1453         text-spanner-interface or dynamic-text-spanner-interface
1454
1455         * scm/page.scm: Rename annotate{headers,systems,page}->
1456         annotate-*
1457
1458         * input/regression/page-spacing.ly,
1459         input/regression/page-layout-manual-position.ly: idem
1460
1461 2006-06-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
1462
1463         * lily/line-spanner.cc: cleanup property list.
1464
1465         * scripts/lilypond-book.py (find_toplevel_snippets): don't use
1466         generator expressions (2.3 compat). 
1467
1468 2006-06-09  Mats Bengtsson  <mabe@s3.kth.se>
1469
1470         * lily/vertical-align-engraver.cc: Make sure that the
1471         align{Above,Below}Context properties are included in the automatic
1472         documentation.
1473
1474 2006-06-08  Joe Neeman  <joeneeman@gmail.com>
1475
1476         * scm/paper-system.scm (paper-system-annotate): also annotate the
1477         estimated pure-Y-extent
1478
1479         * scm/define-grobs.scm: add pure-Y-extent and pure-Y-offset functions
1480
1481         * lily/system.cc (break_into_pieces): set the estimated height
1482         of each child system
1483
1484         * lily/stem.cc (pure_height): new pure-Y-extent callback
1485
1486         * lily/staff-symbol-referencer.cc (callback): don't destroy
1487         the staff-position property
1488
1489         * lily/hara-kiri-group-spanner.cc (request_suicide): split
1490         consider_suicide into two functions
1491
1492         * lily/constrained-breaking.cc (resize): use the new pure
1493         callbacks to estimate the height of a system
1494
1495         * lily/axis-group-interface.cc (pure_group_height): new
1496         side-effect-free VerticalAxisGroup height-callback
1497
1498         * lily/align-interface.cc (get_extents_aligned_translates):
1499         split align_elements_to_extents into two functions
1500         (get_pure_child_y_translation): new function
1501
1502         * lily/grob.cc: new functions for pure-Y-extent and pure-Y-offset
1503
1504         * lily/item.cc: new functions pure_is_visible and spanned_rank_iv
1505
1506         * lily/paper-score.cc: cache break_indices and columns
1507
1508         * lily/side-position-interface.cc: new pure-Y-extent callbacks
1509         
1510 2006-06-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
1511
1512         * lily/font-config.cc (init_fontconfig): do the init if
1513         cache_file, but don't look at cache_file.
1514
1515         * input/regression/quote-tie.ly: new file.
1516
1517         * lily/tie-engraver.cc (struct Head_event_tuple): add end_moment_
1518         to Head_event_tuple, so we deal gracefully with ties on
1519         cue-endings.
1520
1521         * lily/pango-font.cc (pango_item_string_stencil): type correctness
1522         for FcChar8*
1523
1524 2006-06-08  Graham Percival  <gpermus@gmail.com>
1525
1526         * input/test/ smart-transpose.ly, reverse-music.ly:
1527         \applyMusic to music functions update, thanks Michael!
1528
1529 2006-06-07  Graham Percival  <gpermus@gmail.com>
1530
1531         * input/test/ add-staccato.ly, add-text-script.ly,
1532         unfold-all-repeats.ly, music-box.ly: \applyMusic to
1533         music functions update, thanks to Michael Meixner.
1534
1535         * Documentation/user/music-glossary.tely: small fix
1536         from Francisco.
1537
1538         * Documentation/user/ various: minor additions from mailist.
1539
1540         * Documentation/user/lilypond.tely, basic-notation.itely:
1541         small test of @funindex.  (works here)
1542
1543         * input/test/font-table.ly: reduce size to partially
1544         de-ugly version in manual.
1545
1546         * Documentation/user/page.itely: new file (split former
1547         "global issues" into "page settings" and "non-musical
1548         output".
1549
1550         * Documentation/user/ various: fix @ref{}s to match
1551         new chapter names (above).
1552
1553 2006-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
1554
1555         * SConstruct (LILYPONDPREFIX): Bootstrap fix.
1556
1557 2006-06-06  Graham Percival  <gpermus@gmail.com>
1558
1559         * Documentation/user/advanced-notation.itely: add example
1560         for segno/coda on barline.
1561
1562         * tex/texinfo.tex: merge from upstream.
1563
1564 2006-06-06  Jan Nieuwenhuizen  <janneke@gnu.org>
1565
1566         * scripts/lilypond-book.py (process_snippets): Argument fix.
1567
1568         * SConstruct:
1569         * buildscripts/builder.py:
1570         * lily/SConscript: 
1571         * mf/SConscript: 
1572         * Documentation/user/SConscript:  More SCons fixes.
1573
1574 2006-06-03  Jan Nieuwenhuizen  <janneke@gnu.org>
1575
1576         * lily/font-config.cc (init_fontconfig): Only initialize if
1577         global cache_file is found.
1578
1579 2006-06-06  Erik Sandberg  <mandolaerik@gmail.com>
1580
1581         * ly/music-functions-init.ly: Updated \overrideProperty to use the
1582         new \applyOutput.
1583
1584 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1585
1586         * VERSION (PACKAGE_NAME): release 2.9.8
1587
1588         * lily/ledger-line-engraver.cc (stop_translation_timestep): new
1589         function. Delay ledger modifying ledgered grobs to
1590         stop_translation_timestep(), to ensure that we're ledgering
1591         according to the new spanner.
1592         (acknowledge_staff_symbol): don't check for non-NULL
1593         staff_sym->get_bound()
1594
1595         * lily/staff-symbol-engraver.cc (start_spanner): set left bound on
1596         creation.
1597
1598         * Documentation/pictures/GNUmakefile (XPM_FILES): src-wildcard for
1599         pictures too.
1600
1601         * GNUmakefile.in (dist-toplevel-txt-files): dist aclocal.m4
1602         directly from srcdir/stepmake/aclocal.m4
1603         
1604         * Documentation/misc/GNUmakefile (TEXTS): use src-wildcard for
1605         disting MISC files.
1606
1607         * lily/simple-spacer.cc (get_column_desc): desc -> description.
1608
1609 2006-06-06  Joe Neeman  <joeneeman@gmail.com>
1610
1611         * lily/simple-spacer.cc (get_line_configuration): add
1612         keep-inside-line rods
1613         (struct Column_desc): add constructor
1614         (struct Rod_desc): add constructor
1615         (get_line_forces): check for forced page breaks here too
1616
1617         * lily/instrument-name-engraver.cc (acknowledge_axis_group): prevent
1618         support/elements cycles between InstrumentNames and AxisGroups
1619
1620 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1621
1622         * config.make.in (METAFONT): remove MAKEINFO_VERSION
1623
1624         * stepmake/stepmake/topdocs-targets.make (make-txt-files): define
1625         make-txt-files target.
1626
1627         * stepmake/stepmake/toplevel-targets.make (do-top-doc): use
1628         make-txt-files target.
1629
1630         * configure.in (LINK_GXX_STATICALLY): $srcdir for readlink.py
1631
1632         * stepmake/stepmake/generic-vars.make (distdir): create dist in
1633         top-build-dir.
1634
1635 2006-06-06  Jürgen Reuter  <reuter@ipd.uka.de>
1636
1637         * Documentation/user/instrument-notation.itely,
1638         input/regression/breathing-sign-ancient.ly,
1639         input/test/divisiones.ly: Removed redundant property settings for
1640         vaticana contexts.
1641
1642         * ly/gregorian-init.ly: Rewrote \versus and \responsum in order to
1643         fix lyrics alignment problems.  They are implemented now as scheme
1644         functions that add the appropriate unicode char to the first lyric
1645         event rather than adding a separate lyric event.  Minor edit of
1646         comments.
1647
1648 2006-06-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
1649
1650         * GNUmakefile.in (dist-toplevel-txt-files): new target. Don't
1651         pollute src dir with built .txt files, but install directly from
1652         Documentation/topdocs/out/
1653
1654         * buildscripts/output-distance.py
1655         (ComparisonData.create_html_result_page): put version/directories
1656         in table header.
1657
1658         * Documentation/topdocs/NEWS.tely (Top): document spacing section
1659         feature.
1660
1661         * configure.in (LINK_GXX_STATICALLY): use readlink.py to resolve links.
1662         Patch by Karl Hammar
1663         
1664         * buildscripts/readlink.py: add  file.
1665         Patch by Karl Hammar
1666
1667 2006-06-06  Joe Neeman  <joeneeman@gmail.com>
1668
1669         * lily/tuplet-number.cc (print): prevent stencil from being
1670         garbage collected.
1671
1672 2006-06-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
1673
1674         * scm/stencil.scm (write-system-signature): explicitly 
1675         -well, superfluously- close output port.
1676
1677         * buildscripts/output-distance.py (main): oops. Add extra argument.
1678
1679 2006-06-05  Graham Percival  <gpermus@gmail.com>
1680
1681         * Documentation/user/music-glossary.tely: clarified example
1682         from Francisco Vila, thanks!
1683
1684 2006-06-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
1685
1686         * input/regression/spacing-section.ly: new file.
1687
1688         * lily/input.cc (programming_error): new function.
1689
1690         * lily/spacing-engraver.cc (try_music): new function. Accept
1691         spacing-section-event
1692
1693         * lily/spacing-spanner.cc (set_springs): take slices of all
1694         columns for spacing.
1695
1696         * lily/include/paper-column.hh (class Paper_column): add
1697         Paper_column::compare.
1698
1699         * ly/spanners-init.ly (newSpacingSection): add newSpacingSection.
1700
1701         * scm/define-music-types.scm (music-descriptions): add
1702         SpacingSectionEvent
1703
1704         * lily/music-iterator.cc (report_event): use programming_error for
1705         sending non-event error.
1706
1707         * lily/input.cc (programming_error): new function
1708
1709         * buildscripts/output-distance.py (main): use compare-XXX for
1710         compare files.
1711         (main): --threshold option, default at 0.30
1712
1713         * output-distance.py (main): add --threshold option.
1714
1715 2006-06-04  Nicolas Sceaux  <nicolas.sceaux@free.fr>
1716
1717         * scm/paper-system.scm (paper-system-annotate): fix problem when
1718         annotating an empty system
1719
1720 2006-06-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
1721
1722         * GNUmakefile.in: reinstate old web tar/copying.
1723
1724 2006-06-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
1725
1726         * lily/lyric-combine-music-iterator.cc (find_voice): return 0 if
1727         nothing changes. (Erik S) 
1728
1729         * lily/percent-repeat-iterator.cc (get_music_list): fix repeat
1730         count. (Erik S)
1731
1732 2006-05-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
1733
1734         * scm/define-markup-commands.scm (whiteout): do not force
1735         foreground color of argument markup to black.
1736
1737         * scm/stencil.scm (annotate-y-interval): put arrow dimension at
1738         the left of the arrow, instead of below the arrow name, so that,
1739         when two little arrows are vertically stacked, their dimensions
1740         and name should not overlap. Add a color key parameter.
1741
1742         * scm/paper-system.scm (paper-system-annotate): Annotate
1743         next-space+next-padding instead of next-space. Annotate space
1744         between next-padding and next-space+padding, respectively, and
1745         following system extent and refpoint-Y-extent. Use colors.
1746
1747         * scm/page.scm (annotate-page): translate annotations slightly to
1748         the right.
1749
1750 2006-06-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
1751
1752         * lily/figured-bass-position-engraver.cc (acknowledge_end_slur):
1753         fix for x-staff slurs. Thanks Joe!
1754
1755         * buildscripts/output-distance.py
1756         (SystemLink.output_expression_change_count): keep track of changed
1757         details, and dump in details html page.
1758  
1759         * input/regression/figured-bass-staff.ly: add note about setting
1760         properties in Staff context.
1761
1762         * lily/figured-bass-position-engraver.cc (acknowledge_slur):
1763         add slurs and ties to support too.
1764
1765         * buildscripts/output-distance.py (main): set dest_dir
1766         argument. Add --max-count option.
1767
1768 2006-06-02  Jürgen Reuter  <reuter@ipd.uka.de>
1769
1770         * ly/gregorian-init.ly: Converted to utf-8.  Added memorable
1771         shortcuts for special unicode chars that are useful in chant
1772         notation.  Revised exisiting and added new comments.
1773
1774 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
1775
1776         * make/mutopia-rules.make: remove duplicate recipe.
1777
1778 2006-06-02  Werner Lemberg  <wl@gnu.org>
1779
1780         * tex/texinfo.cnf: Fix typo (\euro -> \minus).
1781         Add support for U+0132 (IJ) and U+0133 (ij).
1782
1783 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
1784
1785         * buildscripts/output-distance.py (FileLink): new class. collect
1786         info systems from one .ly file. 
1787         (FileLink.link_files_for_html): further tweaks.
1788
1789 2006-06-02  Graham Percival  <gpermus@gmail.com>
1790
1791         * tex/texinfo.tex: partial fix for @funindex.
1792
1793         * Documentation/user/macros.tely: uncomment @funindex (doesn't
1794         break anything).
1795
1796 2006-06-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
1797
1798         * make/mutopia-vars.make (ly_examples): replace .ly.txt with .ly
1799
1800         * tex/texinfo.tex (sectionheading, q.v.): call \quoteexpand for
1801         @example too. Backportme.
1802
1803 2006-06-02  Graham Percival  <gpermus@gmail.com>
1804
1805         * tex/texinfo.cnf: added UTF-8 support for texinfo; patch
1806         from Werner Lemberg.
1807
1808 2006-06-02  Paco (Francisco Vila)  <fravd@ya.com>
1809
1810         * Documentation/user/music-glossary.tely: additional spanish
1811         updates and a lyrics fix in an example.
1812
1813 2006-06-02  Jürgen Reuter  <reuter@ipd.uka.de>
1814
1815         * scm/define-grob-properties.scm: Previous patch contained
1816         spurious line from another patch not yet committed.  Fixed.
1817
1818         * scm/define-grob-properties.scm: Add missing doc strings for
1819         ancient notation.
1820
1821 2006-06-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
1822
1823         * buildscripts/output-distance.py
1824         (ComparisonData.write_text_result_page): separate the scores, sort
1825         by geo_score.
1826
1827         * scm/framework-eps.scm (output-classic-framework): start at 1 for
1828         system signatures.
1829
1830         * buildscripts/output-distance.py (me_path): use argv[0] for
1831         sys.path extension
1832         (ComparisonData.img_cell): use colored borders.
1833
1834         * scm/stencil.scm (write-system-signature): escape newlines too.
1835         (write-system-signature): use (1,-1) interval for empty interval
1836
1837 2006-01-01  Graham Percival  <gpermus@gmail.com>
1838
1839         * Documentation/user/music-glossary.tely: Spanish updates
1840         from Francisco Vila.
1841
1842         * Documentation/user/lilypond-book.itely: addition from
1843         Vaclav Smilauer.
1844
1845         * Documentation/user/ various: edits, small additions
1846         from mailist, etc.
1847
1848 2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
1849
1850         * GNUmakefile.in (tree-lib-prefix-current):
1851         (tree-share-prefix-current): Use version number in tree, add
1852         `current' symlinks.
1853
1854 2006-06-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
1855
1856         * GNUmakefile.in: write VERSION, again.
1857
1858         * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
1859         $(outdir)/%.ly $(outdir)/%.ps): dump sigs for normal files too.
1860
1861         * stepmake/aclocal.m4: robuster version detection.
1862
1863         * buildscripts/output-distance.py
1864         (ComparisonData.create_html_result_page): copy only if file
1865         exists, fixup src paths.
1866
1867         * stepmake/bin/add-html-footer.py (built): junk gulp_file()
1868
1869 2006-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
1870
1871         * stepmake/aclocal.m4: Robustification for (gcc) version detection.
1872         Another datarootdir reto.
1873
1874         * cygwin/postinstall-lilypond.sh: Do not fail if info docs aren't
1875         available.  This should be moved to postinstall-lilypond-doc.
1876
1877 2006-05-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
1878
1879         * GNUmakefile.in: simplify local-WWW-post. 
1880         remove -type l from find.
1881
1882         * buildscripts/output-distance.py (ComparisonData.compare_trees):
1883         fixes. Don't follow symlinks.
1884         (ComparisonData.create_html_result_page): remove previous results.
1885         insert ../python in path.
1886
1887         * scripts/lilypond-book.py (PREAMBLE_LY): spacing fixes.
1888
1889 2006-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
1890
1891         * config.make.in (datadir): Add datarootdir to silence autoconf.
1892
1893         * stepmake/aclocal.m4: Update for autoconf-2.59d.
1894
1895 2006-05-31  Erlend Aasland  <erlenda@gmail.com>
1896
1897         * dynamic-engraver.cc: fix bug (dynamics collide with accidentals)
1898
1899         * scm/output-ps.scm (repeat-slash): fix a bug that made repeat
1900         slash beams too wide.
1901
1902 2006-05-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
1903
1904         * VERSION: release 2.9.7
1905         
1906 2006-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
1907
1908         * lily/relocate.cc (read_relocation_dir): Do not blindly
1909         dereference DIR.
1910
1911 2006-05-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
1912
1913         * lily/parser.yy: replace THIS by PARSER
1914
1915         * Documentation/index.html.in: add link to test-results.html page.
1916
1917         * Documentation/topdocs/NEWS.tely (Top): update NEWS entry.
1918
1919         * scm/translation-functions.scm (format-bass-figure): translate
1920         digits over 10 to the left
1921
1922         * scm/define-markup-commands.scm (translate-scaled): new markup.
1923
1924         * mf/feta-nummer-code.mf (code): overshoot the topright tip of the
1925         7 glyph. 
1926
1927         * ly/engraver-init.ly: add Figured_bass_engraver
1928
1929         * lily/engraver-group.cc (acknowledge_grobs): use start/stop drul.
1930
1931         * lily/figured-bass-engraver.cc (clear_spanners): use everywhere.
1932
1933         * lily/score-engraver.cc (announce_grob): only note START announces.
1934
1935         * lily/include/engraver-group.hh (Translator_group):
1936         acknowledge_hash_table_ is now drul.
1937
1938         * lily/engraver.cc (announce_end_grob): new method.
1939
1940         * lily/include/grob-info.hh (class Grob_info): add start_end_ member.
1941
1942         * lily/translator-dispatch-list.cc (create): take start_end argument.
1943
1944         * lily/include/translator.hh (TRANSLATOR_DECLARATIONS): change
1945         acknowledge_static_array_ to drul
1946
1947         * lily/include/translator.icc (ADD_END_ACKNOWLEDGER): new macro.
1948
1949         * scm/define-grob-interfaces.scm
1950         (bass-figure-alignment-interface): add bass-figure-alignment-interface
1951
1952         * scm/define-grobs.scm (all-grob-descriptions): add
1953         BassFigureAlignmentPositioning
1954
1955         * ly/Welcome-to-LilyPond-MacOS.ly: include in LilyPond, so version
1956         number stays up to date. Backportme.
1957
1958 2006-05-30  Mats Bengtsson  <mabe@s3.kth.se>
1959
1960         * Documentation/user/basic-notation.itely (Bar lines): Document
1961         the "||:" bar type. 
1962
1963 2006-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
1964
1965         * buildscripts/builder.py: Remove --ly option/target from mf-to-table.
1966
1967         * scripts/lilypond-book.py: Bugfix: do not blindly attempt
1968         .../current hack if LILYPONDPREFIX is fine.  Fixes `scons doc'
1969         build.
1970
1971         * Resurrect `scons lily' build.
1972
1973         * SConstruct (symlink_tree): Bugfix: link
1974         music-drawing-routines.ps to file iso directory.
1975
1976         * lily/SConscript: Remove kpath-guile from LIBS.
1977
1978         * SConstruct (libdir_package_version): Typo.
1979         (configure): Comment-out fontforge for lack of fontforge.pc .
1980         Also add libdir* to environment.
1981
1982 2006-05-30  Graham Percival  <gpermus@gmail.com>
1983
1984         * Documentation/user/ various: minor additions from mailist and
1985         editing.
1986
1987 2006-05-30  Paco <fravd@ya.com>
1988
1989         * Documentation/user/music-glossary.tely: numerous corrections and
1990         some new translations.
1991
1992 2006-05-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
1993
1994         * BackportmeStart.
1995         
1996         * buildscripts/output-distance.py
1997         (ComparisonData.create_html_result_page): new routine: summarise
1998         results in HTML page with images. 
1999         (ComparisonData.create_text_result_page): create summary text files too.
2000
2001         * GNUmakefile.in (web-ext): package .signature files too. They
2002         compress well. 
2003
2004         * scm/stencil.scm (write-system-signature): typo.
2005
2006         * GNUmakefile.in: create web-root/VERSION to help upload scripts.
2007
2008         * scm/stencil.scm (write-system-signature): better escaping.
2009         only write signature for music systems, not for markup systems.
2010
2011         * scm/framework-ps.scm (output-framework): dump-signatures support
2012         for plain output.
2013
2014         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): add -ddump-signatures.
2015
2016         * scm/framework-ps.scm (write-preamble): redefine mark_URI to nop
2017         for -dno-point-and-click
2018
2019         * lily/grob.cc (get_print_stencil): don't read
2020         point_and_click_global to determine whether to set grob-cause.
2021
2022 2006-05-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
2023
2024         * buildscripts/output-distance.py (main): new function.
2025         (ComparisonData): new class.
2026
2027         * lily/ledger-line-engraver.cc (acknowledge_staff_symbol): be more
2028         careful with generating new LedgerLineSpanners.
2029
2030         * lily/ledger-line-spanner.cc (set_spacing_rods): suicide if no staff.
2031
2032         * ly/engraver-init.ly: remove Ledger_line_engraver from Voice
2033         context. This fixes double ledger lines in output. 
2034
2035         * lily/system.cc (get_paper_system): remove 3 layer limit.
2036
2037         * buildscripts/output-distance.py (SystemLink.distance): new
2038         file. Compare signatures.
2039
2040         * python/safeeval.py (SafeEval.visitUnarySub): new file.
2041
2042         * lily/grob-array.cc (remove_duplicates): rename from
2043         uniq(). Sort before calling uniq() so it actually works.
2044
2045 2006-05-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
2046
2047         * scripts/lilypond-book.py (Lilypond_file_snippet.ly): strip
2048         \version from lilypond file snippet.
2049         (Lilypond_file_snippet.ly): oops. typo.
2050         (find_toplevel_snippets): urgh. again.
2051
2052         * lily/system.cc (get_paper_systems): uniq all_elements_ , to
2053         prevent duplicated broken items in output.
2054
2055         * scm/framework-eps.scm (output-classic-framework): only dump if
2056         dump-signatures is set.
2057
2058         * scm/lily.scm (define-scheme-options): add dump-signatures option.
2059
2060         * scm/stencil.scm (write-system-signature): new routine: write
2061         python parseable signature of a separate paper system.
2062         BackportmeEnd.
2063         
2064 2006-05-26  Han-Wen Nienhuys  <hanwen@lilypond.org>
2065
2066         * lily/stanza-number-engraver.cc (process_music): use is_markup()
2067         iso is_string().
2068         include header.
2069
2070 2006-05-25  Erik Sandberg  <mandolaerik@gmail.com>
2071
2072         * translator-group.cc: send music events to engravers in
2073         non-bottom contexts.
2074
2075         * tuplet-engraver.cc: process tuplet brackets in correct order.
2076
2077 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2078
2079         * stepmake/aclocal.m4: STEPMAKE_PYTHON(): clear cached value since
2080         arg 2 might point us to a new binary (patch by Karl Hammar)
2081         
2082 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2083
2084         * VERSION (PACKAGE_NAME): release 2.9.6
2085
2086         * Documentation/topdocs/NEWS.tely (Top): trim explanation. 
2087
2088         * Documentation/user/*.itely: 2nd
2089         attempt: replace funindex -> findex globally.
2090
2091 2006-05-24  Nicolas Sceaux  <nicolas.sceaux@free.fr>
2092
2093         * input/no-notation/display-lily-tests.ly: fix \applyOutput
2094         test. Add \break, \pageBreak, \pageTurn, etc, tests.
2095
2096         * scm/define-music-display-methods.scm: display methods for
2097         breaks. Fix \applyOutput.
2098
2099 2006-05-24  Han-Wen Nienhuys  <hanwen@lilypond.org>
2100
2101         * Documentation/user/macros.itexi: comment out funindex expansion. 
2102
2103         * Documentation/user/music-glossary.tely: junk \oldaddlyrics
2104         everywhere.
2105
2106         * GNUmakefile.in: fix wildcarding for scrips/out/ links. Thanks
2107         Karl Hammar. Backportme.
2108  
2109         * Documentation/user/advanced-notation.itely (Balloon help): idem.
2110
2111         * Documentation/user/changing-defaults.itely (Creating contexts): idem.
2112
2113         * Documentation/user/programming-interface.itely (Running a
2114         function on all layout objects): idem.
2115
2116         * Documentation/user/introduction.itely (Automated engraving):
2117         update \applyOutput syntax
2118
2119         * lily/lyric-combine-music-iterator.cc (start_new_syllable):
2120         remove debugging hook.
2121
2122         * configure.in (LINK_GXX_STATICALLY): use "" to allow $
2123         expansion. 
2124
2125         * Documentation/user/GNUmakefile (TEXI2DVI_FLAGS): add -E.
2126
2127         * stepmake/stepmake/texinfo-rules.make ($(outdir)/%.dvi): add
2128         TEXI2DVI_FLAGS to texi2dvi invocation. 
2129
2130 2006-05-24  Erik Sandberg  <mandolaerik@gmail.com>
2131
2132         * lily/chord-tremolo-*.cc: Reworked how \repeat "tremolo"
2133         works. More work is done by iterator now, and engraver has been
2134         very much simplified.
2135
2136         * lily/translator-group.cc: try_music is now invoked through a
2137         listener
2138
2139         * lily/*-iterator.cc: Massive cleanups. Junked
2140         try_music_in_children globally. Renamed try_music to report_event,
2141         and made that method descend to a bottom context automatically.
2142
2143         * lily/event-iterator.cc: New file.
2144
2145         * lily/output-property-iterator.cc,
2146         lily/old-lyric-combine-music-iterator.cc: Removed.
2147
2148         * python/convert-rules.py: Modified the syntax for \applyOutput.
2149
2150 2006-05-23  Graham Percival  <gpermus@gmail.com>
2151
2152         * stepmake/stepmake/texinfo-rules.make: added -E, allows pdf doc
2153         creation.
2154
2155         * Documentation/user/ various: stuff that might have helped
2156         to fix the pdf creation, plus some minor doc additions.
2157
2158         * Documentation/user/changing-defaults.itely: remove @b from
2159         @b{ @internasref{foo}}; this breaks texi2dvi -E.
2160
2161 2006-05-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
2162
2163         * lily/beaming-pattern.cc (beamify): deal with negative start
2164         moments for beaming patterns.
2165
2166 2006-05-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
2167
2168         * lily/beaming-info.cc (beamify): new function: read beatLength
2169         and beatGrouping from context. 
2170
2171         * input/regression/beam-beat-grouping.ly (Module): new file.
2172
2173         * input/regression/beam-unconnected-beamlets.ly (Module): new file.
2174
2175         * lily/beam.cc (get_beam_segments): generate events for
2176         max_connect_ case too.
2177         (get_beam_segments): read Stem::max-beam-connect.
2178
2179         * input/regression/beam-single-stem.ly: new file.
2180
2181         * lily/stem.cc (set_beaming): use #f as signaling value for
2182         beamcount 0.
2183
2184         * lily/beam-engraver.cc (typeset_beam): set right bound if unset.
2185
2186         * lily/beam.cc (set_beaming): read clip-edges property.
2187         (calc_direction): don't suicide for single stem.
2188
2189         * lily/beaming-info.cc (best_splitpoint_index): take bool*
2190         argument, remove 1<<15 hack. Remove clip_edges() 
2191
2192         * lily/hairpin.cc (print): only do padding for nonmusical bounds
2193
2194 2006-05-21  Graham Percival  <gpermus@gmail.com>
2195
2196         * Documentation/user/basic-notation.itely: reorg.
2197
2198         * Documentation/user/ various: minor fixes.
2199
2200 2006-05-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
2201
2202         * lily/stencil-expression.cc (register_stencil_head): opps, append
2203         to cdr of static SCM object.
2204
2205 2006-05-19  Graham Percival  <gpermus@gmail.com>
2206
2207         * Documentation/user/README.txt, lilypond.tely, macros.itexi:
2208         update framework for command index.  DOC WRITERS: use @funindex
2209         instead of @cindex @code{}.
2210
2211         * Documentation/user/ various: replace @cindex @code{} => @funindex
2212
2213 2006-05-19  Han-Wen Nienhuys  <hanwen@lilypond.org>
2214
2215         * lily/beam.cc (set_stem_lengths): trigger 'beaming callback, in
2216         case positions is set manually. 
2217
2218 2006-05-18  Erik Sandberg  <mandolaerik@gmail.com>
2219         
2220         * scm/ly-syntax-constructors.scm: New file. Converted a few syntax
2221         rules to Scheme.
2222
2223 2006-05-18  Han-Wen Nienhuys  <hanwen@lilypond.org>
2224
2225         * Documentation/user/changing-defaults.itely (Contexts explained):
2226         use absolute dimension for @image.
2227
2228         * Documentation/user/GNUmakefile (OUT_PNG_IMAGES): generate PNG
2229         out image for illustration too.
2230         ($(outdir)/%.png): add more png <-> eps rules. 
2231
2232 2006-05-17  Graham Percival  <gpermus@gmail.com>
2233
2234         * Documentation/user/ various: remove trailing whitespace, cosmetic
2235         change to reduce changes produced by diff.
2236
2237 2006-05-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
2238
2239         * lily/main.cc (do_chroot_jail): correctness tweak.
2240
2241         * python/lilylib.py (system): import subprocess in system () only.
2242
2243         * scripts/*.py: use TARGET_PYTHON iso PYTHON. Backportme.
2244
2245         * make/substitute.make (ATVARIABLES): add TARGET_PYTHON as subst
2246         variable. Backportme.
2247
2248 2006-05-17  Erik Sandberg  <mandolaerik@gmail.com>
2249         
2250         * lily/parser.yy: Change all syntax rules of type Music to SCM type
2251
2252 2006-05-17  Werner Lemberg  <wl@gnu.org>
2253
2254         * lily/lexer.ll (init_signature_has_table): Add
2255         `scm-scm-music-music'.
2256
2257         * lily/parser.yy (MUSIC_FUNCTION_SCM_SCM_MUSIC_MUSIC): New token.
2258         (Generic_prefix_music_scm): Add rule for it.
2259
2260         * lily/quote-iterator.cc (Quote_iterator::process): Handle
2261         `quoted-transposition' property.
2262
2263         * ly/music-functions-init.ly (transposedCueDuring): New function.
2264
2265         * scm/define-music-properties.scm (all-music-properties): Updated.
2266
2267         * Documenation/topdocs/NEWS.itely: Document it.
2268
2269 2006-05-17  Han-Wen Nienhuys  <hanwen@lilypond.org>
2270
2271         * python/lilylib.py (system): move import subprocess to system()
2272         definition. 
2273
2274         * python/convertrules.py (conv): fix convert-ly rules for 2.9.4
2275
2276         * VERSION (PATCH_LEVEL): release 2.9.5
2277         
2278         * Documentation/topdocs/INSTALL.texi (Top): update versions and
2279         build instructions. 
2280
2281         * ly/engraver-init.ly: switch on hairpinToBarline by default.
2282
2283 2006-05-16  Graham Percival  <gpermus@gmail.com>
2284
2285         * Documentation/user/basic-notation.itely: editing from Dave, thanks!
2286
2287         * Documentation/user/ various: minor fixes.
2288
2289 2006-05-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
2290
2291         * Documentation/topdocs/NEWS.tely (Top): add hairpinToBarline feature.
2292
2293 2006-05-16  Mats Bengtsson  <mabe@s3.kth.se>
2294
2295         * Documentation/user/advanced-notation.itely (Instrument names):
2296         Modified obsolete instruction on how to move instrument names away
2297         from the staves. Hmm, at second thought the bug probably has been
2298         solved, so the full bug description should probably be removed.
2299
2300 2006-05-16  Han-Wen Nienhuys  <hanwen@lilypond.org>
2301
2302         * lily/dynamic-engraver.cc (typeset_all): hang ending on
2303         currentCommandColumn. 
2304
2305         * lily/hairpin.cc (print): also add padding for non-neighbor
2306         hairpin bounds.
2307
2308         * scm/define-context-properties.scm
2309         (all-user-translation-properties): add hairpinToBarline
2310
2311         * input/regression/hairpin-to-barline.ly: new file.
2312
2313         * lily/context.cc (internal_send_stream_event): thinko fix.
2314
2315         * lily/tie.cc (set_default_control_points): robustness fix.
2316
2317         * python/musicxml.py (Part.interpret): don't complain about
2318         incomplete measures.
2319
2320         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): only add
2321         new music if last_event_chord() returned None.
2322
2323         * python/musicxml.py (Part.interpret): skip back over chord notes.
2324
2325 2006-05-16  Erik Sandberg  <mandolaerik@gmail.com>
2326         
2327         * lily/percent-repeat-engraver.cc, lily/parser.yy,
2328         lily/define-music-types.cc, lily/percent-repeat-iterator.cc,
2329         lily/slash-repeat-engraver.cc,
2330         lily/include/percent-repeat-iterator.hh: Rework percent repeats:
2331         iterator sends PercentEvents
2332
2333         * lily/time-scaled-music-iterator.cc, lily/tuplet-engraver.cc:
2334         rework tuplets: send start/stop events to engraver
2335
2336         * lily/context.cc, lily/music.cc, lily/context-scheme.cc: Add
2337         dispatchers event-source and events-below to Context
2338         
2339 2006-05-15  Graham Percival  <gpermus@gmail.com>
2340
2341         * Documentation/user/README.txt: update info for doc writers.
2342
2343         * Documentation/user/programming-interface.itely: integrate
2344         Nicolas' fixes for chapter rewrite.
2345
2346         * Documentation/user/ various: minor fixes.
2347
2348 2006-05-15  Han-Wen Nienhuys  <hanwen@lilypond.org>
2349
2350         * lily/clef-engraver.cc: cleanup.
2351
2352         * Documentation/user/GNUmakefile: dist context-example.eps too.
2353
2354         * lily/key-engraver.cc (create_key): use
2355         explicitKeySignatureVisibility for cancellation too. 
2356
2357         * lily/font-config.cc (init_fontconfig): don't close file if
2358         f==NULL. 
2359
2360 2006-05-15  Erlend Aasland  <erlenda@gmail.com>
2361
2362         * Documentation/topdocs/NEWS.tely: niente and rotation news
2363
2364 2006-05-14  Erlend Aasland  <erlenda@gmail.com>
2365
2366         * lily/include/stencil.hh
2367         * lily/stencil.cc (rotate): new function. Makes it possible
2368         to rotate a stencil around a given offset.
2369
2370         * lily/grob.cc (get_print_stencil): add rotation support
2371
2372         * lily/stencil-interpret.cc (interpret_stencil_expression):
2373         add rotation support
2374
2375         * lily/stencil-scheme.cc (ly:stencil-rotate): new function
2376
2377         * scm/define-grob-properties.scm: add 'rotation property
2378
2379         * scm/define-markup-commands.scm: add rotate markup command
2380         
2381         * scm/output-ps.scm: add rotation support in PostScript backend
2382
2383         * scm/output-svg.scm: add rotation support in SVG backend
2384
2385 2006-05-13  Graham Percival  <gpermus@gmail.com>
2386
2387         * Documentation/user/music-glossary.itely: French correction.
2388
2389         * Documentation/user/programming-interface.itely: major
2390         new docs, some reorg, some info from Nicolas.
2391
2392         * Documentation/user/ various: small fixes.
2393
2394 2006-05-12  Mats Bengtsson  <mabe@s3.kth.se>
2395
2396         * Documentation/user/programming-interface.itely (Markup
2397         programmer interface): Remove duplicate text.
2398
2399 2006-05-12  Graham Percival  <gpermus@gmail.com>
2400
2401         * Documentation/user/context-example.eps: new file.
2402
2403         * Documentation/user/changing-defaults.itely: set up file to
2404         use eps image.
2405
2406         * Documentation/user/programming-interface.itely: changes
2407         from mailist.
2408
2409 2006-05-12  Han-Wen Nienhuys  <hanwen@lilypond.org>
2410
2411         * configure.in (LINK_GXX_STATICALLY): python 2.4 req.
2412
2413 2006-05-11  Graham Percival  <gpermus@gmail.com>
2414
2415         * Documentation/user/programming-interface.itely: first round of
2416         editing and merging emails from Nicolas.
2417
2418         * Documentation/user/scheme-tutorial: minor edit.
2419
2420 2006-05-11  Han-Wen Nienhuys  <hanwen@lilypond.org>
2421
2422         * python/musicxml.py (Xml_node.__init__): _attribute_dict stores
2423         XML attributes.
2424         (Xml_node.message): use it.
2425
2426         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): 
2427         oops. Add duration argument.
2428
2429 2006-05-10  Joe Neeman  <joeneeman@gmail.com>
2430
2431         * lily/paper-column-engraver.cc (make_columns):
2432         * scm/define-grobs.scm: Revert my previous change and set the default
2433         in define-grobs.scm instead.
2434
2435 2006-05-09  Graham Percival  <gpermus@gmail.com>
2436         
2437         * Documentation/user/changing-defaults.itely: general editing,
2438         info about \set and \override.
2439
2440         * Documentation/user/tweaking.itely, advanced-notation.itely:
2441         fixes from Dave Luttinen, thanks!
2442
2443 2006-05-09  Joe Neeman  <joeneeman@gmail.com>
2444
2445         * lily/paper-column-engraver.cc (make_columns): By default, a column
2446         needs to be breakable.
2447
2448 2006-05-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
2449
2450         * scripts/musicxml2ly.py (musicxml_clef_to_lily): use new
2451         Attributes methods
2452         (musicxml_time_to_lily): idem
2453         (musicxml_key_to_lily): idem
2454         (instrument_drumtype_dict): dict for supported drumtypes.
2455         (LilyPondVoiceBuilder.__init__): new class: sanely keep track of
2456         moments and pending mm rests
2457         (musicxml_voice_to_lily_voice): rewrite to use LilyPondVoiceBuilder
2458         (musicxml_voice_to_lily_voice): strip KeyChangeEvents for drums.
2459         (musicxml_voice_to_lily_voice): add mode change.
2460         (option_parser): lxml.etree (http://codespeak.net/lxml/) for more
2461         speed and less memory usage (factor 5 to 10).
2462         (convert): write -defs.ly  and driver file separately so people
2463         can script their own part extraction.
2464
2465         * python/musicxml.py (minidom_demarshal_node): new function:
2466         separate minidom handling.
2467         (lxml_demarshal_node): new function: support lxml.etree too.
2468         (Xml_node.message): new function: verbose error message, with XML
2469         path to offending node.
2470         (Attributes.get_measure_length): sane interface to MusicXML attributes.
2471         (Part_list.generate_id_instrument_dict): new method: collect
2472         instrument names, to be able to set drum_type.
2473         (Part.interpret): handle underfull measures
2474         (Part.interpret): assign instrument names.
2475
2476         * python/musicexp.py (Output_printer.close): new method
2477         (MusicWrapper.print_ly): new class: support other modes,
2478         eg. \drummode
2479         (BarCheck.print_ly): new class. Support bar checks, with comments
2480         and fancy barchecks. 
2481         (NoteEvent.__init__): also set drum_type for drum notes.
2482         (MultiMeasureRest.lisp_expression): dump mm rests.
2483
2484         * lily/paper-column-engraver.cc (stop_translation_timestep): set
2485         line-break-permission if forbidBreak is not set.
2486
2487 2006-05-09  Joe Neeman  <joeneeman@gmail.com>
2488
2489         * scm/define-context-properties.scm:
2490         * scm/define-grob-properties.scm:
2491         * scm/define-grobs.scm:
2492         * scm/define-music-display-methods.scm:
2493         * scm/define-music-properties.scm:
2494         * scm/define-music-types.scm:
2495         * scm/music-functions.scm:
2496         * ly/declarations-init.ly:
2497         * lily/include/constrained-breaking.hh:
2498         * lily/system.cc:
2499         * lily/spaceable-grob.cc:
2500         * lily/simple-spacer.cc:
2501         * lily/paper-score.cc:
2502         * lily/paper-column.cc:
2503         * lily/paper-column-engraver.cc:
2504         * lily/item.cc:
2505         * lily/gourlay-breaking.cc:
2506         * lily/constrained-breaking.cc:
2507         * python/convertrules.py:
2508         Change "penalty", "page-penalty" and "breakable" to "line-break-penalty",
2509         "page-break-penalty" and "line-break-permission".
2510         Add "page-break-permission", "page-turn-permission" and "page-turn-penalty".
2511         Replace BreakEvent with LineBreakEvent, PageBreakEvent and PageTurnEvent.
2512
2513         * lily/bar-engraver.cc:
2514         * lily/beam-engraver.cc:
2515         * lily/forbid-break-engraver.cc:
2516         * lily/ligature-engraver.cc:
2517         * lily/paper-column-engraver.cc:
2518         * lily/percent-repeat-engraver.cc:
2519         * lily/score-engraver.cc:
2520         * lily/score-engraver.hh:
2521         * lily/paper-column-engraver.hh:
2522         Inter-engraver communication regarding line breaks is done through context
2523         properties (Score.forbidBreak) instead of function calls.
2524
2525 2006-05-08  Han-Wen Nienhuys  <hanwen@lilypond.org>
2526
2527         * VERSION (PACKAGE_NAME): release 2.9.4
2528
2529 2006-05-08  Graham Percival  <gpermus@gmail.com>
2530
2531         * Documentation/user/working.itely: proofreading from Dave
2532         Luttinen, thanks.
2533
2534         * Doucmentation/user/README.txt: updated with manual style info.
2535
2536         * Documentation/user/ various: trim linewidth to 78 chars.
2537
2538 2006-05-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
2539
2540         * scm/define-grob-properties.scm (all-internal-grob-properties):
2541         remove chord-tremolo property.
2542
2543         * lily/beam.cc (get_beam_segments): don't use stem position as
2544         base for broken ends.
2545
2546 2006-05-06  Graham Percival  <gpermus@gmail.com>
2547
2548         * Documentation/user/putting.itely: proofreading from Dave
2549         Luttinen, thanks!
2550
2551         * Documentation/user/ various: more reorg and clarifications.
2552
2553 2006-05-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
2554
2555         * scm/lily.scm (TEX_STRING_HASHLIMIT): move from framework-texstr.scm.
2556
2557         * ly/music-functions-init.ly: new function featherDurations
2558
2559         * lily/beam.cc: read grow-direction for feathered beaming.
2560
2561         * Documentation/topdocs/NEWS.tely (Top): typo.
2562
2563 2006-05-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
2564
2565         * lily/include/beam.hh (struct Beam_stem_segment): add gapped_ for
2566         tremolo beams.
2567
2568 2006-05-05  Erik Sandberg  <mandolaerik@gmail.com>
2569         * lily/context.cc, lily/global-context.cc: Added 'unique' member,
2570         used by music streams.
2571
2572         * lily/dispatcher.cc, lily/dispatcher-scheme.cc,
2573         lily/stream-event.cc, lily/stream-event-scheme.cc,
2574         lily/listener.cc, lily/scheme-listener.cc,
2575         lily/scheme-listener-scheme.cc, lily/include/dispatcher.hh,
2576         lily/include/stream-event.hh, lily/include/listener.hh,
2577         lily/include/scheme-listener.hh, scm/define-event-classes.scm:
2578         Created data structures for music streams.
2579         
2580 2006-05-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
2581
2582         * lily/beam.cc (get_beam_segments): new function. Reorganise the
2583         construction of a beam. 
2584         (print): rewrite. 
2585
2586         * flower/include/std-vector.hh (default_compare): use only one comparison.
2587
2588         * scm/define-markup-commands.scm (note-by-number): remove debug display.
2589         (note-by-number): further attachment fixes.
2590
2591         * scm/lily-library.scm (ordered-cons): new function.
2592         (interval-index): new function
2593
2594         * lily/note-head-scheme.cc (LY_DEFINE): new file.
2595
2596         * lily/note-head.cc (get_stem_attachment): new function.
2597
2598         * scm/define-markup-commands.scm (note-by-number): read 'style
2599         property. 
2600
2601         * input/regression/markup-note.ly: show note-head style option.
2602
2603         * mf/feta-bolletjes.mf (overdone_heads): fix attachment points for
2604         triangle head.
2605
2606 2006-05-04  Han-Wen Nienhuys  <hanwen@lilypond.org>
2607
2608         * mf/GNUmakefile (NCSB_OTFS): remove old ncsb detection further.
2609
2610         * configure.in (LINK_GXX_STATICALLY): fix for ncsb detection.
2611
2612         * lily/include/constrained-breaking.hh: GCC 4 fix.
2613
2614 2006-05-04  Joe Neeman  <joeneeman@gmail.com>
2615
2616         * lily/simple-spacer.cc: Remove class Simple_spacer_wrapper.
2617         Replace it with functions get_line_forces and get_line_configuration.
2618         (class Simple_spacer): Make data private.
2619         Rewrite compression algorithm to be faster and simpler.
2620
2621         * lily/simple-spacer-scheme.cc (ly_solve_rod_and_spring_problem):
2622         * lily/gourlay-breaking.cc (solve):
2623         * lily/constrained_breaking.cc (space_line):
2624         Change it to the new simple-spacer code.
2625
2626         * lily/paper-score.cc (get_paper_systems):
2627         (Paper_score):
2628         (process):
2629         Delay breaking the systems until they are requested.
2630         (find_break_indices):
2631         Use vsize for indices.
2632         (calc_breaking):
2633         Move the "Calculating line breaks" message here.
2634
2635         * lily/system.cc (pre_processing):
2636         Move the "Calculating line breaks" message away from here.
2637         (break_into_pieces):
2638         Allow multiple calls to this function in sequence (with touching-but-
2639         not-overlapping breakpoints).
2640
2641         * lily/constrained-breaking.cc:
2642         Replace most of the get_XXXX functions with get_line_details.
2643         Only calculate the force for each line. Calculate configurations only
2644         for the lines we will actually use.
2645         Replace cols_ with lines_.
2646
2647 2006-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
2648
2649         * mf/GNUmakefile (depth): remove FC_FIND.
2650
2651         * config.make.in (NCSB_SOURCE_FILES): subst NCSB_SOURCE_FILES
2652
2653         * configure.in (LINK_GXX_STATICALLY): call fc-match from within configure.
2654
2655         * scm/framework-ps.scm (write-preamble): new function.
2656         (write-preamble): load mac fonts via fondu, even if gs-font-load
2657         is set.
2658
2659 2006-05-03  Werner Lemberg  <wl@gnu.org>
2660
2661         * mf/GNUmakefile (FC_FIND): Fix typo.
2662
2663 2006-05-03  Erlend Aasland  <erlenda@gmail.com>
2664
2665         * stepmake/stepmake/generic-targets.make (cvs-clean): also remove out-www dirs.
2666
2667 2006-05-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
2668
2669         * stepmake/aclocal.m4: run python-config for crosscompiling
2670         flags. 
2671
2672         * scripts/lilypond-book.py (Lilypond_file_snippet.my_system): add
2673         -f png for HTML, TEXINFO formats. 
2674
2675         * input/tutorial/lbook-html-test.html: new file.
2676
2677         * lily/include/tie-formatting-problem.hh (class
2678         Tie_formatting_problem): index Chord_outline_map by Tuple2 for
2679         [column, direction]. This fixes laissez vibrer ties.
2680  
2681         * flower/include/tuple.hh (struct Tuple2): new file.
2682
2683         * mf/GNUmakefile (FC_FIND): new function. Find ncsb using
2684         $(FCMATCH), only if $(NCSB_DIR) not set. 
2685
2686         * configure.in (LINK_GXX_STATICALLY): only warn if $NCSB_DIR set.
2687
2688         * config.make.in (DOCUMENTATION): set FCMATCH.  
2689
2690         * autogen.sh (srcdir): don't set --with-ncsb-dir. 
2691
2692 2006-05-03  Graham Percival  <gpermus@gmail.com>
2693
2694         * Documentation/user/ various: final round of reorg.
2695
2696         * Documentation/user/instrument-notation.itely: some more
2697         fixes from Eduardo, thanks!
2698
2699 2006-05-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
2700
2701         * VERSION (PACKAGE_NAME): release 2.9.3
2702
2703         * flower/file-path.cc (is_dir): canonicalize file name before stat'ing.
2704
2705         * lily/relocate.cc (framework_relocation): remove old relocation stuff.
2706
2707 2006-05-01  Mats Bengtsson  <mabe@s3.kth.se>
2708
2709         * scm/define-grob-properties.scm (all-user-grob-properties):
2710         Correct typo, thanks to Eduardo.
2711
2712 2006-05-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
2713
2714         * scripts/GNUmakefile (SEXECUTABLES): remove lilypond-ps2png.scm
2715
2716         * buildscripts/lilypond-words.py (F): indent fix.
2717
2718         * input/regression/tie-arpeggio-collision.ly: new file.
2719
2720         * lily/tie-formatting-problem.cc (set_column_chord_outline): new
2721         function: store outlines per column rank.
2722
2723         * lily/include/tie-configuration.hh (class Tie_configuration): add
2724         column_ranks_ to specification and configuration, to distinguish
2725         between ties for different heads in arpegiated chords.
2726
2727         * lily/relocate.cc (framework_relocation): use INSTALLER_PREFIX.
2728
2729         * *.py: more 4 space indents.
2730
2731         * autogen.sh (conf_flags): set sensible default for with-ncsb-dir
2732
2733 2006-05-01  Joe Neeman  <joeneeman@gmail.com>
2734
2735         * scm/lily-library.scm: Fix guile 1.6 compatibility in inf? and nan?
2736
2737 2006-05-01  Han-Wen Nienhuys  <hanwen@lilypond.org>
2738
2739         * buildscripts/pfx2ttf.fontforge (err): create OTF files.
2740
2741         * scripts/abc2ly.py (dump_score): indent of 4 for python code. 
2742
2743         * configure.in (LINK_GXX_STATICALLY): remove locate() call.
2744
2745 2006-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
2746
2747         * python/convertrules.py (conv): indent 4 for python files.
2748
2749 2006-04-29  Mats Bengtsson  <mabe@s3.kth.se>
2750
2751         * Documentation/user/changing-defaults.itely (Creating contexts):
2752         Clarify \new semantics.
2753
2754 2006-04-28  Graham Percival  <gpermus@gmail.com>
2755
2756         * Documentation/user/ various: major new sections in the
2757         Learning manual, slight reorg elsewhere.
2758
2759 2006-04-27  Han-Wen Nienhuys  <hanwen@lilypond.org>
2760
2761         * mf/GNUmakefile (MFTRACE_FLAGS): add $(outdir) to $(ENCODING_FILE) 
2762
2763         * scm/framework-ps.scm (output-framework): remove PageMedia
2764
2765 2006-04-27  Graham Percival  <gpermus@gmail.com>
2766
2767         * Documentation/user/ tweaks.itely, working.itely: new
2768         files, being more advanced "learning manual" chapters.
2769
2770         * Documentation/user/ tutorial, putting, lilypond: reorg.
2771
2772 2006-04-26  Graham Percival  <gpermus@gmail.com>
2773
2774         * input/regression/lyric-combine-polyphonic.ly: fixed test
2775         (no more "can't find context `one'" error).
2776
2777 2006-04-25  Joe Neeman <joeneeman@gmail.com>
2778
2779         * lily/stem-tremolo.cc (print): fix whole note tremolo placement
2780
2781         * input/regression/stem-tremolo.ly: add 2 more whole note examples
2782         
2783 2006-04-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
2784
2785         * lily/relocate.cc (read_relocation_dir): new function.
2786
2787 2006-04-26  Graham Percival  <gpermus@gmail.com>
2788
2789         * Documentation/user/instrument-notation.itely: a few more fixes
2790         from Eduardo, thanks!
2791
2792         * Documentation/user/README.txt: new file; contains info on
2793         style that used to be in lilypond.tely.
2794
2795         * Documentation/user/ various: first round of doc reorg.
2796
2797         * Documentation/user/baer-flat-bw.png: remove alpha bit from
2798         graphic; this probably causes problems on some pdf
2799         viewers, notably Adobe Acrobat.
2800
2801 2006-04-24  Graham Percival  <gpermus@gmail.com>
2802
2803         * Documentation/user/instrument-notation.itely: many alterations
2804         to Vocal music, from Eduardo Viera.
2805
2806 2006-04-23  Graham Percival  <gpermus@gmail.com>
2807
2808         * Documentation/user/instrument-notation.itely: fix \new
2809         instead of \context problem.
2810
2811 2006-04-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
2812
2813         * lily/relocate.cc (expand_environment_variables): new function.
2814         (read_line): id.
2815         (read_relocation_file): id.
2816
2817         * scm/stencil.scm (eps-file->stencil): fix EPS PS embedding code 
2818
2819 2006-04-21  Erlend Aasland  <erlenda@gmail.com>
2820
2821         * ly/engraver-init.ly: remove old comments from TabVoice
2822
2823 2006-04-20  Graham Percival  <gpermus@gmail.com>
2824
2825         * Documentation/user/instrument-notation.itely: added Erlend's
2826         latest doc patch, thanks!
2827
2828 2006-04-19  Erlend Aasland <erlenda@gmail.com>
2829
2830         * lily/include/slur.hh:
2831         * lily/slur.cc:
2832         * lily/phrasing-slur-engraver.cc:
2833         * lily/slur-engraver.cc: Fix 'cut & paste' code by merging
2834         acknowledge_extra_object () from Phrasing_slur_engraver:: and
2835         Slur_engraver:: and putting it in
2836         Slur::auxiliary_acknowledge_extra_object ().
2837
2838         * ps/music-drawing-routines.ps (draw_dashed_slur): fix another bug
2839
2840         * lily/note-collision.cc: fix a comment
2841
2842 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
2843
2844         * stepmake/bin/add-html-footer.py: fix footer position in
2845         generated html files: before </body> and </html> tags.
2846
2847 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
2848
2849         * scripts/GNUmakefile: revert last "fix", which rather broke make.
2850         Earlier successive `make' commands finally compiled ok.
2851
2852         * Documentation/topdocs/INSTALL.texi: require mftrace 1.1.19.
2853
2854 2006-04-18  Erlend Aasland <erlenda@gmail.com>
2855
2856         * lily/include/stem-tremolo.hh:
2857         * lily/stem-tremolo.cc: move rotated_box () to Lookup:: and update
2858         callers.
2859
2860         * lily/lookup.cc:
2861         * lily/include/lookup.hh: add rotated_box ()
2862
2863 2006-04-18  Heikki Junes  <hjunes@cc.hut.fi>
2864
2865         * scripts/GNUmakefile: bugfix: run help2man only after scripts have 
2866         been generated. Fixes "can't get `--help'" bug after make clean.
2867
2868         * THANKS: alphabetize contributors.
2869
2870 2006-04-17  Graham Percival  <gpermus@gmail.com>
2871
2872         * Documentation/user/instrument-notation.itely: added Erlend's
2873         tabs and banjo doc patch.  Thanks!
2874
2875 2006-04-17  Erlend Aasland  <erlenda@gmail.com>
2876
2877         * scm/define-grobs.scm: fix stem-attachment for tablature note heads.
2878
2879         * ps/music-drawing-routines.ps (draw_dashed_line): fix dash pattern bug.
2880
2881         * scm/output-lib.scm: add some more predefined string tunings.
2882
2883         * Documentation/user/instrument-notation.itely: and doc them.
2884
2885 2006-04-16  Jürgen Reuter  <reuter@ipd.uka.de>
2886
2887         * ly/engraver.ly: Remove obsolete comments.
2888
2889         * ly/gregorian-init.ly: Define default layout block.
2890
2891         * input/puer-fragment.ly: Updated and extended.
2892
2893 2006-04-15  Jan Nieuwenhuizen  <janneke@gnu.org>
2894
2895         * lily/lily-parser-scheme.cc: Use them to fix --output=DIR/BASE
2896         pdf conversion behaviour.
2897
2898         * flower/file-name.cc (dir_name)
2899         (get_working_directory): Move from relocate.cc.
2900
2901         * lily/relocate.cc (setup_paths): Remove rogue stat calls.
2902         
2903         * lily/relocate.cc: Encapsulate sys/stat.h in
2904         HAVE_STAT_H.
2905
2906 2006-04-14  Graham Percival  <gpermus@gmail.com>
2907
2908         * Documentation/user/ various: small updates from Cameron
2909         and Juergen, thanks!
2910
2911         * Documentation/user/ various: small updates of my own.
2912
2913         * THANKS: 2.7 -> 2.8.
2914
2915 2006-04-11  Graham Percival  <gpermus@gmail.com>
2916
2917         * scm/define-context-properties.scm: typo.
2918
2919         * Documentation/user/ : many more small updates.
2920
2921 2006-04-13  Jürgen Reuter  <reuter@ipd.uka.de>
2922
2923         * scm/define-music-types.scm: disposed "docme".
2924
2925 2006-04-11  Erlend Aasland  <erlenda@gmail.com>
2926
2927         * lily/hairpin.cc: make niente circles a bit smaller.
2928
2929 2006-04-10  Erlend Aasland  <erlenda@gmail.com>
2930
2931         * mf/GNUmakefile: remove redundant mftrace check. Also remove
2932         get-pfa and get-*-fonts targets.
2933
2934 2006-04-10  Graham Percival  <gpermus@gmail.com>
2935
2936         * THANKS, Documentation/user/ basic-notation, advanced-notation,
2937         music-glossary, programming-interface: more minor fixes
2938         from mailist.
2939
2940         * scm/define-grob-properties.scm: clarified direction, thanks Mats!
2941
2942         * scm/define-context-properties.scm: another old \property update.
2943         This time tested for compiling!
2944
2945 2006-04-10  Erlend Aasland  <erlenda@gmail.com>
2946
2947         * mf/GNUmakefile: fix for mftrace version >= 1.2.0
2948
2949 2006-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
2950
2951         * scm/define-context-properties.scm (all-user-translation-properties): 
2952         * Documentation/user/global.itely (Page formatting): Compile fix.
2953
2954 2006-04-09  Mats Bengtsson  <mabe@s3.kth.se>
2955
2956         * Documentation/user/advanced-notation.itely (Polymetric
2957         notation): Update the example to use the "+" symbol and add link
2958         to input/test/compound-time.ly.
2959
2960 2006-04-08  Graham Percival  <gpermus@gmail.com>
2961
2962         * scm/define-grob-properties.scm: clarify docs for #'direction.
2963
2964         * scm/define-context-properties.scm: update old \property override.
2965
2966         * Documentation/user/ advanced-notation, global, lilypond-book:
2967         more minor doc updates.
2968
2969 2006-04-07  Han-Wen Nienhuys  <hanwen@lilypond.org>
2970
2971         * lily/parser.yy (Generic_prefix_music_scm): append lists, not objects.
2972
2973         * scm/backend-library.scm (search-gs): oops.
2974
2975 2006-04-06  Han-Wen Nienhuys  <hanwen@lilypond.org>
2976
2977         * scripts/lilypond-book.py (output): use base, not filename for href.
2978
2979         * scm/backend-library.scm: only look for gs.
2980
2981         * scripts/lilypond-book.py (output): fix printfilename.
2982
2983         * lily/parser.yy (music_function_musicless_prefix): fold together
2984         definitions of signature (SCM*) (Music|post_event|chord_body_element)
2985
2986         * lily/slur.cc (print): only set font-size if not set yet.
2987
2988         * lily/slur-configuration.cc (add_score): improved layout of debug
2989         scoring output.
2990
2991 2006-04-05  David Feuer  <David.Feuer@gmail.com>
2992
2993         * music-drawing-routines.ps (draw_round_box): removed testing artifact.
2994         (draw_circle): Hopefully fixed regression.
2995         Improved documentation for several procedures.
2996         
2997 2006-03-04  Werner Lemberg  <wl@gnu.org>
2998
2999         * ly/engraver-init.ly (\Score): Add beam-event to quotedEventTypes.
3000
3001 2006-04-05  Han-Wen Nienhuys  <hanwen@lilypond.org>
3002
3003         * scripts/musicxml2ly.py (bindir): add dynamic
3004         relocation. 
3005
3006 2006-04-04  Graham Percival  <gpermus@gmail.com>
3007
3008         * Documentation/user/ basic-notation, advanced-notation, putting,
3009         instrument-notation, invoking, lilypond, THANKS: another ream of small
3010         fixes from the Doc Helpers.
3011
3012 2006-04-03  David Feuer  <David.Feuer@gmail.com>
3013
3014         * music-drawing-routines.ps: remove superfluous gsave/grestore pairs.
3015
3016         * lilyponddefs.ps (set-ps-scale-to-lily-scale): Fixed code duplication.
3017
3018         * Cleaned up interfaces between PostScript and Scheme, and moved
3019         computations from PostScript to Scheme:
3020
3021         * music-drawing-routines.ps
3022         (*SF, stroke_and_fill): new procedures.  Replaced stroke and fill
3023         with stroke_and_fill throughout.
3024         (euclidean_length, print_letter, draw_box): Deleted unused
3025         procedures.  If someone needs draw_box, implement it using
3026         draw_round_box; don't duplicate code.
3027         (print_glyphs, draw_round_box, draw_polygon, draw_repeat_slash):
3028         Refactored/cleaned up interfaces.
3029         (mark_URI): Moved.
3030
3031         * output-ps.scm: reordered arguments to PostScript functions to
3032         match new interfaces
3033         (glyph-string): Rewrote glyph-string.
3034         (grob-cause): Replaced string-append with format.
3035         (repeat-slash): Rewrote to do computation here.
3036         (round-filled-box): Rewrote to do computation here.
3037
3038 2006-04-04  Erlend Aasland  <erlenda@gmail.com>
3039
3040         * stepmake/stepmake/generic-targets.make: add cvs-clean target
3041
3042         * stepmake/stepmake/toplevel- targets.make: print help info about
3043         cvs-clean
3044
3045 2006-04-03  Erlend Aasland  <erlenda@gmail.com>
3046
3047         * input/regression/hairpin-circled.ly: new file
3048
3049 2006-04-03  Erlend Aasland  <erlenda@gmail.com>
3050
3051         * lily/hairpin.cc (print): add support for circled tip
3052
3053         * scm/define-grob-properties.scm: add circled-tip parameter
3054
3055         * scm/define-grobs.scm: init circled-tip to false
3056         
3057 2006-04-03  Han-Wen Nienhuys  <hanwen@lilypond.org>
3058
3059         * scm/music-functions.scm (quote-substitute): set
3060         iterators-ctor. 
3061
3062 2006-03-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
3063
3064         * Documentation/bibliography/GNUmakefile ($(outdir)/%.html): set
3065         BSTINPUTS. 
3066
3067         * Documentation/topdocs/AUTHORS.texi (Top): add David Feuer.
3068
3069         * scm/output-ps.scm (glyph-string): revert cid selectfont.
3070
3071 2006-03-31  David Feuer  <david.feuer@gmail.com>
3072         
3073         * scm/framework-ps.scm:
3074         
3075         * scm/output-ps.scm: glyph-string now produces smaller, more
3076         readable, and probably faster PostScript.  Several findfont
3077         scalefont setfont instances changed to selectfont
3078         Hacked-up string-appends changed to formats.
3079
3080         * ps/music-drawing-routines.ps: add print_letter, print_glyphs.
3081         
3082 2006-03-30  Graham Percival  <gpermus@gmail.com>
3083
3084         * scm/lily-library.scm: make "no version" warning message more polite.
3085
3086         * lily/music.cc: add double quotes to failed octave check.
3087
3088         * Documentation/user/ advanced-notation, changing-defaults,
3089         instrument-notation, invoking, music-glossary: whole bunch of minor
3090         fixes from mailist.
3091
3092 2006-03-31  Han-Wen Nienhuys  <hanwen@lilypond.org>
3093
3094         * Documentation/bibliography/GNUmakefile ($(outdir)/%.html): use
3095         $(buildscriptdir) iso. depth.
3096
3097         * VERSION (PACKAGE_NAME): release 2.9.1
3098
3099 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3100
3101         * lily/pango-font.cc (pango_item_string_stencil): more robustness.
3102
3103         * VERSION (PATCH_LEVEL): bump version number.
3104
3105         * flower/include/guile-compatibility.hh (scm_from_uint32): add
3106         scm_from_uint32 ()
3107
3108         * lily/pango-font.cc (pango_item_string_stencil): use
3109         scm_from_uint32 ()
3110
3111         * mf/GNUmakefile ($(outdir)/emmentaler-%.otf
3112         $(outdir)/emmentaler-%.svg): remove canary.
3113
3114         * lily/pango-font.cc (pango_item_string_stencil): only use uXXX
3115         glyphnames if we have a ttf font.
3116
3117 2006-03-30  Mats Bengtsson  <mabe@s3.kth.se>
3118
3119         * Documentation/user/advanced-notation.itely (Font selection):
3120         Corrected reference to the font-family-override.ly example.
3121
3122 2006-03-30  Joe Neeman  <joeneeman@gmail.com>
3123         
3124         * lily/chord-tremolo-engraver.cc (acknowledge_stem): set the
3125         stem-tremolo object in the stem (or else the stem might not be
3126         long enough).
3127
3128 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3129
3130         * lily/ttf.cc (print_trailer): only print existing glyphs.
3131
3132 2006-03-30  Joe Neeman  <joeneeman@gmail.com>
3133
3134         * lily/stem-tremolo.cc (print): for whole notes (and breves, etc.)
3135         position the tremolo based on the position of the notehead.
3136
3137         * input/regression/stem-tremolo.ly: add example of unbeamed eighth
3138         notes and update the texidoc line with the new positioning rules.
3139         
3140 2006-03-30  Han-Wen Nienhuys  <hanwen@lilypond.org>
3141
3142         * lily/ttf.cc (print_trailer): don't always use uXXX glyphname.
3143
3144         * scripts/lilypond-book.py (Module): set default for linewidth if
3145         preamble not found.
3146
3147 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3148
3149         * VERSION (PACKAGE_NAME): release 2.9.0.
3150
3151         * input/regression/stem-tremolo-position.ly: new file.
3152
3153         * lily/stem-tremolo.cc: remove Stem_tremolo::dim_callback
3154
3155 2006-03-28  Joe Neeman  <joeneeman@gmail.com>
3156
3157         * lily/stem-tremolo.cc (print): position
3158         the tremolo depending only on the end of the stem
3159         and not on the notehead
3160         (raw_stencil): center, on the middle staff line, the
3161         flag that is closest to the end of the stem (previously
3162         the bottom flag)
3163         (calc_width): add this callback to shorten a tremolo when
3164         it is beamed or it is stemup with a flag
3165         (style): add this callback to make a tremolo rectangular when
3166         it is beamed or it is stemup with a flag
3167         (rotated_box): this is like Lookup::beam but makes a rotated
3168         rectangle instead of a parallelogram
3169
3170         * lily/stem.cc (calc_stem_info): make sure the stem
3171         is long enough to fit the tremolo
3172         (calc-length): reduce the length of tremolo stems since the
3173         tremolo code is now capable of better positioning
3174
3175         * scm/define-grobs.scm: make calc_width the default beam-width
3176         callback for stem-tremolo and add the style callback
3177                 
3178 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3179
3180         * lily/tuplet-bracket.cc (calc_control_points): handle suicide
3181         case. 
3182
3183 2006-03-29  Han-Wen Nienhuys  <hanwen@lilypond.org>
3184
3185         * lily/ttf.cc (make_index_to_charcode_map): restore old
3186         cmap. 
3187
3188 2006-03-28  Werner Lemberg  <wl@gnu.org>
3189
3190         * lily/pango-font.cc (get_unicode_name): Fix `uXXXXX' glyph names.
3191
3192 2006-03-28  Graham Percival  <gpermus@gmail.com>
3193
3194         * THANKS: update for 2.9, add section for Documentation helpers.
3195
3196         * Documentation/topdocs/NEWS.tely: compile fix.
3197
3198         * Documentation/user/ basic-notation, global, advanced-notation,
3199         examples.itely: minor fixes from mailist.
3200
3201 2006-03-28  Han-Wen Nienhuys  <hanwen@lilypond.org>
3202
3203         * mf/feta-bolletjes.mf: match width of solfa notes with normal
3204         note heads. 
3205
3206         * lily/ttf.cc (print_trailer): use it.
3207
3208         * lily/pango-font.cc (get_unicode_name): new function.
3209
3210         * lily/ttf.cc (make_index_to_charcode_map): move function from
3211         open-type-font.cc
3212         (print_trailer): substitute uniXXXX name if applicable. 
3213
3214         * lily/pango-font.cc (get_index_to_charcode_map): new function.
3215         (pango_item_string_stencil): use it to generate uniXXXX names.
3216
3217         * mf/feta-bolletjes.mf (overdone_heads): add small style (ugly)
3218         note heads, for uniform widths in shape note output.
3219         (overdone_heads): hmm. remove them again.
3220
3221         * scripts/lilypond-book.py (output): add links to filenames.
3222
3223         * Documentation/topdocs/INSTALL.texi (Top): update versions.
3224
3225         * lily/note-collision.cc (get_clash_groups): only consider when
3226         Note_column::dir <> CENTER. 
3227
3228         * scripts/lilypond-book.py (get_option_parser): init output_name
3229         to ''. 
3230
3231 2006-03-24  Graham Percival  <gpermus@gmail.com>
3232
3233         * Documentation/topdocs/NEWS.tely: add @end itemize
3234
3235         * Documentation/user/ global, advanced-notation: minor
3236         stuff from mailist.
3237
3238 2006-03-23  Graham Percival  <gpermus@gmail.com>
3239
3240         * Documentation/user/ lilypond.tely, music-glossary,
3241         preface: housekeeping; 2005->2006, remove "notes for 2.6"
3242
3243 2006-03-23  Han-Wen Nienhuys  <hanwen@lilypond.org>
3244
3245         * mf/GNUmakefile: don't install .enc files.
3246
3247         * Documentation/topdocs/NEWS.tely: clear for 2.9 cycle.
3248
3249         * VERSION (PATCH_LEVEL): bump to 2.9.0
3250
3251 2006-03-22  Graham Percival  <gpermus@gmail.com>
3252
3253         * Documentation/user/advanced-notation.itely: minor fixes
3254         from mailist.
3255
3256 2006-03-22  Han-Wen Nienhuys  <hanwen@lilypond.org>
3257
3258         * Documentation/topdocs/AUTHORS.texi (Top): add Joe Neeman.
3259
3260         * branch lilypond_2_8
3261
3262 2006-03-22  Han-Wen Nienhuys  <lilydev@localhost.localdomain>
3263
3264         * scripts/lilypond-book.py (samefile): new function, for windoze
3265         compatibility.
3266
3267 2006-03-21  Graham Percival  <gpermus@gmail.com>
3268
3269         * ly/engraver-init.ly: add info about StaffGroup.
3270
3271 2006-03-21  Han-Wen Nienhuys  <lilydev@localhost.localdomain>
3272
3273         * input/regression/stem-direction-context.ly: idem.
3274
3275         * Documentation/topdocs/NEWS.tely (Top): fix interpolation example.
3276
3277         * THANKS: add Mats.
3278
3279         * input/regression/page-layout-twopass.ly: comment out \markup so
3280         tweak-file is left.
3281
3282         * lily/instrument-name-engraver.cc (finalize): add to instrument
3283         name global System. This also fixes chopped instrument names, but
3284         doesn't crash when there are slurs/beams.
3285
3286         * lily/slur-configuration.cc (add_score): disallow negative slur
3287         scores.
3288         
3289 2006-03-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3290
3291         * scm/framework-ps.scm (dump-stencil-as-EPS): remove debugging code.
3292
3293         * lily/instrument-name-engraver.cc (process_music): kludge: add
3294         InstrumentName spanner to axis group of left bound. Fixes chopped
3295         off instrument names in EPS images.
3296
3297         * input/regression/lyric-hyphen-retain.ly: elaborate explanation.
3298
3299         * scripts/abc2ly.py (option_parser): update to 2.7.40
3300
3301 2006-03-20  Graham Percival  <gpermus@gmail.com>
3302
3303         * THANKS: move small doc contributors to SUGGESTIONS.
3304
3305         * Documentation/user/ basic-notation, advanced-notation,
3306         global: small changes from mailist.
3307
3308 2006-03-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3309
3310         * Documentation/user/advanced-notation.itely (Text marks): update
3311         for new rehearsalMarkAlignSymbol convention.
3312
3313         * VERSION (PATCH_LEVEL): bump version.
3314
3315         * input/test/instrument-name-align.ly: new file.
3316
3317         * scm/define-markup-commands.scm (hcenter-in): add hcenter-in.
3318
3319         * input/test/instrument-name-align.ly: new file. Document how to
3320         align instrument names.
3321
3322         * lily/mark-engraver.cc: remove properties.
3323
3324         * scm/define-context-properties.scm
3325         (all-user-translation-properties): remove align symbol properties
3326         for barnumber/reh. mark.
3327
3328         * lily/break-align-interface.cc (self_align_callback): new
3329         interface, new function. Look at complete alignment. This handles
3330         tunable break alignments in case break-align-symbols are missing.
3331
3332         * lily/bar-number-engraver.cc (acknowledge_break_alignment): new function
3333
3334         * lily/mark-engraver.cc (acknowledge_break_alignment): new function.
3335
3336         * python/convertrules.py (conv): mark/bar number alignment rule.
3337
3338         * lily/break-align-interface.cc (calc_positioning_done): also
3339         store offset from last visible break-alignment to its
3340         neighbor. This makes alignment on non-visible objects more reliable.
3341
3342         * po/lilypond.pot (Module): ran po-replace.
3343
3344         * input/regression/tie-single-manual.ly (Module): new file.
3345
3346         * lily/tie-formatting-problem.cc (find_optimal_tie_configuration):
3347         look at has_manual_position_.
3348         (from_ties): set has_manual_position_ if tie has staff-position set.
3349
3350         * lily/tuplet-bracket.cc (calc_positions): idem.
3351
3352         * lily/tuplet-number.cc (print): don't print tupletnumber if it
3353         doesn't span time.
3354
3355 2006-03-19  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3356
3357         * scm/define-markup-commands.scm (smallCaps): new markup command
3358         for turning a text to small caps using smaller font size and upper
3359         casing.
3360
3361 2006-03-17  Graham Percival  <gpermus@gmail.com>
3362
3363         * Documentation/user/ examples, instrument-notation,
3364         advnaced-notation: minor fixes from mailist.
3365
3366 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3367
3368         * Documentation/user/tutorial.itely (First steps): change example
3369         to verbatim.  
3370
3371 2006-03-17  Graham Percival  <gpermus@gmail.com>
3372
3373         * Documentation/user/ examples, advanced: minor changes from mailist.
3374
3375         * THANKS: add Geoff Horton, for documentation stuff.
3376
3377 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3378
3379         * python/lilylib.py (system): revert have_select kludge.
3380
3381         * Documentation/user/tutorial.itely (Commenting input files):
3382         update version numbers in doc. 
3383
3384         * scm/define-grob-interfaces.scm (multi-measure-interface): add
3385         bound-padding to multi-measure-interface
3386
3387 2006-03-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3388
3389         * input/test/engraver-example.ily: update version number.
3390
3391         * VERSION (PACKAGE_NAME): release 2.7.39
3392
3393         * lily/note-spacing.cc (get_spacing): heighten threshold where
3394         accidentals/arpeggios influence previous spacing fully.
3395
3396         * lily/rest.cc (y_offset_callback): only use direction if
3397         staff-position wasn't set before.
3398
3399         * lily/bar-number-engraver.cc: add support for
3400         barNumberAlignSymbol. 
3401         add ADD_ACKNOWLEDGER() call for break_aligned. Fixes bar-number-breathe
3402
3403         * lily/pointer-group-interface.cc (set_ordered): new function. 
3404         (add_unordered_grob): new function.
3405
3406         * lily/grob-array.cc (Grob_array): grob-arrays are always assumed
3407         to ordered, unless the opposite has been proved.  This fixes
3408         random reordering of large object groups across linebreaks,
3409         eg. beams.
3410
3411         * lily/main.cc (do_chroot_jail): printf format fix.
3412
3413         * lily/tie-formatting-problem.cc (generate_configuration):
3414         multiply y-shift for dot with direction.
3415  
3416         * scm/define-markup-commands.scm (note-by-number): put (magstep
3417         size) in y-attach too.
3418
3419         * Documentation/topdocs/NEWS.tely (Top): show override.
3420
3421         * scm/define-grobs.scm (all-grob-descriptions): reinstate neutral
3422         direction for stems.
3423         
3424 2006-03-15  Graham Percival  <gpermus@gmail.com>
3425
3426         * Documentation/user/ changing-defaults, global: minor
3427         fixes from mailist.
3428
3429 2006-03-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3430
3431         * lily/lexer.ll (Lily_lexer): bump required version to 2.7.38
3432
3433         * lily/spacing-spanner.cc (musical_column_spacing): crude fix for
3434         breakable items after uniformly stretched notes.
3435
3436         * lily/tie-formatting-problem.cc (set_chord_outline): initialize
3437         outline with outer edge of note heads. This prevents infinity
3438         problems with tied whole notes.
3439
3440         * scripts/lilypond-book.py (do_file): use os.popen
3441
3442         * python/convertrules.py (conv): add rule for Stem #'beamed-*
3443
3444 2006-03-14 Erik Sandberg  <mandolaerik@gmail.com>
3445
3446         * Documentation/user/invoking.itely: Add ragged-right to bug report
3447         guidelines.
3448
3449 2006-03-14  Graham Percival  <gpermus@gmail.com>
3450
3451         * Documentation/user/global.itely: small fix from mailist.
3452
3453 2006-03-14  Mats Bengtsson  <mabe@s3.kth.se>
3454
3455         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use the
3456         file descriptor returned by tempfile.mkstemp() when writing
3457         to tmpfile and closing it. Solves problem with unlink(tmpfile)
3458         on mingw.
3459
3460 2006-03-14  Jan Nieuwenhuizen  <janneke@gnu.org>
3461
3462         * po/fi.po: newline bugfix.
3463
3464 2006-03-12  Jan Nieuwenhuizen  <janneke@gnu.org>
3465
3466         * scm/paper.scm (paper-alist): Rounding fixes.
3467
3468 2006-03-13  Graham Percival  <gpermus@gmail.com>
3469
3470         * Documentation/user/ changing-defaults, instrument-notation,
3471         tutorial: small fixes from mailist, mostly from Mats.  Thanks!
3472
3473 2006-03-13 Heikki Junes  <hjunes@cc.hut.fi>
3474
3475         * po/fi.po: update.
3476
3477 2006-03-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3478
3479         * stepmake/bin/add-html-footer.py (mail_address_url): don't add
3480         mailto: to http:// 
3481
3482         * python/lilylib.py (print_environment): move ps_page_count to
3483         lilypond-book.py
3484
3485 2006-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3486
3487         * Documentation/user/music-glossary.tely (G clef): fix clef alignments.
3488
3489         * scm/framework-ps.scm (embed-document): new function. Use to
3490         embed PFA files.
3491
3492         * ly/engraver-init.ly: init rehearsalMarkAlignSymbol to staff-bar.
3493
3494 2006-03-12  Mats Bengtsson  <mabe@s3.kth.se>
3495
3496         * Documentation/user/instrument-notation.itely (Setting simple
3497         songs): Added \book{...} around the full example, so the separate
3498         markups are included in the printed example. 
3499
3500 2006-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3501
3502         * scripts/lilypond-book.py (get_latex_textwidth): explicitly close
3503         tmphandle.
3504
3505         * python/lilylib.py (system): rewrite system() using
3506         subprocess. Remove >& redirection trickery.
3507
3508 2006-03-11  Graham Percival  <gpermus@gmail.com>
3509
3510         * Documentation/user/ changing-defaults, global, scheme-tutorial,
3511         notation-appendices.itely: minor fixes from mailist.
3512
3513 2006-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3514
3515         * Documentation/user/GNUmakefile ($(outdir)/lilypond.html):
3516         unsplit man also needs images.
3517
3518         * tex/texinfo.tex (sectionheading, q.v.): relax after \char'15.
3519
3520         * VERSION (PACKAGE_NAME): 2.7.38 released.
3521
3522 2006-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3523
3524         * scripts/lilypond-book.py (get_latex_textwidth): look for latex
3525         log in output dir.
3526
3527 2006-03-08  Johannes Schindelin  <Johannes.Schindelin@gmx.de>
3528
3529         * lily/audio-column.cc, lily/score-performer.cc: MIDI output now
3530         respects the Score.skipTypesetting property.
3531         
3532 2006-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3533
3534         * scm/framework-ps.scm (ps-embed-cff): no Setup section in
3535         Prolog. No %%EOF after CFF file.
3536
3537 2006-03-08  Joe Neeman  <joeneeman@gmail.com>
3538         
3539         * lily/constrained-breaking.cc (get_max_systems): used to return a
3540         much too big value
3541         (combine_demerits): use pointers to reduce copying data
3542         (calc_subproblem): idem
3543         (get_page_penalty): add page turn penalties
3544         
3545 2006-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3546
3547         * Documentation/user/invoking.itely (Invoking lilypond): better
3548         explanation of -e usage.
3549
3550         * lily/main.cc (main_with_guile): don't append to
3551         init_scheme_code_string
3552
3553         * tex/texinfo.tex (sectionheading, q.v.): don't center @image.
3554
3555         * Documentation/user/invoking.itely: add note about MacOS X scripts.
3556
3557         * scripts/convert-ly.py (do_options): don't print help for
3558         --show-rules rule.
3559
3560         * tex/texinfo.tex: patch texinfo.tex to leave single quotes in
3561         @code and @example. Update from texinfo.tex from CVS.
3562
3563 2006-03-08  Graham Percival  <gpermus@gmail.com>
3564
3565         * Documentation/user/scheme-tutorial.itely: clarifies distances
3566         measured in staff-spaces.
3567
3568 2006-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3569
3570         * lily/slur.cc (outside_slur_callback): only calculate offsets if
3571         consider[k] is true.
3572
3573         * scm/output-ps.scm (grob-cause): put numbers to ~$ (Thanks Johannes!)
3574
3575         * lily/spacing-basic.cc (standard_breakable_column_spacing): also
3576         consider columns that have originals.  Unifies spacing for mm
3577         rests around line breaks.
3578
3579         * lily/multi-measure-rest.cc (set_spacing_rods): read bound-padding.
3580         (set_text_rods): idem.
3581         (calculate_spacing_rods): new function: share code between
3582         set_text_rods and set_spacing_rods.
3583         (set_text_rods): take extents of bounds into account.  
3584
3585 2006-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3586
3587         * Documentation/user/basic-notation.itely (Writing music in
3588         parallel): don't use relative.
3589
3590 2006-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3591
3592         * ly/music-functions-init.ly (Module): add shiftDurations
3593
3594         * ly/drumpitch-init.ly (drumPitchNames): add tamtam.
3595
3596         * scm/paper.scm (paper-alist): no decimals for Ax paper sizes. 
3597
3598         * ly/engraver-init.ly: init vocalName to nil.
3599
3600 2006-03-05 Erik Sandberg  <mandolaerik@gmail.com>
3601
3602         * scm/music-functions.scm (music->make-music): bugfix,
3603         KeyChangeEvents are now handled correctly.
3604
3605         * scripts/lilypond-book.py: Add --debug option.
3606
3607 2006-03-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3608
3609         * python/lilylib.py: add tempfile.
3610
3611 2006-03-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3612
3613         * VERSION (PACKAGE_NAME): release 2.7.37
3614
3615         * python/lilylib.py (ps_page_count): remove make_ps_images().
3616         (ps_page_count): remove mkdir_p
3617         (system): remove cleanup_temp.
3618         (exit): remove lilypond_version_(check)
3619         (error_log): remove pseudo_filter_p
3620         remove read_pipe
3621         remove cp_to_dir
3622         remove identify
3623
3624         * scripts/lilypond-book.py (Lilypond_snippet.compose_ly): don't
3625         use __main__
3626
3627         * lily/accidental-engraver.cc (make_standard_accidental): only add
3628         support for side-axis is X_AXIS. Fixes text-spacing-accidental.ly
3629
3630         * mf/GNUmakefile ($(outdir)/emmentaler-%.otf
3631         $(outdir)/emmentaler-%.svg): rewrite without functions; too many
3632         Make incompatibilities.
3633
3634         * scm/output-ps.scm (grob-cause): replace backslashes by /
3635         (glyph-string): use ~$ for less decimals for glyph-string and grob-cause.
3636
3637 2006-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
3638
3639         * cygwin/GNUmakefile: Install fixes.
3640
3641         * scripts/GNUmakefile (SEXECUTABLES): Install fix: remove mup2ly.
3642
3643         * lily/note-head.cc (head::get_balltype): Compile fix.
3644
3645         * flower/file-name.cc (dos_to_posix): Flower string fix.
3646
3647 2006-03-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3648
3649         * python/lilylib.py: pychecker cleanups.
3650
3651         * scripts/lilypond-book.py
3652         (Lilypond_snippet.output_print_filename): pychecker cleanups
3653
3654         * scripts/midi2ly.py (Key.dump): pychecker cleanups.
3655
3656         * python/lilylib.py (underscore): remove identify() , warranty()
3657
3658         * ps/music-drawing-routines.ps: change Border routine for GSView
3659         compatibility.
3660
3661         * lily/stem.cc (height): use quantize-positions.  This triggers
3662         set_stem_lengths, so scripts on beamed stems are handled correctly.
3663
3664         * lily/side-position-interface.cc (aligned_side): check if edges
3665         of script are inside staff. Fixes accent of edge of the staff.
3666
3667         * input/regression/staccato-pos.ly: more examples.
3668
3669         * stepmake/aclocal.m4 (depth): fix bashism.
3670
3671         * lily/lyric-combine-music-iterator.cc: move from
3672         new-lyric-combine-iterator.cc
3673         (process): add pending_grace_lyric_ member to delay lyrics on
3674         grace notes.
3675
3676         * lily/system-start-text.cc (print): suicide if we don't have any
3677         elements. Fixes hara kiri'd instrument names.
3678
3679         * scripts/mup2ly.py (Module): remove.
3680
3681 2006-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3682
3683         * Documentation/user/global.itely (A single music expression):
3684         close @lilypond properly
3685
3686         * lily/volta-bracket.cc (modify_edge_height): change from
3687         after_line_breaking_callback. Suicide last bracket if appropriate.
3688  
3689         * python/lilylib.py: strip getopt support
3690
3691         * scripts/etf2ly.py (do_options): use optparse
3692
3693         * scripts/midi2ly.py: optparse, strip lilylib copy. 
3694
3695         * scripts/abc2ly.py (voices): use optparse.
3696
3697         * stepmake/stepmake/generic-vars.make: new function absdir.
3698
3699         * scripts/convert-ly.py (bindir): use optparse, argv[0] relocation.
3700
3701         * scripts/lilypond-book.py (find_file): use global_options for
3702         include path
3703
3704         * scm/ps-to-png.scm (ps-page-count): prevent null characters
3705         entering C code.
3706
3707 2006-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3708
3709         * python/lilylib.py (get_global_option): ughness for extracting
3710         global options from lilylib.
3711         (NonDentedHeadingFormatter.format_heading): move from musicxml2ly
3712
3713         * scripts/lilypond-book.py (get_option_parser): use optparse for
3714         option handling.  Put options in global_options variable.
3715
3716 2006-02-28  Heikki Junes  <hjunes@cc.hut.fi>
3717
3718         * Documentation/index.html.in: clarify.
3719
3720 2006-02-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3721
3722         * scm/layout-page-layout.scm (write-page-breaks): add a
3723         music-system-heights property to the page layout output.
3724
3725         * scm/page.scm (make-page-stencil): take footer into account when
3726         computing the 'space-left page property
3727         (annotate-space-left): take footer into account when annonating
3728         space left.
3729
3730 2006-02-28  Graham Percival  <gpermus@gmail.com>
3731
3732         * Documentation/user/ advanced-notation, global: more (final)
3733         docs for music expressions, removed special fermatas.
3734
3735 2006-02-27  Graham Percival  <gpermus@gmail.com>
3736
3737         * Documentation/user/ basic-notation, global: minor changes
3738         from mailist.
3739
3740 2006-02-26  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3741
3742         * scm/framework-ps.scm:         
3743         * scm/lily-library.scm (nan?, inf?): Move guile 1.6 compatibility
3744         layer for inf? and nan? from framework-ps to lily-library.
3745
3746 2006-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3747
3748         * mf/GNUmakefile ($(outdir)/emmentaler-$(1).otf
3749         $(outdir)/emmentaler-$(1).svg): remove backslashes from define endef.
3750
3751         * buildscripts/substitute-encoding.py (Module): remove file.
3752
3753         * mf/GNUmakefile: more PFA strippage.
3754
3755         * mf/aybabtu.pe.in (i): remove PFAaybabtu generation
3756
3757         * buildscripts/gen-emmentaler-scripts.py (i): remove PFAemmentaler
3758         generation
3759
3760         * scm/framework-ps.scm: remove font name munging.
3761
3762         * Documentation/topdocs/INSTALL.texi (Top): bump GS requirement.
3763
3764 2006-02-25  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3765
3766         * scm/markup.scm (define-markup-command): change
3767         def-markup-command to define-markup-command
3768
3769         * scm/music-functions.scm (define-music-function): change
3770         def-music-function to define-music-function.
3771
3772         * python/convertrules.py (conv): rules for def-music-function
3773         and def-markup-commands
3774
3775         * Documentation/user/programming-interface.itely,
3776         input/no-notation/display-lily-tests.ly,
3777         input/regression/lily-in-scheme.ly,
3778         input/regression/markup-user.ly,
3779         input/regression/music-function.ly, input/regression/tie-chord.ly,
3780         scm/fret-diagrams.scm, ly/music-functions-init.ly,
3781         ly/gregorian-init.ly: use new macro names (define-music-function,
3782         define-markup-command).
3783
3784 2006-02-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3785
3786         * scripts/lilypond-book.py (main): write Makefile dependencies file. 
3787         (output): add comments to lp-book latex output.
3788
3789         * GNUmakefile.in (footifymail): use gmane address for webpage bug
3790         address.
3791
3792 2006-02-23  Graham Percival  <gpermus@gmail.com>
3793
3794         * Documentation/user/ tutorial, global: minor changes.
3795
3796 2006-02-23  Nicolas Sceaux  <nicolas.sceaux@free.fr>
3797
3798         * mf/GNUmakefile: add '\' in multi-line "define ... endef"
3799         blocks (for make 3.80)
3800
3801         * scm/parser-ly-from-scheme.scm (ly:parse-string-result): add
3802         \notemode so that user should not have to explicitely type it.
3803
3804         * scm/define-music-display-methods.scm: various
3805         fixes (ApplyOutputEvent, ApplyContext; \new, \context and derived
3806         constructs)
3807
3808         * input/no-notation/display-lily-tests.ly: new tests for
3809         \applyOutput and \applyContext
3810
3811 2006-02-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3812
3813         * lily/constrained-breaking.cc: patch by Joe Neeman: "I have
3814         changed it slightly so that the number of systems returned by
3815         solve () will be the same as the last value passed to resize
3816         (). I've also added more documentation, removed casts, fixed style
3817         problems and put in some recovery if constraints aren't satisfied."
3818
3819 2006-02-23  Jan Nieuwenhuizen  <janneke@gnu.org>
3820
3821         * elisp/lilypond-mode.el (count-matches-as-number): New funtion
3822         for emacs < 22 compatibility.
3823         (count-rexp): Use it.
3824         (LilyPond-string-current-midi, LilyPond-string-all-midi): Remove
3825         substring juggling (Milan Zamazal).
3826
3827 2006-02-23  Graham Percival  <gpermus@gmail.com>
3828
3829         * Documentation/user/ basic-notation, advanced-notation,
3830         global.itely, invoking.itely, tutorial,itely:
3831         minor fixes from mailist.
3832
3833         * scm/define-markup-commands.scm: improve docs of \filled-box.
3834
3835 2006-02-23  Heikki Junes  <hjunes@cc.hut.fi>
3836
3837         * Documentation/index.html.in: changes concern the previous release.
3838
3839         * input/regression/+.ly: cultivate typographical terminology.
3840
3841 2006-02-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3842
3843         * scm/define-grob-interfaces.scm (parentheses-interface): add
3844         padding to parentheses-interface.
3845
3846         * Documentation/user/GNUmakefile: remove $(CROSS) support from
3847         Documentation/user/GNUmakefile. Use --disable-documentation for that.
3848
3849         * VERSION (PATCH_LEVEL): release 2.7.36
3850
3851         * lily/slur.cc: add avoid-slur (ugh.)
3852         
3853         * lily/slur-configuration.cc (fit_factor): oops, skip point if
3854         intersection gets smaller. This fixes slurs over extreme points.
3855
3856         * lily/melody-engraver.cc (stop_translation_timestep): ignore
3857         stems with neutral-direction set.
3858
3859         * lily/piano-pedal-engraver.cc (create_text_grobs): idem.
3860
3861         * lily/open-type-font.cc (load_table): format error.
3862
3863         * lily/change-iterator.cc (process): format fix.
3864
3865         * flower/include/international.hh (_f): idem.
3866
3867         * flower/include/std-string.hh: add format printf attribute.
3868
3869         * scm/define-grobs.scm (all-grob-descriptions): height of all
3870         PedalLineSpanner is Y-extent property. Fixes pedal-ped.ly
3871
3872         * lily/ambitus-engraver.cc (finalize): use grob_array. This fixes
3873         ambitus lines.
3874
3875         * input/regression/beam-cross-staff-slope.ly: remove decrescendo.
3876
3877 2006-02-22 Erik Sandberg  <mandolaerik@gmail.com>
3878
3879         * input/regression/: upgraded syntax for some files.
3880
3881         * THANKS: Add bughunters.
3882
3883 2006-02-22  Graham Percival  <gpermus@gmail.com>
3884
3885         * Documentation/user/ invoking.itely, advanced-notation.itely,
3886         global.itely: long-awaited "let's make chapter 10 not suck"
3887         update.  Rearrange chapter 10; now called "global issues",
3888         addresses file structure, etc.  Some info from other files
3889         moved into global.itely.
3890
3891 2006-02-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3892
3893         * lily/accidental-engraver.cc (acknowledge_rhythmic_head): also
3894         catch trill-span-event notes.
3895
3896         * Documentation/user/examples.itely (Ancient notation templates): typo.
3897         (Jazz combo): typo.
3898
3899         * scripts/lilypond-book.py (main): scrap invokes_lilypond(). 
3900
3901         * Documentation/user/basic-notation.itely (Ties): document \repeatTie.
3902
3903         * Documentation/topdocs/NEWS.tely (Top): document \repeatTie.
3904
3905         * scm/define-music-types.scm (music-descriptions): add RepeatTieEvent
3906
3907         * lily/repeat-tie-engraver.cc (acknowledge_note_head): new file. cut & paste
3908         froum Laissez_vibrer_engraver.
3909
3910         * ly/declarations-init.ly (repeatTie): add \repeatTie
3911
3912         * scm/define-grobs.scm (all-grob-descriptions): add RepeatTie, RepeatTieColumn
3913
3914         * scm/define-grob-properties.scm (all-user-grob-properties): add
3915         head-direction property.
3916
3917         * lily/tie-formatting-problem.cc (from_semi_ties): rename from
3918         from_lv_ties. Take head direction argument.
3919
3920         * lily/semi-tie-column.cc: rename from
3921         laissez-vibrer-tie-column.cc. Rename class too.
3922
3923         * lily/semi-tie.cc: rename from laissez-vibrer-tie.cc. Rename
3924         class too.
3925
3926         * lily/paper-score.cc (find_break_indices): move from Break_algorithm.
3927
3928         * lily/break-algorithm.cc (find_break_indices): remove linewidth <
3929         0 case.
3930         (find_breaks): idem.
3931
3932 2006-02-21  Graham Percival  <gpermus@gmail.com>
3933
3934         * Documentation/user/advanced-notation.itely: fixed make-moment]
3935         example.
3936
3937         * Documentation/user/basic-notation.itely: more clarification to
3938         transpose.
3939
3940 2006-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3941
3942         * lily/include/constrained-breaking.hh (class
3943         Constrained_breaking): new file.
3944
3945         * lily/constrained-breaking.cc (resize): new file.
3946
3947         * lily/gourlay-breaking.cc (do_solve): ragged-last iso raggedlast
3948
3949         * Documentation/user/advanced-notation.itely (Clusters): insert
3950         end ignore too.
3951
3952         * lily/tie-column.cc (calc_positioning_done): support for
3953         tie-score debugging
3954
3955         * lily/tie-formatting-problem.cc
3956         (generate_extremal_tie_variations): factor out.
3957         (score_ties_configuration): annotate all tie 
3958         (print_ties_configuration): new routine.
3959         (generate_configuration): nudge extremal ties outside of the head
3960         Y extents.
3961         (score_ties_configuration): oops. convert to staff-space before
3962         determining position symmetry.
3963
3964 2006-02-20  Graham Percival  <gpermus@gmail.com>
3965
3966         * Documentation/user/*-notation.itely: misc minor editing,
3967         shifting doc sections around.
3968
3969         * Documentation/user/*-notation-itely, global.itely,
3970         changing-defaults.itely: added new stuff from NEWS.
3971
3972 2006-02-20  Heikki Junes  <hjunes@cc.hut.fi>
3973
3974         * po/fi.po: update.
3975
3976 2006-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
3977
3978         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): don't run
3979         lilypond --verbose for lp-book.
3980
3981         * make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
3982         $(outdir)/%.ly $(outdir)/%.ps): use $(srcdir) iso $(shell pwd).
3983
3984         * make/lysdoc-rules.make ($(outdir)/collated-files.tely): use
3985         $(buildscript-dir) iso. absolute depth.
3986
3987         * buildscripts/genicon.py (dir): thinko.
3988
3989         * Documentation/pictures/GNUmakefile ($(outdir)/%.ico): typo.
3990
3991 2006-02-19 Erik Sandberg  <mandolaerik@gmail.com>
3992
3993         * scm/output-lib.scm: swap darkcyan/darkyellow
3994
3995         * THANKS: Add bughunters.
3996
3997 2006-02-19  Graham Percival  <gpermus@gmail.com>
3998
3999         * Documentation/user/programming-interfaces.itely: fixed example.
4000
4001         * Documentation/user/instrument-notation.itely: fix @{ @}.
4002
4003         * scm/script.scm: add avoid-slur for \open.
4004
4005 2006-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4006
4007         * lily/tie-formatting-problem.cc (score_configuration): use
4008         sliding score for min-length. 
4009
4010         * Documentation/pictures/GNUmakefile (local-dist): loose the rule
4011         spaghetti for icons.
4012
4013         * buildscripts/genicon.py (program_name): new file.
4014
4015         * lily/tie-formatting-problem.cc (set_chord_outline): put dots
4016         in outline too.  
4017         (generate_configuration): for small ties, also look for collisions
4018         at Y + DIR*h + DELTA_Y.
4019         (get_variations): consider variation for dot positions too.
4020
4021         * lily/side-position-interface.cc (aligned_side): take abs for
4022         quantized rounded position. Fixes tenuto below staff.
4023
4024         * scm/stencil.scm (annotate-y-interval): robustify: print nan/inf
4025         markers when necessary.
4026
4027         * lily/program-option.cc (internal_set_option): add
4028         strict_infinity_checking option.
4029
4030         * scm/output-lib.scm (cyan): swap yellow and cyan.
4031
4032 2006-02-19  Graham Percival  <gpermus@gmail.com>
4033
4034         * darwin.patch: trivial linenumber update.
4035
4036         * Documentation/user/ {various}: `\context foo = named' changed
4037         to `\new foo = "name"' in docs.
4038
4039 2006-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4040
4041         * scm/stencil.scm (annotate-y-interval): use it.
4042
4043         * scm/lily-library.scm (interval-sane?): new function.
4044
4045         * buildscripts/mf-to-table.py (Char_metric.__init__): remove
4046         tfm_checksum stuff.
4047
4048         * lily/tie-formatting-problem.cc (from_lv_ties): add heads for
4049         common refpoint.
4050
4051         * flower/include/std-vector.hh (iterof): add iterof macro.
4052
4053         * lily/enclosing-bracket.cc (width): new function.
4054
4055         * lily/align-interface.cc (align_elements_to_extents): reinstate
4056         warning.
4057
4058 2006-02-18  Heikki Junes  <hjunes@cc.hut.fi>
4059
4060         * Documentation/index.html.in: fix spelling: thankyous.
4061
4062 2006-02-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4063
4064         * lily/lyric-hyphen.cc: typo.
4065
4066 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4067
4068         * stepmake/stepmake/c++-rules.make ($(outdir)/%.cc
4069         $(outdir)/%.hh): generate h and c in one rule; otherwise -jX
4070         builds don't work. 
4071
4072         * VERSION: release 2.7.35
4073
4074         * lily/beam.cc (get_default_dir): oops. Take abs () for
4075         extremes[DOWN].
4076         (get_default_dir): use extreme position criterion only in absence
4077         of forced stem directions.
4078
4079         * VERSION (PATCH_LEVEL): bump VERSION.
4080
4081         * mf/GNUmakefile: explicit rules for emmentaler/aybabtu
4082         dependencies. Necessary for -jX builds.  
4083
4084 2006-02-17  Jan Nieuwenhuizen  <janneke@gnu.org>
4085
4086         * lily/relocate.cc (setup_paths): Yet another const fix.
4087
4088 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4089
4090         * configure.in (HOST_ARCH): determine HOST_ARCH in configure.
4091
4092         * lily/relocate.cc (setup_paths): oops.
4093
4094 2006-02-17  Heikki Junes  <hjunes@cc.hut.fi>
4095
4096         * Documentation/index.html.in: order links: html before PDF.
4097
4098 2006-02-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4099
4100         * lily/tie-column-format.cc (Module): remove.
4101
4102         * lily/relocate.cc (setup_paths): GCC 4.2 fixes: const correctness.
4103
4104         * lily/text-spanner.cc (print): idem.
4105
4106         * lily/dynamic-text-spanner.cc (print): only print line if longer
4107         than dash-period.
4108
4109         * lily/auto-change-iterator.cc (change_to): formatting.
4110
4111         * lily/beam.cc (get_default_dir): take extreme note head as input
4112         for stem direction.
4113
4114         * lily/tie.cc (get_default_dir): only look directions for visible
4115         stems. 
4116
4117         * lily/side-position-interface.cc (aligned_side): oops. Don't
4118         mutiply with direction. This fixes quantized (staccato, tenuto)
4119         scripts below notes.
4120
4121         * lily/lyric-hyphen.cc (set_spacing_rods): oops. Multiply with
4122         direction. Fixes c-lyrics-center-align.ly
4123
4124 2006-02-16  Jan Nieuwenhuizen  <janneke@gnu.org>
4125
4126         * flower/include/std-vector.hh[!HAVE_STL_DATA_METHOD]: Add copy
4127         constructor.
4128
4129         * lily/std-string.cc:
4130         * lily/include/std-vector.hh (split_string): Move and rename from
4131         lily/include/misc.hh, lily/misc.cc.  Update callers.
4132
4133 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4134
4135         * lily/include/pango-font.hh: HAVE_PANGO_FT2 iso. HAVE_PANGO_16
4136
4137 2006-02-16  Jan Nieuwenhuizen  <janneke@gnu.org>
4138
4139         * flower/test-file.cc: New file.
4140
4141         * stepmake/stepmake/test-vars.make (TEST_MODULE_LIBES): Fixes for
4142         libraries.
4143
4144         * flower/GNUmakefile (TEST_MODULE_LIBS): Link to flower lib.
4145
4146 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4147
4148         * flower/include/file-storage.hh: remove file.
4149
4150         * lily/include/midi-item.hh (class Midi_track): idem.
4151
4152         * lily/include/source.hh (class Sources): idem.
4153
4154         * lily/include/performance.hh (class Performance): use vector
4155         iso. Cons<>
4156
4157         * flower/include/cons.hh (class Cons): remove file.
4158
4159         * flower/include/flower-proto.hh: remove template cruft.
4160
4161         * lily/include/font-metric.hh: use size_t not vsize for indices.
4162
4163         * flower/include/flower-proto.hh (Module): remove std-vector.hh
4164         from proto.
4165
4166         * lily/include/all-font-metrics.hh: use HAVE_PANGO_FT2
4167
4168         * lily/include/paper-book.hh (class Paper_book):
4169         make get_system_specs() public.
4170
4171         * scm/layout-page-layout.scm (optimal-page-breaks): only consider
4172         the force=10000 case if we don't have a current-best. 
4173
4174         * lily/tuplet-bracket.cc (get_bounds): don't do (size() - 1) for
4175         vsize 
4176
4177         * flower/include/flower-proto.hh: remove outdated templates.
4178
4179         * scm/page.scm: use annotate-spacing
4180
4181 2006-02-15  Graham Percival  <gpermus@gmail.com>
4182
4183         * scm/translation-functions.scm: circle patch from Erlend, thanks!
4184
4185         * THANKS: moved Erlend Aasland to contributors.
4186
4187 2006-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4188
4189         * config.hh.in: remove HAVE_PANGO_16
4190
4191         * lily/tuplet-bracket.cc (calc_positions): multiply with
4192         staff-space for beam case. This fixes tuplets+beams on scaled
4193         staves.
4194
4195         * config.hh.in: remove all Kpathsea related defines.
4196
4197         * lily/dot-column.cc (side_position): reach stem via dots->
4198         head->stem. Inspect all stems for dot collisions. 
4199
4200         * lily/dot-column-engraver.cc (class Dot_column_engraver): excise
4201         stem handling.
4202
4203         * lily/bar-number-engraver.cc (process_music): document function
4204         of whichBar.
4205
4206         * lily/score.cc (default_rendering): add pscore, not systems
4207         themselves.
4208
4209         * lily/paper-book.cc (get_system_specs): separate generation of
4210         titles and systems.
4211
4212         * flower/include/std-vector.hh: don't include config.hh
4213
4214 2006-02-15  Jan Nieuwenhuizen  <janneke@gnu.org>
4215
4216         * flower/include/std-vector.hh: Better wrapper compatibility with
4217         std::vector.
4218
4219         * flower/include/flower-proto.hh: Remove cheap forward declaration
4220         attempts.
4221
4222         * stepmake/aclocal.m4 (STEPMAKE_STL_DATA_METHOD): Bugfix.
4223
4224 2006-02-14  Graham Percival  <gpermus@gmail.com>
4225
4226         * Documentation/user/invoking.itely: add warning about command line.
4227
4228 2006-02-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4229
4230         * lily/include/lily-proto.hh: add Prob, rm Page.
4231
4232         * flower/include/std-vector.hh (VPOS): use 64 bit-proof version.
4233
4234         * VERSION: release 2.7.34
4235
4236         * lily/relocate.cc (framework_relocation): show canary if
4237         GHOSTSCRIPT_VERSION undefined.
4238
4239         * GNUmakefile.in: remove $(VERSION) symlink.
4240
4241         * lily/relocate.cc (setup_paths): add + 
4242
4243 2006-02-13  Heikki Junes  <hjunes@cc.hut.fi>
4244
4245         * Documentation/index.html.in: specify sizes for all big HTML pages.
4246
4247 2006-02-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4248
4249         * config.hh.in: remove @FRAMEWORKDIR@
4250
4251         * lily/system-start-text.cc (get_stencil): new file: separate out
4252         system-start-delimiter text support.
4253
4254         * input/**ly: replace \context with \new where appropriate.
4255         
4256         * THANKS: add Don.
4257
4258         * lily/slur-scoring.cc (get_base_attachments): use
4259         robust_relative_extent. This fixes problems with empty paper-columns. 
4260
4261 2006-02-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4262
4263         * Documentation/topdocs/NEWS.tely (Top): document \new syntax.
4264
4265         * scm/define-music-properties.scm (all-music-properties):
4266         create-new property.
4267
4268         * lily/context-specced-music-iterator.cc (construct_children):
4269         inspect 'create-new property iso. magical $uniqueContextId context
4270         id.
4271
4272         * lily/parser.yy (optional_id): allow \new "Bar" = "foo" too.
4273
4274         * lily/context-key-manager.cc (Module): new file. Encapsulate
4275         object key generation.
4276
4277         * lily/include/context-key-manager.hh (Module): new file.
4278
4279 2006-02-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4280
4281         * scm/define-grobs.scm (all-grob-descriptions): center instrument
4282         names vertically
4283
4284         * configure.in (LINK_GXX_STATICALLY): strip -DSTRING_UTILS_INLINED
4285         options.
4286         (reloc_b): excise --enable-framework-dir
4287
4288         * lily/relocate.cc (framework_relocation): use getenv
4289         LILYPOND_GS_VERSION or -DGHOSTSCRIPT_VERSION to set GS version.
4290
4291 2006-02-11  Jan Nieuwenhuizen  <janneke@gnu.org>
4292
4293         * flower/include/std-string.hh: 
4294         * flower/include/std-vector.hh: Finish std:: conversion; move
4295         flower extensions from std:: namespace.  Update users.
4296
4297         * lily/include/lily-proto.hh: Replace Link_array__*_ macros by
4298         their expansion to vector<*>.  Update users.
4299
4300 2006-02-10  Graham Percival  <gpermus@gmail.com>
4301
4302         * Documentation/user/invoking.itely: add example to File structure.
4303
4304         * Documentation/user/ instrument-notation.itely, cheatsheet.itely,
4305         examples.itely, putting.itely: {\new|\context} Lyrics \lyricsto.
4306
4307 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4308
4309         * ly/paper-defaults.ly: typo.
4310
4311         * lily/parenthesis-engraver.cc (acknowledge_grob): don't do
4312         set_parent() for parentheses. This will make it show up in bbox
4313         calculations.
4314
4315         * scm/output-lib.scm (parentheses-item::print): rewrite, using
4316         ly:grob-common* functions.
4317
4318         * lily/grob-scheme.cc (LY_DEFINE):
4319         ly:grob-common-refpoint-of-array: new function 
4320         ly:grob-common-refpoint: new function 
4321         ly:grob-relative-coordinate: new function 
4322
4323         * lily/instrument-name-engraver.cc (process_music): use
4324         Text_interface::is_markup(). This fixes \markup on instrument names.  
4325
4326         * scm/define-grobs.scm (all-grob-descriptions): set line-thickness
4327         for ties and slurs.
4328
4329         * lily/slur.cc (print): idem.
4330
4331         * lily/tie.cc: add line-thickness for ties. 
4332
4333 2006-02-10  Jan Nieuwenhuizen  <janneke@gnu.org>
4334
4335         * scm/output-svg.scm: Document diversion from GNU coding standards
4336         as a workaround for a bug in Microsoft Internet Explorer.
4337
4338 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4339
4340         * lily/instrument-name-engraver.cc (process_music): use
4341         is_markup() iso. is_string()
4342
4343         * Documentation/user/changing-defaults.itely (Module): add menu entry.
4344
4345         * lily/percent-repeat-engraver.cc (process_music): only look at
4346         main_part_ for % repeats.
4347
4348         * lily/stem-tremolo.cc (get_beam_translation): new function.
4349         (calc_slope): new function.
4350         (height): don't use real slope.
4351
4352 2006-02-10  Jürgen Reuter  <reuter@ipd.uka.de>
4353
4354         * scm/define-grobs.scm (LigatureBracket): Maintenance bugfix: add
4355         new connect-to-neighbor, control-points and staff-padding
4356         properties to make ligature brackets showing up again.
4357
4358 2006-02-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4359
4360         * VERSION: release 2.7.33
4361
4362         * lily/relocate.cc (prefix_relocation): oops. One TOPLEVEL_VERSION
4363         too many.
4364
4365         * Documentation/user/changing-defaults.itely (Difficult tweaks):
4366         remove applyOutput example.
4367         (Objects connected to the input): document \tweak, \parenthesize
4368
4369         * lily/relocate.cc (prefix_relocation): allow "current"
4370         iso. TOPLEVEL_VERSION for share/lilypond/ suffix. This makes
4371         changing VERSION in a lily tree less painful.
4372
4373         * input/regression/parenthesize.ly: new file. 
4374
4375         * scm/output-lib.scm (parenthesize-element): new function.
4376
4377         * scm/define-grobs.scm (all-grob-descriptions): add ParenthesesItem.
4378
4379         * lily/parenthesis-engraver.cc (acknowledge_grob): new file.
4380
4381         * lily/accidental-engraver.cc (make_standard_accidental): reroute
4382         cause: accidentals are caused by note heads, not note events. 
4383
4384 2006-02-08  Graham Percival  <gpermus@gmail.com>
4385
4386         * darwin.patch: small patch from Erlend, thanks!
4387
4388         * Documentation/user/basic-notation.itely: add stem-neutral example.
4389
4390         * Documentation/user/putting.itely: clarifications.
4391
4392 2006-02-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4393
4394         * Documentation/topdocs/NEWS.tely (Top): remove internal cleanup
4395         note, add more guidelines to what should go into NEWS.
4396
4397         * input/sakura-sakura.ly: document how to override font.
4398
4399         * input/regression/font-family-override.ly:  doc -dshow-available-fonts
4400
4401 2006-02-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4402
4403         * lily/midi-item.cc (to_string): truncate time sig at 255 beats.
4404
4405 2006-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
4406
4407         * scripts/convert-ly.py (lilypond_version_re_str): Move from
4408         convertrules.  Add explicit grouping, needed for python2.2.
4409
4410 2006-02-07  Jan Nieuwenhuizen  <janneke@gnu.org>
4411
4412         * Documentation/topdocs/NEWS.tely (Top): Mention code cleanup.
4413
4414 2006-02-07  Graham Percival  <gpermus@gmail.com>
4415
4416         * Documentation/user/global.itely: fix line-width in (text) docs.
4417
4418         * Documentation/user/lilypond-book.itely: same.
4419
4420 2006-02-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4421
4422         * VERSION (PACKAGE_NAME): release 2.7.32
4423
4424         * Documentation/topdocs/NEWS.tely (Top): document new variable
4425         naming.
4426
4427         * flower/include/array.icc (Message): remove file.
4428
4429         * flower/include/std-vector.hh: make sure vsize and VPOS are
4430         defined for binary_search_bounds().
4431
4432         * flower/std-string.cc (std): add to_string(long unsigned).
4433
4434         * configure.in (gui_b): excise std_string option.
4435         (gui_b): excise std_vector option.
4436
4437         * flower/string.cc (Module): excise flower array & string
4438
4439         * flower/include/std-string.hh: excise flower string.
4440
4441         * {ly,lily,scm}/*: use dashes in \paper and \layout variables
4442
4443         * python/convertrules.py (lilypond_version_re_str): require
4444         only numbers and dots in \version string.
4445
4446 2006-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4447
4448         * lily/system-start-delimiter.cc (print): allow style = text too.
4449
4450         * lily/system-start-delimiter-engraver.cc
4451         (acknowledge_system_start_text): new function, also add add to
4452         support of system-start-text (instrument names). This fixes
4453         instrument names on piano staves.
4454
4455         * lily/instrument-name-engraver.cc: rewrite. Use
4456         system-start-delimiter approach. This save memory and cpu.
4457
4458         * scm/define-grobs.scm (all-grob-descriptions): remove
4459         instrument-name from break-alignment.
4460
4461         * mf/GNUmakefile ($(NCSB_TTFS)): depend on pfx2ttf script too.
4462
4463 2006-02-05  Jan Nieuwenhuizen  <janneke@gnu.org>
4464
4465         * stepmake/stepmake/generic-vars.make (LOOP): Add PLUS to keep -j
4466         jobserver going.
4467
4468         * configure.in (std_vector): On by default.
4469
4470         * lily/include/font-metric.hh:
4471         * lily/include/tfm-reader.hh: 
4472         * lily/include/spanner.hh: Use unsigned for indices and sizes.
4473         Update users.
4474
4475         * Documentation/user/changing-defaults.itely: Fix link v2.5, out-www.
4476
4477 2006-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4478
4479         * VERSION (PACKAGE_NAME): 2.7.31
4480
4481         * scm/framework-ps.scm (dump-stencil-as-EPS): don't hardcode left
4482         EPS edge at 0, but take minimum with left-overshoot. This fixes
4483         cut off system start delims. 
4484
4485         * lily/instrument-name-engraver.cc (stop_translation_timestep):
4486         hack: add to axis group if not added yet. This fixes hara kiri'd
4487         piano staves.
4488
4489         * lily/hara-kiri-group-spanner.cc
4490         (force_hara_kiri_in_y_parent_callback): fix signatures.
4491
4492         * lily/hairpin.cc (print): check next hairpin to see whether or
4493         not to be continuing.
4494
4495 2006-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
4496
4497         * Remove trailing whitespace from makefiles.
4498         
4499         * flower/include/std-vector.hh: Add binary_search_bounds workaround
4500         for earlier gcc.
4501
4502         * .cvsignore: Add out*, out-www, config-*.  Remove lots of cruft.
4503
4504         * flower/include/std-vector.hh[!HAVE_STL_DATA_METHOD]: Workaround.
4505
4506         * config.hh.in (HAVE_STL_DATA_METHOD): Add.
4507
4508         * stepmake/aclocal.m4 (STEPMAKE_STL_DATA_METHOD): New function.
4509
4510         * configure.in: Use it.
4511
4512 2006-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4513
4514         * scm/music-functions.scm (pitch-of-note): new function.
4515
4516         * ly/music-functions-init.ly: add \octave and \addquote
4517
4518         * lily/parser.yy (music_function_chord_body): softcode \octave.
4519         (lilypond_header): softcode \addquote
4520
4521 2006-02-03  Jan Nieuwenhuizen  <janneke@gnu.org>
4522
4523         * flower/include/std-vector.hh[STD_VECTOR]: Do not include
4524         array.hh, parray.hh at all.  Getting ready to flip the
4525         configure default.
4526
4527         * lily/include/lily-proto.hh (Link_array__char_): Bugfix.
4528
4529         * lily/source-file.cc (file::get_line): Help binary_search_bounds
4530         a bit.
4531
4532         * lily/include/lily-proto.hh (Link_array__char_): Bugfix.
4533
4534 2006-02-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4535
4536         * flower/include/array.hh: typo. 
4537
4538 2006-02-02  Graham Percival  <gpermus@gmail.com>
4539
4540         * Documentation/user/advanced-notation.itely: doc "\#" in text.
4541
4542 2006-02-03  Jan Nieuwenhuizen  <janneke@gnu.org>
4543
4544         * flower/include/pqueue.hh: Derive from std::vector.
4545
4546         * flower/include/parray.hh: Conform to std::vector interface.
4547         Update users.
4548
4549 2006-02-02  Graham Percival  <gpermus@gmail.com>
4550
4551         * Documentation/topdocs/NEWS.itely: grammar fix from Laura.
4552
4553 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4554
4555         * flower/file-path.cc (is_file): remove if 0 section.
4556
4557         * buildscripts/pfx2ttf.fontforge (err): robustness fix for
4558         selecting afii61352.
4559
4560 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4561
4562         * flower/include/std-vector.hh (boundary): Oops, reverse.
4563
4564         * flower/string-convert.cc (convert::unsigned_string): Bugfix:
4565         remove superfluous `d'.
4566
4567         * flower/include/std-vector.hh (boundary, top): Detach from class.
4568         Remove empty vector shell.
4569
4570         * flower/include/array.hh (reverse, swap): Detach from class.
4571         Update users.
4572         
4573         * flower/include/std-vector.hh
4574         * flower/include/array.hh (concat): Globally change to insert ().
4575
4576         
4577         * flower/include/std-vector.hh
4578         * flower/include/parray.hh
4579         * flower/include/array.hh (elem, elem_ref): Globally replace by
4580         at ().
4581
4582 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4583
4584         * Documentation/topdocs/NEWS.tely (Top): use ly: prefix for members.
4585
4586         * python/convertrules.py (FatalConversionError.sub_cxx_id):
4587         anticipate on identifier substitutions.
4588
4589 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4590
4591         * flower/include/std-vector.hh (insert): Remove, replace by
4592         std::vector interface.  Update callers.
4593
4594         * flower/include/array.icc (insert): Change signature to
4595         match std::vector interface.
4596         
4597         * flower/include/array.icc (vector_sort): Bugfix.
4598
4599 2006-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4600
4601         * lily/parser.yy (output_def_head_with_mode_switch): new
4602         production. Result: dashes and underscores may be used in the
4603         \paper block.
4604
4605         * lily/lexer.ll: add DASHED_WORD.  Accept in INITIAL mode.
4606
4607         * python/convertrules.py (conv): oops. One slash too much.
4608
4609 2006-02-02  Jan Nieuwenhuizen  <janneke@gnu.org>
4610
4611         * flower/include/std-vector.hh (sort): Remove, replace by
4612         ::vector_sort.  Update callers.
4613
4614         * flower/include/std-vector.hh (slice): Remove.  Update callers.
4615         (sort): Bugfix.
4616
4617         * flower/test-std.cc (vector_sort): New test.
4618
4619 2006-02-01  Graham Percival  <gpermus@gmail.com>
4620
4621         * Documentation/user/putting.itely: fixes from Erik.
4622
4623 2006-02-01  Jan Nieuwenhuizen  <janneke@gnu.org>
4624
4625         * flower/test-std.cc: Add simple unit test for vector migration.
4626
4627         * stepmake/stepmake/test*: Unit test support.
4628
4629         * flower/include/std-vector.hh (del): Remove.  Use erase (),
4630         update callers.
4631
4632         * flower/include/array.hh (begin, end): Add.
4633         (del, get): Remove.
4634
4635 2006-02-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4636
4637         * lily/include/lily-guile-macros.hh (MAKE_SCHEME_CALLBACK): use
4638         std::string not String. 
4639
4640         * lily/context-def.cc (path_to_acceptable_context): use INT_MAX
4641         iso UINT_MAX.
4642
4643         * lily/prob.cc (Prob): copy type_ too.
4644
4645         * lily/lily-guile.cc (mangle_cxx_identifier): new
4646         function. Class_bla::foo_bar_[px] ->
4647         ly:class-bla::foo-bar[?!]. Changes throughout
4648
4649 2006-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4650
4651         * flower/include/guile-compatibility.hh (scm_from_unsigned): add scm_from_unsigned().
4652
4653         * lily/beam.cc (calc_direction): take dir from visible stem in
4654         degenerate case.
4655
4656 2006-01-31  Jan Nieuwenhuizen  <janneke@gnu.org>
4657
4658         * lily/melody-spanner.cc (spanner::calc_neutral_stem_direction):
4659         Fix -1, >=0 boundary checks for unsigned vsize.
4660
4661         * lily/separating-group-spanner.cc (spanner::find_rods): Fix >=0
4662         loop for unsigned vsize.
4663
4664         * configure.in (--enable-std-vector): New option.
4665         (--enable-std-string): On by default.
4666
4667         * flower/include/std-vector.hh: New file.  Enable switch to
4668         std::vector, update client code.
4669
4670 2006-01-30  Graham Percival  <gpermus@gmail.com>
4671
4672         * scm/document-translation.scm: clarify "this context is also
4673         known as".  Thanks, Werner!
4674
4675         * Documentation/user/putting.itely: small fixes from Don Blaheta.
4676
4677         * Documentation/user/invoking.itely: small fix from Don.
4678
4679 2006-01-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4680
4681         * scm/lily.scm (define-scheme-options): rename option
4682         preview-include-book-title to book-title-preview
4683         (define-scheme-options): move force-eps-font-include (from paper
4684         block) to eps-font-include -d option.
4685
4686         * VERSION (PATCH_LEVEL): release 2.7.30
4687
4688         * input/bach-schenker.ly (staffPiano): new file.
4689
4690         * buildscripts/pfx2ttf.fontforge: remove No. glyph from TTF file.
4691
4692         * Documentation/topdocs/NEWS.tely (Top): simplify NEWS entry, add
4693         credits to Nicolas.
4694
4695         * scm/define-markup-commands.scm (epsfile): add scaling to \epsfile.
4696
4697         * ps/lilyponddefs.ps: remove start-system, stop-system,
4698         start-page fluff. This saves putting { } code on the stack, fixing
4699         stack overflows when including EPS files.
4700
4701 2006-01-29  Graham Percival  <gpermus@gmail.com>
4702
4703         * Documentation/user/putting.itely: minor fixes (comments on -devel).
4704
4705 2006-01-29  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4706
4707         * Documentation/topdocs/NEWS.tely (Top): add \parallelMusic news.
4708
4709 2006-01-28  Graham Percival  <gpermus@gmail.com>
4710
4711         * Documentation/user/putting.itely: minor fixes (mostly tab->space).
4712
4713 2006-01-28  Jan Nieuwenhuizen  <janneke@gnu.org>
4714
4715         * input/mutopia/claop.py: Update.
4716
4717 2006-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4718
4719         * input/regression/completion-heads.ly (texidoc): fix.
4720
4721         * lily/staff-symbol-referencer.cc (on_staff_line): idem.
4722
4723         * lily/tie-formatting-problem.cc
4724         (set_ties_config_standard_directions): use abs iso fabs for ints.
4725
4726         * Documentation/topdocs/INSTALL.texi (Top): document ncsb requirement.
4727
4728         * mf/feta-bolletjes.mf (overdone_heads): solfa_noteheight, a
4729         little less than noteheight, to prevent overlaps in chords.
4730
4731         * lily/note-collision.cc (check_meshing_chords): wipe upper FA
4732         head, and fudge stem-attachment.
4733
4734         * scm/lily-library.scm (not): define hash-for-each for guile 1.6
4735
4736         * lily/slur-scoring.cc (get_best_curve): handle opt_idx < 0 case.
4737
4738 2006-01-27  Jan Nieuwenhuizen  <janneke@gnu.org>
4739
4740         * lily/main.cc (main): Debugging aid: catch exceptions.
4741
4742         * flower/std-string.cc (to_string): Robustification.  Fixes midi
4743         output with std::string.
4744
4745 2006-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4746
4747         * Documentation/topdocs/INSTALL.texi (Top): remove libkpathsea notes.
4748
4749 2006-01-26  Jan Nieuwenhuizen  <janneke@gnu.org>
4750
4751         * Fix -DSTRING_UTILS_INLINED.
4752
4753 2006-01-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4754
4755         * VERSION (PATCH_LEVEL): release 2.7.29
4756
4757         * lily/relocate.cc (setup_paths): mingw uses std string too.
4758
4759         * lily/*.cc: various fixes for substr(ARG).
4760
4761         * lily/sustain-pedal.cc (print): 
4762
4763         * flower/file-name.cc (slashify): use std strings.
4764
4765         * flower/string-convert.cc: remove publib.h
4766
4767         * scm/define-markup-commands.scm (verbatim-file): new markup
4768         command \verbatim-file
4769
4770         * Documentation/topdocs/NEWS.tely: fixup URLs
4771
4772         * input/regression/alignment-vertical-manual-setting.ly (Module):
4773         new file.
4774
4775         * lily/align-interface.cc (align_elements_to_extents): overwrite
4776         translations with numbers in alignment-offsets from left bound
4777
4778         * scm/page.scm (make-page-stencil): read X-offset from paper-system.
4779         (page-translate-systems): new function: take into account Y-offset.
4780
4781         * Documentation/topdocs/NEWS.tely (Top): document new features.
4782
4783         * input/regression/page-layout-manual-position.ly (Module): new
4784         file.
4785
4786 2006-01-26  Jan Nieuwenhuizen  <janneke@gnu.org>
4787
4788         * flower/file-path.cc (path::parse_path): Oops.
4789
4790         * Finish std::string interface.  For now, use std:: marker
4791         throughout for easy s/r.
4792
4793 2006-01-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4794
4795         * Documentation/user/putting.itely (Score is a single musical
4796         expression): typo.
4797         (Score is a single musical expression): more typos.
4798
4799         * scm/page.scm (annotate-space-left): thinko.
4800         (annotate-page): more thinkos.
4801
4802 2006-01-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4803
4804         * scm/layout-page-layout.scm (write-page-breaks): record tweaks
4805         for different \score blocks separately.
4806         (post-process-pages): put write-page-layout into paper block.
4807
4808         * lily/output-def.cc (get_parser): new file.
4809
4810         * lily/output-def-scheme.cc (LY_DEFINE): ly:output-def-parser, new
4811         file.
4812
4813         * lily/include/output-def.hh (class Output_def): add parser_ member.
4814
4815         * input/regression/page-layout-twopass.ly (Module): new file.
4816
4817         * scm/lily.scm: remove cpp hack.
4818
4819         * lily/lyric-engraver.cc (get_voice_to_lyrics): use NPOS everywhere.
4820
4821 2006-01-25  Jan Nieuwenhuizen  <janneke@gnu.org>
4822
4823         * GNUmakefile.in (c-clean): New target.
4824
4825         * flower/include/std-string.hh: String/std::string compatibility:
4826         Use NPOS for `not found' (iso -1), use ssize for length () and pos
4827         type.
4828
4829         * flower/rational.cc: 
4830         * flower/include/rational.hh: 
4831
4832         * flower/offset.cc: 
4833         * flower/include/offset.hh: 
4834
4835         * flower/interval.cc: 
4836         * flower/include/interval.hh: 
4837
4838         * flower/string-convert.cc: 
4839         * flower/include/string-convert.hh: Use std::string [interface].
4840         Update callers.
4841
4842 2006-01-25  Heikki Junes  <hjunes@cc.hut.fi>
4843
4844         * Documentation/index.html.in: clean up.
4845
4846 2006-01-25  Graham Percival  <gpermus@gmail.com>
4847
4848         * Documentation/user/putting.itely: another new untested doc section.
4849
4850 2006-01-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4851
4852         * scm/layout-page-layout.scm (write-page-breaks): write
4853         \spacingTweaks #ALIST. Handle grace timing.
4854
4855         * scm/: more imports.
4856
4857         * scm/page.scm (make-page): add footer/header.
4858         (annotate-space-left): revise: only take page argument.
4859         (layout->page-init): new function.
4860
4861         * scm/layout-page-layout.scm (write-page-breaks): preliminary
4862         version of the system/spacing/linebreak hack writing to the output
4863
4864         * lily/prob-scheme.cc (LY_DEFINE): take optional 'key val args in
4865         ly:make-prob.
4866
4867         * lily/grob-scheme.cc (LY_DEFINE): ly:spanner-get-bound ->
4868         ly:spanner-bound
4869
4870 2006-01-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4871
4872         * scm/stencil.scm (annotate-y-interval): move from layout-page-layout.scm
4873
4874         * scm/paper-system.scm (paper-system-annotate): new file. Handle paper-system.
4875
4876         * scm/layout-page-layout.scm (optimal-page-breaks): move all page
4877         handling to page.scm
4878
4879         * lily/prob-scheme.cc (LY_DEFINE): new file.
4880         (LY_DEFINE): functions ly:make-prob , ly:prob-type? , ly:prob-(set-)property(!)
4881
4882         * lily/music-scheme.cc (LY_DEFINE): rewrite get/set property using
4883         prob functions.
4884
4885         * lily/music.cc (derived_mark): derive Music from Prob.
4886
4887         * lily/paper-system.cc (LY_DEFINE): derive from Prob.
4888
4889         * lily/prob.cc (Module): Implement Prob (Property Object), object
4890         with shared and r/w property alists.  
4891
4892         * lily/include/prob.hh (Module): new file. Declare Prob.
4893
4894         * flower/string.cc: remove is_empty().
4895
4896         * flower/include/string.hh (class String): remove String:: qualifier.
4897
4898         * buildscripts/analyse-cxx-log.py: new file. Read compile log to
4899         substitute appropriate functions.
4900
4901         * flower/include/string.hh (class String): remove to_str0 and
4902         is_empty(). S&R everywhere.
4903
4904 2006-01-23  Graham Percival  <gpermus@gmail.com>
4905
4906         * Documentation/user/basic-notation.itely: add hairpin
4907         after-linebreak tweak to commonprop.
4908
4909         * Documentation/user/putting.itely: added two new sections.
4910
4911 2006-01-23  Jan Nieuwenhuizen  <janneke@gnu.org>
4912
4913         * flower/international.cc: 
4914         * flower/include/international.hh: 
4915
4916         * flower/getopt-long.cc: 
4917         * flower/include/getopt-long.hh: Use std::string [interface].
4918         Update callers.
4919
4920         * flower/include/std-string.hh: Oops, bugfix for --disable-std-string.
4921
4922         * stepmake/stepmake/executable-rules.make: Add dependency on
4923         module libraries.
4924
4925 2006-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
4926
4927         * flower/file-path.cc: 
4928         * flower/include/file-path.hh: Use std::string [interface].
4929         Update callers.
4930
4931         * flower/direction.cc: 
4932         * flower/axis.cc: Unused.  Remove.
4933
4934         * configure.in (--enable-std-string): New option.
4935
4936         * flower/std-string.cc: 
4937         * flower/include/std-string.hh: New file.
4938
4939         * flower/file-name.cc[STD_STRING]:
4940         * flower/include/file-name.hh[STD_STRING]: Use it.  Update callers.
4941
4942 2006-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4943
4944         * scm/output-svg.scm (placebox): no GNU coding standards in SVG output. 
4945
4946         * scm/define-markup-commands.scm (with-dimensions):
4947         with-dimensions markup command.
4948
4949         * input/test/font-table.ly: use it.
4950
4951         * lily/open-type-font.cc (glyph_list): new function.
4952
4953         * lily/open-type-font-scheme.cc (LY_DEFINE): ly:otf-glyph-list function.
4954
4955         * lily/ttf.cc: remove ly:font-glyph-list scheme function
4956
4957 2006-01-22  Nicolas Sceaux  <nicolas.sceaux@free.fr>
4958
4959         * ly/music-functions-init.ly (parallelMusic): new music function
4960         for parallel music entry.
4961
4962         * scm/define-music-properties.scm (all-music-properties): new
4963         'void music property
4964
4965         * scm/music-functions.scm (ly:music-message): make public, to be
4966         used in music function definitions
4967
4968         * scm/lily-library.scm (collect-music-for-book): discard music
4969         when the 'void property is set.
4970
4971 2006-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4972
4973         * lily/ttf.cc (LY_DEFINE): store name before destroying face.
4974
4975         * mf/GNUmakefile: idem.
4976
4977         * buildscripts/mf-to-table.py (help): excise fetaXXlist.ly support.
4978
4979         * stepmake/bin/install.py (dest): Only chmod/chown just created directories
4980
4981         * Documentation/user/notation-appendices.itely (The Feta font):
4982         use it.
4983
4984         * input/test/font-table.ly: new file. Generate font table within lily.
4985
4986         * Documentation/user/notation-appendices.itely (The Feta font):
4987         use new font-table.ly file. 
4988
4989         * stepmake/stepmake/install-out-targets.make
4990         (local-install-outfiles): only create directory if
4991         $(INSTALLATION_OUT_DIR) is defined. This fixes install on Gentoo.
4992
4993 2006-01-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
4994
4995         * lily/ttf.cc (LY_DEFINE): new function ly:font-glyph-list.
4996
4997         * VERSION (PACKAGE_NAME): release 2.7.28
4998
4999         * scm/framework-ps.scm (write-preamble): use it to pick exactly
5000         the right font from a Mac dfont.
5001         (write-preamble): don't forget directory, only look at files.
5002
5003         This fixes problems with TTF files in dfonts that don't match
5004         their PostScript names.
5005          
5006         * lily/ttf.cc (LY_DEFINE): ly:ttf-ps-name: new routine to extract
5007         PS name from TTF font.
5008
5009         * input/regression/tie-manual.ly: document new feature.
5010
5011         * Documentation/topdocs/NEWS.tely (Top): add tie NEWS.
5012
5013         * VERSION (MY_PATCH_LEVEL): bump to .28
5014
5015         * Documentation/user/basic-notation.itely (Ties): add tie examples
5016         refs.
5017
5018         * lily/tie-formatting-problem.cc (score_ties_configuration):
5019         symmetry penalties for outer ties.
5020
5021 2006-01-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5022
5023         * lily/tie-formatting-problem.cc (generate_configuration) 
5024         (set_manual_tie_configuration): skip non-pair manual
5025         tie-configuration, so you can set individual ties as
5026
5027           #'tie-configuration = #'((7 . 1) #t (-3 . 1))
5028
5029         * input/regression/tie-chord.ly: use generateTiePattern to
5030         simplify file.
5031
5032         * lily/tie-formatting-problem.cc (peak_around): new function.
5033         (score_configuration): use sliding criterion for staff line collisions. 
5034         (score_configuration): idem for dot collisions.
5035         (generate_configuration): use separate stem_gap for gap to stem.
5036
5037         * lily/include/tie-formatting-problem.hh (struct Tie_details):
5038         separate penalty factors for x and y distance.
5039         (struct Tie_details): separate penalties for tip and center line collisions.
5040
5041 2006-01-19 Han-Wen Nienhuys  <hanwen@xs4all.nl>
5042
5043         * lily/tie-formatting-problem.cc (generate_configuration): make
5044         large ties avoid stafflines in the horizontal section.
5045         (score_configuration): use softcoded penalties
5046         (score_aptitude): idem.
5047
5048         * lily/tie-helper.cc (from_grob): softcode tie details
5049
5050         * lily/staff-symbol-referencer.cc (on_staff_line): new function
5051
5052         * lily/staff-symbol-referencer.cc (on_line): rename from
5053         on_staffline 
5054
5055 2006-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5056
5057         * ly/music-functions-init.ly: remove duplicate tag.
5058
5059         * lily/include/*.hh: GCC 4.1 fixes.
5060
5061 006-01-16  Erlend Aasland  <erlenda@gmail.com>
5062
5063         * Documentation/user/global.itely: fix typos; @bugs -> @refbugs
5064
5065         * scm/define-music-types.scm: fix bug in desc. string
5066         for OverrideProperty
5067
5068 2006-01-15 Erik Sandberg  <mandolaerik@gmail.com>
5069
5070         * scripts/lilypond-book.py: bugfix
5071
5072         * scm/define-music-types.scm: fix typos.
5073
5074 2006-01-14  Graham Percival  <gpermus@gmail.com>
5075
5076         * Documentation/user/ basic-notation.itely, global.itely,
5077         advanced-notation.itely, instrument-notation.itely: small
5078         additions (bugs and commonly tweaked properties).
5079
5080 2006-01-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5081
5082         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): generic
5083         detection of mingw build.
5084         (MINGW_BUILD): opps.
5085
5086 2006-01-12  Jan Nieuwenhuizen  <janneke@gnu.org>
5087
5088         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): Add
5089         i686-mingw32.
5090
5091 2006-01-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5092
5093         * scm/music-functions.scm (skip->rest): add skip->rest
5094
5095 2006-01-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5096
5097         * lily/font-config.cc (init_fontconfig): call FcConfigBuildFonts()
5098         explicitly.
5099
5100         * lily/font-config-scheme.cc (LY_DEFINE): also display font and
5101         config dirs. Aids debugging. 
5102         (display_config): also display config files.
5103
5104 2006-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5105
5106         * VERSION: release 2.7.27
5107
5108         * lily/bar-line.cc (calc_bar_size): inspect staff->extent (Y_AXIS)
5109         for determining bar size.
5110
5111         * lily/staff-symbol.cc (print): place lines at distance line-positions
5112
5113         * scm/define-grob-properties.scm (all-user-grob-properties): add
5114         line-positions.
5115
5116         * lily/staff-symbol.cc (height): new function.
5117
5118         * input/regression/staff-line-positions.ly:  new file.
5119
5120 2006-01-06  Graham Percival  <gpermus@gmail.com>
5121
5122         * input/test/add-staccato.ly: remove reference to old file.
5123
5124 2006-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5125
5126         * scripts/lilypond-book.py (invokes_lilypond): allow . in path to
5127         lilypond binary too.
5128
5129 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5130
5131         * make/mutopia-rules.make (Module): use LILYPOND_BINARY
5132
5133 2006-01-06  Jan Nieuwenhuizen  <janneke@gnu.org>
5134
5135         * scripts/midi2ly.py: Bugfix: Declare datadir.
5136
5137         * make/ly-rules.make:
5138         * make/mutopia-rules.make: Use LILYPOND_BINARY (WAS: LILYPOND, but
5139         that seems to be gone). Fixes make web.
5140
5141         * The grand 2005-2006 replace.
5142
5143         * VERSION (MY_PATCH_LEVEL): Stay on .26 for now.
5144
5145 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5146
5147         * make/lilypond-vars.make: set LILYPOND_BINARY variable
5148         (LILYPOND_BOOK_LILYPOND_FLAGS): new variable
5149         LILYPOND_BOOK_LILYPOND_FLAGS to hold system dependent settings,
5150         like -dgs-font-load.
5151
5152         * Documentation/user/GNUmakefile ($(outdir)/interfaces.itexi):
5153         remove absolute path to lilypond binary.
5154         
5155 2006-01-05 Pedro Kroeger    <kroeger@pedrokroeger.net>
5156
5157         * configure.in (NCSB_DIR): fix --with-ncsb-dir option.
5158
5159 2006-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5160
5161         * make/lilypond-vars.make: support LILYPOND_EXTERNAL_BINARY variable.
5162
5163         * mf/GNUmakefile: remove broken dvips map symlink.
5164
5165 2006-01-04  Jan Nieuwenhuizen  <janneke@gnu.org>
5166
5167         * lily/main.cc: 
5168         * configure.in: Cosmetic fixes.
5169
5170 2006-01-04  Mats Bengtsson  <mabe@s3.kth.se>
5171
5172         * Documentation/user/music-glossary.tely (Pitch names): Added
5173         Spanish pitch names and durations, thanks to Ernesto Gancedo
5174
5175 2006-01-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5176
5177         * scm/lily.scm (define-scheme-options): use quasi-quote for option
5178         init. Fixes verbose printing of .scm files.
5179
5180         * stepmake/aclocal.m4: add spaces before - options.
5181         
5182 2006-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
5183
5184         * lily/relocate.cc (setup_paths): Bugfix: do not store result
5185         of path search in local block variable.
5186
5187 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5188
5189         * configure.in (NCSB_DIR): --enable-ncsb-dir
5190         (LINK_GXX_STATICALLY): denko.
5191
5192         * mf/GNUmakefile ($(NCSB_TTFS)): NCSB_DIR iso. NCSB_PATH. 
5193
5194         * configure.in (LINK_GXX_STATICALLY): --enable-ncsb-path option. 
5195         use locate to find c059033l.pfb. 
5196         
5197 2006-01-02  Jan Nieuwenhuizen  <janneke@gnu.org>
5198
5199         * lily/tie-formatting-problem.cc
5200         (problem::generate_base_chord_configuration): Use my_round (was
5201         round).
5202
5203         * lily/source-file.cc (file::get_counts)[!HAVE_MBRTOWC]: Bugfix,
5204         do not invoke mbrtowc.
5205
5206         * lily/relocate.cc (setup_paths): Add more debugging verbosity.
5207
5208 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5209
5210         * scm/lily.scm (lilypond-all): oops. remove debugging hack.
5211
5212 2005-01-02  Heikki Junes  <hjunes@cc.hut.fi>
5213
5214         * Documentation/user/invoking.itely (svg): revise.
5215
5216 2006-01-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5217
5218         * lily/lexer.ll: use sourcefilename iso. renameinput.
5219
5220 2006-01-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5221
5222         * mf/GNUmakefile ($(NCSB_TTFS)): revise rule. Create
5223         <PostScriptName>.ttf instead of c059XXXttf.
5224
5225         * lily/program-option.cc (LY_DEFINE): special support for
5226         --verbose, so it works before option init too.
5227  
5228         * mf/GNUmakefile (local-install): oops.
5229
5230         * lily/lyric-hyphen.cc (print): oops.
5231
5232         * buildscripts/pfx2ttf.fontforge: new file.
5233         
5234         * mf/GNUmakefile (NCSB_PATH): add vars for NCSB.
5235         ($(outdir)/%.ttf): new rule. 
5236
5237         * scm/define-grobs.scm (all-grob-descriptions): add font-interface
5238         to LyricHyphen.
5239
5240         * lily/lyric-hyphen.cc (print): multiply hyphen height by
5241         font-size
5242
5243 2005-12-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5244
5245         * VERSION: release 2.7.26
5246         
5247         * mf/GNUmakefile (install-fc-cache): remove old font.cache-1 files.
5248
5249 2005-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5250
5251         * lily/font-config.cc (init_fontconfig): verbosity.
5252
5253         * THANKS: add Muziekacademie Lede. 
5254
5255         * scripts/musicxml2ly.py (print_voice_definitions): new function 
5256         (print_score_setup): new function
5257         (convert): read part definition to output staves properly.
5258
5259         * python/musicxml.py (Measure.get_notes): new class. Wrap lists of
5260         Music_xml notes.
5261
5262         * python/musicexp.py (Output_printer.__init__): use _ in data
5263         members.
5264         (Output_printer.unformatted_output): new function: no formatting,
5265         but count braces.
5266         (Duration.get_length): remove isinstance() checks for
5267         Output_printer everywhere.
5268
5269         * input/regression/lyrics-bar.ly (texidoc): add
5270         Separating_line_group_engraver.
5271
5272 2005-12-29  Jan Nieuwenhuizen  <janneke@gnu.org>
5273
5274         * lily/relocate.cc (framework_relocation): New function,
5275         factored from set_relocation ().
5276         (prefix_relocation): Rename from set_relocation ().
5277         (setup_paths): Use it.
5278
5279 2005-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5280
5281         * scm/*.scm: use LEFT/RIGHT/UP/DOWN etc. iso. magical
5282         numbers. Patch by Erlend Aasland.
5283
5284 2005-12-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5285
5286         * lily/font-config.cc (init_fontconfig): print warning if cache
5287         file is not existant.
5288
5289         * lily/main.cc: don't use #ifdef but #if
5290
5291 2005-12-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5292
5293         * lily/grob-property.cc (internal_set_property): don't abort on
5294         calculation-in-progress.
5295
5296         * lily/beam.cc (get_default_dir): robustness: don't divide by zero.
5297
5298         * lily/tuplet-bracket.cc (calc_control_points): oops: typo. Read
5299         connect-to-neighbor property not connect-to-other
5300
5301         * lily/program-option.cc (LY_DEFINE): remove Protected_scm global variable.
5302         (LY_DEFINE): oops. don't forget protection.
5303
5304         * flower/parse-afm.cc (Module): strip AFM handling completely.
5305
5306         * lily/stencil-expression.cc: idem.
5307
5308         * lily/grob-interface-scheme.cc (LY_DEFINE): idem.
5309
5310         * lily/function-documentation.cc (ly_add_function_documentation):
5311         use static member iso. Protected_scm
5312
5313         * lily/main.cc: use ifdef ARGV0_RELOCATION iso. MINGW
5314
5315         * config.make.in (prefix): remove HAVE_KPATHSEA_SO
5316
5317 2005-12-27  Jan Nieuwenhuizen  <janneke@gnu.org>
5318
5319         * lily/relocate.cc (set_env_dir): New function.
5320         (set_relocation): Use it to fix setting PANGO_PREFIX.
5321
5322 2005-12-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5323
5324         * input/regression/stem-direction-context.ly: remove rest.
5325
5326         * lily/melody-engraver.cc (process_music): restart for bar lines.
5327         (acknowledge_slur): restart for slurs.
5328
5329 2005-12-27  Heikki Junes  <hjunes@cc.hut.fi>
5330
5331         * Documentation/user/invoking.itely: describe how to view SVG 
5332         output using Inkscape which replace embedded fonts with OTF fonts.
5333
5334 2005-12-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5335
5336         * lily/relocate.cc (set_relocation): set PANGO_PREFIX
5337
5338 2005-12-23  Jan Nieuwenhuizen  <janneke@gnu.org>
5339
5340         * lily/melody-engraver.cc (class Melody_engraver): Remove lying
5341         comment.
5342
5343 2005-12-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5344
5345         * VERSION (PACKAGE_NAME): release 2.7.25
5346
5347         * Documentation/topdocs/NEWS.tely (Top): document new feature.
5348
5349         * input/regression/stem-direction-context.ly: new file.
5350
5351         * lily/relocate.cc (set_relocation): add PANGO_PREFIX
5352
5353         * lily/melody-engraver.cc (acknowledge_stem): restart MelodyItem
5354         on rest.
5355
5356         * ly/engraver-init.ly: add Melody_engraver
5357
5358         * lily/beam.cc (calc_direction): use default-direction
5359         iso. get_default_direction()
5360
5361         * scm/define-grob-properties.scm (all-user-grob-properties): add
5362         default-direction property.
5363
5364         * scm/define-grobs.scm (all-grob-descriptions): add MelodyItem.
5365
5366         * lily/stem.cc (calc_default_direction): remove
5367         Stem::get_default_direction, use default-direction with callback
5368         instead.
5369
5370         * lily/melody-spanner.cc (calc_neutral_stem_direction): 
5371
5372         * lily/melody-engraver.cc: new file. Acknowledge stems for
5373         interpolated stem directions. 
5374
5375         * lily/melody-spanner.cc: new file. Interpolate stem directions.
5376
5377         * scm/define-grobs.scm (all-grob-descriptions): add MelodyItem
5378
5379         * lily/slur-configuration.cc (fit_factor): more robust check for
5380         point in curve X-extent.
5381
5382         * lily/slur.cc (outside_slur_callback): return offset_scm, not 0.
5383         (outside_slur_callback): check for 'outside avoidance.
5384
5385         * lily/slur-configuration.cc (score_extra_encompass): don't use
5386         bound->column() == avoid->column() for checking extents, as this
5387         doesn't work for accidentals. 
5388
5389         * lily/slur-engraver.cc (acknowledge_extra_object): remove
5390         DynamicText hardcoding.
5391
5392         * lily/slur-scoring.cc (enumerate_attachments): robustness: don't
5393         crash if bound stem is NULL
5394
5395         * lily/piano-pedal-performer.cc: patch by MWD for enabling piano
5396         pedals.
5397
5398 2005-12-22  Graham Percival  <gpermus@gmail.com>
5399
5400         * scm/define-markup-commands.scm: typo.  @code{\raise}
5401         => @code{\\raise}.
5402
5403         * darwin.patch: now used again, includes a
5404         required patch from fink.
5405
5406 2005-12-21  Heikki Junes  <hjunes@cc.hut.fi>
5407
5408         * po/TODO: mention gtranslator along with kbabel.
5409         * po/fi.po: update translations.
5410
5411 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5412
5413         * lily/relocate.cc (setup_paths): Bugfix.
5414
5415 2005-12-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5416
5417         * lily/slur-configuration.cc (score_extra_encompass): don't use
5418         "avoid" choice for avoid-slur.
5419
5420         * stepmake/bin/install.py (dest): don't create existing dir.
5421
5422 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5423
5424         * stepmake/bin/install.py: Remove file before copying.
5425
5426         * config.make.in: 
5427         * stepmake/aclocal.m4: Do not substitute INSTALL.
5428
5429 2005-12-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5430
5431         * GNUmakefile.in ($(tree-share-prefix)/mf-link-tree link-mf-tree):
5432         depend on link-tree.
5433
5434         * lily/relocate.cc (setup_paths): only check path for non-absolute
5435         dir without directory part.
5436
5437         * flower/file-name.cc (is_absolute):  new method.
5438         (is_absolute): check root_ too.
5439
5440 2005-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
5441
5442         * lily/relocate.cc (setup_paths) [__MINGW32__]: Comment-out broken
5443         relocation code.  Oops, don't comment out too much.
5444
5445         * stepmake/stepmake/generic-vars.make (INSTALL): Assign INSTALL_PY
5446         iso itself.
5447
5448         * lily/relocate.cc [HAVE_GETTEXT]: Include libintl.h.  Fixes mingw
5449         compile.
5450
5451 2005-12-20  Jan Nieuwenhuizen  <janneke@gnu.org>
5452
5453         * .cvsignore: Add install-sh.
5454
5455         * autogen.sh (srcdir): Typo.
5456
5457 2005-12-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5458
5459         * autogen.sh (srcdir): urg. Touch install-sh.
5460
5461         * stepmake/bin/install-sh (Module): remove.
5462
5463         * stepmake/stepmake/generic-vars.make (INSTALL): add $(INSTALL).
5464
5465         * lily/include/relocate.hh: new file.
5466
5467         * lily/relocate.cc: new file. Contain relocation logic.
5468
5469         * lily/main.cc (setup_paths): fix: LILYPOND_RELOCATE_PREFIX.
5470         (main): read LILYPOND_VERBOSE as the first thing.
5471
5472         * stepmake/aclocal.m4: remove INSTALL variable.
5473
5474         * GNUmakefile.in ($(tree-share-prefix)/mf-link-tree link-mf-tree):
5475         separate target for making font symlinks.
5476         (documentation-dir): use $(if $(findstring )) for switching off
5477         Documentation.
5478
5479         * stepmake/stepmake/help2man-vars.make (OUT_DIST_FILES): only do
5480         something if DOCUMENTATION is no.
5481
5482 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5483
5484         * VERSION: release 2.7.24
5485
5486         * lily/script-column-engraver.cc (stop_translation_timestep):
5487         delay adding to script-column.
5488
5489         * lily/tuplet-bracket.cc (print): suicide if no control-points. 
5490
5491         * python/convertrules.py (conv): rule for number-visibility
5492
5493         * lily/slur-configuration.cc (score_extra_encompass): different
5494         distance measure for avoid and inside avoidance.
5495         (score_extra_encompass): use 1/(distance+eps) as penalty.
5496
5497         * lily/slur-scoring.cc (generate_avoid_offsets): use 'inside
5498         encompass objects for generating slur curves.
5499
5500         * lily/slur.cc: use details iso. slur-details property.
5501
5502         * input/regression/slur-tuplet.ly: new file.
5503
5504         * lily/slur-engraver.cc (acknowledge_tuplet_number): new function.  
5505
5506         * flower/include/offset.hh (class Offset): new operator /=
5507
5508         * lily/tuplet-number.cc (print): new file, new interface.
5509
5510         * scm/define-grob-properties.scm (all-user-grob-properties):
5511         remove number-visibility property.
5512
5513         * lily/tuplet-bracket.cc (calc_control_points): new function
5514         (calc_connect_to_neighbors): new function.
5515         (print): remove text handling for tuplet numberdef.
5516
5517         * lily/tuplet-engraver.cc (struct Tuplet_description): create
5518         TupletNumbers too. 
5519
5520         * lily/lily-guile.cc (robust_scm2booldrul): new function
5521
5522         * scm/define-grobs.scm (all-grob-descriptions): new grob TupletNumber
5523
5524         * lily/tuplet-bracket.cc (calc_position_and_height): use
5525         staff-padding to control whether tuplet brackets are over staves.
5526
5527         * lily/grob.cc (suicide): clear dim_caches_.
5528
5529         * lily/dimension-cache.cc (clear): new function.
5530
5531         * lily/grob.cc (extent): swap order of min-extent and extent
5532         calculations. This fixes hara kiri staves. 
5533
5534 2005-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
5535
5536         * lily/main.cc: Nitpick: relocation is not based on path, but on
5537         directory (location).
5538
5539 2005-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5540
5541         * lily/main.cc (setup_paths): read LILYPOND_RELOCATE_PREFIX
5542
5543         * stepmake/stepmake/install-targets.make (local-uninstall): idem.
5544
5545         * stepmake/stepmake/install-out-targets.make (local-install-outfiles): idem.
5546
5547         * stepmake/stepmake/help2man-targets.make (install-help2man): idem.
5548
5549         * stepmake/stepmake/generic-vars.make (Module): idem.
5550
5551         * stepmake/stepmake/executable-targets.make (default): use it.
5552
5553         * stepmake/bin/install.py (create_dir): new file. Replace install-sh.
5554
5555         * make/GNUmakefile: don't install make rules.
5556
5557         * lily/main.cc (setup_paths): don't inspect $PATH for argv0 with
5558         slashes.
5559         (prepend_env_path): more verbosity.
5560
5561 2005-12-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5562
5563         * GNUmakefile.in: add dir argument for find command.
5564
5565         * lily/parser.yy (bass_figure): set_spot() for bass figures. This
5566         fixes weird line numbers for point & click.
5567
5568         * lily/source-file.cc (get_counts): init line/column/char counts.
5569
5570 2005-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5571
5572         * lily/main.cc: remove ARGV0_RELOCATION, instead use --relocate.
5573
5574 2005-12-16  Graham Percival  <gpermus@gmail.com>
5575
5576         * Documentation/user/basic-notation.itely, advanced-notation.itely:
5577         minor fixes from Fredric.  Thanks!
5578
5579 2005-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5580
5581         * ly/music-functions-init.ly: add \bar and \clef music function 
5582
5583         * lily/lily-lexer.cc: idem.
5584
5585         * lily/parser.yy (FIXME): remove BAR and CLEF.
5586
5587 2005-12-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5588
5589         * Documentation/topdocs/NEWS.tely (Top): doc string argument change.
5590
5591         * lily/parser.yy (Generic_prefix_music_scm): allow strings as
5592         function arguments too
5593
5594         * lily/main.cc (set_relocation): new function.
5595
5596         * scripts/musicxml2ly.py (convert): add \version
5597
5598         * lily/tie.cc: remove get_default_attachments()
5599
5600         * VERSION (PACKAGE_NAME): release 2.7.23
5601         
5602         * lily/chord-tremolo-engraver.cc (acknowledge_stem): use
5603         ultimate_music_cause(). This fixes core dumps in unfold-all-repeats.ly
5604
5605         * Documentation/topdocs/NEWS.tely (Top): document new feature.
5606
5607         * lily/tie-formatting-problem.cc (score_ties): new function
5608         (get_variations): new function. Try flipping dirs for collisions.
5609         (generate_optimal_chord_configuration): new function. 1-opt search
5610         for better configuration.
5611
5612         * lily/tie-configuration.cc: new file.
5613
5614         * lily/tie.cc: junk Tie::get_configuration()
5615
5616         * lily/tie-formatting-problem.cc (score_ties_aptitude): new function.
5617         (score_ties_configuration): new function.
5618         (generate_ties_configuration): new function.
5619         (generate_base_chord_configuration): new function.
5620         (set_ties_config_standard_directions): Move body from tie-column-format.cc 
5621         (set_manual_tie_configuration): Move body from tie-column-format.cc 
5622
5623         * input/regression/tie-dot.ly: new file.
5624
5625         * lily/tie-formatting-problem.cc (score_configuration): score
5626         tie/dot collisions.
5627
5628         * lily/tie-helper.cc (get_transformed_bezier): new function
5629
5630         * Documentation/topdocs/NEWS.tely (Top): strip out-www.
5631
5632         * stepmake/stepmake/python-module-vars.make (SHARED_FLAGS): use
5633         -undefined suppress iso. -framework Python 
5634
5635         * scm/define-grobs.scm (all-grob-descriptions): set
5636         springs-and-rods (thanks Joe Neeman!)
5637
5638 2005-12-12  Nicolas Sceaux  <nicolas.sceaux@free.fr>
5639
5640         * input/no-notation/display-lily-tests.ly (test): 
5641         * scm/display-lily.scm (tag->lily-string): the syntax for tags has
5642         changed from \tag #'(a b) to \tag #'a \tag #'b
5643
5644 2005-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5645
5646         * Documentation/topdocs/NEWS.tely: strip out-www.
5647
5648         * lily/include/grob-interface.hh: include lily-guile.hh not libguile.h
5649
5650         * config.make.in (AR): add AR and RANLIB
5651
5652         * flower/libc-extension.cc: include cassert
5653
5654         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): more robust
5655         darwin check.
5656
5657 2005-12-11  Graham Percival  <gpermus@gmail.com>
5658
5659         * stepmake/stepmake/generic-vars.make: define DARWIN_BUILD.
5660
5661         * stepmake/stepmake/python-modules-vars.make: define
5662         SHARED_FLAGS for OSX.  Thanks Johannes Schindelin!
5663
5664         * THANKS: added Johannes Schindelin.
5665
5666 2005-12-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5667
5668         * python/midi.c (pymidi_parse): use memcmp() iso. strcmp().
5669
5670         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
5671         Span_arpeggio_engraver, add Tweak_engraver to Score context. 
5672
5673         * lily/parser.yy: reorganize file layout.
5674
5675         * ly/music-functions-init.ly: add tweak music function.
5676
5677         * lily/grob-info.cc (ultimate_music_cause): new function:
5678         recursively lookup causes. 
5679
5680         * lily/parser.yy (chord_body_element): allow music functions for
5681         post-events, allow music functions for chord elements. 
5682  
5683         * lily/font-config-scheme.cc (display_fontset): add cast.
5684
5685         * python/convertrules.py (FatalConversionError.sub_syms): \tag
5686         #'(a b) -> \tag #'a \tag #'b rule.
5687
5688         * python/musicexp.py (Output_printer.dump_version): new function
5689
5690 2005-12-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5691
5692         * lily/parser.yy (FIXME): remove \tag
5693         (FIXME): remove tag_music() function.
5694
5695         * lily/lily-lexer.cc: remove \tag
5696
5697         * ly/music-functions-init.ly: define music-function "tag"
5698
5699         * lily/parser.yy (chord_body_element): allow tags in chord bodies.
5700
5701 2005-12-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5702
5703         * VERSION (PATCH_LEVEL): release 2.7.22
5704
5705         * input/regression/lyric-hyphen-retain.ly: renew.
5706
5707         * scm/define-grobs.scm (all-grob-descriptions): add LyricSpace
5708         grob
5709
5710         * lily/lyric-hyphen.cc (set_spacing_rods): use minimum-distance
5711         iso. minimum-length property for rods.
5712
5713         * lily/hyphen-engraver.cc (acknowledge_lyric_syllable): create
5714         LyricSpace item to keep lyrics spaced apart.
5715
5716         * ly/engraver-init.ly: remove Separating_line_group_engraver
5717
5718         * Documentation/user/music-glossary.tely: do setfilename before
5719         music-glossary.
5720
5721 2005-12-07  Heikki Junes  <hjunes@cc.hut.fi>
5722
5723         * Documentation/user/lilypond-book.itely: use `,´ after xref:
5724         See xref documentation, for example.
5725
5726 2005-12-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5727
5728         * scripts/musicxml2ly.py (musicxml_voice_to_lily_voice): use
5729         pending_skip iso. ly_voice[-1]
5730         (main): add if __main__ for debugging.
5731
5732         * python/musicxml.py (Accidental.__init__): new class.
5733
5734         * scripts/musicxml2ly.py (progress): new function
5735         (musicxml_key_to_lily): don't barf on modeless keys.
5736         (create_skip_music): new function.
5737         (musicxml_spanner_to_lily_event): new function. Handle beams too.
5738         (musicxml_note_to_lily_main_event): new function.
5739
5740         * python/musicexp.py (Music.__init__): add comment field.
5741         (NestedMusic.append): new routine.
5742         (SequentialMusic.print_ly): print comment.
5743         (ArpeggioEvent.ly_expression): new class
5744         (BeamEvent.ly_expression): new class
5745         (NoteEvent.__init__): support for cautionary/forced accs.
5746
5747         * lily/lookup.cc (slur): normal order for array loop.
5748
5749         * scm/framework-ps.scm (dump-stencil-as-EPS): set left X of bbox
5750         to 0.0.
5751
5752         * ly/engraver-init.ly: set bar-size, so bar-lines aren't
5753         collapsed.
5754
5755 2005-12-06 Erik Sandberg  <mandolaerik@gmail.com>
5756
5757         * scm/music-functions.scm: Make phrasing slurs follow voice direction
5758
5759         * scripts/lilypond-book.py: Introduce option
5760             --preserve-line-breaks, for usage with srcltx
5761
5762 2005-12-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5763
5764         * scm/output-lib.scm (print-circled-text-callback): draw circle
5765         around text using make-circle-markup.
5766
5767         * Documentation/user/*: strip out-www from file names.
5768
5769 2005-12-05  Heikki Junes  <hjunes@cc.hut.fi>
5770
5771         * Documentation/user/lilypond.tely (direntry): remove empty lines;
5772         fixes invalid info entry issue with makeinfo 4.8 in debian sid.
5773
5774 2005-12-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5775
5776         * Documentation/user/GNUmakefile: idem.
5777
5778         * Documentation/user/macros.itexi: strip out-www
5779
5780         * python/rational.py: python 2.3 compat.
5781
5782         * VERSION (PATCH_LEVEL): release 2.7.21
5783
5784         * scripts/musicxml2ly.py (NonDentedHeadingFormatter.format_headi):
5785         option formatting, lilypond style.
5786
5787         * python/musicexp.py: grab from Ikebana: a library for composing
5788         ly music expressions. 
5789         (Output_printer): class for advanced .ly printing.
5790         (eg. tupletting) 
5791
5792         * python/musicxml.py: new file. Read MusicXML MiniDOM tree, and
5793         convert to pythonesque structure.
5794
5795         * python/rational.py: PD rational number class.
5796
5797         * Documentation/user/converters.itely (Invoking musicxml2ly):  new node.
5798
5799 2005-12-04  Erik Sandberg  <mandolaerik@gmail.com>
5800
5801         * lily/part-combine-iterator.cc: Minor bugfix
5802         
5803         * THANKS: Update bughunters
5804
5805 2005-12-02  Werner Lemberg  <wl@gnu.org>
5806
5807         * mf/README: Document process for proper mf2pt1 conversion.
5808
5809         * mf/feta-beugel.mf (draw_brace): Fix path to assure clean
5810         overlapping.
5811
5812         * mf/feta-harmonica.mf: Removed.  Unused.
5813
5814 2005-12-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5815
5816         * scripts/lilypond-book.py (do_file): fix thinkos.
5817
5818 2005-12-01  Jan Nieuwenhuizen  <janneke@gnu.org>
5819
5820         * lily/GNUmakefile ($(outdir)/FlexLexer.h):
5821         ($(outdir)/parser.cc): 
5822         ($(outdir)/lexer.cc): Bugfix: depend on config.h.
5823
5824 2005-11-30  Pedro Kröger  <kroeger@pedrokroeger.net>
5825
5826         * ly/titling-init.ly (tagline): it should be a space between
5827         "Music engraving by LilyPond" and the version number.
5828
5829 2005-12-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5830
5831         * VERSION (PACKAGE_NAME): release 2.7.20
5832
5833 2005-11-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5834
5835         * scm/define-markup-commands.scm (pad-to-box): new markup command.
5836
5837         * scm/define-grobs.scm (all-grob-descriptions): set thickness to
5838         1.0.
5839         (all-grob-descriptions): don't shift RehearsalMark arbitrarily.
5840
5841 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5842
5843         * configure.in (LINK_GXX_STATICALLY): remove kpathsea checks.
5844
5845         * kpath-guile/: remove directory
5846
5847         * scm/kpathsea.scm (ly:kpathsea-expand-variable): new
5848         file. Encapsulate kpathsea using commandline tools.
5849
5850         * lily/all-font-metrics.cc (kpathsea_find_file): use (scm
5851         kpathsea) module.
5852
5853 2005-11-29  Mats Bengtsson  <mabe@s3.kth.se>
5854
5855         * Documentation/user/advanced-notation.itely (Setting automatic
5856         beam behavior): Correct a few typos. Thanks to David Bobroff.
5857
5858         * scripts/lilypond-book.py (LATEX_INSPECTION_DOCUMENT): Use
5859         \usepackage instead of \RequirePackage. Thanks to Bernard Hurley.
5860
5861 2005-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5862
5863         * scripts/*.py: gmane address for bugs.
5864
5865 2005-11-28 Pal Benko <benkop@freestart.hu>
5866         
5867         * make/ly-rules.make: add -f switch to mv
5868
5869         * scm/output-libs.scm: add new bar symbol "." for punctus divisionis
5870
5871         * lily/bar-line.cc: interpret it
5872
5873 2005-11-28  Jan Nieuwenhuizen  <janneke@gnu.org>
5874
5875         * configure.in (--disable-documentation): New switch.
5876
5877         * GNUmakefile.in: Use it.
5878
5879         * stepmake/aclocal.m4: Use AC_ARG_ENABLE for kpatsea.
5880
5881 2005-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5882
5883         * scripts/lilypond-book.py (do_file): search chunks for
5884         \\begin{document}
5885
5886         * GNUmakefile.in: add copy step in between so we can lose the
5887         out-www directories.
5888
5889 2005-11-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5890
5891         * lily/pango-font.cc (pango_item_string_stencil): put
5892         geometry.width into glyph-string too.
5893
5894 2005-11-26  Nicolas Sceaux  <nicolas.sceaux@free.fr>
5895
5896         * scm/define-music-display-methods.scm (RevertProperty):
5897         (OverrideProperty): Use grob-property-path property, a list of
5898         symbols, instead of grob-property, which used to be a single
5899         symbol.
5900         (BassFigureEvent): a figure can be a plain number, not necessarily a
5901         markup.
5902
5903 2005-11-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5904
5905         * VERSION: release 2.7.19
5906         
5907         * lily/figured-bass-engraver.cc (process_music): check
5908         figuredBassCenterContinuations first.
5909
5910         * scm/translation-functions.scm (format-bass-figure): make double
5911         sharp larger. 
5912
5913         * lily/mark-engraver.cc: read rehearsalMarkAlignSymbol to
5914         determine X-parent.
5915
5916         * lily/system-start-delimiter-engraver.cc: move from
5917         Nested_system_start_delimiter_engraver, rename
5918         Nested_system_start_delimiter_engraver ->
5919         System_start_delimiter_engraver.
5920
5921         * lily/nested-system-start-delimiter-engraver.cc (from_list): read
5922         bracket type from hierarchy.
5923
5924 2005-11-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5925
5926         * lily/rest.cc (y_offset_callback): read staff-position.
5927
5928         * scm/define-grob-properties.scm (all-user-grob-properties): don't
5929         mark after-line-breaking-callback as internal.
5930
5931         * lily/self-aligment-interface.cc: remove self-[XY]-offset.
5932
5933 2005-11-25  Werner Lemberg  <wl@gnu.org>
5934
5935         * mf/feta-banier.mf ("d3"): Make `flare' equal to `staff_space'.
5936
5937 2005-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5938
5939         * stepmake/bin/add-html-footer.py (do_file): add google
5940
5941         * lily/staff-symbol-engraver.cc (process_music): bugfix: stop
5942         staff if first_start_ is true.
5943
5944 2005-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5945
5946         * scripts/midi2ly.py (split_track): add __repr__ members.
5947         (track_first_item): only return Item if not None. This fixes a
5948         problem when dumping a track that starts with an empty channel.
5949
5950         * python/midi.c: doc module.
5951
5952 2005-11-22  Mats Bengtsson  <mabe@s3.kth.se>
5953
5954         * Documentation/user/global.itely (Creating MIDI files): Fix
5955         compilation problem.
5956
5957 2005-11-22  Graham Percival  <gpermus@gmail.com>
5958
5959         * Documentation/user/basic-notation.itely: clarify dynamic
5960         padding text.
5961
5962         * Documentation/user/advanced-notation.itely: add unicode
5963         escape control example, whatever that is.  :)
5964
5965         * Documentation/user/global.itely: added "removing dynamics
5966         from MIDI" code.
5967
5968 2005-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5969
5970         * VERSION (PATCH_LEVEL): release 2.7.18
5971
5972         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): replace
5973         System_start_delimiter_engraver by
5974         Nested_system_start_delimiter_engraver.
5975
5976         * lily/nested-system-start-delimiter-engraver.cc (struct
5977         Bracket_nesting_node): new class.
5978         (struct Bracket_nesting_group): new class
5979         (struct Bracket_nesting_staff): new class.
5980         (process_music): create hierarchy of grobs. This allows separate
5981         tuning of different SSDs. 
5982
5983         * scm/define-grobs.scm (all-grob-descriptions): new Grob SystemStartSquare
5984         (all-grob-descriptions): remove old NestedSystemStartDelimiter.
5985
5986 2005-11-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5987
5988         * lily/side-position-interface.cc (aligned_side): multiply
5989         staff_radius by 2.
5990
5991         * lily/script-engraver.cc (make_script_from_event): allow setting
5992         values to '()
5993
5994 2005-11-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
5995
5996         * lily/system-start-delimiter.cc (line_bracket): don't shorten height.
5997
5998         * scm/define-grobs.scm (all-grob-descriptions): new grob
5999         NestedSystemStartDelimiter.
6000
6001         * input/regression/system-start-heavy-bar.ly: new file.
6002
6003         * lily/nested-system-start-delimiter-engraver.cc: new file.
6004
6005         * lily/nested-system-start-delimiter.cc: new file.
6006
6007         * input/regression/system-start-nesting.ly: new file.
6008
6009         * scm/define-grobs.scm (all-grob-descriptions): use X side
6010         positioning for positioning braces for nested contexts.
6011
6012         * lily/system-start-delimiter.cc (print): don't divide extent by
6013         staff_space.
6014         (print): use style iso. glyph.
6015         (staff_bracket): translate glyph inside routine already.
6016
6017 2005-11-18  Michael Welsh Duggan <md5i@cs.cmu.edu>
6018
6019         * lily/vaticana-ligature-engraver.cc: fixed 2 typos in glyph
6020         names.
6021
6022 2005-11-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6023
6024         * scm/define-context-properties.scm
6025         (all-user-translation-properties): rename figuredBassFormatter
6026         from newFiguredBassFormatter.
6027
6028         * scm/define-grobs.scm (all-grob-descriptions): move from NewBassFigure
6029
6030         * lily/figured-bass-engraver.cc: move from new-figured-bass-engraver.cc
6031
6032         * lily/stem.cc (calc_stem_info): trigger beaming calculation.
6033
6034         * lily/beam.cc (calc_beaming): new function.
6035         (calc_shorten): new function.
6036
6037         * THANKS: add Edward Neeman.
6038
6039         * input/regression/accidental-clef-change.ly: new file.
6040
6041         * lily/note-collision.cc (check_meshing_chords): don't merge fa heads.
6042
6043         * scm/define-grobs.scm (all-grob-descriptions): add Y-offset property.
6044
6045         * lily/clef-engraver.cc (inspect_clef_properties): reset
6046         localKeySignature for clef changes.
6047
6048 2005-11-17  Mats Bengtsson  <mabe@s3.kth.se>
6049
6050         * python/midi.c: PyMIDINIT_FUNC isn't defined in Python < 2.3 
6051         add dummy definition that works in Linux and add information in
6052         INSTALL.texi on the specific Python requirements for Cygwin/Mingw.
6053
6054         * Documentation/user/changing-defaults.itely (Modifying context
6055         plug-ins): Add index for \with.
6056
6057         * Documentation/user/music-glossary.tely (dal segno): Updated
6058         example to version >=2.6.
6059
6060 2005-11-16  Mats Bengtsson  <mabe@s3.kth.se>
6061
6062         * Documentation/user/instrument-notation.itely (Printing chord
6063         names): Reorder \chordmode and \repeat in one example.
6064
6065 2005-11-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6066
6067         * VERSION: release 2.7.17
6068         
6069         * Documentation/topdocs/NEWS.tely (Top): add note about
6070         refactoring.
6071
6072         * lily/tie-formatting-problem.cc (find_optimal_tie_configuration):
6073         new function. Search region of 3 positions for best tie.
6074         (score_configuration): new function.
6075         (score_aptitude): new function.
6076         (generate_configuration): new function.
6077         (get_configuration): new function.
6078         (Tie_formatting_problem): new function
6079
6080         * input/regression/page-top-space.ly: a6 for page-top-space demo. 
6081
6082         * stepmake/aclocal.m4: use $(if ) for config-FOOF.make
6083
6084         * THANKS: add Eduardo Vieira & Ralph Little
6085
6086         * mf/feta-bolletjes.mf (solfa_quarter_width): make solfa heads
6087         narrower.
6088
6089         * lily/include/tie-formatting-problem.hh (class
6090         Tie_formatting_problem): add Tie_details to
6091         Tie_formatting_problem. Update calling conventions.
6092
6093         * stepmake/aclocal.m4: oops. Include $CONFIGFILE.make, not
6094         config.make.
6095
6096         * Documentation/user/lilypond.tely: remove musedata2ly entry.
6097
6098 2005-11-16  Jürgen Reuter  <reuter@ipd.uka.de>
6099
6100         * lily/ligature-engraver.cc, lily/include/ligature-engraver.hh,
6101         scm/define-context-properties.scm: Maintenance bugfix: make
6102         ligature brackets work again by removing obsolete ligature
6103         primitive callback push/pop.
6104
6105         * scm/define-grobs.scm (LigatureBracket): Maintenance bugfix: do
6106         not call Tuplet_bracket::calc_direction.  Removed obsolete gap
6107         value.
6108
6109 2005-11-15  Jan Nieuwenhuizen  <janneke@gnu.org>
6110
6111         * stepmake/aclocal.m4 (depth): Explain why absolute directory is
6112         used and do not call it a path.
6113         (FLEXLEXER_FILE): Rename from FLEXLEXER_PATH and add file name.
6114
6115 2005-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6116
6117         * lily/include/tie-formatting-problem.hh (class
6118         Tie_formatting_problem): new file.
6119
6120         * lily/tie-formatting-problem.cc (common_x_refpoint): new file.
6121
6122         * Documentation/misc/ChangeLog-2.3:  new file.
6123
6124         * lily/audio-staff.cc (output): degarianize.
6125
6126 2005-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
6127
6128         * stepmake/stepmake/python-module-rules.make ($(outdir)/%.pyc):
6129         Unset PYTHONOPTIMIZE.  Fixes install if set.
6130
6131 2005-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6132
6133         * python/convertrules.py (conv): add warning about drums. 
6134
6135         * make/stepmake.make: include toplevel-version.make after config.make.
6136
6137         * stepmake/aclocal.m4 (depth): make sure $srcdir is absolute.
6138         also allow python2.4
6139
6140         * config.make.in (configure-srcdir): remove GXX GCC vars.
6141
6142         * stepmake/aclocal.m4: don't do non-srcdir build with
6143         symlinks. Use inclusion, so the src directory name can be changed.
6144
6145 2005-11-13  Jan Nieuwenhuizen  <janneke@gnu.org>
6146
6147         * make/mutopia-vars.make:
6148         * make/ly-vars.make: Use src-wildcard iso wildcard for source
6149         files.
6150
6151 2005-11-13  Werner Lemberg  <wl@gnu.org>
6152
6153         * mf/feta-arrow.mf: For all glyphs, don't mirror `currentpicture'
6154         but the affected path.  This ensures that the (overlapping) outlines
6155         have the same direction, which is a necessary prerequisite for
6156         FontForge's algorithm to remove overlaps.
6157         Formatting.
6158
6159         * mf/feta-haak.mf: Formatting.
6160         (draw_bracket): Slightly modify outline to avoid an unnecessary
6161         corner.
6162         Don't use ad-hoc values for `leave_angle' and `tip_angle' but derive
6163         them from the affected paths.
6164
6165 2005-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6166
6167         * mf/README: remove xpm / accordion notes.
6168
6169         * lily/tie-column-format.cc (set_chord_outline): add dots into
6170         skyline extents. This fixes tie formatting if the left head has dots.
6171
6172         * lily/tie.cc (get_configuration): only shift tie by a whole staff
6173         space inside the staff.
6174         (get_configuration): shift another position if necessary in case
6175         of left head tie  
6176
6177 2005-11-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6178
6179         * stepmake/stepmake/texinfo-vars.make (GENERATE_OMF): use
6180         buildscript-dir iso. $(depth)/buildscripts.
6181
6182         * tex/GNUmakefile (local-uninstall): remove
6183         music-drawing-routines.ps juggling.
6184
6185         * stepmake/stepmake/install-targets.make (local-install-files):
6186         prepend src-dir to install targets.
6187
6188         * lily/system-start-delimiter-engraver.cc
6189         (acknowledge_system_start_delimiter): use
6190         add_offset_callback(). This fixes translation of nested
6191         staffgroups.
6192
6193         * lily/grob-closure.cc (add_offset_callback): only encaps in
6194         simple_closure if it's a procedure.
6195         
6196         * lily/span-bar.cc (calc_glyph_name): read glyph-name, not glyph
6197         from bar-line.
6198
6199         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
6200         remove-empty where pertinent.
6201
6202 2005-11-12  Graham Percival  <gpermus@gmail.com>
6203
6204         * Documentation/user/instrument-notation.itely: added
6205         Cameron Horsburgh's multiple stanzas docs.  Thanks!
6206
6207 2005-11-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6208
6209         * lily/GNUmakefile
6210         ($(top-build-dir)/Documentation/pictures/$(outbase)/lilypond.ico):
6211         make picture in builddir, not srcdir.
6212
6213 2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6214
6215         * VERSION: release 2.7.16
6216         
6217         * scripts/lilypond-book.py (main): use commands.mkarg () to quote
6218         shell arguments. 
6219
6220 2005-11-10  Mats Bengtsson  <mabe@s3.kth.se>
6221
6222         * Documentation/user/examples.itely (Piano templates): Minor
6223         modification to the Piano centered lyrics example.
6224
6225 2005-11-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6226
6227         * scripts/lilypond-invoke-editor.scm (run-browser): look at
6228         $BROWSER.
6229
6230         * Documentation/user/point-and-click.itely: simplify p&c
6231         instruction: don't configure firefox. Put lilypond-invoke-editor
6232         in front of the browser.
6233
6234         * scripts/lilypond-invoke-editor.scm (run-editor): new function.
6235         (run-browser): new function.
6236
6237         * lily/parser.yy (Lily_lexer): recognize Book
6238
6239         * lily/book.cc (clone): new function
6240
6241         * lily/parser.yy (book_body): allow BOOK_IDENTIFIER.
6242
6243 2005-11-10  Jürgen Reuter  <reuter@ipd.uka.de>
6244
6245         * lily/vaticana-ligature.cc, lily/vaticana-ligature-engraver.cc:
6246         Maintenance bugfix: reduce number of font related warnings by
6247         updating naming conventions for glyph-name.
6248
6249 2005-11-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6250
6251         * scm/define-grobs.scm (all-grob-descriptions): add
6252         rhythmic-grob-interface to TabNoteHead.
6253
6254         * scm/layout-beam.scm (check-quant-callbacks): remove
6255         set_stem_lengths()
6256
6257 2005-11-08  Jürgen Reuter  <reuter@ipd.uka.de>
6258
6259         * ly/gregorian-init.ly (divisiones): Maintenance bugfix: vertical
6260         alignment of centered divisiones.
6261
6262         * scm/scripts.scm (articulations): Maintenance bugfix:
6263         follow-into-staff -> quantize-position.
6264
6265         * lily/vaticana-ligature-engraver.cc (transform_heads): Bugfix:
6266         plica head in porrectus deminutus.
6267
6268 2005-11-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6269
6270         * make/lilypond.fedora.spec.in (Group): add %clean section.
6271
6272         * lily/tuplet-bracket.cc (print): change check: remove bracket if
6273         less then 1/5th of total length.  
6274         (print): use gap too.  Fixes tupletUp-single-bracket.ly
6275
6276         * scm/music-functions.scm (glue-mm-rest-texts): also put other
6277         events into EventChord. This fixes textspanners on mm rests. Fixes
6278         spanner-rest.ly
6279
6280         * lily/side-position-interface.cc (get_axis): read side-axis
6281         (set_axis): set side-axis.
6282
6283         * scm/define-grobs.scm (all-grob-descriptions): add side-axis
6284         properties everywhere.
6285
6286         * lily/spacing-spanner.cc (breakable_column_spacing): add
6287         average-spacing-wishes. Take maximum if not set.
6288         (musical_column_spacing): idem. Fixes: spacing-keysig-note.ly
6289
6290         * scm/define-grobs.scm (all-grob-descriptions): add
6291         average-spacing-wishes.
6292
6293         * lily/grob-closure.cc (add_offset_callback): bugfix: properly add
6294         offset callbacks. This fixes alignment for Fingering objects.
6295
6296         * scm/define-grobs.scm (all-grob-descriptions): tiny bit less
6297         space for key - timesig combination. 
6298
6299         * input/regression/script-stem-tremolo.ly (Module): new file.
6300
6301         * scm/define-grobs.scm (all-grob-descriptions): decrease distance
6302         to key sig.
6303
6304         * lily/dynamic-engraver.cc (acknowledge_stem_tremolo): new function.
6305         Fixes: c-tremolo-script.ly.
6306         
6307         * lily/text-engraver.cc (acknowledge_stem_tremolo): new function.
6308
6309         * lily/script-engraver.cc (acknowledge_stem_tremolo): new function.
6310         
6311         * scm/define-grobs.scm (all-grob-descriptions): remove
6312         self-X-offset. Fixes alignment of octavate-8.
6313
6314         * scripts/lilypond-book.py (datadir): look in
6315         LILYPONDPREFIX/share/lilypond/current/
6316
6317         * GNUmakefile.in: symlink current to <VERSION>. 
6318
6319 2005-11-07  Pedro Kroger  <kroeger@pedrokroeger.net>
6320
6321         * lily/main.cc: eps listed as a backend.
6322
6323 2005-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6324
6325         * scm/lily-library.scm (print-music-as-book): quote $defaultpaper.
6326
6327 2005-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6328
6329         * lily/include/score.hh (class Score): remove texts_ member.
6330
6331         * lily/beam.cc (set_stem_lengths): force direction callback.
6332         (print): read quantized-positions, so we can force
6333         Beam::set_stem_lengths to occur.
6334         (rest_collision_callback): use common X parent. 
6335
6336 2005-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
6337
6338         * flower/file-path.cc (find): Bugfix: Return name of file found.
6339
6340         * lily/main.cc (setup_paths): Bugfix for argv0 logic.
6341         (setup_paths)[__CYGWIN__ || __MINGW32__]: Normalize argv0.
6342         (setup_paths)[__MINGW32__]: Also look for argv0 + .exe.
6343
6344 2005-11-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6345
6346         * flower/offset.cc: idem.
6347
6348         * mf/*.mf: update email address.
6349
6350         * lily/font-config-scheme.cc:  new file.
6351
6352         * GNUmakefile.in (SUBDIRS): remove debian/ directory.
6353
6354         * lily/*:  cs.uu.nl -> xs4all.nl
6355
6356         * VERSION (PATCH_LEVEL): release 2.7.15
6357
6358         * make/lilypond.mandrake.spec.in (Module): remove Mandrake & Suse
6359         spec files.
6360
6361         * make/lilypond.fedora.spec.in: add %{libdir}/lilypond/
6362
6363 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6364
6365         * GNUmakefile.in: bugfix: encapsulate mkdir && cd in parens.   
6366
6367         * lily/staff-performer.cc (process_music): add audio
6368         elements. This makes MIDI instrument changes work once again.
6369
6370         * lily/main.cc (LY_DEFINE): add gmane address.
6371
6372         * lily/beam.cc: remove calc_positions()
6373
6374         * lily/include/grob.hh (class Grob): move pscore, dim_cache_,
6375         original_ in private scope.
6376         (class Grob): drop pscore_ pointer, change to output_def pointer.
6377         (class Grob): cleanup class definition.
6378
6379         * ly/spanners-init.ly (assertBeamQuant): use make-simple-closure.
6380
6381 2005-11-02  Jan Nieuwenhuizen  <janneke@gnu.org>
6382
6383         * lily/main.cc (setup_paths)[__MINGW32__]: Do not assume argv0 is
6384         absolute.  Better diagnostics.
6385
6386         * GNUmakefile.in: Add bin/ to tree and populate with some links.
6387         This makes lilypond run from the build directory using argv0
6388         relocation (without any --prefix or LILYPONDPREFIX setting).
6389
6390 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6391
6392         * Documentation/topdocs/NEWS.tely (Top): document new backend design.
6393
6394         * scm/define-grobs.scm: purge self-[XY]-offset variables, replace
6395         with simple-closure.
6396
6397         * lily/self-aligment-interface.cc (set_align_self): new function
6398         (set_center_parent): new function.
6399
6400         * lily/side-position-interface.cc (set_axis): new function.
6401
6402         * lily/new-fingering-engraver.cc (position_scripts): use drul for
6403         generic code. 
6404
6405         * scm/define-grob-properties.scm (all-user-grob-properties):
6406         remove [XY]-offset-callbacks add [YX]-offset
6407         
6408 2005-11-02  Mats Bengtsson  <mabe@s3.kth.se>
6409
6410         * scm/define-grobs.scm (all-grob-descriptions): Added space-alist
6411         entry for time signatures after breathing signs. Bug report by
6412         Scott Russell.
6413
6414 2005-11-01  Jan Nieuwenhuizen  <janneke@gnu.org>
6415
6416         * lily/main.cc (setup_paths)[!__MINGW32__]: Bugfix: if argv0 is
6417         not absolute, make it absolute using PATH.
6418
6419 2005-10-28  Jan Nieuwenhuizen  <janneke@gnu.org>
6420
6421         * python/midi.c (initmidi): Fix type for mingw.
6422
6423 2005-10-27  Jan Nieuwenhuizen  <janneke@gnu.org>
6424
6425         * stepmake/stepmake/compile-vars.make (SHARED_FLAGS): Support mingw.
6426
6427         * stepmake/stepmake/generic-vars.make (MINGW_BUILD): Detect mingw
6428         cross compiling.
6429
6430         * stepmake/aclocal.m4: Support python cross compiling.
6431
6432         * stepmake/stepmake/python-module-vars.make (SHARED_MODULE_SUFFIX):
6433         Add mingw section.
6434
6435 2005-11-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6436
6437         * scm/output-lib.scm (chain-grob-member-functions): replace
6438         chained-callback.cc
6439
6440         * lily/chained-callback.cc (Module): remove file.
6441
6442         * lily/rest-collision.cc (force_shift_callback_rest): change to
6443         chained callback.
6444
6445         * lily/rest.cc (y_offset_callback): merge function of 3 callbacks. 
6446
6447         * lily/grob.cc (y_parent_positioning): remove axis argument from
6448         parent_positioning callbacks.
6449         (Grob): junk init code
6450         (get_offset): use generic property callbacks for
6451         X-offset, Y-offset. Remove Grob::{add,has}_offset_callback.
6452         (axis_parent_positioning): new function
6453         (axis_offset_symbol): new function
6454         (chain_offset_callback): new function
6455         (add_offset_callback): new function
6456
6457         * lily/beam.cc (rest_collision_callback): change signature; this
6458         is now a chained callback.
6459
6460         * lily/include/dimension-cache.hh (class Dimension_cache): remove
6461         callback administration.
6462
6463         * lily/simple-closure.cc: new file. Smob type that allows "grob
6464         member functions",
6465
6466             (ly:make-simple-closure FUNC A B)
6467
6468         is evaluated as (FUNC grob A B). This allows chaining of callbacks
6469         in various ways.
6470
6471         * lily/slur-engraver.cc (acknowledge_extra_object): use chained
6472         callbacks.
6473
6474         * lily/slur.cc (outside_slur_callback): take 2 arguments.
6475
6476         * lily/rest.cc (polyphonic_offset_callback): remove.
6477
6478         * lily/script-engraver.cc (try_music): remove bool* argument.
6479
6480         * scm/script.scm (default-script-alist): set quantize-position
6481         appropriately.
6482
6483         * lily/script-engraver.cc: remove follow_into_staff_ special coding. 
6484
6485         * lily/side-position-interface.cc (aligned_side): move staff
6486         position quantization from
6487         Side_position_interface::quantised_position().
6488         (quantised_position): remove
6489         
6490 2005-10-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6491
6492         * input/regression/beam-quant-standard.ly: reindent, set
6493         debug-beam-quanting to #t.
6494
6495         * lily/beam-concave.cc (calc_concaveness): set concaveness to
6496         10000 if this is a "hard" concave beam.
6497
6498         * lily/beam.cc (calc_least_squares_positions): change from
6499         calc_least_squares_dy
6500         (set_stem_lengths): this is now a chained callback.
6501
6502         * lily/context-property.cc (execute_general_pushpop_property):
6503         bugfix override with procedure should have effect.
6504
6505         * scm/define-grob-properties.scm (all-internal-grob-properties):
6506         remove position-callbacks.
6507
6508         * scm/define-grobs.scm (all-grob-descriptions): use
6509         ly:make-callback-chain for positions property.
6510
6511         * scm/layout-beam.scm (check-quant-callbacks): return list of
6512         chained callbacks.
6513
6514         * scm/lily.scm (type-p-name-alist): add callback-chain
6515
6516         * lily/lily-guile.cc (type_check_assignment): type check failure
6517         is warning not message.
6518
6519         * lily/grob-property.cc (try_callback): walk callback chain if
6520         appropriate.
6521
6522         * lily/chained-callback.cc: new file. new smob type.
6523
6524         * lily/lily-guile.cc (procedure_arity): new function.
6525
6526 2005-10-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6527
6528         * Documentation/topdocs/INSTALL.texi (Top): add perl flex bison.
6529
6530 2005-10-25  John Mandereau  <john.mandereau@free.fr>
6531  
6532         * Documentation/user/instrument-notation.itely (Figured bass):
6533         describe new features
6534
6535 2005-10-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6536
6537         * lily/beam.cc (calc_least_squares_dy): use property callback.
6538
6539         * lily/beam-concave.cc (calc_concaveness): use property callback.
6540
6541         * ly/paper-defaults.ly: move fixed dimensions from paper.scm 
6542
6543 2005-10-25  Jan Nieuwenhuizen  <janneke@gnu.org>
6544
6545         * HACKING: Update.
6546
6547 2005-10-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6548
6549         * scm/layout-page-layout.scm (page-headfoot): annotate
6550         pagetopspace too.
6551
6552         * scm/stencil.scm (dimension-arrows): shorten arrowed lines a bit. 
6553
6554         * scm/layout-page-layout.scm (annotate-y-interval): y-annotation
6555         doesn't take y-space.
6556
6557         * scm/paper.scm (paper-alist): fix A7 dimensions. 
6558
6559 2005-10-24  Jan Nieuwenhuizen  <janneke@gnu.org>
6560
6561         * stepmake/stepmake/generic-vars.make (DIST_FILES): Fix
6562         src-wildcard, remove $(wildcard).
6563
6564         * po/GNUmakefile (PO_FILES): 
6565         * ps/GNUmakefile (PS_FILES): 
6566         * tex/GNUmakefile (TEX_FILES): 
6567         * cygwin/GNUmakefile (POSTINSTALLS):
6568         * vim/GNUmakefile (EXTRA_DIST_FILES): Bugfix: [etags sr?] missed
6569         some wildcard calls.
6570
6571 2005-10-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6572
6573         * THANKS: add Thomas Bushnell.
6574
6575 2005-10-23  Jan Nieuwenhuizen  <janneke@gnu.org>
6576
6577         * scm/lily.scm: Remove horrendous running-from-gui? kludge.
6578         (lilypond-main): Redirect to gui-main if 'gui is set.
6579
6580         * scripts/midi2ly.py (datadir): Add libdir iso datadir to path,
6581         for alternative installations kludging s/share/lib/g
6582         LILYPONDPREFIX. 
6583
6584         * SConstruct (libdir_package_version): Define.
6585
6586         * python/SConscript: 
6587         * python/GNUmakefile (INSTALLATION_OUT_DIR): Install binary .so
6588         module in libdir.  
6589
6590 2005-10-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6591
6592         * lily/main.cc: clarify --safe.
6593
6594 2005-10-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6595
6596         * VERSION: release 2.7.14
6597         
6598         * Documentation/user/*.itely: remove minimumVerticalExtent.
6599
6600         * scm/define-grobs.scm (all-grob-descriptions): remove
6601         RemoveEmptyVerticalGroup
6602
6603         * lily/hara-kiri-engraver.cc (get_spanner): create VerticalAxisGroup.
6604
6605         * lily/include/lily-guile.hh (GUILE_ELLIPSIS): define to get clean
6606         compile on MOSX
6607
6608         * python/convertrules.py (conv): add rules.
6609
6610         * lily/grob.cc: remove is_empty()
6611
6612         * lily/grob-property.cc: remove add_to_list_property().
6613
6614         * scripts/convert-ly.py (datadir): add prefix switching hack to
6615         .py too.
6616
6617         * input/mutopia/W.A.Mozart/mozart-hrn3-defs.ily (cresc): remove
6618         space-function tweak.
6619
6620         * lily/grob.cc: remove X-extent-callback / Y-extent-callback.
6621
6622         * scm/define-grob-properties.scm (all-user-grob-properties):
6623         remove callback property.
6624
6625         * lily/include/grob.hh (class Grob): remove property_callbacks_
6626         member. Properties of procedure type are assumed to be callbacks.
6627
6628         * lily/ligature-engraver.cc (override_stencil_callback):
6629         rewrite. Use noteHeadLigaturePrimitive as source.
6630
6631         * scm/define-grob-properties.scm (all-internal-grob-properties):
6632         remove ligature-primitive-callback
6633
6634         * lily/include/dimension-cache.hh (class Dimension_cache): make
6635         class, with Grob as friend.
6636
6637         * lily/grob.cc: remove set_extent_callback(), set_extent() and
6638         has_extent_callback()
6639
6640         * scm/translation-functions.scm (format-new-bass-figure): read
6641         figuredBassPlusDirection
6642
6643         * scm/define-context-properties.scm
6644         (all-user-translation-properties): add figuredBassPlusDirection.
6645
6646         * lily/staff-spacing.cc (next_notes_correction): oops. Init wishes.
6647
6648         * lily/align-interface.cc (set_ordered): new function.
6649
6650         * lily/grob.cc (flush_extent_cache): rewrite.
6651
6652         * lily/dimension-cache.cc (Dimension_cache): cache extent as
6653         Interval pointer directly.
6654
6655         * lily/main.cc (setup_paths): insert extra / .
6656         (setup_paths): junk cff entry.
6657
6658         * lily/font-config.cc (init_fontconfig): only add type1 / otf
6659         directories.
6660
6661         * lily/axis-group-engraver.cc (finalize): remove
6662         extraVerticalExtent, minimumVerticalExtent verticalExtent.
6663
6664         * lily/grob.cc (Grob): don't set extent from ctor.
6665         (extent): use property callbacks. 
6666
6667         * lily/axis-group-interface.cc: remove set_axes() function.
6668
6669         * lily/grob-property.cc (del_property): new function.
6670
6671 2005-10-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6672
6673         * lily/font-config.cc (init_fontconfig): resurrect mf/out/ check.
6674         
6675 2005-10-20  Jan Nieuwenhuizen  <janneke@gnu.org>
6676
6677         * stepmake/stepmake/script-vars.make (PYTHON_SCRIPTS_IN): Oops.  Add.
6678
6679 2005-10-19  Jan Nieuwenhuizen  <janneke@gnu.org>
6680
6681         * mf/SConscript: Updates.
6682
6683         * lily/GNUmakefile (OUT_DIST_FILES): Bugfix.
6684
6685         * stepmake/stepmake/*:
6686         * */GNUmakefile:
6687         * config.make.in:
6688         * GNUmakefile.in:
6689         * stepmake/aclocal.m4: Friendlier --srcdir build, allowing `make'
6690         from any directory in build-dir.  Cleanups.
6691
6692         * make/srcdir.make.in: Remove.
6693
6694         * lily/main.cc (setup_paths): Fix and document build-dir hack.
6695
6696         * SConstruct (CheckYYCurrentBuffer): Use TryCompile (there is no
6697         main).
6698
6699         * lily/SConscript: Remove ttftools.
6700
6701         * SConstruct: Resurrect.
6702
6703 2005-10-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6704
6705         * lily/tuplet-bracket.cc (print): use dy iso. positions[RIGHT] for
6706         Y coordinate. 
6707
6708         * lily/paper-book.cc (add_score_title): put Paper_score title into
6709         systems_ list.
6710
6711         * scm/translation-functions.scm (format-new-bass-figure): also
6712         allow plus in combination with _
6713
6714 2005-10-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6715
6716         * VERSION: 2.7.13 released.
6717
6718         * lily/note-collision.cc (check_meshing_chords): don't wipe
6719         stencil, merely set transparent.
6720
6721         * Documentation/topdocs/NEWS.tely (Top): mention John Mandereau. 
6722         (Top): document #'callbacks.
6723         (Top): document nested \override.
6724
6725         * input/regression/figured-bass.ly: update for slash and pluses.
6726
6727         * input/regression/figured-bass-continuation-forbid.ly (Module):
6728         new file.
6729
6730         * scm/translation-functions.scm (format-new-bass-figure): use
6731         slashed-digit if diminished is set.
6732         (format-new-bass-figure): add + if 'augmented is set.
6733
6734         * scm/define-markup-commands.scm (slashed-digit): new command slashed-digit.
6735
6736         * input/test/piano-staff-distance.ly: remove file.
6737
6738         * Documentation/user/advanced-notation.itely (Formatting cue
6739         notes): use length-fraction for making stems/beams smaller.
6740
6741         * lily/parser.yy (bass_figure): accept \+ \! and / as figured bass
6742         modifications.
6743
6744         * lily/new-figured-bass-engraver.cc: new property
6745         centerFiguredBassContinuations
6746
6747         * Documentation/user/changing-defaults.itely (Difficult tweaks):
6748         use callbacks.
6749
6750         * lily/context-property.cc (execute_general_pushpop_property):
6751         robustness checks.
6752
6753         * input/regression/override-nest.ly: new file.
6754
6755         * python/convertrules.py (FatalConversionError.subber): conversion
6756         rule for #'callbacks
6757
6758         * input/regression/override-nest.ly: new function.
6759
6760         * lily/parser.yy (music_property_def): allow \override #'a #'b =
6761         #c too. 
6762
6763         * lily/context-property.cc (lookup_nested_property): new function.
6764         (evict_from_alist): new function.
6765         (general_pushpop_property): new function.
6766         (execute_general_pushpop_property): rewrite. Support nested
6767         properties too.
6768
6769 2005-10-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6770
6771         * lily/beam.cc: use length-fraction too.
6772
6773         * scm/define-grob-properties.scm (all-user-grob-properties):
6774         remove property flag-width-function
6775         (all-user-grob-properties): remove space-function.
6776
6777         * scm/layout-beam.scm: remove flag-width-function.
6778
6779         * lily/beam.cc: remove flag-width-function
6780
6781         * scm/layout-beam.scm: remove beam dir functions.
6782
6783         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): use length-fraction.
6784
6785         * lily/stem.cc (calc_length): multiply with length_fraction. Makes
6786         for easier grace tweaks.
6787
6788         * lily/beam.cc: remove dir-function.
6789
6790         * lily/system.cc (pre_processing): use callback to trigger spacing procedures.
6791
6792         * lily/grob.cc: remove spacing-procedure.
6793
6794         * lily/note-head.cc (calc_stem_attachment): new function.
6795         (internal_print): use callback to get glyph-name.
6796
6797         * lily/grob-property.cc (get_interfaces): new function.
6798
6799         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-interfaces
6800
6801         * lily/stem.cc (calc_stem_end_position): new function.
6802         (calc_length): new function.
6803         document details for stem.
6804         remove Stem::get_direction()
6805
6806         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-set-callback! 
6807
6808         * lily/grob-property.cc (set_callback): new function.
6809
6810         * lily/script-engraver.cc (make_script_from_event): don't trigger callback.
6811
6812         * lily/item-scheme.cc: new file.
6813
6814         * lily/bar-line.cc (before_line_breaking): remove function.
6815         remove bar-size-procedure, break-glyph-function
6816
6817         * lily/clef-engraver.cc (set_glyph): use glyph iso. glyph-name
6818
6819         * lily/clef.cc (before_line_breaking): change to calc_glyph_name.
6820
6821         * lily/system-start-delimiter.cc (print): suicide from
6822         here. Remove after_line_breaking_callback.
6823
6824         * lily/script-interface.cc (calc_direction): use callback for direction.
6825
6826         * lily/side-position-interface.cc (aligned_side): don't use
6827         Side_position_interface::get_direction directly. Use callback. 
6828
6829         * lily/grob.cc (get_stencil): simplify: use callback mechanism to
6830         calculate stencil.
6831         (get_print_stencil): rename from get_stencil: create stencil with
6832         transparency, color and cause. 
6833
6834         * scm/define-grobs.scm: change print-function to stencil callback everywhere.
6835
6836         * python/convertrules.py (conv): insert temporary warning rule.
6837
6838         * lily/multi-measure-rest.cc (set_text_rods): use stencil directly.
6839
6840         * lily/grob-property.cc (try_callback): remove marker if applicable.
6841
6842         * lily/grob.cc: elucidate doc about after/before-line-breaking
6843
6844         * lily/slur-scoring.cc (enumerate_attachments): robustness fix.
6845
6846         * lily/stem.cc (height): idem.
6847
6848         * lily/stem-tremolo.cc: idem.
6849
6850         * lily/slur.cc (height): don't use get_uncached_stencil()
6851
6852         * lily/rest.cc (y_offset_callback): use offset callback
6853         iso. after-line-breaking callback.
6854
6855         * lily/grob.cc: change after/before-line-breaking-callback to
6856         after/before-line-breaking dummy properties.
6857
6858         * lily/include/grob.hh: remove Grob_status.
6859
6860         * scm/define-context-properties.scm
6861         (all-user-translation-properties): remove verticalAlignmentChildCallback
6862
6863         * lily/tuplet-bracket.cc: use positions property iso. left,right-position.
6864         (calc_direction): use callback
6865         (calc_positions): use callback.
6866
6867         * lily/tie.cc (calc_direction): use callback. Only call parent
6868         positioning for more than one tie.
6869
6870         * lily/tie-column.cc (calc_positioning_done): use callback
6871
6872         * lily/slur-scoring.cc (calc_control_points): use callback
6873
6874         * lily/slur.cc (calc_direction): use callback.
6875
6876         * lily/note-collision.cc (force_shift_callback): remove.
6877
6878         * lily/dot-column.cc (force_shift_callback): remove. Use
6879         other_axis_parent_positioning.
6880
6881         * lily/grob.cc (other_axis_parent_positioning): new function.
6882         (same_axis_parent_positioning): new function
6883
6884         * lily/align-interface.cc (alignment_callback): remove function.
6885
6886         * lily/note-collision.cc (calc_positioning_done): use callback.
6887
6888         * lily/laissez-vibrer-tie.cc (calc_control_points): use callback.
6889         (calc_direction): idem.
6890         remove print function.
6891
6892         * lily/laissez-vibrer-tie-column.cc (calc_positioning_done): use callback.
6893
6894         * lily/dot-column.cc (calc_positioning_done): use callback.
6895
6896         * lily/break-align-interface.cc (calc_positioning_done): use callback.
6897
6898         * lily/beam.cc (calc_direction): use pseudo-property for beam
6899         direction callback.
6900         (calc_positions): use callback 
6901
6902         * lily/align-interface.cc (calc_positioning_done): use
6903         callback. Fold fixed  distance and normal alignment in one function.
6904
6905         * lily/stem.cc (calc_stem_end_position): use callback.
6906         (calc_positioning_done): idem.
6907         (calc_direction): idem.
6908         (calc_stem_end_position): idem
6909         (calc_stem_info): idem.
6910
6911         * lily/grob-property.cc (get_property_data): new function: 
6912         (try_callback): new function.
6913
6914         * scm/define-grob-properties.scm (all-user-grob-properties): doc
6915         callbacks property.
6916
6917         * lily/break-align-interface.cc: remove Break_align_interface::alignment_callback.
6918
6919 2005-10-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6920
6921         * lily/tie.cc (get_position): robustness fix. Don't crash if a
6922         tie
6923         has no heads.
6924         
6925         * lily/include/*.hh (Module): compile fixes.
6926
6927 2005-10-14  Heikki Junes <hjunes@cc.hut.fi>
6928
6929         * elisp/lilypond-font-lock.el, elisp/lilypond-indent.el: Avoid nil 
6930         as an argument for char-syntax: use (char-syntax (or nil 0)) 
6931         instead of (char-syntax nil), thanks to Milan Zamazal.
6932
6933 2005-10-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6934
6935         * make/lilypond.fedora.spec.in (Group): add lilypond-internals to
6936         dist.
6937
6938         * lily/tuplet-bracket.cc: check columns of bounds, not bounds
6939         themselves.
6940
6941 2005-10-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6942
6943         * flower/include/virtual-methods.hh (VIRTUAL_COPY_CONSTRUCTOR):
6944         add class_name() method.
6945
6946         * lily/music-scheme.cc: remove ly:music-name.
6947
6948 2005-10-11  Jan Nieuwenhuizen  <janneke@gnu.org>
6949
6950         * cygwin/postinstall-lilypond.sh: Remove cruft.
6951
6952         * cygwin/postremove-lilypond.sh: Remove.
6953
6954         * cygwin/GNUmakefile (default): Remove postremove rules.
6955
6956 2005-10-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6957
6958         * ly/titling-init.ly (evenHeaderMarkup): use space in header on
6959         even header too.
6960         
6961         * scm/define-markup-commands.scm (wordwrap-string): bugfix for
6962         MacOS 9 users.
6963
6964         * lily/hara-kiri-group-spanner.cc (consider_suicide): only
6965         consider break index for broken spanner.
6966
6967         * scm/define-markup-commands.scm (wordwrap-string): remove \r
6968         characters from string before splitting.
6969
6970 2005-10-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
6971
6972         * scm/framework-ps.scm (output-preview-framework): use
6973         is-book-title to determine whether to chop off the booktitle.
6974
6975         * lily/paper-book.cc (systems): init from book-title-properties
6976         (add_score_title): init score-title-properties.
6977
6978         * ly/paper-defaults.ly: add {score,book}-title-properties.
6979
6980         * scm/document-backend.scm (lookup-interface): error message if
6981         using unknown interface.
6982
6983         * lily/volta-bracket.cc (after_line_breaking): new function. Set
6984         edge-height.
6985
6986         * lily/horizontal-bracket.cc (make_enclosing_bracket): rename from
6987         make_bracket.
6988         (make_bracket): new function.
6989
6990         * scm/lily.scm (define-scheme-options): add paper-size option.
6991
6992         * ly/declarations-init.ly (laissezVibrer): get paper size from
6993         -dpaper-size
6994
6995         * scm/translation-functions.scm: use \fontsize for changing the
6996         fontsize.
6997
6998         * scm/define-grobs.scm (all-grob-descriptions): set
6999         between-length-limit to 1.0
7000
7001         * lily/tie-helper.cc: add between_length_limit_ detail property.
7002
7003         * mf/feta-bolletjes.mf: typos.
7004
7005         * lily/note-head.cc (internal_print): don't shadow idx
7006         parameter. This fixes wrong attachment for do shape heads.
7007
7008 2005-10-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7009
7010         * scm/parser-ly-from-scheme.scm: rename from ly-from-scheme.scm
7011
7012         * scm/parser-clef.scm (supported-clefs): rename from clef.scm
7013
7014         * scm/layout-slur.scm: rename from slur.scm
7015
7016         * scm/layout-page-layout.scm: rename from page-layout.scm
7017
7018         * scm/layout-beam.scm: rename from beam.scm
7019
7020         * scm/define-grob-interfaces.scm (bass-figure-interface): add
7021         bass-figure-interface
7022
7023         * lily/new-figured-bass-engraver.cc (process_music): add
7024         implicitBassFigures property.
7025         
7026         * scm/define-markup-commands.scm (pad-x): new markup.
7027
7028         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): set
7029         minimumVerticalExtent on FiguredBass context.
7030
7031         * lily/figured-bass-continuation.cc (center_on_figures): kludge in
7032         case the continuation crosses a line break.
7033
7034 2005-10-09  Jan Nieuwenhuizen  <janneke@gnu.org>
7035
7036         * flower/file-name.cc (dos_to_posix)[__CYGWIN__]: Return
7037         unconverted value if cygwin_conv_to_posix_path () fails.  Fixes
7038         absolute file name bug.  
7039
7040 2005-10-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7041
7042         * VERSION (PACKAGE_NAME): release 2.7.12
7043
7044         * input/regression/figured-bass-continuation-center.ly: new file.
7045
7046         * input/regression/beam-outside-beamlets.ly: new file.
7047
7048         * lily/beam.cc (set_beaming): don't clip edges.
7049         (connect_beams): don't clip edges.
7050
7051         * lily/beaming-info.cc (clip_edges): new function.
7052
7053         * lily/enclosing-bracket.cc (struct Enclosing_bracket): new file.
7054
7055         * Documentation/user/instrument-notation.itely (Figured bass):
7056         demonstrate extenders, update seealso links.
7057
7058         * scm/titling.scm (marked-up-headfoot): change tagline
7059         handling. tagline = ##f will blank the tagline as well.
7060
7061 2005-10-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7062
7063         * Documentation/topdocs/NEWS.tely: add entry for Figured bass.
7064
7065         * lily/new-figured-bass-engraver.cc (struct
7066         New_figured_bass_engraver): add new_music_found_ member.
7067
7068         * lily/lilypond-version.cc (Lilypond_version): deal with
7069         incorrectly formatted version strings. 
7070
7071         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): switch on
7072         New_figured_bass_engraver by default.
7073
7074         * lily/ttf.cc (print_trailer): only define glyph names when
7075         FT_Face has FT_FACE_FLAG_GLYPH_NAMES
7076
7077 2005-10-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7078
7079         * lily/horizontal-bracket.cc (make_bracket): new function.
7080
7081         * scm/define-grobs.scm (all-grob-descriptions): new grobs
7082         NewBassFigure, BassFigureBracket, BassFigureContinuation,
7083         BassFigureLine, BassFigureAlignment
7084
7085         * lily/new-figured-bass-engraver.cc (process_music): new file.
7086
7087         * lily/figured-bass-continuation.cc: new file.
7088
7089         * lily/include/horizontal-bracket.hh (struct Horizontal_bracket):
7090         new file.
7091
7092 2005-10-04  Mats Bengtsson  <mabe@s3.kth.se>
7093
7094         * scripts/lilypond-book.py: Bug fix, put the quote around the
7095         actual score for LaTeX documents.
7096
7097         * scm/define-grobs.scm (all-grob-descriptions): Change
7098         collapse-height of the SystemStartBracket grob to 5.0, 
7099         so the bracket disappears for single stave score lines (similarly
7100         to SystemStartBraces). 
7101
7102         * Documentation/user/advanced-notation.itely (Polymetric
7103         notation): Clarify the use of compressMusic.
7104
7105         * Documentation/user/basic-notation.itely (Grace notes): Clarify
7106         that the grace spacer note in other staves need the same duration
7107         and document the stroke-style property.
7108
7109 2005-10-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7110
7111         * Documentation/user/global.itely (Vertical spacing): document
7112         alignment-extra-space and fixed-alignment-extra-space.
7113
7114         * Documentation/topdocs/NEWS.tely (Top): add entry.
7115
7116         * input/regression/alignment-vertical-spacing.ly: new file.
7117
7118         * python/convertrules.py (conv): add rule.
7119
7120         * ly/music-functions-init.ly: rename outputProperty to overrideProperty
7121
7122         * lily/align-interface.cc (stretch_after_break): new
7123         function. Read fixed-alignment-extra-space property.
7124         (align_elements_to_extents): read alignment-extra-space property.
7125
7126         * lily/lily-guile.cc (robust_scm2dir): new function.
7127
7128         * scm/page-layout.scm (page-headfoot): annotate headsep and footsep.
7129         (annotate-space-left): new function. Annotate space left on page. 
7130         (annotate-y-interval): new function.
7131         (paper-system-annotate-last): new function. Annotate bottom-space.
7132
7133         * mf/feta-beugel.mf (y): 
7134
7135 2005-10-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7136
7137         * VERSION (PACKAGE_NAME):  release 2.7.11
7138
7139         * scm/lily-library.scm (interval-translate): new function
7140         (interval-center): new function. 
7141
7142         * scm/page-layout.scm (paper-system-annotate): new function. Add
7143         arrows for dimensions.
7144  
7145         * scm/stencil.scm (dimension-arrows): new function.
7146
7147         * Documentation/user/global.itely (Vertical spacing): mention annotatespacing
7148
7149         * input/regression/page-spacing.ly: add annotatespacing
7150
7151         * lily/paper-system-scheme.cc (LY_DEFINE): remove ly:paper-system-{extent,stencil}
7152         (LY_DEFINE): new function ly:paper-system-set-property!
7153
7154         * Documentation/user/global.itely (Paper size): explain how to add
7155         sizes.
7156
7157         * scm/paper.scm (paper-alist): rename tabloid paper to 11x17 to
7158         correspond to GS's definition.
7159
7160         * lily/tuplet-bracket.cc (after_line_breaking): suicide empty
7161         tuplet bracket.
7162         (print): only connect to next bracket if the next one is alive.
7163         (print): set padding to 0.0 if the bound is a breakable
7164         column. This makes tupletFullLength brackets reach up to the staff
7165         line if it doesn't connect to the next line.
7166
7167 2005-09-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7168
7169         * lily/bar-number-engraver.cc: correct docs.
7170
7171         * scm/output-lib.scm (first-bar-number-invisible): rename from
7172         default-bar-number-visibility
7173
7174 2005-09-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7175
7176         * scm/define-music-properties.scm (all-music-properties): remove
7177         predicate property.
7178
7179 2005-09-28  Heikki Junes  <hjunes@cc.hut.fi>
7180
7181         * po/fi.po: refresh.
7182
7183 2005-09-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7184
7185         * input/regression/hara-kiri-pianostaff.ly (disappear): remove
7186         superfluous s1.
7187         (disappear): bugfix.
7188
7189         * lily/stem-tremolo.cc (raw_stencil): read slope property.
7190
7191         * lily/include/paper-system.hh (class Paper_system): remove
7192         staff_extents_ member.
7193
7194         * lily/paper-system-scheme.cc (LY_DEFINE): remove.
7195
7196         * lily/include/paper-system.hh (class Paper_system): remove
7197         number_ variable. Remove is_title_. Remove break_before_penalty_
7198
7199         * lily/paper-book.cc (systems): use 'number property iso. number_
7200         member.
7201
7202         * lily/paper-system-scheme.cc: remove ly:paper-system-break-before-penalty
7203         remove ly:paper-system-number.
7204
7205         * scm/lily-library.scm (paper-system-title?): new function.
7206
7207         * lily/book.cc (process): bugfix: flip ?: cases. 
7208
7209         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7210         add outputProperty.
7211
7212         * ly/music-functions-init.ly: add outputProperty music function.
7213
7214         * scm/paper.scm (set-paper-dimension-variables): add pagetopspace
7215
7216         * scm/page-layout.scm (ly:optimal-page-breaks): read next-space
7217         and next-padding.
7218         (optimal-page-breaks): rename from ly:optimal-page-breaks.
7219
7220         * lily/paper-system-scheme.cc (LY_DEFINE): new function.
7221
7222         * lily/paper-system.cc (internal_get_property): new function.
7223
7224         * Documentation/user/global.itely (Vertical spacing): refer to
7225         page-spacing.ly
7226
7227         * scm/page-layout.scm (ly:optimal-page-breaks): add support for
7228         pagetopspace
7229
7230         * input/regression/page-spacing.ly: new file.
7231
7232         * input/regression/page-top-space.ly: new file.
7233
7234         * lily/spacing-spanner.cc: cmath -> math.h
7235
7236         * lily/paper-system.cc (read_left_bound): new function. Read
7237         line-break-system-details from left bound to determine extents.
7238  
7239         * Documentation/user/programming-interface.itely (Using LilyPond
7240         syntax inside Scheme): change applyxxx -> applyXxx.
7241
7242         * ly/music-functions-init.ly: add outputProperty music function.
7243
7244         * lily/parser.yy (Generic_prefix_music_scm): add scm-scm-scm signature.
7245
7246         * lily/grob-scheme.cc (LY_DEFINE): add ! to ly:grob-suicide! name.
7247
7248         * python/convertrules.py (conv): rule
7249
7250         * ly/music-functions-init.ly: applyxxx -> applyXxx
7251
7252         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): alias
7253         TabVoice to Voice.
7254
7255 2005-09-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7256
7257         * flower/include/real.hh: include <math.h> iso. <cmath>
7258
7259         * flower/include/offset.hh: include real.hh
7260
7261 2005-09-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7262
7263         * Documentation/user/changing-defaults.itely (Difficult tweaks):
7264         fix example, now that 'interfaces is no longer directly available.
7265
7266         * lily/book.cc (process): don't crash if paper == NULL.
7267
7268         * po/fr.po: update.
7269
7270 2005-09-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7271
7272         * scm/define-music-types.scm (music-descriptions): set length and
7273         start-callback for QuoteMusic
7274
7275 2005-09-15  Mats Bengtsson  <mabe@s3.kth.se>
7276
7277         * lily/tie.cc (get_configuration): Replace fabs -> abs for integer
7278         arguments. Fixes compilation error with gcc 3.3.
7279
7280 2005-09-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7281
7282         * VERSION: release 2.7.10
7283
7284         * stepmake/stepmake/python-module-rules.make
7285         ($(outdir)/%$(SHARED_MODULE_SUFFIX)): SHARED_FLAGS at the end.  
7286
7287         * lily/*.cc: remove <cmath> everywhere. <cmath> is included from
7288         real.hh
7289
7290 2005-09-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7291
7292         * stepmake/stepmake/c++-vars.make (#EXTRA_CXXFLAGS): don't add
7293         -Werror. Otherwise GCC barfs over various optimizations.
7294
7295         * scm/define-grob-properties.scm (all-internal-grob-properties):
7296         add note-head property
7297
7298         * Documentation/user/instrument-notation.itely (Laissez vibrer
7299         ties): new node.
7300
7301         * input/regression/laissez-vibrer-ties.ly: new file.
7302
7303         * lily/laissez-vibrer-engraver.cc: new file.    
7304
7305         * lily/include/tie-column-format.hh: new file.
7306
7307         * lily/tie-column-format.cc: new file. 
7308
7309         * lily/tie-column.cc (set_manual_tie_configuration): new function.
7310
7311         * lily/laissez-vibrer-tie.cc: new file.
7312
7313         * lily/include/laissez-vibrer-tie.hh: new file.
7314
7315         * ly/engraver-init.ly: add Laissez_vibrer_engraver
7316
7317         * ly/declarations-init.ly (laissezVibrer): add \laissezVibrer
7318
7319         * scm/define-grobs.scm (all-grob-descriptions): add
7320         LaissezVibrerTie, LaissezVibrerTieColumn
7321
7322         * lily/tie-column.cc (set_tie_config_directions): new function
7323         (final_shape_adjustment): new function.
7324         (shift_small_ties): new function.
7325
7326         * scm/define-music-types.scm (music-descriptions): add LaissezVibrerEvent
7327
7328         * lily/include/tie.hh (struct Tie_details): add x_gap_
7329         (struct Tie_configuration): add head_position_
7330
7331         * lily/tie-column.cc (set_chord_outline): new function.
7332
7333         * mf/cmr.enc.in:  remove file.
7334
7335 2005-09-11  Graham Percival  <gpermus@gmail.com>
7336
7337         * Documentation/user/examples.itely: typo fix.  Thanks, Matevž
7338
7339 2005-09-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7340
7341         * mf/feta-banier.mf: make vertical stem 1/2 stemthickness wide to
7342         reduce aliasing effects.
7343
7344         * lily/tie-column.cc (set_chord_outlines): bugfix: insert complete
7345         box in skyline.
7346
7347 2005-09-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7348
7349         * lily/tie.cc (get_configuration): don't crash if left_dot is NULL.
7350
7351         * flower/include/real.hh: std::fabs too.
7352
7353 2005-09-08  Jan Nieuwenhuizen  <janneke@gnu.org>
7354
7355         * Documentation/user/lilypond.tely: Spell Baßtuba in UTF-8 (Werner). 
7356
7357         * lily, flower: Include C++ iso C headers.  Import namespace std
7358         throughout.
7359
7360         * lily/side-position-interface.cc: 
7361         * lily/scm-hash.cc: 
7362         * lily/note-head.cc: 
7363         * lily/include/includable-lexer.hh: 
7364         * flower/include/string-data.icc: Remove using std::*.
7365
7366         * lily, flower: Include C++ iso C headers.  Import namespace std
7367         throughout.
7368
7369         * lily/side-position-interface.cc: 
7370         * lily/scm-hash.cc: 
7371         * lily/note-head.cc: 
7372         * lily/include/includable-lexer.hh: 
7373         * flower/include/string-data.icc: Remove using std::*.
7374
7375         * Documentation/user/instrument-notation.itely (Entering lyrics):
7376         Multiple latin-1->utf-8 conversion fix.
7377
7378         * Documentation/user/*tely: Update Emacs cookie to utf-8.
7379
7380 2005-09-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7381
7382         * lily/tie.cc (get_configuration): also avoid dots for non-space
7383         situations.
7384
7385 2005-09-07  Jan Nieuwenhuizen  <janneke@gnu.org>
7386
7387         * Documentation/user/instrument-notation.itely: Bugfix.
7388
7389 2005-09-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7390
7391         * tex/GNUmakefile: don't install texinfo.tex
7392
7393         * tex/ : cleanup: remove unused files.
7394
7395         * lily/general-scheme.cc: remove my_{isinf,isnan}.
7396
7397         * flower/include/real.hh: using std::{isnan,isinf}
7398         
7399         * VERSION (PATCH_LEVEL): release 2.7.9
7400
7401 2005-09-05  Graham Percival  <gpermus@gmail.com>
7402
7403         * Documentation/user/ instrument-notation.itely,
7404         advanced-notation.itely: minor tweaks.
7405
7406         * input/test/script-chart.ly: add item padding.
7407
7408 2005-09-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7409
7410         * flower/offset.cc: use math.h iso. <cmath>
7411
7412         * scm/ps-to-png.scm (make-ps-images): use png16m again, for sake
7413         of IE users.
7414
7415         * scm/framework-eps.scm (dump-stencils-as-EPSes): cleanup.
7416         (widen-left-stencil-edges): new function. Fix alignment problems
7417         with LaTeX includegraphics.
7418
7419         * lily/text-interface.cc (interpret_markup): use abort().
7420
7421 2005-09-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7422
7423         * input/regression/tie-chord.ly (testLong): add a chord in 4ths
7424
7425         * lily/tie.cc (get_configuration): update bezier shape as we
7426         change Y positions.
7427         (get_configuration): don't move large ties if we're outside of the
7428         staff.
7429
7430 2005-09-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7431
7432         * scm/define-markup-commands.scm (strut): swap X and Y dims.
7433         
7434 2005-09-03  Jan Nieuwenhuizen  <janneke@gnu.org>
7435
7436         * .cvsignore: Add auto-generated configure files and then some.
7437
7438 2005-09-02  Jan Nieuwenhuizen  <janneke@gnu.org>
7439
7440         * scm/define-grobs.scm (DynamicLineSpanner): Add
7441         X-extent-callback.  Fixes hairpin-slur collision.
7442
7443 2005-08-31  Graham Percival  <gpermus@gmail.com>
7444
7445         * Documentation/user/advanced-notation.itely,
7446         basic-notation.itely: minor changes.
7447
7448 2005-08-31  Mats Bengtsson  <mabe@s3.kth.se>
7449
7450         * scm/framework-eps.scm (dump-stencils-as-EPSes): Insert a
7451         \linebreak between each .eps file if \betweenLilyPondSystem is
7452         undefined. 
7453
7454         * Documentation/user/lilypond-book.itely (Integrating LaTeX and
7455         music): Document the \linebreak
7456
7457         * Documentation/user/lilypond-book.itely,
7458         input/tutorial/lbook-latex-test.tex,
7459         Documentation/user/examples.itely: Remove \usepackage{graphics}
7460
7461 2005-08-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7462
7463         * mf/aybabtu.pe.in (i): don't merge alphabet into aybabtu.
7464
7465         * lily/ly-module.cc (make_stand_in_procs_weak): 1.6.4 and earlier
7466         compat bugfix.
7467
7468         * scripts/lilypond-book.py (PREAMBLE_LY): define
7469         inside-lilypond-book
7470         (modify_preamble): new function. Insert \RequirePackage{graphics}
7471         when no {graphics found in preamble.  
7472
7473 2005-08030  Graham Percival  <gpermus@gmail.com>
7474
7475         * Documentation/user/basic-notation.itely, global.itely,
7476         tutorial.itely: misc small changes.
7477
7478 2005-08-30  Jan Nieuwenhuizen  <janneke@gnu.org>
7479
7480         * stepmake/aclocal.m4: Include MY_PATCH_LEVEL in config.make's
7481         VERSION.
7482
7483 2005-08-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7484
7485         * lily/tie-column.cc (new_directions): put Tie down on center
7486         staff line. 
7487
7488         * lily/script-interface.cc (before_line_breaking): use
7489         Grob::programming_error
7490
7491         * scm/ps-to-png.scm (make-ps-images): use pngalpha device.
7492
7493         * scripts/lilypond-book.py (get_latex_textwidth): oops. Take [0]
7494         of splitext.
7495
7496 2005-08-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7497
7498         * VERSION (PACKAGE_NAME): VERSION release 2.7.8
7499
7500 2005-08-29  Werner Lemberg  <wl@gnu.org>
7501
7502         * mf/GNUmakefile: Add `-f' flag to `rm' command while removing
7503         the `*.scale.pfa' files to avoid warnings.
7504
7505 2005-08-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7506
7507         * lily/tempo-performer.cc (process_music): idem.
7508
7509         * lily/midi-def.cc (get_tempo): Rational to int conversion bug.
7510
7511 2005-08-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7512
7513         * Documentation/user/advanced-notation.itely (Text markup): not a
7514         fragment.
7515
7516         * lily/midi-item.cc (to_string): use to_int() iso. int cast.
7517
7518         * lily/staff-performer.cc (initialize): add tempo/name to
7519         audio_staff_
7520
7521
7522 2005-08-26  Graham Percival  <gpermus@gmail.com>
7523
7524         * Documentation/user/advanced.itely: add text-only example.
7525
7526         * Documentation/user/invoking.itely: add index entries for
7527         convert-ly.
7528
7529         * Documentation/user/ tutorial.itely, basic-notation.itely:
7530         small fixes suggested by Steve D.  Thanks!
7531
7532 2005-08-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7533
7534         * input/regression/markup-bidi-pango.ly: new file.
7535
7536         * lily/pango-font.cc (pango_item_string_stencil): make Mingw code
7537         standard. Remove #ifdef. Remove memleak.
7538         (text_stencil): use text_dir to decide how to composite items.
7539         (text_stencil): determine uniform text direction for the entire
7540         string.
7541
7542         * scripts/lilypond-book.py (output_name): remove
7543         latex_filter_cmd. Non-portable to non-Unix systems. 
7544         (get_latex_textwidth): use File.write and os.unlink() instead.
7545
7546         * THANKS: add Vicente & Trevor.
7547
7548         * lily/grob.cc (discretionary_processing): look up origin for
7549         programming_error too. 
7550
7551         * input/regression/tie-broken.ly: new file.
7552
7553         * lily/tie-column.cc (set_chord_outlines): set outline for line
7554         break case too.
7555         
7556 2005-08-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7557
7558         * lily/pango-font.cc (text_stencil): don't translate glyphs in
7559         unscaled transform, just translate stencils.
7560
7561         * ly/performer-init.ly: init timing to #t.  Fixes bar checks in
7562         MIDI.
7563
7564         * scm/define-markup-commands.scm (wordwrap-string): use
7565         text-direction
7566         (wordwrap-stencils): idem.
7567         (line): idem.
7568         (fill-line): idem.
7569         (wordwrap-stencils): translate last line to right for
7570         text-direction = LEFT.
7571
7572         * scm/define-grob-properties.scm (all-user-grob-properties): add
7573         text-direction.
7574
7575 2005-08-25  Nicolas Sceaux  <nicolas.sceaux@free.fr>
7576
7577         * lily/lily-parser.cc (Lily_parser): also copy output_basename_
7578         when copying a Lily_parser object.
7579
7580 2005-08-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7581
7582         * scm/define-markup-commands.scm (null): add null markup.
7583
7584 2005-08-25  Mats Bengtsson  <mabe@s3.kth.se>
7585
7586         * lily/item.cc: Add documentation of center-invisible
7587
7588 2005-08-24  Graham Percival  <gpermus@gmail.com>
7589
7590         * Documentation/user/advanced-notation.itely: add info about
7591         raising text.
7592
7593         * Documentation/user/programming-interface.itely: fix example
7594         involving raised text.
7595
7596 2005-08-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7597
7598         * lily/beam.cc (print): fix X start/end points of isolated
7599         beamlets.
7600
7601         * scm/output-ps.scm (grob-cause): escape spaces in URLs.
7602
7603         * lily/multi-measure-rest.cc (set_text_rods): new function.
7604
7605         * lily/vertical-align-engraver.cc (process_music): call
7606         Align_interface::set_axis(). This forces #'elements to be ordered,
7607         preventing random vertical reordering of staves.
7608
7609         * scm/define-grob-interfaces.scm (dynamic-line-spanner-interface):
7610         add avoid-slur property. 
7611
7612         * Documentation/user/basic-notation.itely (Measure repeats): add
7613         countPercentRepeats example.
7614
7615         * Documentation/user/advanced-notation.itely (Other text markup
7616         issues): remove remark about normal-font.  We have \normal-text
7617
7618         * input/regression/tie-chord.ly: add note about remaining bugs.
7619
7620         * lily/tie.cc (print): try Tie_column::set_directions () if
7621         control-points not yet defined.
7622
7623 2005-08-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7624
7625         * lily/system-start-delimiter.cc (staff_brace): don't remove brace
7626         extent. This fixes braces falling out of the EPS bbox.
7627
7628         * mf/feta-beugel.mf (braces_per_font): make brace glyph align
7629         exactly to bbox.
7630
7631 2005-08-23  Graham Percival  <gpermus@gmail.com>
7632
7633         * {various} : change #up->#UP and #down->#DOWN.
7634
7635         * ly/titling-init.ly: Spacing fix when using printallheaders=##t.
7636
7637         * Documentation/user/advanced-notation.itely: clarify
7638         what objects handles text on a multimeasure rest.
7639
7640 2005-08-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7641
7642         * VERSION (PATCH_LEVEL): release 2.7.7
7643
7644 2005-08-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7645
7646         * make/lilypond-vars.make: set -dgs-font-load for "make web" 
7647
7648         * Documentation/topdocs/INSTALL.texi (Top): add GS bugfix requirement.
7649
7650         * input/regression/*.ly: formatting clean-up. Default layout
7651         before music expression.
7652
7653         * input/mutopia/R.Schumann/GNUmakefile (examples): switch off
7654         romanze28-2 example.
7655
7656         * scm/ps-to-png.scm: remove dir-re function.
7657         (make-ps-images): generate page names, instead of globbing them.
7658         This brings down LilyPond memory usage for make web by a factor
7659         10. 
7660
7661         * scripts/lilypond-book.py (Lilypond_snippet.png_is_outdated):
7662         don't use glob. With 3000 files, globbing
7663         Documentation/user/out-www/ can take too much time. 
7664         
7665         * lily/lily-guile.cc (gulp_file_to_string): take size argument.
7666
7667         * lily/general-scheme.cc (LY_DEFINE): take optional size argument.
7668
7669         * input/regression/tie-manual.ly: new file
7670
7671         * input/regression/tie-chord.ly: update.
7672
7673         * flower/include/interval.hh (struct Interval_t): 
7674
7675         * lily/tie.cc (distance): new function 
7676         (height): new function.
7677         (init): new function
7678         (Tie_details): new struct.
7679
7680         * lily/skyline.cc (skyline_height): new function.
7681
7682         * lily/tie-column.cc (set_chord_outlines): new function.
7683         (new_directions): read tie-configuration
7684
7685         * lily/skyline.cc: fix ASCII art.
7686         
7687 2005-08-22  Mats Bengtsson  <mabe@s3.kth.se>
7688
7689         * python/convertrules.py (string_or_scheme): Fix spelling error
7690
7691 2005-08-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7692         
7693         * lily/tie-column.cc (set_directions): set directions only once.
7694         (add_configuration): new function.
7695
7696         * lily/tie.cc (set_control_points): new function
7697
7698         * lily/tie-column.cc (new_directions): new function.
7699
7700         * ly/music-functions-init.ly: set 'pitch property
7701         iso. trill-pitch. This makes \relative work with \pitchedTrill
7702
7703         * lily/tie.cc (get_configuration): new function. Don't generate
7704         control points, rather, generate configuration.
7705         remove head-pair property.
7706
7707         * lily/include/tie.hh (struct Tie_configuration): new struct.
7708
7709 2005-08-22  Heikki Junes  <hjunes@cc.hut.fi>
7710
7711         * Documentation/topdocs/NEWS.tely: clarify.
7712
7713 2005-08-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7714
7715         * lily/tie.cc: remove minimum-length
7716
7717         * scm/define-grob-properties.scm (all-user-grob-properties):
7718         remove staffline-clearance, y-offset 
7719
7720         * input/regression/tie-dots.ly (Module): remove.
7721
7722         * lily/tie.cc (get_control_points): rewrite. Put short ties in
7723         staff-spaces, make long ties cross staff lines. Avoid flags and dots.
7724
7725         * input/regression/tie-single.ly: new file.
7726
7727 2005-08-21  Graham Percival  <gpermus@gmail.com>
7728
7729         * ly/bagpipe.ly: fix compile problem.
7730
7731 2005-08-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7732
7733         * lily/midi-item.cc (name): new method.
7734
7735         * lily/staff-performer.cc (acknowledge_audio_element): use
7736         signature of baseclass.
7737
7738         * lily/engraver-group.cc (do_announces): move recursion call out
7739         of while loop. 
7740
7741         * lily/drum-note-performer.cc (class Drum_note_performer): use
7742         process_music everywhere.
7743
7744         * ly/performer-init.ly: add default children everywhere.
7745
7746         * lily/paper-book.cc (output): call paper-book-write-midis
7747         directly: always write MIDI, even if no \layout {} block. 
7748
7749 2005-08-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7750
7751         * VERSION (PACKAGE_NAME): release 2.7.6
7752
7753         * lily/percent-repeat-engraver.cc (try_music): don't print warning
7754         about not being able to handle repeat.
7755
7756 2005-08-19  Jan Nieuwenhuizen  <janneke@gnu.org>
7757
7758         * Documentation/user/examples.itely (Piano templates):
7759         * lily/include/performer-group.hh: Remove last traces of
7760         Performer_group_performer.  Fixes make web.
7761
7762 2005-08-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7763
7764         * Documentation/user/examples.itely (Piano templates): change
7765         Engraver_group_engraver -> Engraver_group
7766
7767         * lily/ly-module.cc (make_stand_in_procs_weak): only kludge if
7768         scm_stand_in_procs is not weak_any.
7769
7770         * lily/volta-bracket.cc (print): don't use strcmp().
7771
7772         * lily/volta-engraver.cc (process_music): use
7773         Text_interface::is_markup() for setting the 'text property of the
7774         volta bracket.
7775
7776         * input/mutopia/claop.py (accents): update syntax to 2.6
7777
7778         * scm/define-context-properties.scm
7779         (all-user-translation-properties): add countPercentRepeats.
7780
7781         * Documentation/user/basic-notation.itely (Measure repeats): add
7782         isolated percent example.
7783
7784 2005-08-18  Graham Percival  <gpermus@gmail.com>
7785
7786         * input/ {various}: change direction #1, #-1 to
7787         #up/#down or \fooUp, \fooDown.
7788
7789         * Documentation/user/music-glossary.tely: #-1 to #down.
7790
7791         * ly/bagpipe.ly, engraver-init.ly, property-init.ly: #1
7792         to #up, #-1 to #down.
7793
7794 2005-08-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7795
7796         * lily/include/engraver-group.hh: rename.
7797
7798         * lily/include/performer-group.hh: rename.
7799
7800 2005-08-18  Mats Bengtsson  <mabe@s3.kth.se>
7801
7802         * input/test/script-abbreviations.ly: Removed some old LaTeX
7803         left overs.
7804
7805 2005-08-18  Jan Nieuwenhuizen  <janneke@gnu.org>
7806
7807         * python/convertrules.py (conv): inside-slur -> avoid-slur.
7808         Remove functions.  Remove if 1: constructs, reindent.
7809
7810         * scripts/convert-ly.py (add_version): Add functions from
7811         convertrules.py
7812
7813         * scm/script.scm (default-script-alist):
7814         s/priority/script-priority.  Fixes script stacking.  Backportme.
7815         (Fermata): Very low priority.
7816
7817 2005-08-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7818
7819         * input/regression/*.ly: remove superfluous \score blocks. Reindent.
7820
7821         * input/regression/slur-script.ly: remove padding tweaks. Add
7822         comment strings.
7823
7824         * lily/note-spacing.cc (get_spacing): remove kludge for EOL wide
7825         time sigs and related stuff.
7826
7827         * scm/define-grob-properties.scm (all-user-grob-properties): add
7828         @code{} tags to property description.
7829
7830         * lily/include/line-group-group-engraver.hh (Module): remove file.
7831
7832         * python/convertrules.py (conv): add rule for
7833         Engraver_group_engraver -> Engraver_group.
7834
7835         * lily/include/performer-group-performer.hh: analogous.
7836
7837         * lily/include/engraver-group-engraver.hh: rename to Engraver_group.
7838
7839         * lily/context-def.cc (instantiate): check for
7840         Engraver_group_engraver and Performer_group_performer not
7841         Engraver/Performer. Fixes crashes when doing \with { \consists .. }
7842  
7843 2005-08-18  Jan Nieuwenhuizen  <janneke@gnu.org>
7844
7845         * input/les-nereides.ly: Remove three fingering tweaks, update
7846         remaining one.
7847
7848         * input/regression/slur-script-inside.ly: Update, fix doc.
7849
7850         * scm/script.scm: Update to avoid-slur.
7851
7852         * scm/define-grob-properties.scm (avoid-slur): New property.
7853
7854         * lily/phrasing-slur-engraver.cc (acknowledge_extra_object):
7855         * lily/slur-engraver.cc (acknowledge_extra_object): Invoke
7856         outside_slur_callback if avoid-slur != #'inside.
7857
7858         * scm/define-grobs.scm (Fingering, Textscript): No
7859         inside-slur/outside-slur preference.
7860         (DynamicLineSpanner): Always outside slur.
7861
7862         * input/regression/slur-script.ly: More tests.
7863
7864 2005-08-17  Graham Percival  <gpermus@gmail.com>
7865
7866         * Documentation/user/lilypond-book: fix notime entry.
7867
7868         * Documentation/user/advanced-notation.itely: add info on
7869         getting an I rehearsal mark.
7870
7871         * Documentation/user/putting.itely: reinstate "I", re-enforce
7872         the fact that \override numbers are the result of
7873         experimentation and personal taste.
7874
7875         * Documentation/user/invoking.itely: update convert-ly bugs.
7876
7877 2005-08-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7878
7879         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): set timing
7880         to #t.
7881
7882         * lily/timing-translator.cc (initialize): don't initialize timing.
7883
7884         * input/regression/stem-spacing.ly (Module): remove file.
7885
7886         * input/regression/spacing-stick-out.ly: specify Score context for
7887         \override
7888
7889         * input/regression/clefs.ly: remove spurious {}s 
7890
7891 2005-08-17  Heikki Junes  <hjunes@cc.hut.fi>
7892
7893         * Documentation/topdocs/NEWS.tely,
7894         input/regression/repeat-percent-count.ly: clarify a bit.
7895
7896 2005-08-16  Nicolas Sceaux  <nicolas.sceaux@free.fr>
7897
7898         * input/no-notation/display-lily-tests.ly: delete
7899         display-lily-init call.
7900
7901         * ly/music-functions-init.ly (displayLilyMusic): move
7902         display-lily-init call at top level, so that the user should not
7903         have to call it.
7904
7905         * scm/define-music-display-methods.scm (note-name->lily-string):
7906         retrieve note names directly from pitchnames using new function `rassoc'.
7907         (display-lily-init): note names list construction removed.
7908
7909 2005-08-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7910
7911         * THANKS: spello.
7912
7913         * lily/lily-parser.cc (get_header): copy module, instead of
7914         returning it.
7915
7916         * Documentation/topdocs/NEWS.tely (Top): add entry for percent
7917         counters.
7918
7919         * Documentation/user/basic-notation.itely (Measure repeats): add
7920         links to Counter grobs.
7921
7922         * scm/define-grobs.scm (all-grob-descriptions): add
7923         DoublePercentRepeatCounter
7924         (all-grob-descriptions): add PercentRepeatCounter
7925
7926         * lily/percent-repeat-engraver.cc (class Percent_repeat_engraver):
7927         also create counter grobs.
7928
7929         * lily/separation-item.cc (extremal_break_aligned_grob): don't
7930         return grob without space-alist.
7931
7932         * input/proportional.ly: tune staff-padding.
7933
7934         * input/regression/repeat-percent-count.ly: new file. 
7935
7936 2005-08-16  Nicolas Sceaux  <nicolas.sceaux@free.fr>
7937
7938         * input/no-notation/display-lily-tests.ly: moved from
7939         input/regression/ to input/no-notation. Be sure to call
7940         `display-lily-init' before trying to use the display function.
7941
7942 2005-08-16  Mats Bengtsson  <mabe@s3.kth.se>
7943
7944         * scripts/lilypond-book.py (option_definitions): Don't localize
7945         the empty string. Fixes bug when --psfonts was used with
7946         non-English locale.
7947
7948 2005-08-15  Graham Percival  <gpermus@gmail.com>
7949
7950         * lily/tuplet-bracket.cc: simple build fix.
7951
7952         * Documentation/user/putting.itely: use "we" instead of "I".
7953
7954         * Documentation/user/basic-notation.itely: cautionary accidentals
7955         work with naturals, too.
7956
7957 2005-08-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
7958
7959         * lily/tuplet-bracket.cc (calc_position_and_height): add
7960         staff-padding support.
7961
7962         * input/proportional.ly: set staff-padding.
7963         
7964         * VERSION (PATCH_LEVEL): release 2.7.5
7965
7966         * input/mutopia/J.S.Bach/wtk1-fugue2.ly (bassdux): text formatting
7967         fixes. Remove tweaks.
7968
7969         * input/regression/tuplet-slope.ly: add a test case.
7970
7971         * lily/tuplet-bracket.cc (calc_position_and_height): revert
7972         erroneous fix. Add spanner bounds to offset array with relative X
7973         positions.
7974
7975         * ly/engraver-init.ly: add Rest_engraver only once.
7976
7977         * scm/define-music-display-methods.scm (KeyChangeEvent): only do
7978         (*parser*) lookup if (*parser*) != #f.
7979
7980 2005-08-15  Jan Nieuwenhuizen  <janneke@gnu.org>
7981
7982         * lily/phrasing-slur-engraver.cc (acknowledge_extra_object):
7983         Cut-and paste update.
7984
7985         * input/regression/slur-script.ly: Add example of reverting
7986         inside-slur for fingering.
7987
7988         * scm/define-grobs.scm (DynamicLineSpanner, Fingering,
7989         TextScript): Explicitly set inside-slur #f, forcing these out of slur.
7990
7991         * lily/slur-engraver.cc (acknowledge_extra_object): Only invoke
7992         outside_slur_callback if inside-slur == #f (as opposed to unset).
7993
7994 2005-08-14  Jan Nieuwenhuizen  <janneke@gnu.org>
7995
7996         * tex/GNUmakefile (INSTALLATION_FILES): Remove enc symlink setup,
7997         encoding files are already removed.
7998
7999 2005-08-15  Mats Bengtsson  <mabe@s3.kth.se>
8000
8001         * Documentation/user/advanced-notation.itely (Instrument names):
8002         Document a workaround for instrument names that collide with
8003         system start braces/brackets.
8004
8005 2005-08-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8006
8007         * lily/rest-collision.cc (do_shift): spello.
8008
8009         * input/proportional.ly: use #'used property. Set break-overshoot
8010         property.
8011
8012         * mf/feta-arrow.mf: center on arrow tip center, iso. tip edge.
8013
8014         * lily/paper-column.cc: add #'used property
8015
8016         * lily/mark-engraver.cc (stop_translation_timestep): set grob
8017         array for staves found.
8018
8019         * lily/metronome-engraver.cc (stop_translation_timestep): set grob
8020         array for stavesFound.
8021
8022         * lily/staff-spacing.cc (next_note_correction): add fixed and
8023         space to calling convention. This fixes spacing of accidentals
8024         after barlines.
8025
8026         * input/regression/spacing-accidental-stretch.ly: add barline -
8027         accidental case.
8028
8029         * scm/framework-ps.scm (page-header): add version number to
8030         creator
8031         (eps-header): idem.
8032
8033         * mf/feta-bolletjes.mf: swap d0 and u0 fa heads.
8034         
8035 2005-08-13  Graham Percival  <gpermus@gmail.com>
8036
8037         * Documentation/user/global.itely: add "fit as much as
8038         possible onto this page" example (Vertical spacing).
8039
8040 2005-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
8041
8042         * *: Nitpick run.
8043
8044         * buildscripts/fixcc.py: Fixes.
8045
8046 2005-08-12  Graham Percival  <gpermus@gmail.com>
8047
8048         * Documentation/user/advanced-notation.itely: add markup
8049         example to Text spanners.
8050
8051 2005-08-12  Mats Bengtsson  <mabe@s3.kth.se>
8052
8053         * Documentation/user/basic-notation.itely (Ties): Add example of
8054         tying a tremolo to a chord. Thanks to Steve Doonan. 
8055
8056         * lily/tie-engraver.cc: Add tieWaitForNote to the list of read
8057         properties and move tieMelismaBusy to the list of written
8058         properties. 
8059
8060 2005-08-12  Heikki Junes  <hjunes@cc.hut.fi>
8061
8062         * po/TODO: suggest to use a dedicated tool like kbabel.
8063
8064         * po/fi.po: update using kbabel.
8065
8066 2005-08-12  Jan Nieuwenhuizen  <janneke@gnu.org>
8067
8068         * *: Remove obsolete files.  Nitpick run.
8069
8070         * lily/lily-guile.cc (parse_symbol_list): Bugfix.
8071
8072 2005-08-11  Jan Nieuwenhuizen  <janneke@gnu.org>
8073
8074         * mf/GNUmakefile (get-*-fonts): Rename from get-*-pfa.  Copy SVG
8075         too.
8076
8077         * Documentation/topdocs/NEWS.tely (Top): Add slur script feature.
8078
8079         * lily/lily-guile.cc (parse_symbol_list): Rewrite.  Grok multiple
8080         whitespace as symbol separator.
8081
8082         * lily/side-position-interface.cc: Add slur-padding.
8083
8084         * input/regression/slur-script.ly: Fixed.  Backportme?  This is
8085         quite a large fix, and it never worked in a stable release; so not
8086         really a regression.
8087
8088         * lily/phrasing-slur-engraver.cc (class Phrasing_slur_engraver):
8089         Update cut and paste code from Slur_engraver.
8090
8091         * scm/define-grob-interfaces.scm (dynamic-line-spanner-interface):
8092         Add.
8093
8094         * scm/define-grobs.scm (DynamicLineSpanner): Add
8095         dynamic-line-spanner-interface.
8096         (DynamicLineSpanner, TextScript, Fingering): Add slur-padding.
8097
8098 2005-08-09  Jan Nieuwenhuizen  <janneke@gnu.org>
8099
8100         * lily/slur-engraver.cc (acknowledge_extra_object): Bugfix: use
8101         to_boolean () so that non-set 'inside-slur means false.
8102
8103         * lily/slur.cc (outside_slur_callback): Bugfixes: make sure that
8104         slur has control-points.  Skip script without direction.  Always
8105         do_shift if script inside slur, even if slur not contained in
8106         script y-extent.  Increment k in loop.
8107
8108 2005-08-11  Mats Bengtsson  <mabe@s3.kth.se>
8109
8110         * scm/define-markup-commands.scm: Improved regexp to search for
8111         EPS bounding boxes and corrected call to ly:warning.
8112
8113 2005-08-10  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8114
8115         * Documentation/user/programming-interface.itely (Displaying music
8116         expressions): doc for \displayLilyMusic. Also some precisions in
8117         "Markup construction in Scheme"
8118
8119 2005-08-10  Mats Bengtsson  <mabe@s3.kth.se>
8120
8121         * scm/define-markup-commands.scm (normal-text): Added 2 new
8122         markup commands, \normal-text and \medium (the latter thanks to
8123         Bruce Fairchild). 
8124
8125 2005-08-08  Graham Percival  <gpermus@gmail.com>
8126
8127         * Documentation/user/programming-interface.itely: fix @{ @}.
8128
8129         * scm/define-markup-commands.scm: add linewidth info to
8130         \justify and \wordwrap, add "upright is the opposite of italic".
8131
8132         * Documentation/user/advanced-notation.itely: shaped->shape,
8133         add (cons (markup "foo")) type of example to text markup,
8134         reword multi-measure rests section.
8135
8136         * lily/note-heads-engraver.cc: changed Shaped->Shape in a
8137         comment.  No actual code was touched.
8138
8139         * Documentation/user/invoking.itely: add more info about
8140         \include.  Thanks, Bruce!
8141
8142         * THANKS: add Bruce Fairchild, alphabetise.
8143
8144         * Documentation/user/global.itely: document \score{\header{}}
8145         behavior.
8146
8147         * Documentation/user/basic-notation.itely: reword multi-measure
8148         rest discussion in Rests.
8149
8150 2005-08-08  Mats Bengtsson  <mabe@s3.kth.se>
8151
8152         * Documentation/user/programming-interface.itely (Markup
8153         construction in Scheme): Corrected example and tried to clarify
8154         the implicit \line in the table.
8155
8156 2005-08-07  Graham Percival  <gpermus@gmail.com>
8157
8158         * Documentation/user/instrument-notation.itely: moved
8159         some bagpipe info back into the bagpipe section.  Somehow
8160         it ended up in the "other vocal issues" section?!  :o_O
8161
8162 2005-08-07  Jan Nieuwenhuizen  <janneke@gnu.org>
8163
8164         * scm/framework-ps.scm (dir-join): Rename from path-join (joins
8165         directories, not paths).
8166
8167 2005-08-06  Jan Nieuwenhuizen  <janneke@gnu.org>
8168
8169         * scm/framework-ps.scm (munge-lily-font-name): Bugfix: Munge only
8170         plain emmentaler/aybabtu.  Backportme.
8171
8172         * lily/tuplet-bracket.cc (calc_position_and_height): Bugfix:
8173         missing dir correction.
8174
8175 2005-08-05  Graham Percival  <gperlist@shaw.ca>
8176
8177         * scm/define-markup-commands: fix reversed justify/wordwrap
8178         doc strings.
8179
8180 2005-08-05  Jürgen Reuter  <reuter@ipd.uka.de>
8181
8182         * lily/ligature-engaver.cc, lily/coherent-ligature-engaver.cc,
8183         lily/gregorian-ligature-engaver.cc,
8184         lily/include/ligature-engraver.hh,
8185         lily/include/coherent-ligature-engraver.hh,
8186         lily/include/gregorian-ligature-engraver.hh: make these classes
8187         truely abstract.  This should fix some internal oddities such as
8188         duplicate as well as dead translator/property declarations, and
8189         also some dead code.
8190
8191         * lily/ligature-bracket-engraver.cc, lily/ligature-engraver.cc:
8192         bugfix: avoid message "junking empty ligature" on ligature
8193         brackets by collecting dummy grobs.
8194
8195 2005-08-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8196
8197         * lily/tuplet-bracket.cc (print): default right overshoot to 0.0
8198
8199         * input/proportional.ly (staffKind): bugfix.
8200         (staffKind): updates by Trevor Baca.
8201
8202         * scm/define-grobs.scm (all-grob-descriptions): remove arrows as
8203         default layout. 
8204
8205         * lily/tuplet-bracket.cc (print): check whether edge-text is a
8206         pair.
8207
8208         * lily/beam.cc (rest_collision_callback): call position_beam() if
8209         necessary.
8210
8211         * VERSION: release 2.7.4
8212
8213         * input/regression/spacing-uniform-stretching.ly: new file.
8214
8215         * lily/spacing-loose-columns.cc (set_loose_columns): use robust_relative_extent().
8216
8217         * Documentation/topdocs/NEWS.tely (Top): add Nicolas as
8218         contributor.
8219
8220         * lily/include/ly-module.hh: define MODULE_GC_KLUDGE globally.
8221
8222         * input/proportional.ly: new file.
8223
8224         * lily/tuplet-bracket.cc (after_line_breaking): don't suicide if
8225         columns is empty
8226
8227         * lily/tuplet-engraver.cc (finalize): new function. Reset right
8228         bounds to currentCommandColumn for the last step.
8229         (start_translation_timestep): if tupletFullLength is set, set
8230         bound to Paper Column
8231
8232         * input/regression/tuplet-full-length.ly (indent): new file.
8233
8234         * lily/spacing-loose-columns.cc (set_loose_columns): space a whole
8235         clique of loose columns, eg. a set of grace notes in strict
8236         notespacing.
8237
8238         * input/regression/spacing-strict-spacing-grace.ly: new file.
8239
8240         * lily/key-signature-interface.cc: change property name to
8241         alteration-alist
8242
8243         * lily/key-engraver.cc (read_event): read keyAlterationOrder, not
8244         keyAccidentalOrder
8245
8246         * python/convertrules.py (conv): keyAccidentalOrder ->
8247         keyAlterationOrder
8248
8249         * lily/key-engraver.cc (create_key): always print a cancellation
8250         for going to C-major/A-minor, regardless of printKeyCancellation.
8251         (create_key): remove typecheck for visibility. This fixes key
8252         signature not being printed.
8253
8254         * lily/spacing-determine-loose-columns.cc: new file.
8255
8256         * input/regression/spacing-strict-notespacing.ly: new file.
8257
8258         * lily/spacing-spanner.cc (generate_springs): rename from
8259         do_measure. 
8260         (generate_pair_spacing): new function.
8261         (init, generate_pair_spacing): set between-cols for floating
8262         nonmusical columns.
8263
8264         * lily/spaceable-grob.cc (get_spring): new function. 
8265
8266         * lily/tuplet-bracket.cc (print): on the left, the overshoot is
8267         relative to the right edge of the prefatory matter.
8268
8269         * lily/beam.cc (print): read break-overshoot to determine where to
8270         stop/start broken beams.
8271
8272         * input/regression/spanner-break-overshoot.ly: new file.
8273
8274 2005-08-04  Graham Percival  <gperlist@shaw.ca>
8275
8276         * ly/bagpipe.ly: updated.
8277
8278         * Documentat/user/instrument.itely: un-comment out bagpipe example.
8279
8280 2005-08-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8281
8282         * lily/dynamic-engraver.cc (acknowledge_slur): add slur to
8283         support: now (de)crescs avoid slurs as well.
8284
8285         * Documentation/user/instrument-notation.itely (Bagpipe example):
8286         comment out non-functioning bagpipe example.
8287         (Bagpipe definitions): idem.
8288
8289         * Documentation/topdocs/NEWS.tely (Top): add uniform-stretching example.
8290         (Top): add proportionalNotationDuration example.
8291
8292         * input/regression/spacing-proportional.ly: new file.
8293
8294         * lily/tuplet-bracket.cc (parallel_beam): broken bracket never is
8295         synched to a beam.
8296
8297         * lily/beam.cc (shift_region_to_valid): divide by zero fix. This
8298         fixes beams with a single stem (eg. beams across linebreaks.)
8299
8300         * lily/parser.yy (simple_string): allow \new STRING_IDENTIFIER.
8301
8302         * flower/rational.cc (operator +): prevent overflow. This fixes
8303         heavily nested tuplets.
8304
8305         * lily/auto-beam-engraver.cc (derived_mark): new method. Yes. We
8306         have to protect even those unlikely to be corrupted data members.  
8307
8308 2005-08-04  Graham Percival  <gperlist@shaw.ca>
8309
8310         * ly/bagpipe.ly: new file.
8311
8312         * THANKS: added Sven Axelsson.
8313
8314 2005-08-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8315
8316         * lily/spacing-engraver.cc (stop_translation_timestep): directly
8317         copy proportionalNotationDuration into currentMusicalColumn if
8318         set.
8319
8320         * lily/spacing-spanner.cc (musical_column_spacing): if
8321         uniform-stretching set, fixed space is 0.0
8322
8323         * input/regression/spacing-multi-tuplet.ly: show
8324         uniform-stretching property.
8325
8326         * lily/spacing-spanner.cc (effective_shortest_duration): new function.
8327
8328         * lily/include/spacing-spanner.hh (class Spacing_spanner): new file.
8329         (struct Spacing_options): new struct.
8330
8331         * lily/spacing-basic.cc: new file.
8332
8333         * lily/spacing-spanner.cc (note_spacing): remove outdated code:
8334         delta_t doesn't have to be smaller than shortest_playing_len
8335
8336 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8337
8338         * input/regression/markup-arrows.ly:  new file.
8339
8340         * lily/tuplet-bracket.cc: document new behavior.
8341
8342         * input/regression/tuplet-broken.ly: new file. Demonstrate tuplets
8343         with line breaks.
8344
8345         * scm/define-markup-commands.scm (arrow-head): arrow-head markup command.
8346
8347         * scm/define-grobs.scm (all-grob-descriptions): set arrows as
8348         default 
8349
8350         * lily/tuplet-bracket.cc: add edge-text property.
8351         add break-overshoot.
8352         (print): read break-overshoot.
8353         (print): read edge-text, add stencils.
8354
8355         * mf/feta-arrow.mf: new file.
8356
8357         * mf/feta-generic.mf: add feta-arrow.
8358
8359 2005-08-03  Mats Bengtsson  <mabe@s3.kth.se>
8360
8361         * Documentation/user/lilypond-book.itely (An example of a
8362         musicological document): Added flag -o to dvips for people who use
8363         the default setting in teTeX where output is sent to the printer. 
8364
8365         * Documentation/user/global.itely (Vertical spacing): Added
8366         reference to the Axis_group_engraver which documents the *Extent
8367         properties.
8368
8369 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8370
8371         * Documentation/user/basic-notation.itely (Tuplets): add note
8372         about nested tuplets. Remove BUG. 
8373
8374         * input/regression/tuplet-nest.ly: update: remove manual hack. 
8375
8376         * lily/tuplet-bracket.cc (print): use robust_scm2drul
8377         (print): manually call print() for subtuplets.
8378         (calc_position_and_height): add subtuplets to the
8379         support. Vertically shift outer tuplet 
8380
8381         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): set
8382         remove-first for Lyrics, ChordNames and FiguredBass
8383
8384         * scm/define-grob-properties.scm (all-internal-grob-properties):
8385         use ly:grob-array? iso. grob-list?
8386         (all-internal-grob-properties): add tuplets grob-array.
8387
8388         * lily/tuplet-bracket.cc (add_tuplet_bracket):
8389         new function
8390
8391 2005-08-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8392
8393         * input/test/time-signature-staff.ly: new file.
8394
8395         * ly/declarations-init.ly (center): escape to Scheme. Fixes
8396         spurious #<Music FingerEvent> errors. Backportme.
8397
8398 2005-08-03  Mats Bengtsson  <mabe@s3.kth.se>
8399
8400         * Documentation/user/programming-interface.itely (Markup
8401         construction in Scheme): Corrected markup syntax in the
8402         translation table.
8403
8404 2005-08-03  Graham Percival  <gperlist@shaw.ca>
8405
8406         * Documentation/user/instrument-notation.itely: small update
8407         to bagpipe notation docs; thanks Sven!
8408
8409         * Documentation/user/basic-notation.itely: add link about trills.
8410
8411 2005-08-02  Graham Percival  <gperlist@shaw.ca>
8412
8413         * Documentation/user/music-glossary: remove accidentally committed
8414         fink patch.
8415
8416 2005-08-02  Yoshinobu Ishizaki  <isizaki@mte.biglobe.ne.jp>
8417
8418         * lily/lily-parser.cc (get_header): new function. Enable multiple
8419         \header definitions.
8420
8421         * lily/parser.yy (lilypond_header_body): use get_header.
8422
8423         * ly/init.ly:
8424         * scm/lily-library.scm (print-score-with-defaults): renamed
8425         $globalheader to $defaultheader
8426             
8427         * Documentation/user/global.itely (Creating titles): added short
8428         explanation that multiple headers are useable.
8429
8430
8431 2005-08-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8432
8433         * lily/module-scheme.cc (LY_DEFINE): new file. 
8434
8435         * Documentation/user/advanced-notation.itely (Font selection): add
8436         doco for make-pango-font-tree.
8437
8438 2005-07-31  Graham Percival  <gperlist@shaw.ca>
8439
8440         * Documentation/user/music-glossary: more languages
8441         for tenuto.
8442
8443         * Docuemntation/user/instrument-notation.itely: minor
8444         update for bagpipe example.
8445
8446 2005-07-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8447
8448         * input/regression/+.ly (TODO): add some text.
8449
8450 2005-07-28  Graham Percival  <gperlist@shaw.ca>
8451
8452         * Documentation/user/invoking.itely: \score begins with music.
8453
8454         * Documentation/user/ basic-notation.itely,
8455         instrument-notation.itely: minor changes.
8456
8457         * Documentation/user/music-glossary.itely: began tenuto entry.
8458
8459 2005-07-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8460
8461         * scm/output-socket.scm (bezier-sandwich): add bezier-sandwich
8462
8463         * mf/feta-bolletjes.mf: swap up and down for aiken heads.
8464
8465 2005-07-27  Graham Percival  <gperlist@shaw.ca>
8466
8467         * Documentation/user/examples.itely: remove bagpipe template.
8468
8469         * Documentation/user/instrument-notation.itely: add bagpipe
8470         section, maybe fix quotes in lyrics.  I hate text encoding.
8471         Clarify chord durations, more bagpipe stuff.
8472
8473 2005-07-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8474  
8475         * lily/accidental-engraver.cc: formatting fixes.
8476
8477         * lily/spacing-spanner.cc (prune_loose_columns): right-items is a
8478         grob-array.
8479
8480         * lily/arpeggio.cc (print): suicide arpeggio for single notehead.
8481
8482         * lily/note-column.cc (arpeggio): new function.
8483
8484         * lily/note-spacing.cc (get_spacing): also take arpeggio into
8485         account for spacing.
8486
8487 2005-07-25  Jan Nieuwenhuizen  <janneke@gnu.org>
8488
8489         * lily/main.cc (sane_setenv)[!ARGV0_RELOCATION]: Also define.
8490         (setup_guile_env): Use it instead of nonstandard setenv.  Fixes
8491         mingw build.
8492         
8493 2005-07-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8494
8495         * scm/lily.scm (lilypond-all): clear anonymous modules after
8496         processing files.
8497
8498 2005-07-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8499
8500         * flower/include/guile-compatibility.hh (SCM_I_CONSP): add
8501         SCM_I_CONSP
8502
8503         * VERSION: 2.7.3 released
8504
8505         * Documentation/user/invoking.itely (Invoking lilypond): add
8506         LILYPOND_GC_YIELD documentation.
8507
8508         * lily/*: cleanups: use scm_from_int iso. scm_int2num. Idem for
8509         scm_from_real / scm_make_real.
8510
8511         * lily/main.cc (setup_guile_env): new function. Set GC min_yields
8512         higher. This increases memory footprint, but provides overall
8513         speedup of 15 to 20%. 
8514
8515         * lily/include/translator.hh (class Translator): remove
8516         PRECOMPUTED_VIRTUAL everywhere.
8517
8518         * lily/include/lily-guile.hh: inline scm_c[ad]r, scm_is_pair.
8519
8520         * lily/context.cc (now_mom): non-recursive now_mom() 
8521
8522         * lily/include/profile.hh: new file.
8523
8524         * lily/profile.cc: new file.
8525
8526         * lily/grob.cc (Grob::Grob): look properties up directly.
8527
8528         * lily/open-type-font.cc (get_indexed_char): cache index -> bbox
8529         lookups.
8530
8531         * lily/include/box.hh (class Box): smob Box type.
8532
8533         * lily/smobs.cc (protect_smob): O(1) GC (un)protection.
8534
8535         * lily/include/smobs.hh (DECLARE_BASE_SMOBS): add methods
8536         protect() and unprotect(). Use throughout.
8537
8538 2005-07-24  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8539
8540         * Documentation/topdocs/NEWS.tely: new item for \displayLilyMusic
8541
8542         * scm/define-music-display-methods.scm (markup->lily-string):
8543         markup elements can also be strings (without simple-markup
8544         appended)
8545
8546 2005-07-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8547
8548         * lily/context.cc (where_defined): also assign value in
8549         where_defined().
8550
8551         * lily/bezier.cc (get_other_coordinate): use curve_coordinate
8552         (curve_coordinate): new function
8553
8554         * lily/simple-spacer.cc (add_columns): only add rods between
8555         column i and begin/end if keep-inside-line is set (this repleces
8556         allow-outside-line as default)
8557
8558 2005-07-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8559
8560         * lily/tuplet-engraver.cc (start_translation_timestep): only read
8561         tupletSpannerDuration if applicable.
8562
8563         * lily/font-size-engraver.cc (process_music): read fontSize only
8564         once per timestep.
8565
8566         * lily/engraver*cc: use throughout.
8567         
8568         * lily/include/translator.icc (ADD_ACKNOWLEDGER): new macro.
8569
8570         * lily/translator.cc (add_acknowledger): new file. Directly jump
8571         into an Engraver::acknowledge_xxx () method based on a grobs
8572         interface-list.
8573
8574         * lily/include/translator-dispatch-list.hh (class
8575         Engraver_dispatch_list): new struct, new file.
8576
8577         * scm/define-context-properties.scm
8578         (all-internal-translation-properties): remove acceptHashTable,
8579         acknowledgeHashTable
8580
8581         * lily/translator-group.cc (mark_smob): idem for acceptHashTable.
8582
8583         * lily/engraver-group-engraver.cc (Engraver_group_engraver):
8584         change acknowledgeHashTable to C++ member. 
8585
8586         * lily/rest-collision.cc (do_shift): use extract_grob_set().
8587
8588 2005-07-22  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8589
8590         * scm/display-lily.scm: new file. Define a `display-lily-music'
8591         function, that displays the music expression given as an argument,
8592         using LilyPond notation.
8593
8594         * scm/define-music-display-methods.scm: new file. Implementation
8595         of display methods for each music type.
8596
8597         * ly/music-functions-init.ly (displayLilyMusic): new function for
8598         displaying music with LilyPond notation.
8599
8600         * input/regression/display-lily-tests.ly: new regression test file
8601         for `display-lily-music'.
8602
8603         * scm/markup.scm: remove obsolete debugging code (for printing
8604         markups with LilyPond notation).
8605
8606         * scm/define-music-types.scm (music-name-to-property-table):
8607         * scm/clef.scm (supported-clefs): export, in order to be accessible
8608         from the (scm display-lily) module.
8609
8610 2005-07-22  Jan Nieuwenhuizen  <janneke@gnu.org>
8611
8612         * Documentation/topdocs/NEWS.tely (Top): Typo.
8613
8614 2005-07-22  Heikki Junes  <hjunes@cc.hut.fi>
8615
8616         * Documentation/index.html.in, Documentation/texinfo.css,
8617           stepmake/bin/text2html.py, buildscripts/mutopia-index.py,
8618           Documentation/bibliography/index.html.in,
8619           Documentation/bibliography/html-long.bst: revert css-width patch,
8620           it does not work with IE6.
8621
8622 2005-07-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8623
8624         * Documentation/texinfo.css: revert 760px hack. 
8625
8626         * VERSION: release 2.7.2
8627
8628         * Documentation/topdocs/NEWS.tely (Top): mention barNumberCheck
8629
8630         * Documentation/user/basic-notation.itely (Barnumber check): add
8631         section.
8632
8633         * scm/music-functions.scm (skip-to-last): new function. Show only
8634         last showLastLength part of the \score.
8635
8636         * lily/moment-scheme.cc (LY_DEFINE): new function ly:moment-sub
8637
8638         * python/convertrules.py (conv): add ly:x-moment rule
8639
8640         * lily/moment-scheme.cc (LY_DEFINE): rename ly:X-moment  -> ly:moment-X
8641
8642         * Documentation/topdocs/NEWS.tely (Top): add new feature.
8643
8644         * Documentation/user/instrument-notation.itely (Flexibility in
8645         alignment): options in subsections.
8646
8647         * lily/lyric-engraver.cc (process_music): don't typeset text for _
8648         syllable text. Instead, assume that the previous lyric text is a
8649         melismated text.
8650
8651         * Documentation/index.html.in: revert 800x600 change.
8652
8653 2005-07-19  Jan Nieuwenhuizen  <janneke@gnu.org>
8654
8655         * lily/main.cc (main): Remove invalid handle kludge.
8656
8657         * scm/lily.scm (running-from-gui?): WINDOWS: check -dgui.
8658         (lambda): add gui define.
8659
8660 2005-07-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8661
8662         * Documentation/topdocs/NEWS.tely (Top): add note about Musica ficta.
8663
8664         * Documentation/user/instrument-notation.itely (Musica ficta
8665         accidentals): add section Musica ficta accidentals
8666
8667         * lily/accidental-engraver.cc (make_suggested_accidental): new
8668         function.
8669         (make_standard_accidental): move into new function.
8670         (create_accidental): new function.
8671
8672         * scm/define-grobs.scm (all-grob-descriptions): new Grob
8673         AccidentalSuggestion
8674
8675         * lily/output-def-scheme.cc (LY_DEFINE): take default  argument.
8676
8677         * lily/output-def.cc (lookup_variable): return SCM_UNDEFINED if
8678         undefined.
8679
8680         * Documentation/user/global.itely (Page formatting): document
8681         horizontalshift.
8682
8683         * scm/page-layout.scm (default-page-music-height):
8684         horizontalshift: new variable, shift all systems by
8685         horizontalshift to the right, to make space for instrument names.
8686
8687         * scm/paper.scm (set-paper-dimension-variables): add horizontalshift
8688
8689         * lily/input-scheme.cc (LY_DEFINE): take format commands.
8690
8691 2005-07-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8692
8693         * lily/note-column.cc (dir): idem.
8694
8695         * lily/spacing-spanner.cc (Module): idem.
8696
8697         * lily/script-column.cc (before_line_breaking): use extract_grob_set()
8698
8699         * lily/include/paper-column.hh (class Paper_column): add
8700         non-static get_rank() member.
8701
8702         * VERSION: release 2.7.1
8703         
8704         * scm/framework-null.scm: new file, used for benchmarking.
8705
8706 2005-07-20  Heikki Junes  <hjunes@cc.hut.fi>
8707
8708         * Documentation/topdocs/INSTALL.texi, configure.in: fix
8709         version dependencies for fontforge and gs.
8710
8711         * Documentation/index.html.in, Documentation/texinfo.css,
8712         stepmake/bin/text2html.py, buildscripts/mutopia-index.py,
8713         Documentation/bibliography/index.html.in, 
8714         Documentation/bibliography/html-long.bst: optimize width of
8715         html for a 800x600 screen (width:760), increases printability
8716         when 'fit to page' is not set and readability in wide screens.
8717
8718         * stepmake/bin/add-html-footer.py: add missing </p>.
8719
8720 2005-07-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8721
8722         * scm/define-markup-commands.scm (beam): use polygon in beam
8723         command.
8724
8725         * lily/grob-pq-engraver.cc (stop_translation_timestep): save up
8726         all acknowledged grobs, and do potentially expensive merge and
8727         write in one go.
8728
8729         * buildscripts/mf-to-table.py (write_fontlist): enforce noBreak.
8730
8731         * configure.in (reloc_b): add --enable-static-gxx to statically
8732         link to libstdc++
8733
8734         * lily/GNUmakefile (static-gxx-libs): new target
8735         static-gxx-libs. Create symlink to libstdc++.a
8736
8737         * lily/new-lyric-combine-music-iterator.cc: rename to
8738         Lyric_combine_music_iterator
8739
8740         * lily/lyric-combine-music-iterator.cc
8741         (Old_lyric_combine_music_iterator): rename to
8742         Old_lyric_combine_music_iterator
8743
8744         * lily/*-engraver.cc (various): remove double use of
8745         PRECOMPUTED_VIRTUAL function: only use
8746         start_translation_timestep() and stop_translation_timestep(), not
8747         both.
8748
8749         * lily/break-substitution.cc (fast_substitute_grob_array): do
8750         fast_substitute_grob_array for all unordered grob_arrays.
8751         (substitute_grob): return Grob *. Saves packing/unpacking SCMs.
8752         (substitute_grob_array): optimize.
8753
8754         * lily/align-interface.cc (set_axis): set ordered_ for 'elements
8755
8756         * lily/include/grob-array.hh (class Grob_array): ordered_ member.
8757
8758         * lily/parser.yy: revert $globalheader patch.
8759         
8760         * lily/include/translator.icc
8761         (IMPLEMENT_FETCH_PRECOMPUTABLE_METHODS): directly jump into
8762         Translator methods, without _static helper.
8763  
8764         * lily/grob-smob.cc (derived_mark): rename from
8765         do_derived_mark(). Return void.
8766
8767         * scm/define-context-properties.scm
8768         (all-internal-translation-properties): remove tweakCount/tweakRank.
8769
8770         * scm/output-lib.scm (begin-of-line-invisible): use vectors for
8771         predefined break-visibilities.
8772
8773         * lily/item.cc (handle_prebroken_dependencies): use a vector of 3
8774         booleans for break-visibility.
8775
8776         * Documentation/topdocs/NEWS.tely (Top): add note about engravers.
8777
8778         * python/convertrules.py (conv): rule for Timing_translator. 
8779
8780         * lily/include/translator.icc: new file. 
8781
8782         * lily/paper-column-engraver.cc (process_music): new
8783         file. Separate Paper_column factory from Score_engraver.
8784
8785         * lily/vertically-spaced-context-engraver.cc: administer
8786         spaceable-staves property of System.
8787
8788         * lily/translator-group-ctors.cc: new file.
8789
8790         * lily/context-property.cc (make_grob_from_properties): construct
8791         the right Grob class programmatically, looking at the class entry
8792         for the meta property.
8793
8794         * lily/break-align-engraver.cc (stop_translation_timestep): call
8795         Break_align_interface::add_element() directly.
8796
8797         * lily/context.cc (measure_position): measure_position() is now a
8798         normal function.
8799
8800         * lily/include/translator.hh (class Translator): rename
8801         process_acknowledged_grobs() to process_acknowledged() and move to
8802         Translator.
8803
8804         * scm/define-grobs.scm (all-grob-descriptions): add a 'class meta
8805         field for each grob description.
8806
8807         * lily/include/translator-group.hh (class Translator_group):
8808         change to base class. Separate class from Translator. This gets
8809         rid of virtual inheritance for Engravers/Performers.
8810
8811         * lily/staff-performer.cc (class Staff_performer): derive
8812         Staff_performer from Performer, not Performer_group_performer 
8813
8814         * Lily/translator-group.cc (precomputed_recurse_over_translators):
8815         new function.
8816         (precompute_method_bindings): new function. Precompute lists of
8817         Translators, so we only call methods (process_music,
8818         start_translation_timestep, etc.) for Translators needing
8819         it. Also: dispose of pointer-to-member-function calls.
8820
8821         * lily/engraver-group-engraver.cc: remove engraver_each,
8822         recurse_down_engravers ()
8823
8824         * lily/note-head.cc (internal_print): only call
8825         glyph-name-procedure if style != default. 
8826
8827 2005-07-16  Graham Percival  <gperlist@shaw.ca>
8828
8829         * ly/titling-init.ly: add printallheaders option.
8830
8831         * Documentation/user/global.itely: document printallheaders.
8832
8833 2005-07-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8834
8835         * lily/system.cc (do_derived_mark): don't mark from object_alist_
8836         anymore, but do it centrally.  
8837
8838         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
8839         hammer hack.
8840
8841         * lily/grob-scheme.cc (LY_DEFINE): new function ly:grob-object
8842
8843         * scm/output-lib.scm: remove hammer-print-function.
8844
8845         * lily/include/pointer-group-interface.hh (extract_grob_set): new
8846         macro. Declare a Link_array<Grob> and fill it from a grob.
8847         (extract_item_set): idem for item.
8848
8849         * lily/break-substitution.cc: add header.
8850         (fast_substitute_grob_array): rewrite for Grob_arrays.
8851         (substitute_grob_array): idem.
8852
8853         * lily/group-interface.cc (add_thing): remove file.
8854
8855         * flower/include/parray.hh (class Link_array): slice() is const.
8856
8857         * lily/include/grob-array.hh: new file.
8858
8859         * lily/grob-array.cc (spanner): new file.
8860
8861         * lily/beam-quanting.cc (fill): read details property from beam.
8862
8863         * lily/beam.cc: support details property.
8864
8865         * total speedups below: approx 10%.
8866
8867         * lily/include/beam.hh: new struct, softcode beam quanting parameters
8868
8869         * lily/include/grob.hh (class Grob): add interfaces_ member.
8870
8871         * lily/bezier.cc (init_polynomial_cache): new function: cache
8872         binom(3,j) t^j (1-t)^{3-j}
8873         (curve_point): opps, actually use the cache for t^j , (1-t)^j! 
8874
8875         * lily/*.cc: substitution throughout.
8876
8877         * lily/grob-property.cc (internal_get_object): new routine.
8878         (internal_set_object): idem. Store grob refrences in separate
8879         alist. This saves processing time, since properties aren't
8880         break-substituted, and the per grob namespace is smaller, both for
8881         grobs and non-grob properties.
8882
8883         * scm/define-grob-properties.scm (all-internal-grob-properties):
8884         remove center-element.
8885
8886         * lily/grob.cc: remove tweak-count, tweak-rank.
8887
8888 2005-07-15  Graham Percival  <gperlist@shaw.ca>
8889
8890         * Documentation/user/lilypond-book.itely: fixes example.
8891
8892 2005-07-15  Nicolas Sceaux  <nicolas.sceaux@free.fr>
8893
8894         * Documentation/user/global.itely (Creating titles):    
8895         * Documentation/user/examples.itely (All headers): change the
8896         place of \header in \score blocks (after music block) to make
8897         examples compile (cf. changes on parser.yy on 2005-07-10)
8898
8899 2005-07-13  Graham Percival  <gperlist@shaw.ca>
8900
8901         * python/convertrules.py: add exc -> ecc rule.
8902
8903         * scripts/convert-ly.py: add location of convertrules.py
8904         in a comment.
8905
8906         * Documentation/user/changing-defaults.itely: fix language.
8907
8908 2005-07-12  Jan Nieuwenhuizen  <janneke@gnu.org>
8909
8910         * lily/lily-parser-scheme.cc (LY_DEFINE): Guile 1.6 fix.
8911
8912 2005-07-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8913
8914         * scm/output-socket.scm (grob-bbox): don't use inf? 
8915
8916         * flower/include/rational.hh: add operator bool() 
8917
8918         * scm/define-music-types.scm (music-descriptions): remove
8919         internal-class-name properties.
8920
8921         * lily/include/event.hh: remove file.
8922
8923         * lily/include/music-constructor.hh: remove file.
8924
8925         * lily/parser.yy (Lily_lexer): check EVENT_IDENTIFIER using 'event
8926         in 'types property.
8927
8928         * lily/music.cc (duration_length_callback): new function.
8929
8930         * lily/event.cc: remove file.
8931
8932         * lily/music-constructor.cc: remove file.
8933
8934         * lily/music-scheme.cc (LY_DEFINE): rename to ly:make-music
8935
8936         * lily/context.cc (get_grob_key): nop if use_object_keys not set.
8937         (get_context_key): idem.
8938
8939         * scm/lily.scm (lambda): new option object-keys (default to #f)
8940
8941         * scm/output-svg.scm (utf-8-string): rename  from utf8-string.
8942
8943         * scm/output-gnome.scm: remove beam routine.
8944
8945         * scm/output-ps.scm (scm): idem.
8946
8947         * scm/output-svg.scm: remove beam.
8948
8949         * ps/music-drawing-routines.ps: remove draw_beam.
8950
8951         * lily/lookup.cc (beam): use round_filled_polygon() for beam.
8952
8953         * flower/include/guile-compatibility.hh (scm_from_locale_string):
8954         add scm_from_locale_string compatibility glue. 
8955
8956 2005-07-13  Yoshinobu Ishizaki  <isizaki@mte.biglobe.ne.jp>
8957
8958         * scripts/lilypond-book.py: Prevent occuring error when
8959         'lilypond-book --output=foo/ somefile.ly' is executed multiple
8960         times and target file shoud be overwritten.  (Error message said
8961         'input file and output file is same'.)
8962
8963 2005-07-13  Graham Percival  <gperlist@shaw.ca>
8964
8965         * input/regression/slur-extreme.ly,
8966         input/regression/slur-scoring.ly, lily/slur-configuration.cc,
8967         lily/slur.cc, mf/feta-din-code.mf, mf/feta-timesig.mf,
8968         mf/parmesan-heads.mf, scm/define-grob-properties.scm: Change
8969         "excentricity" to "eccentricity".
8970
8971         * Documentation/user/converters.itely: fix URL for Noteedit and
8972         Rosegarden.
8973
8974         * THANKS: added Yoshinobu Ishizaki.
8975
8976 2005-07-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8977
8978         * scm/define-markup-commands.scm (justify-field): add. 
8979
8980         * scm/define-grobs.scm (all-grob-descriptions): decrease font size.
8981
8982 2005-07-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
8983
8984         * lily/lookup.cc (filled_box): express filled_box with
8985         round_filled_box
8986
8987         * scm/midi.scm (paper-book-write-midis): new function. Write all
8988         performances in numbered MIDI files.
8989
8990         * lily/performance-scheme.cc (LY_DEFINE): new file.
8991         (LY_DEFINE): new function ly:performance-write.
8992
8993         * lily/lily-parser-scheme.cc (LY_DEFINE): ly:parser-output-name:
8994         new function.
8995         (LY_DEFINE): change name ly:parser-define -> ly:parser-define!
8996
8997         * scm/framework-*.scm: use port arguments throughout.
8998
8999         * lily/include/lily-guile.hh: rename ly_c_X_p -> ly_is_X
9000
9001         * lily/paper-outputter.cc (Paper_outputter): take port argument.
9002
9003         * lily/paper-outputter-scheme.cc (LY_DEFINE): take port argument.
9004
9005         * scm/framework-texstr.scm (output-framework): 
9006
9007         * input/regression/repeat-fold.ly (texidoc): remove TeX strings.
9008
9009         * scm/output-lib.scm (tablature-stem-attachment-function):
9010         tablature stem attachment fix. 
9011
9012 2005-07-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9013
9014         * lily/bezier.cc: hardcode binomial coefficients of order 3.
9015
9016         * lily/include/music-wrapper.hh: remove Music_wrapper as Music subtype.
9017
9018         * scm/define-music-types.scm (music-descriptions): don't use
9019         Music_wrapper type.
9020
9021         * lily/paper-column.cc (print): print moment too.
9022
9023         * scripts/mup2ly.py (cp_to_dir): remove 1.5.2 compat glue.  
9024         remove compatibility cruft.
9025
9026         * lily/parser.yy (score_body): \score can only begin with Music. 
9027
9028         * lily/score-scheme.cc (LY_DEFINE): rename scorify to
9029         make-score. Take music argument only. Move parser interaction to
9030         Scheme.
9031
9032         * scm/lily-library.scm (scorify-music): new function.
9033
9034         * python/lilylib.py (datadir): remove 2.1 compat kludge.
9035         (datadir): remove resource import.
9036         (print_environment): remove get_bbox()
9037         (cp_to_dir): remove pre 1.5.2 compat glue.
9038
9039 2005-07-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9040
9041         * lily/include/simple-spacer.hh (Module): idem.
9042
9043         * lily/include/spring.hh (struct Spring): store inverse
9044         strength. This prevents division by zero.
9045
9046         * VERSION: release 2.7.0
9047         
9048         * lily/include/music.hh (class Music): remove Music::duration_log()
9049
9050         * lily/stem-engraver.cc (make_stem): take duration log from event.
9051
9052         * lily/chord-tremolo-engraver.cc: don't ack note-head-interface.
9053
9054 2005-07-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9055
9056         * scm/lily.scm (ly:load): load autochange.scm
9057
9058         * Documentation/user/tutorial.itely (Running LilyPond for the
9059         first time): remove reference to DVI/TeX
9060
9061         * scm/define-markup-commands.scm (text): add \text markup command.
9062
9063         * configure.in (reloc_b): bump requirement to Python 2.2.
9064
9065         * lily/include/dots.hh (class Dots): make has_interface() static.
9066
9067         * python/convertrules.py (conv): add rule for ly:grob-default-font
9068
9069         * scm/define-grobs.scm (all-grob-descriptions): reorganize in
9070         alphabetical order.
9071
9072         * input/regression/trill-spanner-pitched.ly: new file.
9073
9074         * lily/font-interface-scheme.cc (LY_DEFINE): function
9075         ly:grob-default-font (changed from get-default-font).
9076
9077         * lily/axis-group-interface-scheme.cc (LY_DEFINE): new file.
9078
9079         * lily/note-head.cc (internal_print): if style is not a symbol,
9080         set style to 'default. 
9081         (internal_print): no style suffix if glyph-name-procedure not
9082         set. Default to quarter head.
9083
9084         * scm/define-grobs.scm (Module): new grob TrillPitchHead.
9085
9086         * scm/define-music-properties.scm (all-music-properties): add trill-pitch.
9087
9088         * ly/music-functions-init.ly: \pitchedTrill
9089
9090         * lily/pitched-trill-engraver.cc (acknowledge_grob): new file.
9091
9092         * ly/Welcome_to_LilyPond.ly: update to 2.6.0
9093
9094         * lily/trill-spanner-engraver.cc (finalize): rename req -> event
9095
9096         * scm/define-markup-commands.scm (pad-markup): pad-markup command.
9097
9098         * po/fr.po: update
9099
9100         * po/de.po: update.
9101
9102 2005-07-06  Graham Percival  <gperlist@shaw.ca>
9103
9104         * Documentation/user/changing-defaults.itely: add link
9105         to grob-iterface.
9106
9107         * Documentation/user/advanced-notation.itely: add material
9108         to Setting automatic beam behaviour.  Thanks, Joe!
9109
9110         * Documentation/user/lilypond.itely: change encoding to utf-8.
9111
9112 2005-07-01  Mats Bengtsson  <mabe@s3.kth.se>
9113
9114         * Documentation/user/advanced-notation.itely (Setting automatic
9115         beam behavior): Correct the documentation of
9116         revert-auto-beam-setting (backportme)
9117
9118 2005-07-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9119
9120         * lily/ly-module.cc (ly_make_anonymous_module): define
9121         %module-public-interface of module. 
9122
9123         * lily/lily-parser.cc (print_smob): allow printing of parser smob
9124         without lexer.
9125
9126 2005-07-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9127
9128         * input/regression/fret-diagrams.ly: stretch example.
9129
9130 2005-06-30  Jan Nieuwenhuizen  <janneke@gnu.org>
9131
9132         * cygwin/GNUmakefile ($(outdir)/%.sh): Bugfix: use TAB (Bertalan
9133         Fodor).
9134
9135 2005-06-30  Graham Percival  <gperlist@shaw.ca>
9136
9137         * Documentation/topdocs/AUTHORS.texi: update personal web address.
9138
9139         * Documentation/user/examples.itely, lilypond-book.itely:
9140         change \RequirePackage to \usepackage.
9141
9142         * Documentation/user/global.itely: document copyright and tagline.
9143
9144 2005-06-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9145
9146         * Documentation/user/basic-notation.itely (Transpose): remove link
9147         to nonexistent UntransposableMusic.
9148
9149         * scm/output-svg.scm: remove old definitions.
9150
9151         * scripts/lilypond-book.py (do_file): search for kpsewhich before
9152         invoking.
9153
9154         * python/lilylib.py (search_exe_path): new function.
9155
9156 2005-06-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9157
9158         * python/lilylib.py (mkdir_p): remove setup_environment()
9159         (backportme)
9160
9161         * buildscripts/mutopia-index.py (headertext): trim text.
9162
9163         * Documentation/topdocs/NEWS.tely (Top): refresh.
9164
9165         * scm/define-markup-commands.scm (wordwrap-string): new function:
9166         split string in paras and words.
9167         (wordwrap-markups): new function.
9168         (wordwrap-stencils): new function. 
9169         (justify): use it.
9170         (wordwrap): use it.
9171         (wordwrap-string): use it
9172         (justify-string): use it.
9173
9174         * scm/lily-library.scm (regexp-split): new function.
9175
9176         * scm/define-markup-commands.scm: remove encoded-simple. 
9177         remove font-markup.
9178         (fontsize): remove old version  of fontsize.
9179         (wordwrap): new markup function. Wrap into paragraphs.
9180
9181         * VERSION: Branch lilypond_2_6
9182         (MINOR_VERSION): go to 2.7.0
9183
9184 2005-06-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9185
9186         * po/zh_TW.po: update from translation project.
9187
9188 2005-06-28  Graham Percival  <gperlist@shaw.ca>
9189
9190         * scm/midi.scm: compile fix.
9191
9192 2005-06-28  Mats Bengtsson  <mabe@s3.kth.se>
9193
9194         * scripts/lilypond-book.py : Fix embarrassing bug in my previous
9195         patch. Now, the tempfile module is loaded too, not only used.
9196
9197 2005-06-28  Stephen Charles McCarthy  <stecmccarthy@hotpop.com>
9198
9199         * scm/midi.scm: changed midi volumes in absolute-volume-alist from
9200         0.05 - 1.00 to 0.25 - 1.00
9201
9202         * scm/midi.scm: moved the default-instrument-equalizer procedure
9203         to just under the insturment-equalizer-alist it takes as an
9204         argument.
9205
9206 2005-06-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9207
9208         * Documentation/user/advanced-notation.itely (Font selection):
9209         remove CMR note.
9210
9211         * scm/framework-ps.scm (write-preamble): ly:warning iso. ly:warn 
9212
9213 2005-06-28  Jan Nieuwenhuizen  <janneke@gnu.org>
9214
9215         * THANKS: Add UTF-8 marker.
9216
9217         * Documentation/user/point-and-click.itely (http): Update: use
9218         lilypond-invoke-editor.  Fix: instruct to use user.js.
9219
9220 2005-06-27  Graham Percival  <gperlist@shaw.ca>
9221
9222         * ly/titling-init.ly: implements printpagenumber, increases
9223         space between dedication and title (to avoid collisions with
9224         "g" and "q" in dedication), and nicer logic about copyright
9225         and instrument fields being printed on the first page.
9226         Thanks Vincent!
9227
9228         * Documentation/user/global.itely: document printpagenumber.
9229
9230 2005-06-27  Jan Nieuwenhuizen  <janneke@gnu.org>
9231
9232         * Documentation/topdocs/NEWS.tely: Update to 2.6.
9233
9234 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9235
9236         * THANKS: update to 2.6
9237
9238         * VERSION: 2.6.0 released.
9239
9240 2005-06-27  Jan Nieuwenhuizen  <janneke@gnu.org>
9241
9242         * cygwin/GNUmakefile (OUT_POSTREMOVES): Reinclude install script
9243         rule, errorneously removed probably because of misleading comment.
9244
9245 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9246
9247         * python/lilylib.py (datadir): py2exe comments.
9248
9249         * Documentation/topdocs/INSTALL.texi (Top): remove EC fonts requirement.
9250
9251         * configure.in (reloc_b): make fontconfig REQUIRED.
9252
9253 2005-06-27  Heikki Junes <hjunes@cc.hut.fi>
9254
9255         * po/fi.po: add latest translations.
9256
9257 2005-06-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9258
9259         * ChangeLog: recode utf-8
9260
9261         * Documentation/pictures/lilypond.xpm (Module): edited photo as
9262         logo.
9263
9264         * Documentation/user/examples.itely (Module): 2.4.0 -> 2.6.0
9265
9266         * input/*.ly (Module): 2.4 -> 2.6 grand convert-ly s/r. 
9267
9268         * python/convertrules.py (do_conversion): don't print program_name
9269         from within a module
9270
9271         * configure.in (reloc_b): bump fontforge requirement to 20050624.
9272
9273         * python/convertrules.py (conv): add 2.6.0 dummy rule.
9274
9275 2005-06-23  Graham Percival  <gperlist@shaw.ca>
9276
9277         * Documentation/user/lilypond-book.itely,
9278         Documentation/user/examples.itely: add \RequirePackage{graphics}.
9279
9280         * ly/titling.ly: checks printfirstpagenumber, adds meter, and
9281         fixes baseline-skip.  Thanks Vincent!
9282
9283         * Documentation/user/advanced-notation.itely, global.itely:
9284         moved "Selecting font sizes" to global, since it deals with
9285         notation font size, not text fonts.
9286
9287 2005-06-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9288
9289         * buildscripts/gen-emmentaler-scripts.py (notice): add GPL notice
9290         to fonts.
9291
9292 2005-06-23  Mats Bengtsson  <mabe@s3.kth.se>
9293
9294         * scripts/lilypond-book.py (LATEX_DOCUMENT): More or less ugly
9295         workaround since /dev/stdin doesn't work on Cygwin. Using a
9296         temporary file in the current directory since latex doesn't
9297         understand the path name to the default TMP in Cygwin (at least on
9298         win XP).
9299         
9300         * Documentation/user/global.itely (Creating titles): Correct
9301         misprint in example. Thanks to Rob Vlasaty.
9302
9303 2005-06-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9304
9305         * VERSION (PATCH_LEVEL): release 2.5.32
9306
9307         * lily/lily-parser-scheme.cc (LY_DEFINE): don't set 'parser
9308         variable in lily module
9309
9310         * scm/framework-ps.scm (output-classic-framework): error message
9311         regarding the classic framework.
9312
9313         * Documentation/user/henle-flat-gray.png (Module): new file.
9314
9315         * Documentation/user/baer-flat-gray.png (Module): new file.
9316
9317         * scm/output-lib.scm (fret-number-tablature-format): vcenter and
9318         whiteout for markups.
9319
9320         * buildscripts/substitute-encoding.py (note_glyph): include _ in
9321         regex too. This fixes change clef appearance in PDF. 
9322
9323         * ttftool/include/*: remove.
9324
9325         * configure.in (reloc_b): remove TTFTOOL_ENDIAN
9326
9327         * config.make.in (WINDRES): remove TTFTOOL_ENDIAN.
9328
9329         * lily/GNUmakefile (MODULE_INCLUDES): remove ttftool
9330
9331         * ttftool/*: remove ttftool subdirectory.
9332
9333         * GNUmakefile.in (SUBDIRS): remove ttftool subdirectory.
9334
9335         * lily/ttf.cc (print_header): new file. Convert to type42, using
9336         FreeType to parse the TTF. 
9337
9338         * ttftool/parse.c (readPostTable): ugh. Kludge: nglyphs in maxp
9339         and post table may differ. Pass around post_nglyphs as well.
9340
9341 2005-06-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9342
9343         * ly/music-functions-init.ly (musicMap): new music function
9344         musicMap. 
9345         
9346 2005-06-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9347
9348         * make/mutopia-rules.make: anti-alias-factor = 2
9349
9350         * scm/ps-to-png.scm (make-ps-images): cleanup multipage vs. single
9351         page switch.
9352
9353         * make/lilypond-vars.make (LILYPOND_BOOK_FLAGS): set
9354         anti-alias-factor for lilypond-book runs.
9355
9356         * scm/ps-to-png.scm (scale-down-image): new function.
9357         (my-system): new function.
9358         (make-ps-images): blow up GS resolution by anti-alias-factor,
9359         scale down image by anti-alias-factor.  This improves appearance
9360         of bitmaps
9361         (make-ps-images): remove showpage. Fixes spurious empty png at
9362         end.
9363
9364         * scm/framework-ps.scm (write-preamble): downcase filename before
9365         string-matching. Should fix .TTF files (as opposed to ttf files)  
9366
9367         * Documentation/user/tutorial.itely (Running LilyPond for the
9368         first time): separate subsections for windows, macos and unix.  
9369
9370         * Documentation/user/invoking.itely (Updating files with
9371         convert-ly): add MacOS X note.
9372
9373 2005-06-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9374
9375         * Documentation/user/introduction.itely (Engraving): don't include
9376         file optical-spacing, add directly.
9377
9378         * lily/paper-outputter.cc (file): open file in binary mode. This
9379         fixes OTF embedding on windows.
9380
9381 2005-06-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9382
9383         * scm/framework-ps.scm (write-preamble): remove debugging output.
9384
9385         * mf/aybabtu.pe.in (i): don't generate aybabtu.cff
9386
9387         * mf/GNUmakefile ($(outdir)/fonts.cache-1): create font cache for
9388         outdir.
9389         (install-fc-cache): install font cache in installation directories.
9390
9391 2005-06-17  Jan Nieuwenhuizen  <janneke@gnu.org>
9392
9393         * scm/editor.scm (editor-command-template-alist): Use char iso
9394         column, except for Emacs.
9395         (get-editor-command): Substitute char too (Bertalan Fodor).
9396
9397 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
9398
9399         * scm/ps-to-png.scm (make-ps-images): Use ~S instead of single
9400         quoted ~s.  This should fix PNG output on Windows; single quotes
9401         are regular characters on Windows.
9402
9403 2005-06-16  Graham Percival  <gperlist@shaw.ca>
9404
9405         * Documentation/user/basic-notation.itely: include ChoirStaff
9406         in System start delimiters.
9407
9408         * Documentation/user/putting.itely: new doc section on
9409         fixing overlapping notation.
9410
9411 2005-06-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9412
9413         * Documentation/user/global.itely (Paper size): \paper is in
9414         \book, not \score.
9415
9416         * make/mutopia-rules.make: -ddelete-intermediate-files
9417
9418         * ly/engraver-init.ly: make Staff default child of ChoirStaff.
9419
9420 2005-06-16  Jan Nieuwenhuizen  <janneke@gnu.org>
9421
9422         * ChangeLog: Recode utf-8.
9423
9424         * python/GNUmakefile (INSTALLATION_OUT_DIR): Install .so module in
9425         datadir with .py modules.
9426
9427 2005-06-15  Heikki Junes  <hjunes@cc.hut.fi>
9428
9429         * Documentation/user/basic-notation.itely (Ties): add tieDashed.
9430
9431 2005-06-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9432
9433         * make/mutopia-rules.make: switch off ps, p&c for lilypond runs.
9434         
9435         * scm/framework-ps.scm (write-preamble): remove status check.
9436
9437         * Documentation/user/invoking.itely (Updating files with
9438         convert-ly): remove -o option.
9439
9440         * VERSION (PACKAGE_NAME): release 2.5.31
9441
9442         * scm/framework-ps.scm (write-preamble): use ly:system.
9443         (write-preamble): verbosity.
9444
9445         * scripts/convert-ly.py: cleanup. Use lilylib. Use convertrules.
9446
9447         * python/convertrules.py: new file. Store conversion rules
9448         separately.
9449
9450 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9451
9452         * scm/backend-library.scm (postprocess-output): remove debugging gobs.
9453
9454 2005-06-14  Mats Bengtsson  <mabe@s3.kth.se>
9455
9456         * Documentation/topdocs/NEWS.tely (Top): Corrected name of
9457         \musicDisplay 
9458
9459         * Documentation/user/instrument-notation.itely (More stanzas): Add
9460         reference to StanzaNumber.
9461
9462 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9463
9464         * THANKS: separate section for website translators.
9465
9466 2005-06-14  Graham Percival  <gperlist@shaw.ca>
9467
9468         * Documentation/topdocs/INSTALL.texi: update vim info;
9469         thanks Simon Bailey!
9470
9471         * Documentation/user/advanced-notation.itely: included
9472         color names.
9473
9474         * Documentation/user/advanced-notation.itely,
9475         Documentation/usr/notation-appendices.itely: moved
9476         color names into an appendix.
9477
9478 2005-06-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9479         
9480         * lily/program-option.cc (LY_DEFINE): new function ly_add_option.
9481
9482         * scm/lily.scm (lambda): initialize program options from here.
9483
9484         * scm/framework-*.scm: add header info.
9485
9486         * lily/main.cc (parse_argv): only set output format to pdf if no
9487         other format specified.
9488
9489         * scm/backend-library.scm (postprocess-output): process
9490         'delete-intermediate-files after running convert-to-*. This fixes
9491         PNG generation when 'delete-intermediate-files is set.
9492         
9493 2005-06-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9494
9495         * buildscripts/mutopia-index.py (list_item): thinko. Fixes png
9496         links on website. 
9497
9498 2005-06-13  Graham Percival  <gperlist@shaw.ca>
9499
9500         * Documentation/topdocs/INSTALL.texi,
9501         Documentation/user/lilypond-book.itely: typos.
9502
9503 2005-06-12  Pal Benko  <benkop@freestart.hu>
9504
9505         * elisp/lilypond-mode.el (LilyPond-command-alist: 2PS): space
9506         added between program name and switch; -b changed to -f not
9507         to generate pdf
9508
9509 2005-06-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9510
9511         * elisp/lilypond-mode.el (LilyPond-command-alist): remove 2midi
9512         (LilyPond-command-alist): use -f ps (thanks to Pal Benko)
9513
9514         * input/sakura-sakura.ly: add \midi.
9515
9516         * buildscripts/mutopia-index.py (find): use /usr/bin/find
9517         iso. python find. 
9518
9519         * ttftool/test.c (main): cosmetics.
9520
9521         * ttftool/util.c (surely_lseek): use stdio FILE's for I/O 
9522
9523         * ttftool/test.c: new file. If compiled with -DTEST_TTFTOOL,
9524         create a ttf2ps binary.
9525
9526         * scm/ps-to-png.scm (make-ps-images): fix rename-page-1 functionality.
9527
9528         * scm/backend-library.scm (postscript->png): set rename-page-1 to
9529         true.
9530
9531 2005-06-11  Graham Percival <gperlist@shaw.ca>
9532
9533         * Documentation/user/lilypond-book.itely: add warning about
9534         the font warnings in dvips.
9535
9536 2005-06-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9537
9538         * THANKS: typo
9539
9540         * mf/GNUmakefile ($(outdir)/$(redhat-package)): Fedora-4 url.
9541
9542         * GNUmakefile.in: remove links for .map, .enc
9543         don't fail if out/ doesn't exist yet.
9544
9545 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9546
9547         * ttftool/util.c (surely_read): return nbytes
9548
9549         * stepmake/bin/text2html.py (txt2html): add utf-8 marker. 
9550
9551         * VERSION (PACKAGE_NAME): release 2.5.30
9552
9553         * flower/string-convert.cc (precision_string): >? fix.
9554
9555         * scm/ps-to-png.scm (make-ps-images): search-gs for multipage too.
9556         (make-ps-images): add verbose -q too.
9557
9558         * lily/default-actions.cc (Module): new file. default
9559         {book,score}-print functions.
9560
9561         * scm/ly-from-scheme.scm (ly:parse-string-result): use new setup:
9562         pass results via parseStringResult, lookup via ly:parser-lookup.  
9563
9564         * lily/lily-parser.cc (Lily_parser): only clone lexer in
9565         constructors.
9566         (parse_file): encapsulate do_yyparse() in scm_set_current_module()
9567         (parse_string): idem.
9568
9569         * ly/spanners-init.ly (assertBeamQuant): don't use #{ #} in init.
9570
9571         * lily/main.cc (main_with_guile): copy be_verbose_global into
9572         ly_set_option()
9573
9574 2005-06-10  Jan Nieuwenhuizen  <janneke@gnu.org>
9575
9576         * scm/backend-library.scm (postscript->pdf):
9577         * scm/ps-to-png.scm (make-ps-images): Do not use gs -q switch in
9578         verbose mode.  Search for several names of gs executable.
9579
9580 2005-06-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9581
9582         * lily/ly-module.cc (ly_make_anonymous_module): call make-module
9583         directly. This fixes a massive memory leak, provided you use CVS
9584         GUILE.
9585
9586 2005-06-10  Erik Sandberg  <ersa9195@student.uu.se>
9587
9588         * ly/property-init.ly: Added tieDashed.
9589
9590         * THANKS: Added some bughunters for 2.5.
9591
9592 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9593
9594         * lily/program-option.cc: add debug-gc option.
9595
9596         * lily/include/lily-guile-macros.hh: don't protect exported module
9597         objects.
9598
9599         * lily/include/lily-parser.hh (class Lily_parser): remove beam_check().
9600
9601         * scm/backend-library.scm (postscript->pdf): use
9602         delete-intermediate-files iso. running-from-gui? 
9603
9604         * ttftool/util.c (surely_read): robustness. Allow read() to return
9605         less bytes than requested, as per posix standards.
9606
9607         * lily/pfb.cc (LY_DEFINE): set ttf_verbosity from ttf-verbosity
9608         program option.
9609
9610         * ttftool/include/ttftool.h ("C"): rename verbosity to
9611         ttf_verbosity. Add to public interface.
9612
9613         * scm/music-functions.scm (unfold-repeats): remove debugging display.
9614
9615         * lily/program-option.cc: rename from scm-option.cc
9616
9617         * lily/scm-option.cc (LY_DEFINE): handle no-foobar option setting.
9618         (get_help_string): Print pretty help string.
9619
9620         * scripts/lilypond-book.py (PREAMBLE_LY): add no-point-and-click
9621         to snippet preamble.
9622
9623         * lily/scm-option.cc: remove command-line-settings option. Fold
9624         all command-line options plus default settings in a generic
9625         interface. 
9626
9627         * flower/getopt-long.cc (table_string): indent 2nd lines of help
9628         texts too.
9629
9630 2005-06-09  Jan Nieuwenhuizen  <janneke@gnu.org>
9631
9632         * flower/file-name.cc: Bugfix: only append DIRSEP if BASE_
9633         or EXT_ components non-empty.
9634
9635 2005-06-08  Jan Nieuwenhuizen  <janneke@gnu.org>
9636
9637         * scm/lily.scm (running-from-gui?): Export.
9638
9639         * lily/lily-parser-scheme.cc (ly:parse-file): Use it to generate
9640         output in .ly source directory.
9641
9642 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9643
9644         * ttftool/util.c (surely_lseek): more verbosity.
9645
9646         * lily/include/lily-proto.hh: add Context_def. This fixes FC4
9647         compile.
9648
9649         * lily/parser.yy (Repeated_music): remove >? 
9650
9651         * scm/backend-library.scm (postscript->pdf): Support for
9652         -dgs-font-load=1
9653
9654         * scm/framework-ps.scm (write-preamble): make font loading
9655         switchable to GS via --define-default gs-font-load=1
9656
9657 2005-06-09  Graham Percival  <gperlist@shaw.ca>
9658
9659         * Documentation/user/global.itely: added \layout docs.
9660
9661 2005-06-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9662
9663         * lily/lily-parser-scheme.cc: add unistd.h
9664
9665 2005-06-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9666
9667         * scm/editor.scm: add char argument.
9668
9669         * scripts/lilypond-invoke-editor.scm (dissect-uri): add char. 
9670
9671         * ttftool/util.c (syserror): use errno for better error reporting.
9672
9673         * lily/source-file.cc (get_counts): new function. Calc column,
9674         line and char count in one go.
9675
9676         * lily/binary-source-file.cc (quote_input): rename to quote_input
9677
9678         * lily/input.cc (set): new function.
9679
9680 2005-06-08  Jan Nieuwenhuizen  <janneke@gnu.org>
9681
9682         * flower/file-path.cc (find): Bugfix.  Append rather than prepend
9683         directory part of file name to search directory.
9684
9685         * lily/lily-parser-scheme.cc (ly:parse-file): Prepend cwd to
9686         search path and chdir to DIR if --outname=DIR used.
9687
9688         * lily/main.cc (prepend_env_path): Bugfix: Check directory
9689         existence before appending original path.
9690
9691 2005-06-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9692
9693         * ttftool/parse.c (readNamingTable): verbosity for "bad TTF
9694         file" massage.
9695
9696         * Documentation/user/GNUmakefile (TEXINPUTS): set TEXINPUTS so our
9697         texinfo.tex is always used.
9698         
9699 2005-06-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9700
9701         * flower/include/axis.hh: rename from axes.hh
9702
9703         * lily/include/text-interface.hh (Module): rename from text-item.hh
9704
9705         * VERSION (PATCH_LEVEL): release 2.5.29
9706
9707         * ttftool/parse.c (readNamingTable): handle Apple/8bit encoding too.
9708
9709         * scm/framework-ps.scm (font-file-as-ps-string): new function.
9710         (handle-macfont): new function. Call fondu for Native mac fonts.
9711
9712         * scm/define-markup-commands.scm (fill-line): handle text-widths =
9713         '() case.
9714
9715 2005-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
9716
9717         * scm/ps-to-png.scm (make-ps-images): Bugfix: `Pages: 1\n' is not
9718         multi-page.  Fix .eps regular expression.
9719
9720 2005-06-07  Graham Percival  <gperlist@shaw.ca>
9721
9722         * Documentation/user/putting.itely: add info on modifying templates.
9723
9724         * Documentation/user/lilypond.itely, converters.itely, invoking.itely:
9725         misc small changes.
9726
9727 2005-06-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9728
9729         * scm/ps-to-png.scm (make-ps-images): no paper size for multi-page.
9730
9731         * scripts/lilypond-ps2png.scm
9732
9733         * VERSION (PACKAGE_NAME): release 2.5.28
9734
9735 2005-06-07  Jan Nieuwenhuizen  <janneke@gnu.org>
9736
9737         * lily/main.cc (prepend_env_path): Do not append /, that does not
9738         work.  Localedir lives in datadir, not in prefix.
9739
9740         * scm/framework-ps.scm (write-preamble): Remove load-font-via-GS
9741         hack for windows.
9742
9743         * flower/include/file-cookie.hh: Compile fix.
9744
9745 2005-06-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9746
9747         * ly/engraver-init.ly: add \defaultchild to InnerStaffGroup. 
9748
9749         * scm/ps-to-png.scm (gulp-port): rename from read. Don't redefine
9750         system primitives.
9751         (gulp-port): using read-string!/partial. We don't want to read an
9752         entire PS file  (GUILE 1.6 limits strings to 16M) 
9753
9754         * scm/define-grobs.scm (all-grob-descriptions): remove arch-*
9755         properties. Add font-interface. 
9756
9757         * scm/define-grob-properties.scm (all-user-grob-properties):
9758         remove old bracket properties.
9759
9760         * scm/x11-color.scm: reformat. 
9761
9762         * lily/ledger-line-engraver.cc (acknowledge_grob): create new
9763         LedgerLineSpanner if new StaffSymbol is found. 
9764
9765         * lily/staff-symbol-engraver.cc (acknowledge_grob): also set
9766         staff-symbol for finishing staff. 
9767
9768         * lily/GNUmakefile (OUT_DIST_FILES): don't dist Flex output
9769
9770         * scm/output-svg.scm (setcolor): implement (re)setcolor with <g>
9771         change black to currentColor everywhere. This fixes color support
9772         in SVG.
9773
9774 2005-06-06  Carl Sorensen  <carldsorensen@comcast.net>
9775
9776         * input/regression/fret-diagrams.ly: new file to test fret diagram
9777         capability
9778
9779         * scm/output-tex.scm: remove white-dot and white-text
9780
9781         * scm/output-ps.scm: remove white-dot and white-text
9782
9783         * scm/fret-diagrams.scm (sans-serif-stencil-white): removed -- 
9784         using ly:stencil-in-color instead
9785         (draw-dots) : remove call to white-dot
9786
9787 2005-06-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9788
9789         * flower/memory-stream.cc (Memory_out_stream): remove fopencookie
9790         support.
9791
9792         * ttftool/ttfps.c: use lily_cookie functions everywhere. 
9793
9794         * flower/include/file-cookie.hh: new file. lily_cookie extension 
9795
9796         * flower/file-cookie.cc: new file. lily_cookie extension.
9797         
9798 2005-06-06  Jan Nieuwenhuizen  <janneke@gnu.org>
9799
9800         * scm/editor.scm (editor-command-template-alist): Add syn
9801         editor (Jaap [de Vos]).
9802
9803 2005-06-05  Jan Nieuwenhuizen  <janneke@gnu.org>
9804
9805         * scripts/lilypond-ps2png.scm:
9806         * scm/ps-to-png.scm: New file.
9807
9808         * scm/backend-library.scm (postscript->png): Use it.
9809
9810         * scripts/lilypond-ps-to-png.py: Remove file.
9811
9812         * python/lilylib.py (get_bbox, make_ps_images): Remove.
9813
9814 2005-06-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9815
9816         * lily/auto-beam-engraver.cc (acknowledge_grob): remove dead code.
9817
9818         * scm/auto-beam.scm (default-auto-beam-check): only forbid beam
9819         start on grace moment. Fixes autobeam-grace.ly.
9820
9821         * lily/auto-beam-engraver.cc (process_acknowledged_grobs): don't
9822         process anything unless we're at the end of a pending beam. Fixes
9823         syncopated 8ths beamed across a beat.
9824
9825 2005-06-03  Jan Nieuwenhuizen  <janneke@gnu.org>
9826
9827         * scm/editor.scm (editor-command-template-alist): Start emacs if
9828         emacslient fails.
9829
9830         * lily/main.cc (setup_localisation): Listen to LILYPOND_LOCALEDIR.
9831
9832         * flower/file-path.cc (is_file, is_dir): Export.
9833
9834         * lily/main.cc (prepend_env_path, set_env_file): Use them.
9835
9836 2005-06-02  Mats Bengtsson  <mabe@s3.kth.se>
9837
9838         * lily/easy-notation.cc: Added include cctype to correct
9839         compilation error.
9840
9841 2005-06-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9842
9843         * scm/backend-library.scm (postscript->pdf): set resolution to
9844         1200, so bitmap fonts aren't that ugly. 
9845
9846         * Documentation/topdocs/NEWS.tely (Top): add entry about font family.
9847
9848         * lily/dynamic-engraver.cc (acknowledge_grob): only center on
9849         parent if we have a notehead. Fixes incorrect offsets when
9850         Paper_column is very wide in the X direction.
9851
9852         * input/regression/font-family-override.ly (Module): new file.
9853
9854         * scm/font.scm (make-pango-font-tree): new function.
9855
9856         * lily/beam.cc (before_line_breaking): remove warning about less
9857         than 2 visible stems. We still get a warning when there is only
9858         one stem.
9859
9860 2005-06-01  Werner Lemberg  <wl@gnu.org>
9861
9862         * buildscripts/substitute-encoding.py: Handle PFAemmentaler-xx.pfa
9863         correctly.
9864
9865 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9866
9867         * lily/slur-scoring.cc (generate_avoid_offsets): new
9868         function. Generate avoid offsets once per slur.
9869
9870         * lily/slur.cc (add_extra_encompass): add dependency to
9871         extra-encompass object. This fixes bugs/c-phrasing-slur.ly
9872
9873         * lily/stencil.cc (is_empty): check dim_ field for is_empty()
9874         too. Fixes inf error with added bass notes.
9875
9876         * scripts/lilypond-book.py (do_options): --psfonts doesn't take
9877         argument anymore.
9878
9879         * make/ly-vars.make (DVIPS_FLAGS): use .psfonts as extension.
9880
9881         * input/tutorial/lbook-latex-test.tex: add line length test.
9882
9883         * scripts/lilypond-book.py (set_default_options): new
9884         function. Call this before dissecting snippets, so linewidth
9885         settings reach the snippets.
9886
9887 2005-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
9888
9889         * scm/lily.scm (PLATFORM, slashify): Remove double slashes.
9890
9891 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9892
9893         * input/mutopia/R.Schumann/romanze-op28-2.ly (leftb): bugfix.
9894
9895 2005-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
9896
9897         * stepmake/aclocal.m4: More autopackage friendliness.
9898
9899 2005-05-31  Graham Percival  <gperlist@shaw.ca>
9900
9901         * Documentation/index.html.in: remove link to LSR.
9902
9903         * Documentation/user/global.itely: remove duplicate
9904         "dedication" \header{} section.
9905
9906 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9907
9908         * VERSION (PACKAGE_NAME): release 2.5.27.
9909
9910         * lily/lily-parser-scheme.cc (LY_DEFINE): unprotect paper
9911         too. Plugs memory leak.
9912
9913         * make/lilypond.fedora.spec.in (Group): remove
9914         lilypond-pdfpc-helper.
9915
9916         * scripts/GNUmakefile (SEXECUTABLES): remove
9917         lilypond-pdfpc-helper. Use lilypond-invoke-editor instead.
9918
9919         * scm/font.scm (make-century-schoolbook-tree): add Mono as
9920         'typewriter family.
9921
9922         * lily/score.cc (Score): unprotect copy of Output_def. Plugs
9923         memory leak.
9924
9925         * lily/parser.yy (score_body): don't clone Score, that's done in
9926         Lily_lexer::try_special_identifiers(). This fixes a memory leak.
9927
9928         * lily/score-engraver.cc (derived_mark): new function.
9929         (initialize): unprotect Paper_score. This fixes a memory leak.
9930
9931         * lily/score-performer.cc (derived_mark): new function.
9932
9933         * lily/score-translator.cc (get_output): use SCM for get_output() call.
9934
9935         * stepmake/aclocal.m4: put FlexLexer.h test in conftest.cc. Fixes
9936         spurious warning.
9937
9938         * scm/font.scm (make-century-schoolbook-tree): use Sans for sans
9939         serif.
9940
9941 2005-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
9942
9943         * configure.in (reloc_b): Add --enable-relocation.
9944
9945 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9946
9947         * lily/pfb.cc (LY_DEFINE): show file name when loading PFB. 
9948
9949         * input/regression/alignment-order.ly: add Staff example.
9950
9951 2005-05-31  John Mandereau   <john.mandereau@free.fr>
9952
9953         * po/fr.po: update.
9954
9955 2005-05-31  Graham Percival  <gperlist@shaw.ca>
9956
9957         * Documentation/index.html.in: add link to LSR.
9958
9959 2005-05-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
9960
9961         * scm/define-stencil-commands.scm (Module): new file. Register all
9962         allowed stencil expression heads in a central place.
9963
9964         * lily/stencil-scheme.cc (LY_DEFINE): check is_stencil_head in
9965         ly:make-stencil
9966
9967         * lily/stencil-expression.cc (all_stencil_heads): registering
9968         stencil expressions.
9969
9970         * lily/stencil-interpret.cc: new file. Stencil expression
9971         interpreting.
9972
9973         * input/xiao-haizi-guai-guai.ly: move file back.
9974
9975 2005-05-30  Graham Percival  <gperlist@shaw.ca>
9976
9977         * Documentation/user/advanced.itely, converters.itely,
9978         instrument-notation.itely, lilypond-book.itely: misc small
9979         changes.
9980
9981 2005-05-30  Jan Nieuwenhuizen  <janneke@gnu.org>
9982
9983         * lily/lexer.ll: Skip UTF-8 BOM at BOF.
9984
9985         * make/lilypond.fedora.spec.in: Fix source url.
9986
9987         * cygwin: Update from mingw patches.
9988
9989         * scm/editor.scm (editor-command-template-alist): Use jedit
9990         -reuseview (Bertalan), add uedit (Patrick Huberts).
9991
9992         * input/xiao-hai-zi-guai-guai.ly: Rename from
9993         xiao-haizi-guai-guai.ly.
9994
9995         * input/*: Reindent, do not use TAB.
9996
9997         * Documentation/pictures/ly.xpm: Bugfix: do not anti-alias against
9998         white background.
9999
10000 2005-05-29  Jan Nieuwenhuizen  <janneke@gnu.org>
10001
10002         * scm/framework-ps.scm (dump-stencil-as-EPS): Add silly fix for
10003         numerical overflow error.
10004
10005 2005-05-29 Laura Conrad <lconrad@laymusic.org>
10006         
10007         * abc2ly.py: fix to syntax error in multi-part output.
10008
10009 2005-05-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10010
10011         * lily/span-bar.cc (print): sort bar line extents. Fixes problem
10012         with disappearing span bars when alignAboveContext is active
10013
10014         * lily/property-iterator.cc (check_grob): use is-grob?
10015         object-property. Fixes crash-key-sig-font-size.ly. 
10016
10017 2005-05-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10018
10019         * lily/bar-line.cc (print): don't round barlines; this produces
10020         odd aliasing effects in Acroread.
10021
10022         * lily/timing-engraver.cc (process_music): robustness fix.
10023
10024         * lily/context-def.cc (filter_engravers): bugfix.
10025
10026 2005-05-28  Jan Nieuwenhuizen  <janneke@gnu.org>
10027
10028         * lily/lilypond.rc.in: Add ly-icon.
10029
10030         * lily/GNUmakefile: 
10031         * Documentation/pictures/GNUmakefile (OUT_DIST_FILES): Add ly-icon
10032         rules.
10033
10034 2005-05-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10035
10036         * lily/stencil-scheme.cc (LY_DEFINE): ly:stencil-in-color
10037
10038         * ps/music-drawing-routines.ps: 
10039
10040         * scm/output-ps.scm: remove draw ez_ball.
10041
10042         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): remove
10043         EasyNotation context definition.
10044
10045         * lily/easy-notation.cc (brew_ez_stencil): new file. Use
10046         Text_interface and color for making easy note heads.
10047
10048         * lily/stencil.cc (with_color): new function.
10049
10050         * ps/music-drawing-routines.ps: remove draw_zigzag_line
10051
10052         * lily/line-spanner.cc (zigzag_stencil): rewrite to use draw-line
10053         output routine. Zigzag now works in SVG too.
10054
10055         * scm/output-tex.scm (filledbox): idem.
10056
10057         * scm/output-svg.scm (filledbox): idem.
10058
10059         * scm/output-ps.scm (lily-def): remove horizontal-line. 
10060
10061         * lily/lookup.cc (horizontal_line): use draw-line. 
10062
10063         * lily/system-start-delimiter.cc: remove old staff bracket code.
10064
10065         * mf/feta-haak.mf: further tweaks.
10066
10067         * lily/system-start-delimiter.cc (staff_bracket): use glyphs.
10068
10069         * mf/feta-generic.mf: include feta-haak.
10070
10071         * mf/feta-haak.mf: rewrite. Make separate glyphs for the tips 
10072
10073         * scm/framework-ps.scm (write-preamble): only load fonts if their
10074         filename is a string. 
10075
10076 2005-05-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10077
10078         * scm/output-svg.scm (circle): support circle.
10079         (bracket): stub for bracket.
10080
10081         * scripts/lilypond-book.py (main): make sure --psfonts warning is
10082         correct.
10083
10084 2005-05-26  Graham Percival  <gperlist@shaw.ca>
10085
10086         * Documentation/user/lilypond.tely, advanced-notation.itely,
10087         basic-notation.itely, instrument-notation.itely, global.itely,
10088         introduction.itely, tutorial.itely: rearranging, editing,
10089         clean-up.
10090
10091         * mf/GNUmakefile: change a "make -C" to "${MAKE} -C", required
10092         for compiling on FreeBSD.
10093
10094 2005-05-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10095
10096         * lily/pfb.cc (LY_DEFINE): progress indication for opening ttf and
10097         otf files.
10098
10099         * input/mutopia/E.Satie/petite-ouverture-a-danser.ly (lower):
10100         bugfixes.
10101
10102         * VERSION: 2.5.26 released.
10103
10104         * scm/titling.scm (marked-up-headfoot): revert Pedro's patch. 
10105
10106 2005-05-25  Pedro Kroger  <kroeger@pedrokroeger.net>
10107
10108         * scm/titling.scm (marked-up-headfoot): doesn't print pagenumbers
10109         if printpagenumber is false.
10110
10111 2005-05-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10112
10113         * lily/font-config.cc (init_fontconfig): comment out FontConfig
10114         cache warning.
10115
10116         * lily/tie.cc (print): support dotted ties.
10117         
10118 2005-05-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10119
10120         * scm/define-grobs.scm (all-grob-descriptions): switch off
10121         debugging
10122         (all-grob-descriptions): Arpeggio has Y-extent.
10123
10124         * scm/define-music-properties.scm (all-music-properties): document
10125         length-callback and start-callback as "read-only".
10126
10127         * scm/music-functions.scm (unfold-repeats): rewrite. Cannot set
10128         length-callback after creation. 
10129
10130         * scripts/convert-ly.py (conv): unfoldrepeats -> unfoldRepeats,
10131         compressmusic -> compressMusic.
10132
10133         * ly/music-functions-init.ly (oldaddlyrics): idem.
10134
10135         * lily/parser.yy: NewLyricCombineMusic ->
10136         LyricCombineMusic. LyricCombineMusic -> OldLyricCombineMusic.
10137
10138 2005-05-24  Pedro Kroger  <kroeger@pedrokroeger.net>
10139
10140         * ly/Welcome_to_LilyPond.ly: typo.
10141
10142 2005-05-24  Graham Percival  <gperlist@shaw.ca>
10143
10144         * Documentation/user/lilypond.tely: move changing-defaults to be
10145         before global issues.
10146
10147         * Documentation/user/basic-notation.itely: move Transpose section
10148         here from advanced/Other.
10149
10150         * Documentation/user/changing-defaults.itely,
10151         advanced-notation.itely: move Fonts to advanced, edit.
10152
10153 2005-05-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10154
10155         * lily/parser.yy (bare_int): remove rule.  From now on, we require
10156         # before negative integers.
10157
10158 2005-05-23  Graham Percival  <gperlist@shaw.ca>
10159
10160         * ly/property.ly: Update tieDotted to have the same form as slurDotted.
10161
10162         * Documentation/user/lilypond.tely: change Unified index to
10163         LilyPond index.
10164
10165         * Documentation/user/advanced-notation.itely,
10166         instrument-notation.itely: editing.
10167
10168 2005-05-23  Jan Nieuwenhuizen  <janneke@gnu.org>
10169
10170         * scm/lily.scm (lilypond-all): Bugfix: return failed.
10171
10172         * lily/main.cc (setup_paths)[__MINGW32__]: Normalize LILYPONDPREFIX.
10173
10174 2005-05-21  Jan Nieuwenhuizen  <janneke@gnu.org>
10175
10176         * lily/general-scheme.cc (ly:stderr-redirect): Rename from
10177         ly:port-move.  Needs to be stderr-specific on mingw.
10178         Run fixcc.
10179
10180 2005-05-20  Jan Nieuwenhuizen  <janneke@gnu.org>
10181
10182         * lily/general-scheme.cc (ly:port-move): Remove.
10183
10184         * scm/backend-library.scm (postscript->pdf): Remove -dSAFER in
10185         windows.
10186
10187         * lily/main.cc (setup_paths) [ARGV0_RELOCATION]: Reinstate GS_*
10188         variables.  This eliminates the need for a gs.bat wrapper, which
10189         opens a console.
10190
10191         * scripts/lilypond-invoke-editor.scm (running-from-gui?): 
10192         * scm/lily.scm (running-from-gui?): 
10193         * lily/main.cc[MINGW]: Remove isatty inversion, this is an
10194         artifact of not compiling with -mwindows.
10195
10196         * scm/editor.scm: Define PLATFORM.
10197
10198 2005-05-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10199
10200         * scripts/lilypond-book.py (PREAMBLE_LY): add marker, where people
10201         can start to cut & paste lilypond-book fragments.  
10202
10203         * scm/define-music-types.scm (music-descriptions): remove
10204         UntransposableMusic
10205
10206 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10207
10208         * scm/output-ps.scm (glyph-string): remove / before CIDs.
10209
10210 2005-05-20  Graham Percival  <gperlist@shaw.ca>
10211
10212         * Documentation/user/instrument-notation.itely: remove *Engraver.
10213
10214         * Documentation/user/advanced-notation.itely: edit, rearrange.
10215
10216 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10217
10218         * scm/output-ps.scm (glyph-string): take cid? argument. Use
10219         findresource iso. findfont for CID CFF fonts.
10220
10221         * VERSION (PACKAGE_NAME): release 2.5.25
10222
10223         * ly/Welcome_to_LilyPond.ly: add  \version
10224
10225 2005-05-20  Graham Percival  <gperlist@shaw.ca>
10226
10227         * Documentation/user/programming-interface.itely: move
10228         \displayMusic into its own section.
10229
10230         * Documentation/user/basic-notation.itely: finish editing.
10231
10232 2005-05-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10233
10234         * flower/file-path.cc (find): don't throw away file_name.dir, but
10235         append to it. Fixes \include with directories.
10236
10237         * flower/include/file-path.hh (class File_path): don't derive from
10238         Array<String>.
10239
10240         * flower/include/file-name.hh (class File_name): remove to_str0()
10241
10242         * lily/hara-kiri-engraver.cc (acknowledge_grob): split
10243         Hara_kiri_engraver in separate file.
10244
10245         * lily/slur-configuration.cc (score_encompass): oops, <? to min()
10246         translation went wrong. Fixes vertically translated slurs.
10247
10248 2005-05-19  Graham Percival  <gperlist@shaw.ca>
10249
10250         * Documentation/user/basic-notaton.itely: editing.
10251
10252 2005-05-18  Graham Percival  <gperlist@shaw.ca>
10253
10254         * Documentation/user/macros.itexi, basic-notation.itely:
10255         add @commonprop (commonly used properties) macro.
10256
10257 2005-05-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10258
10259         * ly/Welcome_to_LilyPond.ly: talk about icon, not program.
10260
10261         * scripts/lilypond-book.py (invokes_lilypond): new function
10262         (main): only run fontextract if invokes_lilypond() is true.
10263
10264         * lily/function-documentation.cc (ly_add_function_documentation):
10265         duh, use !=
10266
10267         * Documentation/topdocs/INSTALL.texi (Top): add MacOS command.
10268
10269         * stepmake/aclocal.m4: remove kpathsea warning, change to OPTIONAL.
10270
10271         * scm/lily.scm (running-from-gui?): lowercase Darwin.
10272
10273         * lily/function-documentation.cc (ly_add_function_documentation):
10274         use scm_hash_table_p() for checking.
10275
10276 2005-05-18  Jan Nieuwenhuizen  <janneke@gnu.org>
10277
10278         * Documentation/user/advanced-notation.itely (Text scripts):
10279         Change nonexisting @internalsref{Text markup} to @ref{Text
10280         markup}.  Change @internalsref{Text script} to
10281         @internalsref{TextScript}.
10282
10283         * lily/main.cc (setup_paths): Bugfix: pangorc is not pango.modules.
10284
10285 2005-05-17  Graham Percival  <gperlist@shaw.ca>
10286
10287         * Documentation/user/tutorial.itely, basic-notation.itely,
10288         changing-defaults.itely: remove duplicate cindex entries
10289         that appear on the same page.
10290
10291         * scm/define-grobs.scm: change default padding for TextSpanner.
10292
10293         * Documentation/topdocs/AUTHORS.texi: update email address.
10294
10295         * Documentation/user/global.itely: add info about \include.
10296
10297 2005-05-17  Jan Nieuwenhuizen  <janneke@gnu.org>
10298
10299         * scm/backend-library.scm (postscript->pdf): Remove (useless) .ps
10300         when running-from-gui.
10301
10302         * scm/editor.scm (get-editor): Add platform defaults.
10303
10304         * scm/backend-library.scm (postscript->pdf): Typo.
10305
10306 2005-05-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10307
10308         * scm/lily.scm (running-from-gui?): Darwin never runs from GUI.
10309
10310         * lily/font-config.cc (init_fontconfig): add warning about cache.
10311
10312 2005-05-16  Jan Nieuwenhuizen  <janneke@gnu.org>
10313
10314         * lily/main.cc (setup_paths)[ARGV0_RELOCATION]: Remove GS_*.
10315
10316 2005-05-16  Mats Bengtsson  <mabe@s3.kth.se>
10317
10318         * lily/horizontal-bracket.cc (print): Take care of the direction
10319         property so brackets above the stave point downwards. 
10320
10321         * scm/define-grobs.scm (all-grob-descriptions): Set staff-padding
10322         for HorizontalBracket so it doesn't end up within the stave.
10323
10324 2005-05-16  Jan Nieuwenhuizen  <janneke@gnu.org>
10325
10326         * lily/GNUmakefile (default): Typo.
10327
10328         * scm/lily.scm (PLATFORM): Export.
10329
10330         * scm/framework-ps.scm (write-preamble)[MINGW]: Use
10331         load-font-via-GS, ttftool or fopencookie is broken on windows.
10332         
10333         * scm/backend-library.scm (postscript->pdf)[MINGW]: Do not use
10334         -dSAFER, that is broken on windows.
10335
10336 2005-05-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10337
10338         * lily/GNUmakefile ($(outdir)/FlexLexer.h): conditional dependency
10339         for FlexLexer.h
10340
10341         * scripts/lilypond-invoke-editor.scm: remove stray -
10342
10343 2005-05-15  Jan Nieuwenhuizen  <janneke@gnu.org>
10344
10345         * lily/lily-guile.cc (ly_scm2newstr): Use scm_i_string_length.
10346         Fixes deprecation warning.
10347
10348         * flower/include/string.icc (to_string): Only inline if
10349         -DSTRING_UTILS_INLINED.
10350
10351         * lily/pango-font.cc (pango_item_string_stencil): Normalize file
10352         name.  Remove windows comment.
10353
10354         * scm/editor.scm (slashify): New function.
10355         (get-editor-command): Use it.
10356         (get-command-template): Do not alter editor command if
10357         environment value includes `%(file)s' magic.
10358
10359         * scripts/lilypond-invoke-editor.scm (unquote-uri): New function.
10360         (dissect-uri): Use it.
10361         (unquote-uri): Bugfix.
10362
10363 2005-05-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10364
10365         * scm/framework-ps.scm (write-preamble): add TTF rule.
10366
10367         * Documentation/topdocs/README.texi (Top): remove note about
10368         xdelta.
10369
10370         * Documentation/topdocs/INSTALL.texi (Top): remove Flex
10371         requirement.
10372
10373         * stepmake/aclocal.m4: STEPMAKE_FLEXLEXER_LOCATION: new
10374         function. Figure out where FlexLexer.h lives
10375
10376         * lily/GNUmakefile (OUT_DIST_FILES): dist lexer.cc and FlexLexer.h
10377         
10378 2005-05-14  Jan Nieuwenhuizen  <janneke@gnu.org>
10379
10380         * scripts/lilypond-invoke-editor.scm (dissect-uri): Handle URIs
10381         with Windows root in file name.
10382
10383         * scm/backend-library.scm (ly:system): Only redirect output (using
10384         system and shell, ugh) if /dev/null is writable.
10385
10386         * Documentation/pictures/GNUmakefile [PLATFORM_WINDOWS]: Build
10387         windows icon.
10388
10389         * scm/lily.scm (is-absolute?): New function.  Fixes absolute files
10390         on Mingw.
10391
10392         * scm/output-ps.scm (grob-cause): Use it.  Fixes PDF point and
10393         click.
10394
10395         * flower/file-path.cc (is_dir, is_file): New function.  Actually
10396         use result of stat when available.
10397
10398         * flower/file-path.cc (find): Use it.  Refactor.  Fixes Mingw,
10399         absolute file name and root.
10400
10401         * scm/lily.scm (PLATFORM): On mingw, slashify getcwd.
10402
10403         * scm/editor.scm (get-editor-command): Typo: do not apply editor.
10404
10405         * flower/file-name.cc (slashify): Bugfix, do substitute if no
10406         slashes in file name.
10407
10408 2005-05-13  Jan Nieuwenhuizen  <janneke@gnu.org>
10409
10410         * Documentation/user/preface.itely (Preface): Run
10411         texinfo-all-menus-update.
10412
10413         * scm/editor.scm (get-editor-command): Bugfix: allow full
10414         LYEDITOR setting, partial XEDITOR setting.  With typo fix.
10415
10416         * Documentation/pictures/lilypond-48.xpm: New file.
10417
10418         * flower/file-path.cc (to_string): Bugfix: use PATHSEP.
10419
10420         * ly/Welcome_to_LilyPond.ly: New file.
10421
10422         * lily/main.cc (main): Only identify if we have a terminal.
10423
10424         * scm/backend-library.scm (postscript->png)
10425         (postscript->pdf): Fix file name quoting for GS/MINGW (ie,
10426         non-/bin/sh).
10427
10428 2005-05-13  Heikki Junes  <hjunes@cc.hut.fi>
10429
10430         * Documentation/topdocs/AUTHORS.texi: polish, update.
10431
10432 2005-05-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10433
10434         * Documentation/user/preface.itely (Notes for version 2.6): new
10435         notes for 2.6
10436
10437         * lily/dynamic-engraver.cc (stop_translation_timestep): first set
10438         finished_span_, then call typeset_all(). Fixes spurious "Hairpin
10439         is not fully contained" warnings.
10440
10441         * lily/slur-scoring.cc (get_bound_info): remove warning.
10442
10443         * lily/staff-symbol-engraver.cc (process_music): start initial
10444         spanner in process_music(). This fixes overrides of StaffSymbol
10445         properties.
10446
10447         * scm/framework-pdf.scm (Module): remove.
10448
10449         * Documentation/topdocs/AUTHORS.texi (AUTHORS): clean up, update.
10450
10451         * lily/ambitus-engraver.cc: formatting cleanups.
10452
10453         * mf/feta-solfa.mf (Module): remove.
10454
10455         * ChangeLog: more details about contributions.
10456
10457 2005-05-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10458
10459         * lily/align-interface.cc (align_elements_to_extents): warn if
10460         called too early. Fixes: disappearing-staff-lines.ly
10461
10462         * VERSION (PACKAGE_NAME): release 2.5.24
10463
10464 2005-05-12  Jan Nieuwenhuizen  <janneke@gnu.org>
10465
10466         * stepmake/aclocal.m4: Typo.
10467
10468         * flower/string.cc (substitute): Take two strings or two
10469         characters.  Update callers.
10470
10471 2005-05-11  Jan Nieuwenhuizen  <janneke@gnu.org>
10472
10473         * flower/file-name.cc (File_name): Slashify.
10474
10475         * scm/lily.scm: Use gui-main iso lilypond-main on MINGW.
10476
10477         * scripts/GNUmakefile (SEXECUTABLES): Add lilypond-invoke-editor.
10478
10479         * stepmake/aclocal.m4 (STEPMAKE_WINDOWS): New function.
10480
10481         * configure.in (gui_b): Use it.
10482
10483         * lily/lilypond.rc.in: New file.
10484
10485         * lily/GNUmakefile[PLATFROM_WINDOWS]: Compile it into executable.
10486
10487 2005-05-12  Graham Percival  <gperlist@shaw.ca>
10488
10489         * Documentation/user/advanced-notation.itely: edit of Text
10490         section; clarify text scripts vs. text markup.
10491
10492 2005-05-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10493
10494         * lily/multi-measure-rest-engraver.cc
10495         (Multi_measure_rest_engraver): init bar_seen_ to true. Notice
10496         separation items on start. Fixes mm rests in start of score.
10497
10498         * lily/slur-scoring.cc (move_away_from_staffline): robustness,
10499         don't access StaffSymbol if not there.
10500         Fixes: crash-staff-symbol-engraver.ly.
10501
10502         * lily/instrument-name-engraver.cc (class
10503         Instrument_name_engraver): data member first_. Create
10504         InstrumentName on start. 
10505
10506 2005-05-12  Graham Percival  <gperlist@shaw.ca>
10507
10508         * Documentation/user/instrument-notation.itely: add guitar
10509         position.
10510
10511         * Documentation/user/introduction.itely,
10512         Documentation/user/lilypond.tely,
10513         Documentation/user/tutorial.itely: begin pruning
10514         unused (duplicated) cindex entries and misc cleanup.
10515
10516 2005-05-12  Mats Bengtsson  <mabe@s3.kth.se>
10517
10518         * input/test/volta-chord-names.ly: Bring the explanation up to
10519         date.
10520
10521 2005-05-11  Heikki Junes  <hjunes@cc.hut.fi>
10522
10523         * Documentation/topdocs/{AUTHORS.texi,INSTALL.texi,README.texi}:
10524         Specify `@documentencoding utf-8' for html, ignore warnings.
10525
10526 2005-05-11  Erik Sandberg  <ersa9195@student.uu.se>
10527
10528         * THANKS: Added bughunters.
10529
10530 2005-05-11  Heikki Junes  <hjunes@cc.hut.fi>
10531
10532         * lily/main.cc: update help string for `lilypond -H'.
10533
10534         * po/fi.po: update.
10535         
10536 2005-05-10  Graham Percival  <gperlist@shaw.ca>
10537
10538         * Documentation/user/advanced-notation.itely: minor fixes.
10539
10540 2005-05-10  Jan Nieuwenhuizen  <janneke@gnu.org>
10541
10542         * scm/editor.scm: New module.
10543
10544         * scm/lily.scm (gui-main): Use it.
10545
10546         * scm/framework-gnome.scm (spawn-editor): Use it.
10547
10548         * scripts/lilypond-invoke-editor.scm: Use it in new script.
10549
10550 2005-05-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10551
10552         * scm/framework-ps.scm (load-font-via-GS):  new function.
10553
10554         * lily/pango-font.cc (pango_item_string_stencil): add support for
10555         CID keyed font.
10556
10557         * scm/output-ps.scm (glyph-string): add support for CID keyed font.
10558
10559 2005-05-10  Graham Percival  <gperlist@shaw.ca>
10560
10561         * Documentation/user/basic-notation.itely: add @ref.
10562
10563         * Documentation/user/advanced-notation.itely: add example
10564         of 5/8 beaming.
10565
10566 2005-05-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10567
10568         * scripts/lilypond-pdfpc-helper.py (ly_pc_editor): robustness fixes.
10569
10570         * scm/backend-library.scm (postscript->pdf): Invoke gs instead of
10571         going through ps2pdf wrappers.
10572
10573 2005-05-09  Jürgen Reuter  <reuter@ipd.uka.de>
10574
10575         * Documentation/user/instrument-notation.itely: petrucci note
10576         heads: updated docu
10577
10578         * input/regression/note-head-style.ly: updated regression test;
10579         indentation fixes
10580
10581         * ly/engraver-init.ly: MensuralVoiceContext: use petrucci note
10582         heads as default
10583
10584         * mf/parmesan-heads.mf: minor editing; use musicological names
10585         (rather than optical description) as note head names
10586
10587         * scm/output-lib.scm: complete petrucci heads
10588
10589 2005-05-09  Pal Benko  <benkop@freestart.hu>
10590
10591         * mf/parmesan-heads.mf: add petrucci heads (like neo-mensural
10592         heads, but bigger)
10593
10594 2005-05-09  Jan Nieuwenhuizen  <janneke@gnu.org>
10595
10596         * lily/main.cc (main_with_guile): Remove no files check.
10597
10598         * lily/main.cc (ly:usage): Export to Scheme.
10599
10600         * scm/lily.scm (no-files-handler): New function.
10601
10602         * scm/lily.scm (lilypond-main): Use it.
10603
10604         * configure.in (gui_b): Add mbrtowc checking.
10605         Resurrect [utf8/]wchar.h checking.
10606
10607 2005-05-09  Mats Bengtsson  <mabe@s3.kth.se>
10608
10609         * Documentation/user/advanced-notation.itely (Metronome marks):
10610         Add link to the program reference for MetronomeMark
10611
10612         * Documentation/user/lilypond-book.itely (An example of a
10613         musicological document): Correct the example using psfonts 
10614
10615 2005-05-09  Heikki Junes  <hjunes@cc.hut.fi>
10616
10617         * po/fi.po: update after a lesson how to update entries against
10618         source.
10619         
10620         * po/TODO: document the lesson.
10621
10622 2005-05-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10623
10624         * configure.in (gui_b): remove wcrtomb checking.
10625
10626         * lily/general-scheme.cc (LY_DEFINE): hand-convert utf8 to 32
10627         bits. Patch by Matthias Neeracher. <neeracher@mac.com>
10628
10629 2005-05-09  Mats Bengtsson  <mabe@s3.kth.se>
10630
10631         * scripts/convert-ly.py: In the conversion to version 1.9.0, 
10632         keep Scheme expressions and strings unmodified when doing the
10633         conversion to postfix notation for slurs and beams. Should
10634         hopefully solve most related conversion problems. 
10635
10636         * Documentation/user/lilypond-book.itely : Clarify and correct how
10637         to call dvips with -h psfonts.
10638
10639 2005-05-09  Jan Nieuwenhuizen  <janneke@gnu.org>
10640
10641         * Documentation/user/instrument-notation.itely (Entering lyrics):
10642         Typo.  Fixes build.
10643
10644 2005-05-09  Graham Percival  <gperlist@shaw.ca>
10645
10646         * Documentation/user/lilypond-book.itely: document PSFONTS file.
10647
10648         * Documentation/user/lilypond.tely, lilypond-book.itely,
10649         tutorial.itely: change references to 2.5.x to 2.6.x.
10650
10651         * Documentation/user/instrument-notation.itely: clarified \addlyrics
10652         vs \lyricmode.
10653
10654         * Documentation/user/invoking.itely: remove old info about
10655         lilypond-profile.
10656
10657         * Documentation/topdocs/INSTALL.texi: remove old info about
10658         lilypond-profile, add warning about needing international fonts
10659         to build docs.
10660
10661 2005-05-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10662
10663         * lily/include/grob-info.hh (class Grob_info): make data member
10664         private. Changes throughout.
10665
10666         * input/regression/alignment-order.ly: new file. 
10667
10668         * lily/vertical-align-engraver.cc (acknowledge_grob): read
10669         alignAboveContext and alignBelowContext
10670
10671 2005-05-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10672
10673         * lily/pfb.cc (LY_DEFINE): add cast.
10674
10675         * scm/framework-ps.scm (write-preamble): embed CFFs if file name
10676         matches .otf
10677         (write-preamble): warn about unknown fonts.
10678
10679         * lily/pfb.cc (Module): new function ly:otf->cff
10680
10681         * lily/open-type-font.cc (get_otf_table): use ::get_otf_table
10682         (get_otf_table): new function.
10683
10684 2005-05-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10685
10686         * scm/backend-library.scm (postscript->png): call lilypond-ps2png
10687         iso. ps2png.
10688
10689 2005-05-06  Heikki Junes  <hjunes@cc.hut.fi>
10690
10691         * po/fi.po: apply second round of update.
10692
10693 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10694
10695         * scm/x11-color.scm (make-x11-color-handler): don't use
10696         #\sp. Apparently doesn't work on all platforms. 
10697
10698 2005-05-06  Graham Percival  <gperlist@shaw.ca>
10699
10700         * Documentation/user/advanced-notation.itely, putting.itely,
10701         tutorial.itely, global.itely, introduction.itely: really minor fixes.
10702
10703 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10704
10705         * VERSION (PACKAGE_NAME): release 2.5.23
10706
10707 2005-05-06  Jan Nieuwenhuizen  <janneke@gnu.org>
10708
10709         * Documentation/topdocs/AUTHORS.texi: Remove texinfo @accents,
10710         convert to utf-8.
10711
10712         * THANKS: Add translators for this release, convert to utf-8.
10713
10714         * mf/GNUmakefile (MFTRACE_FLAGS):
10715         * buildscripts/substitute-encoding.py (outdir): Build fix: pass
10716         outdir as option (WAS: hardcoded).
10717
10718 2005-05-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10719
10720         * lily/staff-symbol-engraver.cc (Staff_symbol_engraver): init
10721         finished_span_
10722
10723         * THANKS: add Hans Forbrich.
10724
10725         * Documentation/topdocs/NEWS.tely (Top): document new feature.
10726
10727         * Documentation/user/basic-notation.itely (Staff symbol): document
10728         start/stop staff. Reference to ossia.ly
10729
10730         * input/test/ossia.ly: new example using stop and startStaff.
10731
10732         * lily/timing-engraver.cc: remove Timing_engraver::initialize(),
10733         in other words, don't create "|" barline at start of the score.
10734         (start_translation_timestep): don't set whichBar for start of score.
10735
10736         * input/regression/staff-halfway.ly: use new functionality.
10737
10738         * lily/staff-symbol-engraver.cc (try_music): take StaffSpanEvents,
10739         start and stop staff based on events.
10740
10741         * scm/define-music-types.scm (music-descriptions): add StaffSpanEvent
10742
10743         * ly/declarations-init.ly (startStaff, stopStaff): new identifiers.
10744
10745 2005-05-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10746
10747         * Documentation/user/programming-interface.itely (How markups work
10748         internally ): remove \encoding reference.
10749
10750 2005-05-04  Mats Bengtsson  <mabe@s3.kth.se>
10751
10752         * scripts/convert-ly.py: Attempt to do a smarter update of 
10753         text markups from versions < 1.9.0 with arbitrary nesting.
10754
10755 2005-05-04  Heikki Junes  <hjunes@cc.hut.fi>
10756
10757         * po/fi.po: convert to utf-8, and update.
10758
10759 2005-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10760
10761         * make/lilypond.suse.spec.in: update from suse 2.4 package.
10762
10763         * lily/*.cc: more <? >? to min/max changes
10764
10765         * lily/include/interpretation-context-handle.hh: rename
10766         Interpretation_context_handle to Context_handle.
10767
10768 2005-05-04  Heikki Junes  <hjunes@cc.hut.fi>
10769
10770         * input/regression/GNUmakefile (local_delete): use `find` together 
10771         with `xargs` to avoid too long argument-lists in cmd line.
10772
10773 2005-05-04  Graham Percival  <gperlist@shaw.ca>
10774
10775         * Documentation/user/introduction.itely: updates "About this manual".
10776
10777         * Documentation/user/advanced-notation.itely,
10778         invoking.itely: minor fixes.
10779
10780 2005-05-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10781
10782         * COPYING: add font exception. Update FSF address. 
10783
10784         * lily/context-def.cc (path_to_acceptable_context): bugfix, depth
10785         should be taken without child context.
10786
10787         * ly/chord-modifiers-init.ly (blackTriangleMarkup): use it.
10788
10789         * scm/define-markup-commands.scm (triangle): new command, as
10790         robust replacement for unicode Delta/Triangle.
10791
10792 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10793
10794         * ps/music-drawing-routines.ps: add fillp argument.
10795
10796         * lily/lookup.cc (round_filled_polygon): polygon takes filled? argument
10797
10798         * lily/font-config.cc (init_fontconfig): don't add cff/
10799
10800         * VERSION (PACKAGE_NAME): release 2.5.22
10801
10802         * mf/GNUmakefile: remove cff/cff.ps/.map install rules.
10803
10804         * lily/grace-engraver.cc (consider_change_grace_settings): use
10805         is_alias(). Fixes problem with CueVoice grace notes. 
10806
10807         * lily/simultaneous-music-iterator.cc (construct_children): call
10808         Music_iterator::quit() for iterators that start out invalid. This
10809         fixes indefinitely continuing contexts.
10810
10811         * buildscripts/substitute-encoding.py: new file
10812
10813         * Documentation/user/basic-notation.itely (Basic polyphony): fix
10814         missing @end 
10815
10816         * scripts/lilypond-book.py (write_if_updated): print file name.
10817
10818         * Documentation/user/basic-notation.itely (Explicitly
10819         instantiating voices): idem.
10820
10821         * Documentation/user/advanced-notation.itely (Text spanners):
10822         remove stray { } 
10823
10824         * lily/context.cc (default_child_context_name): the default child
10825         is now first in accepts_list_.
10826
10827         * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
10828         \defaultchild to all relevant contexts.  This fixes:
10829         drums-pitch.ly.
10830
10831         (Probably also fixes similar problems with ancient
10832         transcriptions getting CueVoices instead of the desired voices.)
10833  
10834         * lily/context-def.cc (get_default_child): new function.
10835         (get_accepted): place default child in front of list.
10836
10837         * lily/parser.yy (FIXME): add DEFAULTCHILD token.
10838
10839         * lily/include/context-def.hh (struct Context_def): add
10840         default_accept_
10841
10842 2005-05-03  Graham Percival  <gperlist@shaw.ca>
10843
10844         * scm/define-grobs.scm: remove "remove-first" line, since
10845         the absent property is set to #f anyway.
10846
10847         * Documentation/user/basic-notation.itely,
10848         advanced-notation.itely, instrument-notation.itely: minor
10849         fixes.
10850
10851         * ly/property-init.ly: add textSpanner{Up,Down,Neutral}.
10852
10853         * Documentation/user/advanced-notation.itely,
10854         changing-defaults.itely: consolidate Text stuff in
10855         advanced notation.
10856
10857         * Documentation/user/global.itely: better docs for \header.
10858
10859         * Documentation/user/putting.itely: new chapter; placeholder
10860         for future expansion.
10861
10862         * Documentation/user/examples.itely: moved "suggestions for
10863         writing LP files" section into putting.itely.
10864
10865         * Documentation/user/lilypond.itely: added new chapter,
10866         fixed the short table of contents.
10867
10868 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10869
10870         * lily/beam-quanting.cc (quanting): robustness fix, don't produce
10871         infinity for unfeasible beams.
10872
10873         * make/lilypond.fedora.spec.in (Group): idem.
10874
10875         * scripts/GNUmakefile (SEXECUTABLES): rename ps2png to lilypond-ps2png
10876
10877         * mf/GNUmakefile (ALL_GEN_FILES): remove .map
10878
10879         * scm/framework-ps.scm (write-preamble): extract CFF from OTF
10880         fonts directly.
10881
10882         * buildscripts/gen-emmentaler-scripts.py (i): idem.
10883
10884         * mf/GNUmakefile: remove all CFF rules.
10885
10886         * scm/framework-ps.scm (ps-embed-cff): reinstate.
10887
10888         * lily/open-type-font-scheme.cc (LY_DEFINE):
10889         new function ly:otf-font-table-data.
10890         (LY_DEFINE): new function otf-font?
10891
10892 2005-05-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10893
10894         * mf/GNUmakefile ($(outdir)/lilypond.map): remove rule.
10895         ($(outdir)/Fontmap.lily): idem.
10896
10897         * buildscripts/gen-emmentaler-scripts.py (i): load fetaXX encoding
10898         for PFAEmmentaler-XXX.pfa. 
10899
10900         * Documentation/user/music-glossary.tely (accidental): NL
10901         translation of accidental.
10902
10903 2005-05-02  Jan Nieuwenhuizen  <janneke@gnu.org>
10904
10905         * flower/include/international.hh: Bugfix: include "string.hh".
10906
10907         * lily/include/mingw-compatibility.hh: New file.
10908
10909         * flower/include/libc-extension.hh (memrev): Rename from strrev.
10910
10911         * configure.in: Search for mingw wcrtomb library.
10912
10913 2005-05-02  Mats Bengtsson  <mabe@s3.kth.se>
10914
10915         * scripts/convert-ly.py: Bug fix
10916
10917         * Documentation/user/changing-defaults.itely (Common tweaks):
10918         Added example where the context has to be specified explicitly
10919         (MetronomeMark). 
10920
10921 2005-05-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10922
10923         * scripts/lilypond-book.py (ly_options): set timing to #f for
10924         notime option.
10925
10926         * scripts/convert-ly.py (conv): typo.
10927
10928         * flower/*.cc: remove <? and >?
10929         
10930         * lily/*.cc: remove <? and >?
10931
10932         * lily/tweak-registration.cc (insert_tweak_from_file): Make sure
10933         that 0x0 isn't passed into scm_cons(). Fixes crash with tweak
10934         editor.
10935
10936 2005-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10937
10938         * lily/part-combine-engraver.cc: add space to variable list.
10939
10940 2005-04-30  Graham Percival  <gperlist@shaw.ca>
10941
10942         * scm/define-grobs.scm: changed RemoveEmptyVerticalGroup's
10943         remove-first to false (matches docs)
10944
10945         * Documentation/user/advanced-notation.itely: corrected docs
10946         concerning remove-first.
10947
10948 2005-04-29  Mats Bengtsson  <mabe@s3.kth.se>
10949
10950         * lily/part-combine-engraver.cc: make sure that the relevant
10951         properties are included in the documentation.
10952
10953 2005-04-28  Graham Percival  <gperlist@shaw.ca>
10954
10955         * Documentation/user/lilypond-book.itely: Bernard's docs
10956         for \betweenLilyPondSystem.
10957
10958 2005-04-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10959
10960         * Documentation/topdocs/INSTALL.texi (Top): remove TeX outdated
10961         remarks.
10962
10963 2005-04-28  Pal Benko  <benkop@freestart.hu>
10964
10965         * lily/mensural-ligature.cc (brew_flexa): apply thickness property
10966         only on vertical lines of flexa shape, and use a constant
10967         thickness value for horizontal lines (patch slightly modified by
10968         Jürgen Reuter)
10969
10970         * lily/include/mensural-ligature.hh: make 2 comments clearer
10971
10972 2005-04-28  Jürgen Reuter  <reuter@ipd.uka.de>
10973
10974         * lily/vaticana-ligature-engraver.cc (need_extra_space): renamed
10975         to need_extra_horizontal_space; bugfix: use class scope to avoid
10976         global namespace pollution
10977
10978         * Documentation/user/instrument-notation.itely (ligatures): added
10979         comment on possible future syntax change and how to work around
10980
10981         * lily/vaticana-ligature-engraver.cc, mf/parmesan-heads.mf
10982         (epiphonus, cephalicus): fine-tune shape of plica head for narrow
10983         intervals (fixes agnus dei example)
10984
10985         * Documentation/user/instrument-notation.itely (white mensural
10986         ligatures): selected a more illustrative example
10987
10988 2005-04-28  Heikki Junes <hjunes@cc.hut.fi>
10989
10990         * Documentation/index.html.in: specify utf-8 charset in meta content.
10991
10992 2005-04-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
10993
10994         * python/lilylib.py (make_ps_images): bugfixes; GS can produce
10995         empty 2nd page for single page.
10996
10997         * scm/lily.scm: remove p&c definitions.
10998
10999         * po/zh_TW.po (Module): new translation.
11000
11001         * lily/lily-guile.cc (ly_chain_assoc): remove.
11002
11003         * lily/general-scheme.cc (LY_DEFINE): export ly:chain_assoc_get
11004         (LY_DEFINE): recurse, iso. calling ly_chain_assoc.
11005
11006 2005-04-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11007
11008         * lily/beaming-info.cc: remove infinity_i
11009
11010         * scripts/abc2ly.py (out_filename): fix thinko with \version.
11011
11012 2005-04-26  Graham Percival  <gperlist@shaw.ca>
11013
11014         * Documentation/user/basic-notation.itely,
11015         instrument-notation.itely, advanced-notation.itely,
11016         changing-defaults.itely: minor fixes.  Added docs
11017         for colors to advanced-notation.itely.
11018
11019         * Documentation/user/advanced-notation.itely: fixed compile
11020         problem and added Bernard's x11-color doc patch.
11021
11022 2005-04-25  Jan Nieuwenhuizen  <janneke@gnu.org>
11023
11024         * scm/output-ps.scm (grob-cause): Yet another fix, hope it's
11025         alright this time round.
11026
11027 2005-04-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11028
11029         * Documentation/topdocs/INSTALL.texi (Top): idem.
11030
11031         * Documentation/topdocs/README.texi (Top): remove clean-fonts refs.
11032
11033         * VERSION (MAJOR_VERSION): release 2.5.21
11034
11035         * scm/output-ps.scm (grob-cause): bugfix.
11036
11037 2005-04-25  Jan Nieuwenhuizen  <janneke@gnu.org>
11038
11039         * cygwin/*: Update.
11040
11041         * cygwin/GNUmakefile (INSTALLATION_OUT_SUFFIXES): Remove profile
11042         stuff.
11043
11044         * scm/output-ps.scm (grob-cause): Bugfix.
11045
11046         * scm/lily.scm (ly:load): Remove x11-color.
11047
11048         * stepmake/aclocal.m4 (STEPMAKE_GET_EXECUTABLE): Bugfix: do not
11049         quote executable, fixes getting version from program --with
11050         --options.
11051         (STEPMAKE_KPATHSEA): Bugfix for Cygwin cross building: use
11052         $ac_exeect.
11053
11054         * Documentation/user/GNUmakefile: Only build music-glossary with
11055         rendered lilypond snippets during web.
11056
11057 2005-04-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11058
11059         * po/de.po: update.
11060
11061         * lily/GNUmakefile (OUT_DIST_FILES): don't dist lexer.cc
11062
11063 2005-04-22  Laura Conrad <lconrad@laymusic.org>
11064  
11065         * scripts/abc2ly:
11066         second title line append with punctuation dash character;
11067         encode abc2ly python strings in utf-8
11068        
11069 2005-04-21  Laura Conrad <lconrad@laymusic.org>
11070
11071         * scripts/abc2ly fix chords (again)
11072  
11073 2005-04-22  Bernard Hurley  <bernard@fong-hurley.org.uk>
11074
11075         * scm/x11-color.scm: new file
11076         All x11 color names can be accessed with:
11077         #(x11-color 'ColorName),
11078         #(x11-color "ColorName") or:
11079         #(x11-color "color name")
11080         If the x11 color name is not recognised then it defaults
11081         to black
11082
11083         * scm/lily.scm: amended to call scm/x11-color.scm
11084
11085 2005-04-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11086
11087         * Documentation/user/invoking.itely (Reporting bugs): comment out
11088         reference to online PNG bug repository.
11089
11090 2005-04-21  Jan Nieuwenhuizen  <janneke@gnu.org>
11091
11092         * lily/translator-scheme.cc (ly:translator-property): Remove.
11093         Update callers.
11094
11095         * lily/context-scheme.cc (ly:context-now): Move from translator.
11096         Update callers.
11097
11098 2005-04-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11099
11100         * input/regression/grid-lines.ly (skips): refine example.
11101
11102         * scm/define-context-properties.scm
11103         (all-user-translation-properties): doc autoBeamCheck
11104
11105         * input/regression/grid-lines.ly (Module): new file.
11106
11107         * lily/grid-point-engraver.cc (Module): new file.
11108
11109         * lily/grid-line.cc (Module): new file.
11110
11111         * lily/grid-line-span-engraver.cc (Module): new file.
11112
11113         * lily/grid-line-interface.cc (Module): new file.
11114
11115 2005-04-21  Jan Nieuwenhuizen  <janneke@gnu.org>
11116
11117         * scm/auto-beam.scm (revert-property-setting): Bugfixes: add
11118         missing parameter, actualy cdr through list.  Actually return a
11119         list with ENTRY removed (was '()).
11120
11121         * scripts/convert-ly.py: Update.  Print warning if file cannot be
11122         opened.
11123         (do_conversion): Fix printing of continuation comma.
11124
11125         * Documentation/user/advanced-notation.itely (Beam formatting):
11126         Remove refbugs about compound time and mixed duration.
11127
11128         * scm/auto-beam.scm (default-auto-beam-settings): Write out all
11129         modulo moments explicitely.
11130
11131         * lily/moment.cc (operator %): New function.
11132
11133         * lily/moment-scheme.cc (ly:mod-moment): Wrap it.
11134
11135         * lily/translator-scheme.cc (ly:translator-now,
11136         ly:translator-property): New function.
11137
11138         * scm/auto-beam.scm (default-auto-beam-check): New function.
11139
11140         * lily/auto-beam-engraver.cc (test_moment): Use it.
11141
11142         * flower/rational.cc (operator %): Bugfix.
11143
11144 2005-04-21  Erik Sandberg  <ersa9195@student.uu.se>
11145
11146         * scripts/abc2ly: Bugfix
11147
11148 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11149
11150         * python/fontextract.py (write_extracted_fonts): bugfix, too many
11151         %'s on EndFont comment.
11152
11153         * lily/ledger-line-spanner.cc: some more words of explanation.
11154
11155 2005-04-20  John Williams <williams@tni.com>  
11156         
11157         * scripts/lilypond-book.py: htmlquote bugfix.
11158         Allow snippets to be given distinct filenames.
11159         Allow the default alt text to be overridden.
11160
11161 2005-04-20  Erik Sandberg  <ersa9195@student.uu.se>
11162
11163         * ly/performer-init.ly: Bugfix
11164
11165         * THANKS: Added bughunters.
11166
11167 2005-04-20  Jan Nieuwenhuizen  <janneke@gnu.org>
11168
11169         * SConstruct (test_lib): Bump mftrace requirement to 1.1.9.
11170
11171         * lily/auto-beam-engraver.cc (test_moment): Test exact measure
11172         position (was: use modulo measure length).
11173
11174         * configure.in (no gui_b): Remove optional gtk+ requirement.
11175
11176 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11177
11178         * Documentation/user/basic-notation.itely (Pitches): add
11179         LedgerLineSpanner.
11180
11181         * lily/dynamic-engraver.cc (process_music): set right bound to
11182         script if present. Else, do not set.
11183         (acknowledge_grob): only set right bound of finished spanner to
11184         note column if no other bound is set.
11185
11186         * python/lilylib.py (make_ps_images): switch back to png16m.
11187         
11188 2005-04-19  Jan Nieuwenhuizen  <janneke@gnu.org>
11189
11190         * scripts/lilypond-book.py (write_if_updated): Bugfix for not
11191         writing up to date file.  Add dvips usage suggestion.
11192
11193         * scripts/convert-ly.py: Fix error message.
11194         Print usage if no files on command line.
11195         (usage): Add example usage.
11196
11197         * input/test/compound-time.ly: New file.
11198
11199         * input/test/circle.ly: New file.
11200
11201         * Documentation/topdocs/NEWS.tely: Use them.
11202
11203         * input/test/boxed-stencil.ly: Remove \score.
11204
11205         * buildscripts/mf-to-table.py (base): Add .log dependency.
11206
11207         * mf/GNUmakefile: Add PFAemmentaler and PFAaybabtu dependencies on
11208         pfa's.  Add .log dependency
11209
11210         * scm/define-markup-commands.scm (lower): New command.
11211
11212         * elisp/lilypond-mode.el (LilyPond-pdf-command): New command,
11213         make it default.
11214
11215 2005-04-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11216
11217         * lily/dynamic-engraver.cc (acknowledge_grob): add note-column
11218         also to finished cresc as right bound. This fixes:
11219         skip-string-decresc.ly
11220
11221         * lily/slur-scoring.cc (get_bound_info): robustness: substitute
11222         relative_coordinate if extent is empty.
11223
11224         * lily/stem.cc (width_callback): determine correct extent if flag
11225         is not there. This fixes slur-no-flag.ly
11226
11227         * lily/grace-engraver.cc (consider_change_grace_settings): new
11228         function.
11229         (initialize): also consider_change_grace_settings() on
11230         initialization. Fixes large grace notes at start of score.
11231
11232         * lily/break-align-interface.cc (do_alignment): don't translate if
11233         total_extent is empty.
11234
11235         * buildscripts/lilypond-{login,profile}.sh (Module): remove file.
11236
11237 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11238
11239         * scm/output-ps.scm (grob-cause): don't add cwd if path starts
11240         with slash.
11241
11242 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
11243
11244         * stepmake/aclocal.m4: Remove tfm_path.
11245
11246 2005-04-18  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11247
11248         * scm/music-functions.scm (markup-expression->make-markup): fix
11249         bug with cons arguments of markup commands.
11250         (music->make-music): fix music expression property list building
11251
11252 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
11253
11254         * aclocal.m4: Massage package names.
11255
11256         * SCons updates.
11257
11258 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11259
11260         * VERSION (PACKAGE_NAME): release 2.5.20
11261
11262         * lily/stem.cc (calc_stem_info): add minimum Y extent of
11263         stem-tremolo.  Fixes: bugs/tremolo-stem-length-beamed
11264
11265         * lily/percent-repeat-engraver.cc (try_music): add measure before
11266         next_moment to future processing moment. Fixes:
11267         percent-repeat-mm-rest.ly
11268         (process_music): don't add moment for 2nd time.
11269
11270         * input/regression/repeat-percent.ly: add mmrests as extra test.
11271
11272         * lily/axis-group-engraver.cc (acknowledge_grob): read
11273         keepAliveInterfaces to decide what to kill.
11274
11275         * ly/engraver-init.ly (AncientRemoveEmptyStaffContext): add
11276         percent-repeat-interface to keepAliveInterfaces. This fixes
11277         percent-repeat-harakiri.
11278
11279 2005-04-17  Jan Nieuwenhuizen  <janneke@gnu.org>
11280
11281         * SCons updates.
11282
11283 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11284
11285         * config.make.in (TTFTOOL_ENDIAN): rm TFM_PATH
11286
11287         * aclocal.m4: remove --enable-tfm-path configure option
11288
11289         * input/test/ancient-font.ly (lowerStaff): clef name errors.
11290
11291         * scm/backend-library.scm (postscript->png): newline after
11292         finishing command.
11293
11294         * lily/paper-score-scheme.cc (LY_DEFINE): new file.
11295         (LY_DEFINE): ly:paper-score-paper-systems: new function 
11296
11297         * lily/score-scheme.cc (LY_DEFINE): require music argument. 
11298
11299         * lily/score.cc (default_rendering): use Music_output too.
11300
11301         * input/test/chord-names-languages.ly (Module): rename file.
11302
11303         * lily/text-spanner.cc: add bound-padding.
11304
11305         * lily/paper-book.cc (systems): accept Paper_score
11306         iso. Paper_system vector. 
11307
11308         * input/regression/line-arrows.ly: new file.
11309
11310         * lily/paper-score.cc (process): run get_paper_systems() only once.
11311
11312         * lily/line-spanner.cc (line_stencil): add arrows.
11313
11314 2005-04-18  Jonatan Liljedahl  <lijon@kymatica.com>
11315
11316         * lily/line-interface.cc (make_arrow): new function. 
11317         (arrows): idem.
11318
11319 2005-04-18  Mathieu Giraud  <magiraud@free.fr>
11320
11321         * input/test/chord-names-german.ly: update for italian/french
11322         chords.
11323         
11324         * Documentation/user/instrument-notation.itely (Printing chord
11325         names): update.
11326
11327 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11328
11329         * lily/include/paper-score.hh (class Paper_score): remove unused
11330         prototypes.
11331
11332         * lily/book.cc (process): add -COUNT to midi output.
11333
11334         * lily/score.cc (book_rendering): remove outname argument
11335         (book_rendering): return list of Music_outputs. 
11336
11337         * lily/global-context-scheme.cc (LY_DEFINE): remove outname argument.
11338
11339         * lily/book.cc (process): loop over Music_outputs returned from
11340         Score::book_rendering().
11341
11342         * lily/*.cc (width_callback): remove spurious "unused" warnings
11343         for assert (axis==[XY]_AXIS); 
11344
11345         * lily/include/music-output.hh (class Music_output): smobify class.
11346
11347         * lily/include/paper-score.hh (class Paper_score): make members
11348         private.
11349
11350         * lily/performance.cc (process): return #f iso. #<undefined>. This
11351         prevents #<undefined> leaking into GUILE-userspace.
11352
11353 2005-04-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11354
11355         * config.hh.in: remove HAVE_PANGO_FC_FONT_MAP_ADD_DECODER_FIND_FUNC.
11356
11357 2005-04-17  Mathieu Giraud  <magiraud@free.fr>
11358
11359         * scm/chord-name.scm : support for italian and french
11360         chords names.
11361
11362         * scm/chord-ignatzek-names.scm (ignatzek-chord-names): add
11363         a space defined by chordPrefixSpacer when the root name is
11364         direclty followed by a prefix.
11365
11366         * ly/engraver-init.ly : chordPrefixSpacer       
11367         * scm/define-context-properties.scm : chordPrefixSpacer
11368         * ly/property-init.ly : italianChords, frenchChords 
11369
11370 2005-04-17  Jan Nieuwenhuizen  <janneke@gnu.org>
11371
11372         * mf/feta-din.mf: Remove.
11373
11374         * mf/GNUmakefile (fontdir): Bugfix.
11375
11376         * mf/SConstruct: Some updates.
11377
11378         * SConstruct: Require pkg-config.
11379         (test_program): Bugfix for double digit version compares, use
11380         integer (not string-) compare.
11381         Optionally require gs 8.14.
11382
11383         * stepmake/aclocal.m4 (STEPMAKE_PANGO_FT2): Define HAVE_PANGO16 too.
11384
11385         * lily/*: s/ifdef HAVE_*/if have/.
11386
11387         * SConstruct (test_lib): New function.  Update pkg-config and some
11388         other requirements.
11389
11390         * configure.in: Require pkg-config.  Enforce REQUIRE and version for
11391         freetype, pangof2t.
11392
11393 2005-04-16  Jan Nieuwenhuizen  <janneke@gnu.org>
11394
11395         * po/lilypond.pot, ...: Update using bison-CVS.
11396
11397         * python/lilylib.py (make_ps_images): Fixo.
11398
11399 2005-04-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11400
11401         * python/lilylib.py (make_ps_images): typo.
11402
11403         * configure.in (gui_b): make bison optional.
11404
11405         * lily/GNUmakefile (OUT_DIST_FILES): dist parser and lexer.
11406
11407 2005-04-16  Bernard Hurley  <bernard@fong-hurley.org.uk>
11408
11409         * framework-eps.scm: code added so that a macro \betweenLilyPondSystem
11410         with one parameter can be defined in a LaTeX file when processed
11411         by lilypond-book this will be evaluated between the systems of
11412         a multi-system score. The parameter is the number of systems processed.
11413
11414 2005-04-16  Jan Nieuwenhuizen  <janneke@gnu.org>
11415
11416         * python/lilylib.py (make_ps_images): Escape newline.
11417
11418         * Documentation/user/music-glossary.tely: Run
11419         texinfo-all-menus-update.
11420
11421 2005-04-14  Jan Nieuwenhuizen  <janneke@gnu.org>
11422
11423         * scm/lily-library.scm (old-relative-not-used-message)
11424         (version-not-seen-message): Add input-file-name-location to message.
11425
11426         * lily/parser.yy (lilypond): Add token aliases.
11427
11428         * Documentation/user/music-glossary.tely (accidental): Fixes.  Do
11429         not confuse with alteration.
11430         (alteration): Add.
11431
11432 2005-04-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11433
11434         * python/lilylib.py (make_ps_images): use -dEPSCrop
11435
11436         * VERSION (PACKAGE_NAME): release 2.5.19 
11437
11438         * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
11439         only put xrefs in info documentation.
11440
11441         * make/ly-rules.make ($(outdir)/%.html.omf): transplant .dvi ->
11442         .pdf rule to tex-rules.make.
11443
11444         * scm/framework-eps.scm (dump-stencils-as-EPSes): remove comments
11445         from -systems.* output.
11446
11447         * stepmake/stepmake/tex-rules.make ($(outdir)/%.pdf): make PDF
11448         directly, remove -$(PAGESIZE) target.
11449
11450         * input/test/embedded-postscript.ly: update.
11451
11452 2005-04-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11453
11454         * make/lysdoc-targets.make (local-WWW): remove ps.gz target.
11455
11456         * Documentation/user/changing-defaults.itely (Font selection):
11457         document font-name.
11458
11459         * input/regression/font-name.ly: show Pango fonts for
11460         font-name. Update example. 
11461
11462         * lily/pango-select.cc (properties_to_pango_description): don't
11463         convert symbol font-size to number, but use to lookup.
11464
11465         * python/fontextract.py (write_extracted_fonts): add VMusage 0.
11466
11467         * scm/framework-ps.scm (write-preamble): use (NAME . CONTENTS) and
11468         (NAME . FILE-NAME) tuples for font descriptions. 
11469         (write-preamble): display BeginFont DSC comments.
11470
11471         * python/fontextract.py (write_extracted_fonts): new file. Extract
11472         font resources from a PS file.
11473
11474         * scripts/lilypond-book.py (option_definitions): --psfonts option.
11475         (Compile_error.process_include): do_file returns chunks.
11476
11477         * make/ly-vars.make (DVIPS_FLAGS): don't load .map file.
11478
11479         * make/lysdoc-targets.make: .texi is .PRECIOUS
11480
11481         * scripts/lilypond-book.py (write_if_updated): new function.
11482
11483 2005-04-13  Jan Nieuwenhuizen  <janneke@gnu.org>
11484
11485         * scm/framework-eps.scm (dump-stencils-as-EPSes): Massage messages.
11486
11487 2005-04-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11488
11489         * scm/framework-eps.scm (dump-stencils-as-EPSes): no massages.
11490
11491         * input/regression/markup-syntax.ly: remove \score.
11492
11493         * scm/define-markup-commands.scm (draw-circle): add fill argument
11494
11495         * scm/stencil.scm (make-circle-stencil): add fill argument
11496
11497         * ps/music-drawing-routines.ps: add fill argument.
11498
11499         * ly/performer-init.ly: add CueVoice to MIDI too.
11500
11501         * ps/music-drawing-routines.ps: new routine BeginEPSF /
11502         EndEPSF.
11503
11504         * input/regression/markup-eps.ly: new file.
11505
11506         * scm/framework-ps.scm (write-preamble): change order: vars should
11507         be inited before procedures.
11508
11509         * scm/output-ps.scm (glyph-string): break lines. 255 chars is max
11510         for EPS files.
11511
11512         * scm/define-markup-commands.scm (epsfile): add epsfile command.
11513
11514 2005-04-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11515
11516         * configure.in (gui_b): add check for ghostscript 8.15
11517
11518 2005-04-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11519
11520         * lily/hairpin.cc (after_line_breaking): suicide the hairpinlet at
11521         start of line. Fixes cresc-after-newline.ly
11522
11523         * lily/source-file.cc (file_line_column_string): use get_column().
11524
11525 2005-04-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11526
11527         * lily/source-file.cc (get_column): utf-8 support for column numbers.
11528
11529 2005-04-12  Jan Nieuwenhuizen  <janneke@gnu.org>
11530
11531         * lily/*: use message () iso progress_indication () for messages.
11532         Revise/uniformise user messages.
11533
11534         * flower/warn.cc (progress_indication): New function.
11535         (message): Use it.  Fixes newline problems.
11536
11537         * config.make.in (webdir): Sort out install dirs.
11538
11539         * stepmake/stepmake/generic-targets.make (final-install): Bugfix.
11540
11541         * python/lilylib.py (command_name): Bugfix.
11542         (make_ps_images):
11543
11544 2005-04-11  Pedro Kroger  <kroeger@pedrokroeger.net>
11545
11546         * lily/main.cc: --help says what types of backends are availabe
11547
11548 2005-04-11  Jan Nieuwenhuizen  <janneke@gnu.org>
11549
11550         Fix ./VERSION dependency, and without need to reconfigure.
11551
11552         * lily/main.cc (setup_paths): Update.
11553
11554         * stepmake/bin/make-version.py (defs): Add TOPLEVEL_VERSION define..
11555
11556         * config.hh.in (LILYPOND_DATADIR): Remove TOPLEVEL_VERSION.
11557
11558         * scripts/convert-ly.py (\markup): Fix too simplistic regexps.
11559         Add \line for some simplistic cases.
11560
11561         * lily/GNUmakefile (main.o): Add missing dependency on version.hh.
11562
11563 2005-04-10  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11564
11565         * elisp/lilypond-mode.el (LilyPond-lilypond-command): command used
11566         to compile LY files (useful for adding eg. "-I" args)
11567         (LilyPond-command-alist): use `LilyPond-lilypond-command'. Add a
11568         2Gnome command for gnome backend.
11569         (LilyPond-command-formatgnome): call the 2Gnome command. key
11570         binding: C-c C-g
11571
11572 2005-04-10  Jan Nieuwenhuizen  <janneke@gnu.org>
11573
11574         * Documentation/user/GNUmakefile (lilypond/index.html): Bugfix:
11575         depend on all PNG images.
11576
11577 2005-04-09  Jan Nieuwenhuizen  <janneke@gnu.org>
11578
11579         * GNUmakefile.in: Bugfix: also link .map files.
11580
11581 2005-04-09  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11582
11583         * scm/music-functions.scm (music->make-music): generate 
11584         a (make-music ...) sexpr from a music expression.
11585         (display-scheme-music): use guile pretty printer to display the
11586         make-music sexpr.
11587
11588 2005-04-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11589
11590         * ly/engraver-init.ly: reindent.
11591         Add CueVoice.
11592
11593         * scm/music-functions.scm (music-pretty-string): handle moments
11594         too.
11595         (music-pretty-string): only print non-empty lists.
11596         (cue-substitute): create CueVoice context, which has smaller type.
11597
11598         * lily/moment-scheme.cc (LY_DEFINE): new methods
11599         ly:moment-grace-{numerator,denominator}
11600
11601         * lily/context-handle.cc: remove quit() method. 
11602
11603         * lily/font-config.cc (init_fontconfig): be verbose about font path.
11604         (init_fontconfig): success is 0, not !0
11605
11606 2005-04-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11607
11608         * mf/feta-nummer-code.mf (code): add plus glyph.
11609
11610         * lily/tie.cc (print): idem.
11611
11612         * lily/slur.cc (print): don't use thickness property for
11613         slur shape-thickness.
11614
11615         * lily/stencil-scheme.cc (LY_DEFINE): don't reverse the order
11616         while adding stencils.
11617
11618         * scm/define-markup-commands.scm (with-color): with-color markup
11619         command.
11620         (whiteout): new markup command 
11621         (filled-box): new markup command
11622
11623 2005-04-07  Jan Nieuwenhuizen  <janneke@gnu.org>
11624
11625         * Documentation/topdocs/NEWS.tely (Top): Make tex-able.  Handy
11626         test for PDF docs.
11627
11628         * mf/GNUmakefile (lilypond.map): Add PFAEmmentaler,
11629         PFAAybabtu-Regular.  Fixes feta font in PDFs.
11630         
11631         Notes for tetex-3.0 make web:
11632            psclean.map: s/uhv8a/uhvr8a/
11633            config.ps add:
11634                 p +psfonts_t1.map
11635                 p +psclean.map
11636                 p +typeface.map
11637
11638 2005-04-06  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11639
11640         * scm/music-functions.scm (music-pretty-string): fix bug with
11641         string argument.
11642
11643 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
11644
11645         * stepmake/bin/add-html-footer.py (i18n): Bugfix.
11646
11647 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11648
11649         * scripts/lilypond-book.py (Lilypond_snippet.__init__): 
11650         only process options if they're there.
11651         (write_file_map): add version-seen? to snippet-map.ly
11652
11653 2005-04-06  Jan Nieuwenhuizen  <jan.nieuwenhuizen@aspiratie.nl>
11654
11655         * scripts/lilypond-book.py (split_options): Bugfix.  Small code
11656         formatting cleanups.
11657
11658         * mf/GNUmakefile: Rewrite $addprefix, $addsuffix using % short-forms.
11659         Add PFAaybabtu.pfa dependency on aybabtu.subfonts.
11660
11661 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11662
11663         * scm/framework-ps.scm (ps-font-command): don't hash, just use
11664         name directly.
11665
11666         * lily/main.cc (setup_paths): either add mf/out to search path or 
11667         fonts/{otf,type1,etc}
11668         
11669         * lily/font-config.cc (init_fontconfig): either add mf/out to
11670         FontConfig or fonts/{otf,type1,etc}
11671
11672         * GNUmakefile.in: don't put mf/ link in share/ dir.
11673
11674         * lily/staff-spacing.cc: move same-direction-correction to
11675         note-spacing-interface
11676
11677         * scm/lily.scm (lilypond-main): use variable argument count for
11678         exception handler.
11679
11680         * lily/font-config.cc (init_fontconfig): add operator pacification
11681         message.
11682
11683         * mf/aybabtu.pe.in (i): generate PFAAybabtu.pfa
11684
11685         * buildscripts/gen-emmentaler-scripts.py (i): generate
11686         PFAEmmentaler as well.
11687
11688         * scm/framework-ps.scm (munge-lily-font-name): new function
11689         (write-preamble): hack: insert PFA equivalent of CFF into
11690         .PS. This makes LilyPond output printable on normal PS printers
11691         again.
11692
11693         * buildscripts/gen-emmentaler-scripts.py (i): generate
11694         PFAEmmentaler.pfa aswell.
11695
11696 2005-04-06  John Williams <williams@tni.com>  
11697         
11698         * scripts/lilypond-book.py: refactor the compose_ly procedure.
11699         
11700 2005-04-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11701
11702         * scm/page-layout.scm (default-page-make-stencil): always combine
11703         the header stencil, even if empty. This prevents the body text to
11704         reach up to the margins.
11705
11706         * po/rw.po (Module): new file, for Kinyarwanda.
11707
11708         * input/test/spacing-optical.ly (Module): new file.
11709
11710         * lily/staff-spacing.cc: add same-direction-correction
11711
11712 2005-04-06  Jan Nieuwenhuizen  <janneke@gnu.org>
11713
11714         * Documentation/user/introduction.itely (Engraving): Comment-out
11715         non-existent file.
11716
11717 2005-04-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11718
11719         * scm/define-grob-properties.scm (all-user-grob-properties): add
11720         same-direction-correction
11721
11722         * VERSION: release 2.5.18
11723
11724 2005-04-05  Jan Nieuwenhuizen  <janneke@gnu.org>
11725
11726         * lily/grob.cc (mark_smob): Check pscore->layout_ before
11727         dereferencing.  Fixes make web.
11728
11729         * lily/midi-stream.cc: Handle unwritable midi file.  Include
11730         errno.h.
11731
11732         * Documentation/user/: Fix links.
11733
11734 2005-04-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11735
11736         * lily/text-interface.cc (Module): rename from text-item.cc
11737
11738         * input/regression/apply-output.ly (texidoc): function naming fix.
11739
11740         * lily/time-signature-performer.cc (derived_mark): new function.
11741
11742         * lily/lily-parser-scheme.cc:  print mapped file name for progress
11743
11744         * scripts/lilypond-book.py (find_linestarts): new function.
11745         (find_toplevel_snippets): keep track of line numbers.
11746
11747         * lily/key-performer.cc (try_music): remove FIXME warning, gobble
11748         all key changes.
11749
11750         * ly/declarations-init.ly (partCombineListener): use
11751         ignoreBarChecks. Fixes: warn-partcombine-barcheck.ly
11752
11753         * lily/bar-check-iterator.cc (process): ignoreBarChecks property.
11754
11755 2005-04-04  Jan Nieuwenhuizen  <janneke@gnu.org>
11756
11757         * lily/text-item.cc: Fix link.
11758
11759         * Documentation/user/changing-defaults.itely (Changing defaults):
11760         Fix programs reference links.
11761
11762         * Documentation/user/music-glossary.tely: Convert to utf-8.
11763
11764 2005-04-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11765
11766         * make/lilypond-vars.make: remove TEXMF from variables.
11767         remove DEB_BUILD pk font variables.
11768         remove GUILE_LOAD_PATH
11769         remove TeX memory vars.
11770
11771 2005-04-04  Werner Lemberg  <wl@gnu.org>
11772
11773         * lilypond/scm-option.cc (ly_option_usage): Add final newline.
11774
11775 2005-04-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11776
11777         * ps/lilyponddefs.ps: remove reencode-font
11778
11779         * lily/simple-spacer.cc (add_columns): also compare
11780         directly. Column rank doesn't distinguish between broken and
11781         unbroken columns. This fixes large spaces before time sig changes.
11782
11783         * Documentation/user/point-and-click.itely: document ly:set-option.
11784
11785         * lily/grob.cc (get_uncached_stencil): only set grob-cause if
11786         point_and_click_global is set.
11787
11788         * lily/scm-option.cc (LY_DEFINE): add point-and-click
11789         ly:set-option argument.
11790
11791 2005-04-03  Jan Nieuwenhuizen  <janneke@gnu.org>
11792
11793         * GNUmakefile.in: Include symlinks in webball.
11794
11795         * Documentation/user/GNUmakefile (source-links): Add symlinks to
11796         source dir for split and non-split manuals.
11797
11798         * Documentation/user/*y: Fix @uref/@inputfile links for
11799         split/non-split HTML documents.
11800
11801         * Documentation/user/GNUmakefile (local-WWW): Do not generate
11802         .ps.gz.
11803         
11804 2005-04-02  Jan Nieuwenhuizen  <janneke@gnu.org>
11805
11806         * GNUmakefile.in: Add newline.
11807
11808 2005-04-01  Erlend Aasland  <erlenda@gmail.com>
11809
11810         * tex/lilyponddefs.tex: use color instead of xcolor
11811         * scm/output-tex.scm: minor editing
11812
11813 2005-04-02  Nicolas Sceaux  <nicolas.sceaux@free.fr>
11814
11815         * scm/music-functions.scm (display-scheme-music): pretty printer
11816         for music expressions.
11817
11818 2005-04-02  Jan Nieuwenhuizen  <janneke@gnu.org>
11819
11820         * buildscripts/install-info-html.sh (index_file): Fix link.
11821
11822 2005-04-01  Jan Nieuwenhuizen  <janneke@gnu.org>
11823
11824         * input/test/dynamic-extra.ly (piuf): Use utf-8 iso TeX accent.
11825
11826         * Documentation/index.html.in: Add size estimates with some big pages.
11827
11828         * Documentation/user/tutorial.itely (Running LilyPond for the
11829         first time): Add/replace some @rglos links.  TODO: add more
11830         @rglos links in tutorial, test non-intrusiveness (.css).
11831
11832         * stepmake/bin/add-html-footer.py (do_file): Remove info's
11833         annoying's indication of referencing external document.
11834
11835         * Documentation/user/GNUmakefile: Split version of glossary too.
11836         * Documentation/user/macros.itexi (@rglos): Have makeinfo produce
11837         links, not only for html.
11838
11839         * Documentation/user/introduction.itely: Fix some links for other
11840         than html, do not use `here' as link name.
11841
11842 2005-03-31  Jan Nieuwenhuizen  <janneke@gnu.org>
11843
11844         * scm/documentation-generate.scm (string-append): Fix @usermanref,
11845         @glossaryref.
11846
11847 2005-03-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11848
11849         * scm/page-layout.scm (default-page-make-stencil): only add header
11850         if existing and not empty. Fixes spurious programming error.
11851
11852         * lily/span-bar.cc (print): don't make rounded edges for spanbars.
11853
11854 2005-03-31  Erlend Aasland  <erlenda@gmail.com>
11855
11856         * scm/output-tex.scm: implement {re,}setcolor
11857         * tex/lilyponddefs.tex: use color package
11858
11859 2005-03-31  Jan Nieuwenhuizen  <janneke@gnu.org>
11860
11861         * GNUmakefile.in (local-WWW-post): Restore .htaccess and .html
11862         additions to website.
11863
11864         * Documentation/user/lilypond.tely: Remove reference to ps.gz.
11865
11866         * Documentation/user/macros.itexi: Fix @usermanref html links in
11867         split documents: use @inforef.
11868
11869 2005-03-30  Graham Percival  <gperlist@shaw.ca>
11870
11871         * Documentation/user/programming-interface.itely: minor fix.
11872
11873         * Documentation/user/advanced-notation.itely: added info to
11874         Metronome markings.
11875
11876 2005-03-30  Jan Nieuwenhuizen  <janneke@gnu.org>
11877
11878         * scm/output-lib.scm (make-stencil-boxer): Junk code duplication,
11879         use box-stencil.  Remove y-padding argument.
11880         (make-stencil-circler): New function.
11881
11882         * buildscripts/lilypond-words.py (F): 
11883         * elisp/SConscript (a): 
11884         * elisp/GNUmakefile (LILYPOND_WORDS_DEPENDS):
11885         * vim/SConscript (a): 
11886         * vim/GNUmakefile (LILYPOND_WORDS_DEPENDS): Update.
11887
11888         * lily/general-scheme.cc: Build fix.
11889
11890         * scm/markup.scm:
11891         * input/regression/markup-scheme.ly: 
11892         * input/regression/markup-syntax.ly: Drop 'new-' from name.
11893
11894         * scm/stencil.scm (make-circle-stencil): New function.
11895
11896         * scm/define-markup-commands.scm (draw-circle): Use it.  New
11897         name (was cicle).  Update callers.
11898         (circle): New markup command, similar to box.
11899
11900         * scm/stencil.scm (circle-stencil): New function.
11901
11902 2005-03-29  David Jedlinsky  <lilypond@ipnh.com>
11903
11904         * configure.in: Detect libutf8/wchar.h variant.
11905
11906         * stepmake/aclocal.m4: Modify shared size test.
11907
11908 2005-03-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11909
11910         * make/lilypond.fedora.spec.in (Group): remove texmf profile stuff.
11911
11912 2005-03-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11913
11914         * scripts/convert-ly.py (conv): add stencil-aligned-to! rule.
11915         
11916         * VERSION (PACKAGE_NAME):  release 2.5.17
11917
11918 2005-03-29  Jan Nieuwenhuizen  <janneke@gnu.org>
11919
11920         * scm/backend-library.scm (postscript->png): Fix comment and png
11921         message.
11922
11923         * GNUmakefile.in (link-tree): Fix locales.
11924
11925 2005-03-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11926
11927         * lily/stencil-scheme.cc (LY_DEFINE): change to
11928         ly:stencil-aligned-to, non mutating.
11929
11930         * scm/safe-lily.scm (lambda): remove ly:stencil-set-extent!
11931
11932         * lily/stencil-scheme.cc: remove ly:stencil-set-extent!
11933
11934         * lily/quote-iterator.cc (derived_mark): call
11935         Music_wrapper_iterator::derived_mark() too.
11936
11937         * lily/grace-engraver.cc (derived_mark): change signature, add
11938         const.
11939
11940 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
11941
11942         * SConstruct (symlink): 
11943         * GNUmakefile.in (link-tree): Add scripts to prefix.
11944
11945         * lily/general-scheme.cc (ly:effective-prefix): New function.
11946
11947         * scm/backend-library.scm (postscript->png): Use it.
11948
11949 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11950
11951         * lily/paper-score.cc (process): don't delete grobs after
11952         producing stencils. 
11953
11954         * scm/part-combiner.scm (determine-split-list): switch off
11955         debugging info.
11956
11957         * scm/backend-library.scm (postscript->png): explicitly use ps2png.py
11958         if available.
11959
11960         * scm/define-context-properties.scm
11961         (all-user-translation-properties): add stringNumberOrientations.
11962
11963         * lily/new-fingering-engraver.cc (position_scripts): make generic,
11964         so fingering and string-numbers are separately controlled.
11965
11966 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
11967
11968         * stepmake/aclocal.m4: Fix shared size test: add missing comma, do
11969         not use debugging.
11970
11971 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
11972
11973         * GNUmakefile.in (local-WWW-post): remove UTF8 .htaccess.
11974
11975         * config.hh.in: add HAVE_FONTCONFIG.
11976
11977         * Documentation/user/instrument-notation.itely (String number
11978         indications): new node.
11979
11980         * input/regression/new-markup-syntax.ly (texidoc): add circle.
11981
11982         * lily/new-fingering-engraver.cc (add_string): new function. 
11983         (acknowledge_grob): accept string-number-event as well.
11984
11985         * scm/define-markup-commands.scm (circle): new markup command.
11986
11987         * scm/output-lib.scm (print-circled-text-callback): new function.
11988
11989         * lily/GNUmakefile: move ifeq after include stepmake.make.
11990
11991 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
11992
11993         * config.make.in (HAVE_LIBKPATHSEA_SO):
11994         * stepmake/aclocal.m4: Also subst HAVE_LIBKPATHSEA_SO.
11995
11996         * lily/GNUmakefile (MODULE_LDFLAGS): Only if not HAVE_KPATHSEA_SO,
11997         add KPATHSEA_LIBS.
11998
11999         * debian/watch: 
12000         * debian/control: Update.
12001
12002 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12003
12004         * input/test/title-markup.ly (spaceTest): remove.
12005
12006         * input/test/embedded-tex.ly (Module): remove.
12007
12008         * input/test/music-box.ly: use 'name property, not ly:music-name.
12009
12010         * lily/GNUmakefile (MODULE_LDFLAGS): add KPATHSEA_LIBS.
12011
12012         * stepmake/aclocal.m4: STEPMAKE_FONTCONFIG: add.
12013
12014 2005-03-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12015
12016         * Documentation/topdocs/INSTALL.texi (Top): Remove information
12017         about xdeltas.  Add information about CVS.
12018
12019         * scm/lily.scm (lilypond-main): Fix invocation of handler,
12020         gracefully handle failed files.
12021
12022         * lily/GNUmakefile (MODULE_LDFLAGS): Remove KPATHSEA_LIBS.
12023
12024         * Documentation/topdocs/INSTALL.texi (Top): Whitespace and other
12025         small fixes.
12026
12027         * scm/framework-tex.scm (convert-to-ps): Proper option spacing.
12028         No unnecessarily specific i18n messages.  Remove stray `1'.
12029
12030 2005-03-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12031
12032         * buildscripts/lys-to-tely.py (strip_extension): add utf-8
12033         documentencoding
12034
12035         * scm/documentation-lib.scm (texi-file-head): set utf-8
12036         documentencoding.
12037
12038         * ly/chord-modifiers-init.ly (whiteTriangleMarkup): use the greek
12039         Delta, not the Symbol one. 
12040
12041         * mf/GNUmakefile ($(outdir)/lilypond.map): add -Regular to Aybabtu
12042         for the .map file.
12043
12044         * Documentation/topdocs/INSTALL.texi (Top): add running
12045         requirement as compilation requirement.
12046
12047 2005-03-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12048
12049         * buildscripts/mutopia-index.py (headertext): add h1 header and
12050         utf-8 charset meta field.
12051
12052         * input/GNUmakefile: prune example list.
12053
12054         * scm/framework-tex.scm (convert-to-ps): add -ofoo.ps to dvips
12055         options.
12056
12057         * lily/slur-scoring.cc (get_base_attachments): only look at stem
12058         extent for visible stems.
12059
12060         * lily/grob.cc (mark_smob): mark \layout block from Grob::mark_smob().
12061
12062 2005-03-27  Jan Nieuwenhuizen  <janneke@gnu.org>
12063
12064         * Documentation/topdocs/INSTALL.texi (Top): Updates.
12065
12066         * scripts/convert-ly.py: Python 2.2 compatibility (thanks Mats).
12067
12068 2005-03-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12069
12070         * lily/slur-scoring.cc (get_base_attachments): robustness. Don't
12071         pass inf/nan into slur scoring.
12072
12073         * ly/titling-init.ly (oddHeaderMarkup): don't show page no. on 1st
12074         page.
12075
12076         * scripts/abc2ly.py (dump_voices): use alphabet().
12077
12078 2005-03-27  Jeff Smith <whydoubt@yahoo.com>
12079         
12080         * mf/GNUmakefile (depth): use $(FONTFORGE). 
12081
12082 2005-03-27 Matthias Neeracher <neeracher@mac.com>
12083         
12084         * flower/include/virtual-methods.hh: simplify. Patch by
12085
12086 2005-03-25  John Williams <williams@tni.com>  
12087
12088         * scripts/lilypond-book.py (main): add png for HTML too, guess
12089         only if necessary. 
12090
12091 2005-03-25  Graham Percival  <gperlist@shaw.ca>
12092
12093         * Documentation/topdocs/INSTALL.texi: now recommends
12094         lexer-gcc-3.1.sh for gcc 3.1.1 or higher.
12095
12096         * Documentation/user/basic-notation.itely,
12097         Documentation/user/tutoria.itely: warn about
12098         only one (phrasing) slur at once.
12099
12100 2005-03-24  Pedro Kroger  <kroeger@pedrokroeger.net>
12101
12102         * ly/music-functions-init.ly (removeWithTag): fixed to return "music".
12103
12104 2005-03-23  Graham Percival  <gperlist@shaw.ca>
12105
12106         * Documentation/user/basic-notation.itely: fixed info about
12107         ending a (de)cresc.
12108
12109         * Documentation/user/lilypond-book.itely: fixed
12110         lilypond-book filter example and warned about not doing
12111         --filter and --process at the same time.
12112
12113 2005-03-23  Mats Bengtsson  <mabe@s3.kth.se>
12114
12115         * lily/parser.yy (bass_number),
12116         Documentation/user/instrument-notation.itely (Figured bass): 
12117         Add the possibility to use text markup in figured bass. 
12118
12119 2005-03-19  Graham Percival  <gperlist@shaw.ca>
12120
12121         * Documentation/user/global.itely: added info about naming
12122         identifiers and breakbefore.
12123
12124         * Documentation/user/invoking.itely: added info about batch
12125         processing files with convert-ly, removed references to TeX
12126         in the jail section.
12127
12128         * Documentation/user/examples.itely: possibly fixed piano
12129         dynamics.
12130
12131         * Documentation/user/advanced-notation.itely: added info
12132         about removing other types of Staff.
12133
12134         * Documentation/user/instrument-notation.itely: possibly
12135         fixed piano staff line switch.
12136
12137         * Documentation/user/changing-defaults.itely: added info
12138         about using normal font in titles.
12139
12140 2005-03-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12141
12142         * VERSION (PATCH_LEVEL): release 2.5.16
12143
12144         * make/ly-vars.make (DVIPS_FLAGS): include lilypond.map path
12145         explicitly.
12146
12147 2005-03-18  Jan Nieuwenhuizen  <janneke@gnu.org>
12148
12149         * scm/framework-tex.scm (convert-to-dvi): Barf if NAME contains
12150         whitespace.
12151
12152         * python/lilylib.py (make_ps_images):
12153         * scm/backend-library.scm (postscript->pdf, postscript->png):
12154         Quote file name.  Use format rather than string-append juggling.
12155
12156 2005-03-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12157
12158         * python/lilylib.py (make_ps_images): add x to -g argument. 
12159
12160         * lily/key-performer.cc (create_audio_elements): don't use
12161         scm_eval_string. Check for minor 3rd directly.
12162   
12163         * input/mutopia/J.S.Bach/baerenreiter-sarabande.ly
12164         (sarabandeCelloGlobal): key is D minor, not F major.
12165
12166 2005-03-17  Jan Nieuwenhuizen  <janneke@gnu.org>
12167
12168         Fix truncated --png output (Peter Danenberg).
12169         
12170         * python/lilylib.py (make_ps_images):
12171         * scripts/ps2png.py (copyright): Grok --papersize option.
12172
12173         * scm/backend-library.scm (postscript->png): Add parameter
12174         PAPERSIZE.  Update callers.
12175
12176         * scm/output-gnome.scm (music-font?): Bugfix: use "Emmentaler".
12177         Fixes symbol placement.
12178
12179         * lily/spanner.cc: 
12180         * lily/stencil.cc: Use "libc-extension.hh" (WAS:
12181         <libc-extension.hh>).
12182
12183 2005-03-16  Jan Nieuwenhuizen  <janneke@gnu.org>
12184
12185         * Nitpick run.
12186
12187         * buildscripts/fixcc.py: Update.
12188
12189         Builddir run fixes.
12190
12191         * HACKING (datadir): Add VERSION.
12192
12193         * GNUmakefile.in (linktree): Bugfix: outconfdirs are one dir
12194         higher up.
12195
12196 2005-03-15  Werner Lemberg  <wl@gnu.org>
12197
12198         * mf/feta-klef.mf (draw_gclef): Move z10' slightly so that the
12199         diagonal stem doesn't become thinner.
12200
12201 2005-03-15  Jan Nieuwenhuizen  <janneke@gnu.org>
12202
12203         * buildscripts/fixcc.py: Fixes (Werner).
12204
12205 2005-03-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12206
12207         * mf/GNUmakefile ($(outdir)/lilypond.map): capitalize
12208         Emmentaler/Aybabtu.
12209
12210         * GNUmakefile.in: fix lilypond-words path.
12211
12212         * po/tr.po: update to 2.3.21
12213
12214         * lily/new-fingering-engraver.cc (position_scripts): take priority
12215         from head position.
12216
12217         * input/regression/finger-chords-order.ly (texidoc): new file.
12218
12219 2005-03-14  Jan Nieuwenhuizen  <janneke@gnu.org>
12220
12221         * make/ly-rules.make: 
12222         * stepmake/aclocal.m4: 
12223         * Documentation/user/GNUmakefile: Remove old makeinfo compatibility.
12224
12225         * buildscripts/fixcc.py (rules): Leave space after operator.
12226
12227 2005-03-14  Werner Lemberg  <wl@gnu.org>
12228
12229         * mf/feta-klef.mf (draw_gclef): Replace `simple_serif' for
12230         top of the glyph with smooth curve.
12231
12232 2005-03-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12233
12234         * Documentation/user/global.itely (Page layout): remove
12235         printpagenumber.
12236
12237 2005-03-13  Jürgen Reuter  <reuter@ipd.uka.de>
12238
12239         * input/regression/mensural-ligatures.ly: new file (with examples
12240         compiled by Pal Benko).
12241
12242         * Documentation/user/instrument-notation.itely: Bugfix: yet some
12243         other "custodes.*-u0" -> "custodes.*.u0" renaming victims in
12244         musicglyph access.  Many small beautifications in ancient
12245         examples.
12246
12247         * input/test/divisiones.ly: fixed indentation; small
12248         beautifications
12249
12250         * ly/engraver-init.ly: added FIXME comment
12251
12252         * scripts/lilypond-book.py,
12253         Documentation/user/lilypond-book.itely: added music fragment
12254         option "packed" to lilypond-book
12255
12256         * Documentation/user/instrument-notation.itely: Bugfix: added
12257         missing LedgerLineSpanner color setting in several places.  Added
12258         music fragment option "packed" to VaticanaContext example.
12259
12260 2005-03-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12261
12262         * scm/define-grobs.scm (all-grob-descriptions): switch off
12263         Hyphen_spanner::set_spacing_rods 
12264
12265         * lily/lyric-hyphen.cc (print): add padding between syllable and
12266         hyphen.
12267         (print): shorten hyphen in tight situations (determine using
12268         minimum-length)
12269
12270         * scm/paper.scm (layout-set-staff-size): increase blotdiameter to
12271         0.4pt.
12272
12273 2005-03-13  Jan Nieuwenhuizen  <janneke@gnu.org>
12274
12275         * ly/titling-init.ly (bookTitleMarkup): Refinements.
12276
12277         * input/regression/page-breaks.ly (paper): Set not raggedlastbottom,
12278         header/footer markings for regression-test.
12279
12280         * scm/backend-library.scm (output-scopes, header-to-file): Move
12281         from framework-tex.scm.
12282
12283         * scm/framework-ps.scm (output-framework)
12284         (output-preview-framework):
12285         * scm/framework-eps.scm (output-classic-framework)
12286         (output-framework): Use it.  Fixes collated files.
12287
12288 2005-03-12  Jan Nieuwenhuizen  <janneke@gnu.org>
12289
12290         * input/sakura-sakura.ly: 
12291         * input/xiao-haizi-guai-guai.ly: Add from Debian package (Anthony).
12292
12293         * buildscripts/guile-gnome.sh: Update.
12294
12295         * mf/GNUmakefile (aybabtu.otf): Add dependency on .pe.
12296
12297         * mf/aybabtu.pe.in: Capitalize Aybabtu.
12298
12299 2005-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12300
12301         * lily/separating-group-spanner.cc (find_rods): oops. Fix the real
12302         culprit: always exit the loop if we find a rod, even if it has
12303         distance < 0. 
12304
12305         * lily/ledger-line-spanner.cc (set_spacing_rods): rewrite to O(n)
12306         algorithm.
12307
12308         * stepmake/stepmake/metafont-rules.make ($(outdir)/%.pfb
12309         $(outdir)/%.svg $(outdir)/%.pfa): add --simplify.
12310
12311         * scm/output-svg.scm (dashed-line): new  function body.
12312         
12313         * GNUmakefile.in: create .htaccess.
12314
12315 2005-03-11  Jan Nieuwenhuizen  <janneke@gnu.org>
12316
12317         * Documentation/topdocs/NEWS.tely (Top): Fix text example.
12318
12319 2005-03-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12320
12321         * VERSION (PACKAGE_NAME): release 2.5.15
12322
12323         * scm/output-{pdf,pdftex,sketch}.scm (Module): remove bitrotted files.
12324
12325         * scm/framework-svg.scm (output-framework): put scaling in
12326         document header. Apply scaling only once.
12327         (output-framework): dump page size in px, not mm. 
12328
12329         * scm/lily-library.scm (modified-font-metric-font-scaling): rename
12330         from font-size.
12331
12332         * lily/paper-outputter-scheme.cc (LY_DEFINE):
12333         ly:outputter-output-scheme, new function.
12334
12335         * scm/output-svg.scm (pango-description-to-svg-font): new function
12336
12337 2005-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12338
12339         * Documentation/user/GNUmakefile (deep-symlinks): remove outimages
12340         target.
12341
12342         * input/typography-demo.ly: new file.
12343
12344 2005-03-10  Jan Nieuwenhuizen  <janneke@gnu.org>
12345
12346         * Documentation/user/global.itely (File structure): Add markup blocks
12347         to toplevel expressions.
12348         (Multiple movements, Creating titles): Add markup blocks.
12349
12350         * lily/stencil-scheme.cc: Use "libc-extension.hh" (WAS:
12351         <libc-extension.hh>).
12352
12353         * lily/accidental.cc (accurate_boxes): Compile fix: 1.51 was broken.
12354
12355         * flower
12356         * lily
12357         * kpath-guile: Nitpick run: buildscripts/fixcc.py.
12358
12359 2005-03-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12360
12361         * lily/accidental.cc: special bboxes for natural. 
12362
12363         * mf/feta-toevallig.mf: make stems heavier.
12364
12365         * lily/dynamic-text-spanner.cc (print): add bound padding for edge
12366         texts as well.
12367
12368         * mf/feta-klef.mf: revise. 
12369
12370         * mf/feta-schrift.mf: make thinning of accent less pronounced.
12371
12372         * mf/feta-klef.mf: add rounded curve at top. 
12373         make thinnib a little heavier.
12374
12375 2005-03-10  Jan Nieuwenhuizen  <janneke@gnu.org>
12376
12377         * lily/parser.yy (book_body): Oops, allow \markup in \book too.
12378
12379         * buildscripts/fixcc.py: New file.
12380
12381         * input/regression/utf8.ly: Update Debian font description.
12382
12383 2005-03-09  Jan Nieuwenhuizen  <janneke@gnu.org>
12384
12385         * stepmake/aclocal.m4: Fix test.
12386
12387 2005-03-09  Graham Percival  <gperlist@shaw.ca>
12388
12389         * Documentation/user/invoking.itely: added Sebastino Vigna's
12390         docs for the --jail option.
12391
12392 2005-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12393
12394         * lily/stem.cc (print): only produce stemlets if there are no
12395         noteheads on this stem.
12396
12397         * lily/note-spacing.cc (stem_dir_correction): robustness fix:
12398         don't crash on stemlet (visible stem without heads).
12399
12400         * scm/define-grobs.scm (all-grob-descriptions): junk LeftEdge for
12401         unbroken situations. 
12402
12403         * scm/output-lib.scm (center-invisible): new function.
12404
12405         * lily/spacing-loose-columns.cc (set_loose_columns): use spacing
12406         wishes to determine loose column space.
12407
12408         * lily/font-config.cc (init_fontconfig): add
12409         fonts/{otf,type1,cff}  to path.
12410
12411         * lily/main.cc (setup_paths): add fonts/{otf,svg,tfm,cff} to path
12412
12413         * mf/GNUmakefile (Module): install all fonts under otf/
12414
12415         * scm/framework-ps.scm (Module): read fonts from fonts/extension,
12416         replace /fonts/otf/ by /ps/ 
12417
12418         
12419 2005-03-09  Jan Nieuwenhuizen  <janneke@gnu.org>
12420
12421         * lily/paper-book.cc (classic_output): Reinstate header_0_ hack.
12422
12423         * lily/book.cc (process): Oops, add score_.header_.
12424
12425         * lily/paper-book.cc: Fold hearders, score and texts into scores_.
12426
12427         * lily/parser.yy: Handle toplevel and book texts as score.
12428
12429         * scm/page-layout.scm (default-page-make-stencil):
12430         Bugfix: (page-properties rename.
12431
12432         * scm/backend-library.scm (ly:system): Typo.
12433
12434 2005-03-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12435
12436         * stepmake/stepmake/executable-targets.make (installexe): don't
12437         strip installed executables
12438
12439         * lily/font-select.cc (get_font_by_design_size): revert
12440         pango_description_string as well.
12441
12442         * lily/system.cc (set_loose_columns): put loose column just left
12443         of next column.
12444
12445         * lily/include/group-interface.hh (extract_grob_array): rename
12446         from Pointer_group_interface__extract_grobs
12447
12448         * input/regression/ledger-line-minimum.ly (texidoc): new file.
12449
12450         * lily/ledger-line-spanner.cc (set_spacing_rods): new
12451         function. Keep ledgered note heads at a minimum distance.
12452         Introduce minimum-length-fraction
12453         (print): introduce length-fraction property.
12454
12455 2005-03-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12456
12457         * tex/GNUmakefile: remove latin1.enc rules.
12458
12459 2005-03-08  Jan Nieuwenhuizen  <janneke@gnu.org>
12460
12461         * scm/titling.scm: Typo.
12462
12463         * input/regression/score-text.ly: Really add.
12464
12465         * lily/score.cc: Bugfixes for SCM header_ and texts_ members.
12466
12467 2005-03-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12468
12469         * lily/open-type-font-scheme.cc:  new file.
12470
12471 2005-03-08  Jan Nieuwenhuizen  <janneke@gnu.org>
12472
12473         * scm/titling.scm (layout-extract-page-properties): Rename from
12474         page-properties.  Update callers.
12475
12476         * lily/lexer.ll (Lily_lexer):
12477         * lily/parser.yy: Junk lyric_markup state.
12478
12479         * Documentation/topdocs/NEWS.tely (Top): Mention markup text feature.
12480
12481         * scripts/lilypond-book.py (PREAMBLE_LY): toplevel-music-handler:
12482         Add texts parameter.
12483
12484 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
12485
12486         * lily/lexer.ll (lyric_markup): New mode.
12487         (Lily_lexer::push_lyric_markup_state): New method.
12488         (MARKUPCOMMAND): Markup during lyric mode returns LYRIC_MARKUP.
12489
12490         * lily/parser.yy (book_body):
12491         (toplevel_expression): Grok \markup texts.
12492
12493         * lily/score-scheme.cc (ly:music-scorify): 
12494         * scm/lily-library.scm (collect-music-for-book): Take texts
12495         parameter.
12496
12497         * lily/score.cc (texts_): New member.
12498
12499         * lily/paper-book.cc (systems): Format score texts.
12500
12501         * score-text.ly: New file.
12502
12503         * ttftool/SConscript:
12504         * kpath-guile/SConscript: New file.
12505
12506         * lily/SConscript:
12507         * SConstruct: Update.
12508
12509 2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12510
12511         * VERSION (PACKAGE_NAME): release 2.5.14
12512
12513 2005-03-07  Jan Nieuwenhuizen  <janneke@gnu.org>
12514
12515         * lily/main.cc: Add dummy xgettext markers.
12516
12517 2005-03-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12518
12519         * make/lilypond.fedora.spec.in (Requires): scrap kpathsea/tex
12520         requirements
12521
12522         * stepmake/aclocal.m4: check dynamic link, by checking if kpathsea
12523         executable is < 40k
12524
12525         * lily/main.cc (setup_paths): remove tfm1 tfm2 tfm3 include path
12526         hack.
12527
12528 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12529
12530         * flower/libc-extension.cc:
12531         * flower/include/libc-extension.hh: [Open]BSD simply cast
12532         cookie/funopen declarations.
12533
12534         * stepmake/aclocal.m4: Check for libkpathsea.so.
12535
12536         * kpath-guile/kpath.c (ly_kpathsea_expand_variable): Use
12537         dl_kpse_find_file.
12538
12539 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12540
12541         * kpath-guile/kpath.c (open_library): dlopen libkpathsea.so
12542         (open_library): alternative for static library.
12543
12544 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12545
12546         * configure.in: Set TTFTOOL_ENDIAN iso global CFLAGS.
12547
12548         * ttftool/GNUmakefile (MODULE_CFLAGS): Add $(TTFTOOL_ENDIAN).
12549
12550         Drop run-time dependency on teTeX.
12551
12552         * lily/kpath.cc (initialize_kpathsea): dlopen libkpathsea.
12553
12554         * stepmake/aclocal.m4 (STEPMAKE_KPATHSEA): Do not include
12555         KPATHSEA_LIBS in LIBS.
12556         (STEPMAKE_DLOPEN): New function.
12557
12558         * lily/font-config.cc (init_fontconfig): Use dir for directory,
12559         not path.
12560
12561         * flower/file-path.cc (directories): Rename from paths, as this
12562         return an array of directories (a single path).
12563
12564 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12565
12566         * lily/GNUmakefile (MODULE_LIBS): link with kpath-guile
12567
12568         * lily/all-font-metrics.cc (kpathsea_find_file): wrapper around
12569         new ly:kpathsea-find-file
12570
12571         * kpath-guile/kpath.c: new file. Put kpath bindings in lib.
12572
12573         * kpath-guile/GNUmakefile: new file
12574
12575         * buildscripts/gen-emmentaler-scripts.py (i): generate
12576         emmentaler-X.fontname as well.
12577
12578         * buildscripts/ps-embed-cff.py: new script
12579
12580         * scm/lily-library.scm: remove ps-embed-cff.
12581
12582         * scm/framework-ps.scm (write-preamble): don't use kpathsea for
12583         font loading. 
12584
12585         * scm/font.scm (add-music-fonts): load dynamics/numbers through
12586         fontconfig as well.
12587
12588         * lily/font-config.cc (init_fontconfig): add cff/ too.
12589
12590         * ly/generate-embedded-cff.ly: capitalize.
12591
12592         * lily/pango-select.cc (select_pango_font): use ::find_pango_font,
12593         so as to register the pango font.
12594
12595         * lily/font-config.cc (init_fontconfig): add
12596         prefix/{otf,type1,mf/out} to fontconfig path.
12597
12598         * lily/main.cc: only look at one prefix directory, LILYPONDPREFIX
12599         overrides all. 
12600
12601         * configure.in (gui_b): remove ec mftrace check
12602
12603         * config.hh.in: use lilypond-Major.Minor as data directory.
12604
12605         * scm/framework-ps.scm (dump-page): use output-units for landscape.
12606
12607         * buildscripts/gen-emmentaler-scripts.py (i): lower case file
12608         name.
12609
12610 2005-03-06  Jan Nieuwenhuizen  <janneke@gnu.org>
12611
12612         * lily/main.cc (do_chroot_jail): Small cleanups.  Avoid constant
12613         error messages.
12614
12615         * flower/libc-extension.cc:
12616         * flower/include/libc-extension.hh: [Open]BSD fixes for
12617         cookie/funopen declarations.
12618
12619 2005-03-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12620
12621         * buildscripts/gen-emmentaler-scripts.py (outdir): capitalize
12622         emmentaler.
12623
12624         * lily/score-engraver.cc (initialize): remove check for ecrm10 /
12625         lcrm10.
12626
12627         * scm/define-markup-commands.scm (fontsize): new markup
12628         command. Also set baseline-skip
12629
12630 2005-03-06 Sebastiano Vigna <vigna@dsi.unimi.it>.
12631         
12632         * lily/main.cc (do_chroot_jail): paranoia security for webserver
12633         use.
12634
12635 2005-03-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12636
12637         * stepmake/bin/add-html-footer.py (do_file): make wiki link optional.
12638
12639         * lily/pdf.cc: remove PDF related files
12640
12641 2005-03-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12642
12643         * ly/deutsch.ly: add quarter tones, patch by Arno Waschk.
12644         <hamamatsu@gmx.de>
12645
12646 2005-03-05  Graham Percival  <gperlist@shaw.ca>
12647
12648         * Documentation/user/advanced-notation.itely: first draft
12649         of reorg done.
12650
12651         * Documentation/user/global.itely: fixed (sub)section
12652         bits of MIDI.
12653
12654 2005-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12655
12656         * cygwin/mknetrel (extras): Bufix (Bertalan).
12657
12658         * Documentation/user/basic-notation.itely (Chords): @ref fix.
12659         * Documentation/user/instrument-notation.itely (Introducing chord
12660         names): Compile fix: must have unique name.
12661
12662 2005-03-02  Graham Percival  <gperlist@shaw.ca>
12663
12664         * Documentation/user/instrument-notation.itely: reorg.
12665
12666 2005-03-02  Jan Nieuwenhuizen  <janneke@gnu.org>
12667
12668         * scm/output-gnome.scm:
12669         * scm/output-svg.scm: Fix font scaling.
12670
12671 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12672
12673         * ly/titling-init.ly (tagline): Use Engraving.  Add comment about
12674         what link to use best.
12675
12676         * Documentation/user/instrument-notation.itely (Ancient accidentals): 
12677         * Documentation/user/tutorial.itely (Automatic and manual beams):
12678         Fix @ref.
12679
12680         * lily/tweak-registration.cc (replace_grob_tweak): New function.
12681         * lily/tweak-registration-scheme.cc (LY_DEFINE): Wrap it.
12682         * scm/framework-gnome.scm (tweak): Use it.
12683
12684 2005-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12685
12686         * Documentation/topdocs/NEWS.tely (Top): elucidate GS problem.
12687
12688         * scm/output-ps.scm (white-text): reinstate white-text
12689
12690 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12691
12692         * scm/output-ps.scm (offset-add): Remove.
12693
12694         * scm/lily-library.scm (offset-flip-y): New function.
12695         * scm/framework-gnome.scm (tweak): Use it.
12696
12697         * scm/output-gnome.scm (grob-cause): Add parameter.
12698
12699         * scm/lily.scm (ly:all-stencil-expressions): Add url-link.
12700         * scm/output-ps.scm (url-link): Move.
12701         (white-text): Warn user about brokenness.
12702
12703         * Documentation/topdocs/NEWS.tely: Be more accurate and respectful
12704         wrt ghostscript.
12705
12706 2005-03-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12707
12708         * lily/slash-repeat-engraver.cc (try_music): always make slashes
12709         if body length smaller than measure length.
12710
12711         * scm/define-markup-commands.scm (with-url): oops. use Y extent
12712         for Y.
12713
12714         * ly/titling-init.ly (tagline): put default tagline in \paper
12715
12716 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12717
12718         * lily/kpath.cc: 
12719         * lily/pdf.cc (Pdf_file): Use more generic error messages.
12720
12721         * scm/lily-library.scm (version-not-seen-message): New function.
12722         * ly/init.ly: Use it.
12723
12724         * scm/page-layout.scm (ly:optimal-page-breaks): Display page
12725         breaks as progess.
12726
12727         * scripts/lilypond-book.py (do_process_cmd): Do not lump
12728         whitespace with l10n message.
12729
12730         * scm/framework-tex.scm (convert-to-ps):
12731         (convert-to-dvi): Do not use overly specific l10n messages.
12732
12733         * ly/titling-init.ly (bookTitleMarkup): Add baseline skips from 2.4.
12734
12735         * tex/GNUmakefile $(outdir)/latin1.enc: Build fix:
12736         merge stderr with stdout.  
12737
12738 2005-03-01  Jan Nieuwenhuizen  <janneke@gnu.org>
12739
12740         * flower/libc-extension.cc: Tested BSD compile fix (Matthias
12741         Neeracher).
12742
12743 2005-02-29  Graham Percival  <gperlist@shaw.ca>
12744
12745         * Documentation/user/instrument-notation.teily: moved
12746         \arpeggio to Basic.
12747
12748         * Documentation/user/advanced-notation.itely: Articulation to
12749         Basic, a bunch of stuff from Basic moved to Advanced.
12750
12751         * Documentation/user/basic.itely: swapped various sections,
12752         reorganized Basic.
12753
12754 2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12755
12756         * flower/memory-stream.cc: 
12757         * flower/libc-extension.cc: Remove obsolete #undefs.
12758
12759         * flower/include/libc-extension.hh: Bugfix for BSD, place #ifdef
12760         more carefully.
12761
12762 2005-02-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12763
12764         * make/lilypond.fedora.spec.in (Requires): add GS 8.15 as
12765         dependency.
12766
12767         * VERSION (PACKAGE_NAME): release 2.5.13
12768
12769         * GNUmakefile.in (web-ext): don't ship ps.gz
12770
12771         * tex/GNUmakefile ($(outdir)/latin1.enc): redirect stderr to
12772         stdout
12773
12774 2005-02-28  Jan Nieuwenhuizen  <janneke@gnu.org>
12775
12776         * lily/general-scheme.cc (LY_DEFINE): Compile fix for systems
12777         without libintl.  Now it compiles too.
12778
12779 2005-02-28  Graham Percival  <gperlist@shaw.ca>
12780
12781         * Documentation/user/basic-notation.itely,
12782         instument-notation.itely, advanced-notation.itely:
12783         split up contents of notation.itely.
12784
12785         * Documentation/user/notation.itely: file removed.
12786
12787         * Documentation/user/invoking.itely, converters.itely:
12788         moved convert-ly info to invoking.itely.
12789
12790         * Documentation/user/global.itely, changing-defaults.itely,
12791         sound-output.itexi: moved global settings, file layout, and
12792         sound into global.itely.
12793
12794         * Documentation/user/sound-output.itexi: file removed.
12795
12796         * Documentation/user/lilypond.tely: removed links to
12797         notation.itely and sound.itely.
12798
12799 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12800
12801         * scm/output-ps.scm (grob-cause): only do mark_URI if non-empty.
12802
12803         * scm/framework-ps.scm (write-preamble): remove pdf-viewer code.
12804  
12805         * THANKS: add sponsor.
12806
12807         * scm/define-markup-commands.scm (with-url): new markup command.
12808
12809         * scm/page-layout.scm (TAGLINE): add www.lilypond.org with URL to
12810         tagline.
12811         
12812         * scm/output-tex.scm (url-link): stub.
12813
12814         * scm/output-ps.scm (url-link): new function.
12815
12816         * lily/lily-parser-scheme.cc (LY_DEFINE): deprecate
12817         ly:set-point-and-click
12818
12819 2005-02-27  Jan Nieuwenhuizen  <janneke@gnu.org>
12820
12821         * ps/music-drawing-routines.ps (mark_file_line): Switch Action
12822         based on pdf-viewer setting.
12823
12824         * scm/framework-ps.scm (write-preamble): Find and set preferred
12825         pdf-viewer.
12826
12827 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12828
12829         * Documentation/user/point-and-click.itely: update for PDF point &
12830         click.
12831
12832         * scripts/lilypond-pdfpc-helper.py: new file. Invoke different
12833         editors based on EDITOR setting.
12834
12835 2005-02-27  Jan Nieuwenhuizen  <janneke@gnu.org>
12836
12837         * scm/*: Oops, more grand 2005 replace bits.
12838
12839 2005-02-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12840
12841         * ps/music-drawing-routines.ps: new routine: insert PDF mark
12842
12843         * scm/output-ps.scm (grob-cause): point & click support for
12844         PostScript
12845
12846 2005-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12847
12848         * lily/input-scheme.cc (LY_DEFINE): rename to
12849         ly:input-file-line-column
12850
12851 2005-02-26  Graham Percival  <gperlist@shaw.ca>
12852
12853         * Documentation/user/examples.itely: small fix from Steve Doonan.
12854
12855         * Documentation/user/scheme-tutorial.itely: small fix from Steve Doonan.
12856
12857         * THANKS: added Yuval Harel.
12858
12859         * Documentation/user/{various}: inserted two spaces after a period.
12860
12861         * Documentation/user/lilypond.tely: added framework for reorg.
12862
12863         * Documentation/user/basic-notation.itely, instrument-notation.itely,
12864         advanced-notation.itely, global.itely: new files, placeholder for
12865         future reorg.
12866
12867 2005-02-26 Yuval Harel  <yuvalh@hotpop.com>
12868
12869         * Documentation/user/notation.itely: revamped Polyphony section
12870         
12871 2005-02-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12872
12873         * Documentation/user/lilypond-book.itely (Music fragment options):
12874         doc fontload.
12875
12876         * Documentation/user/changing-defaults.itely (Text encoding): add
12877         fontload option to utf8 include
12878
12879         * scripts/lilypond-book.py (compose_ly): add fontload option
12880
12881         * scm/framework-eps.scm (dump-stencils-as-EPSes): add
12882         force-eps-font-include option.
12883
12884         * ly/chord-modifiers-init.ly (blackTriangleMarkup): reinstate
12885         black triangle
12886
12887         * Documentation/user/invoking.itely (Editor support): remove
12888         lilypond-latex section.
12889
12890         * scripts/lilypond-latex.py (Module): remove script.
12891
12892         * cygwin/lily-wins.py (stat): write to .lylog, so as not to
12893         overwrite .log. 
12894
12895         * lily/main.cc: remove -m, --no-layout
12896
12897         * flower/include/libc-extension.hh: add ALIAS_FILE_TO_FILECOOKIE
12898         to define. We don't want to override fprintf everywhere.
12899
12900 2005-02-26  Jan Nieuwenhuizen  <janneke@gnu.org>
12901
12902         * cygwin/lilypond.hint: 
12903         * cygwin/README.in: Update dependencies.
12904
12905         * stepmake/aclocal.m4 (STEPMAKE_PANGO, STEPMAKE_PANGO_FT2):
12906         Bugfix: do not pollute CPPFLAGS, LIBS.
12907
12908         * cygwin/mknetrel (extras): Cross compile fixes.
12909
12910         * ttftool/util.c: 
12911         * ttftool/ttfps.c: 
12912         * ttftool/ps.c: #include libc-extension.hh
12913
12914         * flower/include/libc-extension.hh:
12915         * flower/libc-extension.cc (fopencookie)[!HAVE_FOPENCOOKIE]: Add
12916         wrapper using funopen.
12917         (fopencookie, handle_cookie_io_fclose, handle_cookie_io_fprintf,
12918         handle_cookie_io_fprintf): Add wrappers catching Memory_out_stream.
12919
12920         * config.hh.in:
12921         * configure.in (AC_CHECK_FUNCS): Add fopencookie, funopen.
12922         (AC_CHECK_HEADERS): Add libio.h
12923
12924         * scripts/convert-ly.py: Uniformize, internationalize.
12925         (2.5.2): Remove fatal encoding rule.
12926         (2.5.13): Handle latin1 encoding gracefully.
12927
12928 2005-02-23  Jan Nieuwenhuizen  <janneke@gnu.org>
12929
12930         * HACKING: Fix line breaks.
12931
12932 2005-02-23  Werner Lemberg  <wl@gnu.org>
12933
12934         * mf/graycx.mf, mf/graylj.mf: Removed.  Any decent TeX distribution
12935         contains those two files.
12936
12937 2005-02-21  Werner Lemberg  <wl@gnu.org>
12938
12939         * mf/feta-nummer-code.mf ("Numeral 5"): Include intersection point
12940         to improve overlap removal process.
12941
12942         * mf/feta-slag.mf (draw_trillelement): Add parameter to control
12943         left and right ending.  This ensures better overlapping.
12944         Update all callers.
12945         ("lineprall"): Don't use draw_gridline to get better overlapping.
12946
12947 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12948
12949         * scm/lily-library.scm (ps-embed-cff): add \n after EndResource
12950
12951         * Documentation/topdocs/NEWS.tely (Top): oops.
12952
12953 2005-02-21  Pedro Kroger  <kroeger@pedrokroeger.net>
12954
12955         * HACKING: new file.
12956
12957         * input/regression/utf8.ly (portuguese): added a portuguese example
12958         to show latin1 accents.
12959
12960 2005-02-21  Pal Benko  <benkop@freestart.hu>
12961
12962         * lily/mensural-ligature-engraver.cc:
12963         * lily/mensural-ligature.cc:
12964         * lily/include/mensural-ligature.hh: new algorithm implemented
12965
12966         * scm/define-grob-properties.scm: join-left killed (add-join may
12967         be used); join-left-amount changed to join-right-amount
12968
12969 2005-02-21  Graham Percival  <gperlist@shaw.ca>
12970
12971         * Documentation/user/notation.itely: small but urgent fix.
12972
12973 2005-02-21  Jürgen Reuter  <reuter@ipd.uka.de>
12974
12975         * lily/duration-scheme.cc: bugfix: correct parameters to
12976         SCM_ASSERT_TYPE.
12977
12978         * THANKS: added Pal.
12979
12980         * Documentation/user/notation.itely: bugfix: unTeXified
12981         $\\backslash$.  Bugfix: yet another glyph renaming victim:
12982         "timesig.*x/y" -> "timesig.*xy".
12983
12984 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12985         
12986         * VERSION (PACKAGE_NAME): release 2.5.12
12987
12988 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
12989
12990         * ly/engraver-init.ly: set tieWaitForNote to #t by default
12991
12992         * configure.in (gui_b): bump GUILE requirement to 1.6.5 
12993
12994         * Documentation/topdocs/NEWS.tely: add inputfileref macro.
12995
12996         * scm/framework-ps.scm (supplies-or-needs): uniq font name list.
12997
12998 2005-02-20  Jan Nieuwenhuizen  <janneke@gnu.org>
12999
13000         * input/mutopia/E.Satie/petite-ouverture-a-danser.ly: recode
13001         latin1..utf-8.
13002
13003         * input/regression/stanza-number.ly:
13004         * input/regression/utf8.ly (hebrew): Use addlyrics.  Update.
13005
13006         * lily/tie-engraver.cc (acknowledge_grob): Compile fix.
13007
13008 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13009
13010         * Documentation/topdocs/NEWS.tely (Top): only mention 2.5
13011         NEWS. Refer to website for older news.  
13012
13013         * stepmake/bin/add-html-footer.py (i18n): don't strip .PNG /
13014         .HTML. This should be done for specific servers only.
13015
13016         * Documentation/topdocs/NEWS.tely (Top): move to .tely. Add some
13017         .ly image examples.
13018
13019         * scm/define-grobs.scm (all-grob-descriptions): put ledger lines
13020         in layer 0 too.
13021
13022         * scm/define-context-properties.scm
13023         (all-user-translation-properties): add tieWaitForNote
13024
13025         * scm/define-grobs.scm (all-grob-descriptions): add
13026         Tie_column::before_line_breaking
13027
13028         * lily/tie.cc (get_column_rank): new function
13029
13030         * lily/tie-column.cc (before_line_breaking): new function.
13031         (werner_directions): take into account ties that start on
13032         different columns.  
13033
13034         * lily/score-engraver.cc (set_columns): move add_column() so we
13035         have column rank available.
13036
13037         * lily/tie.cc (get_column_rank): new function.
13038
13039         * input/regression/utf8.ly (japanese): add japanese lyrics.
13040
13041         * lily/pfb.cc (LY_DEFINE): ly:ttf->pfa, new function.
13042
13043         * THANKS: add Steve D
13044
13045         * ttftool/*.c: add TTF -> Type42 conversion library. Based on
13046         Public Domain work by Juliusz Chroboczek <jch@pps.jussieu.fr>
13047
13048 2005-02-20  Tatsuya Ono  <tats_ono@infoseek.jp>
13049
13050         * mf/parmesan-heads.mf: "0harmonic" -> "s0harmonic"
13051         to show harmonic notes
13052         * scm/define-markup-commands.scm: in \markup-by-number
13053         "dots-dot" -> "dots.dot" to show dotted notes
13054
13055 2005-02-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13056
13057         * flower/include/memory-stream.hh (class Memory_out_stream): new file.
13058
13059         * flower/memory-stream.cc (writer): new file.
13060
13061         * configure.in: add endian test.
13062
13063 2005-02-19  Jürgen Reuter  <reuter@ipd.uka.de>
13064
13065         * Documentation/user/examples.itely: small
13066         simplification/beautification
13067
13068         * Documentation/user/notation.ietly: bugfix: fixed many artefacts
13069         from the "x-y-z"->"x.y.z" renaming of glyphs throughout the whole
13070         notation manual.
13071
13072         * lily/mensural-ligature.cc: bugfix: another few victims of the
13073         "x-y-z"->"x.y.s-z" symetrical notehead glyph renaming.
13074
13075         * ly/gregorian-init.ly: commit some experimental code for hi-level
13076         ligature input language lying around here for several months.
13077
13078         * lily/mensural-ligature-engraver.cc: bugfix: another victim of
13079         the "x-y-z"->"x.y.s-z" symetrical notehead glyph renaming.
13080
13081         * lily/vaticana-ligature-engraver.cc: bugfix: another few
13082         "x-y-z"->"x.y.s-z" fixes.
13083
13084 2005-02-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13085
13086         * scm/framework-pdf.scm (scm): new file
13087
13088         * lily/include/pdf.hh (class Pdf_file): new file.
13089
13090         * lily/pdf.cc (write_trailer): new file.
13091
13092 2005-02-18  Erlend Aasland  <erlenda@gmail.com>
13093
13094         * input/regression/color.ly: new file
13095
13096         * lily/stencil.cc (interpret_stencil_expression):
13097         when a color expression is encountered: save current color,
13098         process the rest of the expression, and restore previous color.
13099
13100         * lily/system.cc (get_line): check all grobs for color property and
13101         prepare the stencil scheme expressions for further processing.
13102         Fix layer-loop.
13103
13104         * scm/define-grob-properties.scm: introduce the color property.
13105
13106         * scm/output-lib.scm: color helper functions.
13107
13108         * scm/output-ps.scm: introduce setcolor/resetcolor.
13109
13110 2005-02-07  Erik Sandberg  <ersa9195@student.uu.se>
13111
13112         * ly/*.ly, input/regression/*.ly: Added missing \version
13113         statements in some files.
13114
13115 2005-02-15  Graham Percival  <gperlist@shaw.ca>
13116
13117         * Documentation/user/notation.itely: minor editing.
13118
13119         * Documentation/user/converters.itely: updated convert-ly bugs.
13120
13121         * Documentation/user/lilypond-book.itely: add info about using
13122         feta characters in latex.
13123
13124 2005-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13125
13126         * scripts/convert-ly.py: new slur dash patch by Bertalan Fodor.
13127
13128 2005-02-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13129
13130         * scm/define-grob-properties.scm (all-user-grob-properties):
13131         removed 'dashed property.
13132
13133 2005-02-13  Nicolas Sceaux  <nicolas.sceaux@free.fr>
13134
13135         * scm/lily.scm (define-safe-public): new macro for defining
13136         variables that can be used in --safe mode. Use it in *.scm
13137         instead of manually setting safe-objects in safe-lily.scm.
13138
13139 2005-02-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13140         
13141         * lily/slur.cc: Slur-dash patch by Bertalan.
13142
13143         * ly/engraver-init.ly (EasyNotation): glyph name dash -> period.
13144
13145         * stepmake/bin/add-html-footer.py (do_file): do i18n only once. 
13146
13147 2005-02-10  Jan Nieuwenhuizen  <janneke@gnu.org>
13148
13149         * stepmake/aclocal.m4: teTeX-3.0 inimf fix.  Comment-out.
13150
13151 2005-02-09  Jan Nieuwenhuizen  <janneke@gnu.org>
13152
13153         * mf/GNUmakefile: teTeX-3.0 install fix.
13154
13155         * Cygwin patch from Bertalan.
13156
13157         * stepmake/stepmake/metafont-rules.make: Remove bashism.
13158
13159 2005-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
13160
13161         * GNUmakefile.in: 
13162         * SConstruct (symlink): teTeX-3.0 build fix: add map symlink.
13163
13164         * tex/GNUmakefile: teTeX-3.0 fix: install .enc in fonts/enc.  Add
13165         2.0.x compatibility.
13166
13167 2005-02-08  Werner Lemberg  <wl@gnu.org>
13168
13169         * mf/feta-din-code.mf: Format; clean up code.
13170         Replace `---' with `--' plus explicit path directions.
13171         (linethickness#, stafflinethickness#): Remove.
13172         ("dynamic f"): Replace `draw' with `draw_rounded_block'.
13173         ("dynamic s"): Improve shape.
13174         ("dynamic p"): Improve shape.
13175         Replace `draw' with better outline approximation.
13176         ("dynamic r"): Improve shape.
13177         Don't call `fill' and `draw' at the same time.
13178
13179 2005-02-08  Jan Nieuwenhuizen  <janneke@gnu.org>
13180
13181         * SConstruct (symlink):
13182         * GNUmakefile.in ($(builddir)/share/lilypond-force): teTeX-3.0
13183         build fix: add enc symlink.
13184
13185         * lily/general-scheme.cc: Compile fixes: include wchar.h, string.h.
13186
13187         Support for DESTDIR besides prefix=/foo
13188
13189         * vim/GNUmakefile (local-install): Use $(INSTALL) -d iso mkdir.
13190
13191         * stepmake/stepmake/*.make:
13192         * */GNUmakefile:
13193         * GNUmakefile.in: Prepend $(DESTDIR) to installation directory.
13194
13195         * config.make.in (prefix): Remove broken $(DESTDIR) hack.
13196
13197         * stepmake/aclocal.m4: Use %0.f iso %d to quiet gawk < 3.1.4 and
13198         mawk in fontforge (date) test.
13199
13200 2005-02-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13201
13202         * scm/font.scm (make-century-schoolbook-tree): add NCS as
13203         font-family=roman. Add Luxi Sans as sans
13204
13205 2005-02-07  Graham Percival  <gperlist@shaw.ca>
13206
13207         * Documentation/user/notation.itely: add warning about
13208         percent repeats and Voice contexts.
13209
13210         * Documentation/user/lilypond-book.itely: clarified the
13211         necessity of dvips -u arguments.
13212
13213 2005-02-07  Erik Sandberg  <ersa9195@student.uu.se>
13214
13215         * THANKS: Added a bunch of bug hunters.
13216
13217 2005-02-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13218
13219         * scm/framework-ps.scm (output-preview-framework): bugfix.
13220
13221         * ly/chord-modifiers-init.ly (ignatzekExceptionMusic): use unicode
13222         o/ for chord modifier..
13223
13224         * lily/general-scheme.cc (LY_DEFINE): new function ly:wide-char->utf-8.
13225
13226         * lily/drum-note-performer.cc:  remove unused (thanks Michael
13227         Welsh Duggan). 
13228
13229 2005-02-06  Jan Nieuwenhuizen  <janneke@gnu.org>
13230
13231         * Documentation/user/changing-defaults.itely (Text encoding): Clarify.
13232
13233         * ly/titling-init.ly: Do not also print intstrument in header on
13234         first page.  Do not print page number on first and only page.
13235
13236 2005-02-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13237
13238         * input/regression/*.ly: remove old-relative everywhere
13239
13240         * lily/music-sequence.cc (simultaneous_relative_callback): do
13241         what-if analysis on copy, not on original. Fixes old-relative
13242         compatibility.
13243
13244         * scm/backend-library.scm (postscript->png): space before
13245         --verbose.
13246         
13247 2005-02-05  Werner Lemberg  <wl@gnu.org>
13248
13249         * mf/feta-autometric.mf (fet_beginchar): Check whether `feta_group'
13250         is defined.
13251
13252         * mf/feta-alphabet.mf: Define `staffsize#'.
13253         Include `feta-params.mf'.
13254         s/staffheight/design_size/.
13255
13256         * mf/feta-alphabet??.mf: s/staffheight/design_size/.
13257
13258         * mf/feta-alphabet26.mf: Fix a serious bug (design size off by 8pt).
13259
13260         * mf/feta-nummer-code.mf: Reformatted.
13261         (draw_six): Use outline intersection to avoid a self-intersecting
13262         path.
13263         ("Numeral comma"): Fix serious outline glitches.  This slightly
13264         changes the glyph shape.
13265         ("Numeral dash"): Use `draw_rounded_block'.
13266         ("Numeral dot"): Use `drawdot'.
13267         ("Numeral 1"): Assure identical tangent directions for the
13268         intersection points of paths.  The glyph shape improvement is only
13269         visible at very high magnifications.
13270         ("Numeral 2"): Use `solve' macro to make the lower right part of
13271         the glyph outline touch the x axis exactly.  This changes the
13272         glyph shape.
13273         Minor fixes for better overlap removal support.
13274         ("Numeral 4"): Make lefter corner `rounder'.
13275         ("Numeral 5"): Assure identical tangent directions for the
13276         intersection points of paths.  This improves the glyph shape at
13277         high magnifications.
13278         ("Numeral 7"): Use `solve' macro to make the upper right part of
13279         the glyph outline touch the metrics box exactly.  This changes the
13280         glyph shape.
13281         Avoid corner in the upper left part of the glyph (causing a minor
13282         shape change).
13283
13284         * mf/feta-ital-*.mf: Removed.  Unused.
13285
13286 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13287
13288         * VERSION (PATCH_LEVEL): release 2.5.11
13289
13290         * input/regression/fill-line-test.ly: new file.
13291
13292         * buildscripts/gen-emmentaler-scripts.py (i): insert dash in
13293         emmentaler name, eg. emmentaler-23. 
13294
13295 2005-02-04  Christian Hitz  <chhitz@gmx.net>
13296
13297         * scm/scm/define-markup-commands.scm (fill-line): rework for better
13298         alignment with centered texts
13299
13300         * scm/stencil.scm (stack-stencils-padding-list): new function, takes a
13301         list of paddings
13302
13303 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13304
13305         * mf/GNUmakefile ($(outdir)/lilypond.map): add aybabtu to .map file.
13306
13307         * lily/note-column.cc (translate_rests): call flush_extent_cache()
13308         of parents when translating rests. Fixes: c-chord-rest.ly 
13309
13310         * lily/include/dimension-cache.hh (struct Dimension_cache): add
13311         dimension_callback_ member.
13312
13313         * lily/grob.cc (flush_extent_cache): new function. Force recompute
13314         of extents.
13315
13316 2005-02-04  Jan Nieuwenhuizen  <janneke@gnu.org>
13317
13318         * all but lily/*: The grand 2004/2005 replace.
13319
13320 2005-02-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13321
13322         * lily/*: add space after ,  
13323
13324         * scm/music-functions.scm (has-request-chord): don't use
13325         ly:music-name anywhere. Fixes <<\\>> notation. 
13326
13327         * scm/define-markup-commands.scm (box): use font-size for
13328         padding. Fixes boxed-rehearsal-marks.ly
13329
13330         * lily/parser.yy (assignment_id): allow LYRICS_STRING as
13331         identifier definition too, so foo = \lyrics { ...   } bar = #1
13332         doesn't complain about "bar" being LYRICS_STRING.
13333
13334         * lily/paper-def.cc (find_pango_font): new routine; Store
13335         pango_fonts in hash tab too. This is necessary for retrieving
13336         Pango_fonts::physical_font_tab() later on.
13337  
13338         * lily/pango-font.cc (pango_item_string_stencil): bugfix: don't
13339         crash if psname is null.
13340
13341         * lily/lily-guile.cc (ly_hash2alist): new function
13342
13343         * Documentation/user/changing-defaults.itely (Text encoding):
13344         rewrite. 
13345
13346         * lily/pango-font.cc (physical_font_tab): new member. Store PSname
13347         -> font_filename mapping.
13348
13349         * lily/pango-font-scheme.cc (LY_DEFINE): new file. New function
13350         ly_pango_font_physical_fonts
13351
13352         * scm/framework-ps.scm (supplies-or-needs): extract names from
13353         physical Pango_fonts.
13354
13355         * utf8.ly: new file.
13356
13357 2005-02-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13358
13359         * Documentation/user/changing-defaults.itely (Page layout): add
13360         doco about systemSeparatorMarkup.
13361
13362         * scm/page-layout.scm (default-page-make-stencil): add-to-page
13363         function.
13364         (default-page-make-stencil): insert system separators.
13365
13366         * scm/define-markup-commands.scm (hcenter): add
13367         (beam): add.
13368
13369 2005-02-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13370
13371         * scm/output-ps.scm (ez-ball): reinstate ez notation.
13372
13373 2005-02-01  Jan Nieuwenhuizen  <janneke@gnu.org>
13374
13375         * lily/main.cc: Spell backend consistently.  Sort options.
13376
13377 2005-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13378
13379         * scripts/lilypond-book.py (Module): revert @include.
13380         
13381 2005-01-31  Jan Nieuwenhuizen  <janneke@gnu.org>
13382
13383         * scripts/lilypond-book.py: Resurrect HTML links to .ly source.
13384         Bugfix: @include .tex (not .texi).  Small cleanups.
13385
13386         * stepmake/bin/add-html-footer.py (i18n): New function.
13387
13388 2005-01-31  Werner Lemberg  <wl@gnu.org>
13389
13390         * mf/feta-nummer.mf: Removed.  Unused.
13391
13392 2005-01-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13393
13394         * lily/ : 2004 -> 2005 s&r
13395
13396         * scm/file-cache.scm (cached-file-contents): add file. Read each
13397         file only once.
13398
13399         * scm/font.scm (add-pango-fonts): change order. Medium weight is
13400         now default.
13401
13402         * VERSION: release 2.5.10
13403         
13404         * mf/GNUmakefile (INSTALLATION_OUT_FILES4): install cff.ps files.
13405
13406         * make/ly-rules.make ($(outdir)/%.texi): detect new EOF marker.
13407
13408         * scm/framework-ps.scm (dump-stencil-as-EPS): robustness: ensure
13409         that both X and Y extents of bbox are non-nil.
13410
13411 2005-01-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13412
13413         * scm/chord-name.scm (alteration->text-accidental-markup): change
13414         - to . 
13415
13416         * scm/output-ps.scm (utf8-string): add utf8-string for completeness.
13417
13418         * scm/framework-ps.scm (dump-stencil-as-EPS): new function
13419
13420         * Documentation/user/invoking.itely (Invoking lilypond): add note
13421         about EPS backend.
13422
13423         * scm/framework-eps.scm: new file: create per-system/per-page EPS
13424         files for inclusion in lilypond-book document.
13425
13426         * input/tutorial/lbook-latex-test.tex: rename from lilbook.tex
13427
13428         * input/tutorial/lbook-texi-test.texi: new file.
13429
13430         * scm/safe-lily.scm (safe-objects): add
13431         {begin,end}-of-line-(in)?visible as safe.
13432  
13433 2005-01-30  Graham Percival  <gperlist@shaw.ca>
13434
13435         * Documentation/user/changing-defaults.itely: fixed example
13436         of (dynamics).
13437
13438 2005-01-29  Graham Percival  <gperlist@shaw.ca>
13439
13440         * lily/main.cc: fix info about -o=FILE.
13441
13442 2005-01-29  Werner Lemberg  <wl@gnu.org>
13443
13444         * mf/feta-toevallig.mf ("Natural"): Completely changed the
13445         construction to assure smooth transition from straight to curved
13446         lines.
13447
13448 2005-01-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13449
13450         * lily/stencil.cc (moved_to_edge): don't halt on adding empty
13451         stencils.
13452
13453         * ps/lilyponddefs.ps: add start-page, start-system doesn't
13454         translate to top of page. Fixes alignment problems of
13455         lilypond-generated EPS files.
13456
13457 2005-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13458
13459         * scm/part-combiner.scm (analyse-spanner-states): trigger on
13460         crescendo-end as well, since Decrescendo maybe ended with Stop
13461         Crescendo.). Fixes: partcombine-diminuendo.ly
13462
13463         * scm/script.scm (default-script-alist): swap portato symbols.
13464
13465         * lily/instrument-name-engraver.cc (acknowledge_grob): typo.
13466
13467         * lily/paper-outputter-scheme.cc (LY_DEFINE):
13468         ly:outputter-port. New function.
13469
13470         * scm/framework-ps.scm (output-classic-framework): dump a
13471         -systems.texi too
13472         (output-classic-framework): dump multiple systems on an "infinite"
13473         page EPS including fonts. 
13474
13475         * scripts/lilypond-book.py (Lilypond_snippet.ly_is_outdated): use
13476         .eps files for both texi and tex formats. Use PNG coming from
13477         lilypond.
13478         
13479 2005-01-28  Graham Percival  <gperlist@shaw.ca>
13480
13481         * Docuemntation/user/invoking.itely: fix info about -o=FILE.
13482
13483         * scripts/lilypond-latex.py: fix info about -o=FILE.
13484
13485 2005-01-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13486
13487         * ly/generate-embedded-cff.ly: write .cff.ps files.
13488
13489         * mf/GNUmakefile ($(outdir)/lilypond.map): add .cff.ps to .map file.
13490
13491         * stepmake/stepmake/metafont-rules.make ($(outdir)/%.pfb
13492         $(outdir)/%.svg $(outdir)/%.pfa): remove --simplify
13493
13494 2005-01-28  Jan Nieuwenhuizen  <janneke@gnu.org>
13495
13496         * lily/include/guile-compatibility.hh (SCM_VECTOR_P): Compile fix.
13497
13498 2005-01-28  Werner Lemberg  <wl@gnu.org>
13499
13500         * mf/feta-macros.mf (soft_start_penstroke, soft_end_penstroke): New
13501         macros.
13502         (draw_bulb): Improved.
13503
13504         * mf/feta-pendaal.mf ("Pedal asterisk"): Remove workaround for
13505         metapost bug.
13506         (draw_pedal_P): Use soft_end_penstroke.
13507         (draw_pedal_d): Use soft_start_penstroke.
13508
13509         * mf/feta-schrift.mf ("Trill (`tr')"): Remove redundant point in
13510         path.
13511         ("Varied Coda"): Move some points to avoid fontforge warnings.  This
13512         doesn't change the glyph shape.
13513
13514         * mf/feta-accordion.mf ("accOldEE"): Draw glyph differently (without
13515         changing the shape) to avoid fontforge warnings.
13516
13517         * mf/feta-klef.mf (draw_tab_T, draw_tab_A, draw_tab_B): Use
13518         soft_end_penstroke and fix glyph shape.
13519
13520 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13521
13522         * lily/*.cc: Scheme deprecation of SCM_VECTOR_* 
13523
13524 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13525
13526         * scm/define-markup-commands.scm (line): filter out empty stencils
13527         from line command.
13528
13529         * lily/stencil-scheme.cc (LY_DEFINE): only allow finite real
13530         amount.
13531
13532 2005-01-27  Graham Percival  <gperlist@shaw.ca>
13533
13534         * Documentation/user/notation.itely: added info about what
13535         \voiceFoo does.  Also rewrote warning about marks at
13536         a line break.
13537
13538         * Documentation/user/changing-defaults.itely: added info
13539         about putting dynamics in parenthesis and brackets.
13540
13541 2005-01-27  Werner Lemberg  <wl@gnu.org>
13542
13543         * mf/feta-schrift.mf ("Trill (`tr')"): Fix typo.
13544
13545 2005-01-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13546
13547         * mf/feta-schrift.mf: reverse u and d portato. Fixes:
13548         portato-direction.ly
13549
13550         * lily/beam.cc (consider_auto_knees): add beam height to
13551         threshold. Fixes: knee-multiple-beam.ly
13552
13553         * lily/instrument-name-engraver.cc (acknowledge_grob): also ignore
13554         pedal line spanners. Fixes: instrument-center-pedal.ly
13555
13556         * lily/auto-beam-engraver.cc (acknowledge_grob): stop beam
13557         if encountering barline. Fixes: auto-beam-repeat.ly
13558
13559 2005-01-26  Werner Lemberg  <wl@gnu.org>
13560
13561         * mf/feta-slag.mf (draw_trillelement): Fix shape to get clean
13562         overlapping.
13563
13564         * mf/feta-toevallig.mf (draw_meta_sharp): Fix shape to avoid curves
13565         with inflections for the 1/2 sharp glyph.
13566
13567         * mf/feta-schrift.mf ("Trill (`tr')"): Fix start position of
13568         connection between `t' and `r'.
13569         Unify bulb with the rest of `r' to avoid grazing outlines which
13570         confuses the overlap removal algorithm of fontforge.
13571
13572         * mf/feta-bolletjes.mf (draw_slash): Fix shape to avoid curves with
13573         inflections.
13574         (draw_cross): Fix shape to have uniform thickness in corners.
13575
13576         * mf/feta-pendaal.mf (draw_pedal_P): Break shape into smaller pieces
13577         to avoid an uneven number of self-intersections; this confuses
13578         fontforge.
13579         Fix a slight bug in the shape at left bottom (which is visible only
13580         at high magnifications).
13581         `Center' the stem horizontally to avoid overlapping.
13582
13583 2005-01-24  Werner Lemberg  <wl@gnu.org>
13584
13585         * mf/feta-autometric.mf (fet_beginfont): Set font_coding_scheme
13586         to `asis'.
13587         (fet_begingroup): Save group name in string `feta_group'.
13588         (fet_endgroup): Updated.
13589         (fet_beginchar): Emit `glyph_name' special for mf2pt1.
13590
13591         * mf/feta-bolletjes.mf: s/p/pat/ for paths.
13592
13593         * mf/feta-pendaal.mf ("Pedal asterisk"): Add workaround for bug
13594         in metapost.
13595
13596 2005-01-24  Graham Percival  <gperlist@shaw.ca>
13597
13598         * Documentation/user/notation.itely: really minor editing.
13599
13600 2005-01-22  Graham Percival  <gperlist@shaw.ca>
13601
13602         * Documentation/user/examples.itely: minor editing.
13603
13604         * Documentation/user/changing-defaults.itely: minor editing.
13605
13606         * Documentation/user/notation.itely: clarified info on polyphony
13607         and \addlyrics.
13608
13609 2005-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
13610
13611         * scm/output-gnome.scm: 
13612         * scm/output-svg.scm:
13613         * scm/lily-library.scm (font-name-style): Update font name
13614         kludging for fontconfig use.
13615
13616 2005-01-20  Erlend Aasland  <erlenda@gmail.com>
13617
13618         * scm/define-markup-commands.scm: Document right-align and
13619         larger markup commands. Remove "TODO" from the topmost comment
13620         "each markup function should have a doc string." More consistent
13621         use of new-lines.
13622
13623 2005-01-22  Graham Percival  <gperlist@shaw.ca>
13624
13625         * Documentation/user/changing-defaults: removed info about
13626         copyright symbol, since it's likely to change soon.
13627         Added info about betweensystemspace.
13628
13629         * Documentation/user/notation.itely: minor fixes.
13630
13631         * Documentation/user/lilypond.tely,
13632         Documentation/user/music-glossary.tely: changed copyright
13633         date to 2005 instead of 2004.
13634
13635         * input/test/volta-chord-names.ly: added old example back.
13636
13637 2005-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13638
13639         * mf/feta-beugel.mf: use design size 20 (not 15).
13640
13641         * mf/aybabtu.pe.in: scale brace fonts to design sizes.
13642         change name to aybabtu completely
13643
13644 2005-01-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13645
13646         * buildscripts/gen-emmentaler-scripts.py (outdir): add
13647         design_size to fontname
13648
13649 2005-01-19  Werner Lemberg  <wl@gnu.org>
13650
13651         * mf/feta-accordion.mf, mf/feta-klef.mf, mf/feta-pendaal.mf,
13652         mf/feta-schrift.mf: s/p/pat/ if a path variable.
13653
13654         * mf/feta-autometric.mf (set_char_box): Add code which emits
13655         specials for mf2pt1 if run with metapost.
13656         (to_bp): New macro for mf2pt1.
13657
13658 2005-01-18  Graham Percival  <gperlist@shaw.ca>
13659
13660         * Documentation/user/changing-defaults: added info on
13661         creating a copyright symbol.
13662
13663 2005-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13664
13665         * VERSION: release 2.5.9
13666         
13667 2005-01-18  Erlend Aasland  <erlenda@gmail.com>
13668
13669         * scm/auto-beam.scm: Simplify score-override-auto-beam-setting
13670
13671         * Documentation/user/notation.itely: Document
13672         score-override-auto-beam-setting Fix documentation for
13673         revert-auto-beam-setting.
13674
13675 2005-01-18  Werner Lemberg  <wl@gnu.org>
13676
13677         * scm/framework-ps.scm (ps-embed-cff): Fix DSC comments.
13678         (procset): New function to define a procset resource.
13679         (ps-embed-pfa): New function to define a font resource.
13680         (setup): New function to define a `Setup' environment.
13681         (preamble): Use new functions.
13682
13683         * ps/lilypond.defs (init-lilypond-parameters): New function to
13684         get rid of directly executed PS code.  Used in scm/framework-ps.scm.
13685
13686 2005-01-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13687
13688         * mf/GNUmakefile (MFTRACE_FLAGS): add --no-afm to MFTRACE_FLAGS
13689
13690 2005-01-17  Erlend Aasland  <erlenda@gmail.com>
13691
13692         * scm/define-markup-commands.scm: Change number->markletter-string
13693         to take two arguments (vector number). Add number->mark-alphabet-vector
13694         and markalphabet markup command.
13695
13696         * scm/translation-functions.scm: Add format-mark-box-alphabet,
13697         format-mark-alphabet, format-mark-box-barnumbers and
13698         format-mark-barnumbers. Fix bug in format-mark-box-numbers.
13699
13700 2005-01-17  Graham Percival  <gperlist@shaw.ca>
13701
13702         * Documentation/user/examples.itely: add SATB automatic piano
13703         reduction template.
13704
13705         * Documentation/user/notation.itely: added info about changing
13706         partcombine texts.  Also adds examples of alternate lyrics.
13707
13708         * Documentation/user/changing-defaults.itely: added warning
13709         about \RemoveEmptyStaffContext overriding previous changes.
13710
13711 2005-01-17  Werner Lemberg  <wl@gnu.org>
13712
13713         * buildscripts/mf-to-table.py: Use `FetaAlphabetEncoding' for
13714         feta-alphabet*.
13715
13716 2005-01-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13717
13718         * python/lilylib.py (make_ps_images): don't do final showpage for
13719         multi-page documents.
13720         
13721         * VERSION (MY_PATCH_LEVEL): release 2.5.8
13722
13723 2005-01-16  Graham Percival  <gperlist@shaw.ca>
13724
13725         * Documentation/user/lilypond.tely: changed order of appendices;
13726         unified index should be last.
13727
13728         * Documentation/user/notation.itely: add example of key signatures
13729         and info about Staff.printKeyCancellation.
13730
13731 2005-01-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13732
13733         * lily/include/repeated-music.hh (class Repeated_music): change
13734         into "namespace" class.
13735
13736         * lily/event.cc: remove Key_change_event.
13737
13738         * lily/include/transposed-music.hh (class Transposed_music): remove.
13739
13740         * lily/transposed-music.cc: remove
13741
13742         * lily/include/relative-music.hh: remove.
13743
13744         * lily/include/music-sequence.hh (struct Music_sequence): change
13745         into "namespace" class.
13746
13747         * lily/untransposable-music.cc (Module): remove
13748
13749         * lily/include/un-relativable-music.hh (Module): remove
13750
13751         * lily/include/untransposable-music.hh (Module): remove
13752
13753         * lily/include/music-list.hh (Module): remove file
13754
13755         * lily/un-relativable-music.cc: remove file.
13756
13757 2005-01-14  Jan Nieuwenhuizen  <janneke@gnu.org>
13758
13759         * lily/parser.yy: Compile fix.
13760
13761 2005-01-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13762
13763         * lily/include/music.hh (class Music): unvirtualize transpose().
13764
13765         * lily/sequential-music.cc: remove file.
13766
13767         * lily/include/lyric-combine-music.hh ("music.hh"): remove file.
13768
13769         * lily/slur-scoring.cc (get_best_curve): only switch on
13770         DEBUG_SLUR_SCORING for non NDEBUG builds.
13771
13772         * lily/include/music.hh (class Music): replace Music::start_mom()
13773         by start-callback property
13774
13775         * lily/include/grace-music.hh: remove file. 
13776
13777         * lily/stem.cc (height): robustness fix.
13778
13779         * lily/time-scaled-music.cc: remove file.
13780
13781         * lily/include/music.hh (class Music): include SCM init argument.
13782         (class Music): replace Music::get_length() virtual by
13783         length-callback property everywhere.
13784
13785         * scripts/convert-ly.py (conv): add  # to \property scalar value.
13786
13787         * mf/GNUmakefile: don't install *list.ly
13788
13789 2005-01-14  Jan Nieuwenhuizen  <janneke@gnu.org>
13790
13791         * mf/GNUmakefile (CFF_FILES): Bugfix: only big cheeses and braces.
13792
13793 2005-01-12  Werner Lemberg  <wl@gnu.org>
13794
13795         This patch addresses the following problems in the feta sources
13796         files which contribute to the fetaXX fonts.
13797
13798         . Many fixes for rasterization at low resolutions (consistent use of
13799           `vround' and `hround', integer shift values for paths, applying
13800           `eps' for mirrored paths, use of `define_whole_pixels' and
13801           friends, etc.) -- while this probably looks like a waste of time
13802           it has revealed deficiencies in some glyph shapes.  See comment at
13803           the end of feta-params.mf how vertical symmetry is achieved.
13804
13805         . The `---' operator has been replaced everywhere with `--'; this
13806           both improves and considerably reduces the font size after
13807           conversion with mf2pt1.
13808
13809         These change aren't explicitly mentioned below since virtually all
13810         glyphs are affected.
13811
13812         Other notable differences:
13813
13814         . Glyphs from feta-accordion.mf now have charboxes around the
13815           outline.
13816
13817         . Fixed incorrect charbox for `accDot'.
13818
13819         . The `rcomma' and `lcomma' glyphs were distorted due to a typo.
13820
13821         . Fixed position of the bow in the `upprall' glyph and its siblings.
13822
13823         . The bulb size in the `2/2 meter' and `4/4 meter' glyphs is now
13824           dependent on the staff line thickness to avoid touching the middle
13825           staff line at smaller sizes.
13826
13827         . Largely extended output for feta-testXX: Where useful, glyphs
13828         are shown both between and on staff lines.
13829
13830
13831         * mf/feta-params.mf (staff_space_rounded,
13832         stafflinethickness_rounded, linethickness_rounded,
13833         ledgerlinethickness_rounded, stemthickness_rounded): New variables.
13834         Update all code which uses them where appropriate.
13835         (feta_eps, feta_shift, feta_space_shift, feta_offset, feta_fillpen):
13836         New variables used to control rasterization at low resolutions.  Set
13837         to zero if feta code is processed with metapost.
13838
13839         * mf/feta-macros.mf (draw_staff, draw_staff_outline): Updated.
13840         (draw_rounded_block, draw_square_block): Updated to use `--' only.
13841         (flare_path): Updated.
13842         Make it work with `filldraw' (but only circular pens).
13843         (hfloor, vfloor, hceiling, vceiling): New macros.
13844
13845         * mf/feta-accordion.mf ("accDiscant", "accFreebase", "accStdbase"):
13846         Use `draw' again in mf mode to have good pixel dropout control.
13847         Fix intersection points of horizontal lines with circle.
13848         ("accDot"): Fix parameters for set_char_box.
13849         ("accOldEE"): Use `draw' again in mf mode to have good pixel dropout
13850         control.
13851
13852         * mf/feta-banier.mf: Updated.
13853
13854         * mf/feta-bolletjes.mf (remember_pic): New variable, used for
13855         testing.
13856         (undraw_inside_ellipse): Remove `center' argument.  Update all
13857         callers.
13858         (draw_brevis): New macro, called by "Brevis notehead".
13859         (draw_whole_triangle_head): New macro, called by "Whole
13860         trianglehead".
13861         (draw_small_triangle_head): Use `filldraw'.
13862
13863         * mf/feta-eindelijk.mf: Remove useless global group.
13864         Updated.
13865
13866         * mf/feta-klef.mf (draw_c_clef): Correct point positions for using
13867         `filldraw'.
13868
13869         * mf/feta-pendaal.mf: Updated.
13870
13871         * mf/feta-puntje.mf: Updated.
13872
13873         * mf/feta-schrift.mf (draw_very_long_fermata): Simplified to use
13874         less points.
13875         ("Flageolet"): Use `draw' again in mf mode to have good pixel
13876         dropout control.
13877         ("Varied Coda"): Use `draw_block'.
13878         (draw_comma): Fix typo.
13879         (draw_arpeggio_arrow): Use `draw' also in mf mode to have good
13880         pixel dropout control.
13881
13882         * mf/feta-slag.mf ("upprall", "downprall", "lineprall"): Fix start
13883         position of bow.
13884
13885         * mf/feta-timesig.mf (draw_C): Reduce bulb size for smaller design
13886         sizes.
13887
13888         * mf/feta-toevallig.mf (remember_pic): New variable, used for
13889         testing.
13890         (draw_meta_sharp): Much simplified.
13891         ("Sharp", "1/2 Sharp", "3/4 Sharp"): Don't rotate but shift.
13892
13893         * mf/feta-test-generic.mf: Include all files as in feta-generic.mf.
13894
13895 2005-01-13  Mats Bengtsson  <mabe@s3.kth.se>
13896
13897         * Documentation/user/notation.itely (Ancient rests): Fix typo
13898         (thanks Anthony)
13899
13900 2005-01-13  Jan Nieuwenhuizen  <janneke@gnu.org>
13901
13902         * scm/auto-beam.scm (score-override-auto-beam-setting): New function.
13903
13904         * lily/main.cc (setup_paths): Add cff.
13905
13906         * mf/GNUmakefile (foe): Include actual target %.cff.
13907         (INSTALLATION_OUT_SUFFIXES): Install CFF and SVG fonts too.
13908
13909 2005-01-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13910
13911         * lily/include/lily-lexer.hh (class Lily_lexer): lose hungarian _b
13912         suffix for main_input_b_.
13913
13914         * scm/music-functions.scm (toplevel-music-functions):
13915         precompute music lengths for music expressions.  
13916
13917 2005-01-11  Nicolas Sceaux  <nicolas.sceaux@free.fr>
13918
13919         * lily/include/input.hh (class Input): new `end_' slot for end of
13920         input. Renamed defined_str0_ to start_.
13921
13922         * lily/input.cc (Input): Add Input::Input (Input const &) and
13923         remove Input::Input (Source_file*, char const *). Use the new
13924         slots.
13925         (set_location): method used by bison to propagate input
13926         locations (YYLLOC_DEFAULT).
13927         (end_line_number, end_column_number, step_forward): new methods
13928         
13929         * lily/input-scheme.cc (ly:input-both-locations): new function,
13930         similar to ly:input-location, but also return the end line and
13931         column.
13932
13933         * lily/include/includable-lexer.hh: 
13934         * lily/includable-lexer.cc: 
13935         * lily/include/lily-lexer.hh (class Lily_lexer): 
13936         * lily/lily-lexer.cc (add_lexed_char): Move add_lexed_char from
13937         Includable_lexer to Lily_lexer, in order to update lexloc (the
13938         yylloc), a new slot of Lily_lexer.
13939         (here_input, LexerError): simplify by using the lexloc slot (aka
13940         yylloc)
13941
13942         * lily/lexer.ll: #define yylloc to use input locations (it may
13943         be useless here?). Fixed the #embedded_scm rule (step the location
13944         forward in order to skip the sharp sign before parsing the scheme
13945         expression)
13946
13947         * lily/include/lily-parser.hh (class Lily_parser): 
13948         * lily/lily-parser.cc: Remove push_spot(), pop_spot() and
13949         here_input()
13950         (parser_error): overload for more precise locations of errors.
13951
13952         * lily/parser.yy (YYLTYPE): set location type to Input
13953         (YYLLOC_DEFAULT): use Input::set_location()
13954         (yylex): add the YYLTYPE* location parameter.
13955         Clean push_spot()/pop_spot()/here_input(), and use @$, @1, etc.
13956         Give an Input parameter to THIS->parser-error() for more accurate
13957         messages.
13958
13959 2005-01-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13960
13961         * stepmake/aclocal.m4: do NDEBUG for optimizing builds.
13962
13963         * lily/include/beam.hh (DEBUG_QUANTING): performance: only switch
13964         on BEAMQUANTING for non-NDEBUG builds.
13965
13966         * lily/stem.cc (head_count): performance: avoid String::String()
13967         inside oft called function.
13968
13969 2005-01-09  Graham Percival  <gperlist@shaw.ca>
13970
13971         * Documentation/user/examles.itely: attempted fix for broken
13972         string quartet template.
13973
13974         * Documentation/user/notation.itely: remove unnecessary broken
13975         link.
13976
13977 2005-01-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
13978
13979         * VERSION (PACKAGE_NAME): release 2.5.7
13980
13981 2005-01-09  Jan Nieuwenhuizen  <janneke@gnu.org>
13982
13983         * config.make.in (METAFONT): Append -progname=mf, fixes use with
13984         mf-nowin for teTeX-3.0.  Backportme.
13985
13986         * scm/output-svg.scm (utf8-string): New function.
13987
13988         * scm/output-gnome.scm (utf8-string): New function.
13989         (otf-name-mangling): Remove.
13990
13991         * lily/pango-font.cc (Pango_font): Use font string iso font
13992         filename for utf8-text.
13993
13994         * buildscripts/gen-emmentaler-scripts.py: Remove designsize from
13995         name.
13996
13997 2005-01-08  Graham Percival  <gperlist@shaw.ca>
13998
13999         * Documentation/user/notation.itely: add info about
14000         Staff.extraNatural = ##f in Pitches section.  Also
14001         fixed some minor issues in the Vocal music section.
14002
14003 2005-01-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14004
14005         * scm/output-ps.scm (white-text): comment out Helvetica font,
14006         which is broken for my GS install.
14007
14008         * lily/pango-font.cc (pango_item_string_stencil): use ink_rect,
14009         which provides a tighter bbox.
14010
14011         * scm/define-grobs.scm (all-grob-descriptions): remove all
14012         extra-offsets from definitions.
14013
14014 2005-01-08  Erlend Aasland  <erlenda@gmail.com>
14015
14016         * scm/output-lib.scm: Rename guitar-tunings to guitar-tuning and
14017         add tuning for 4-string bass and some common 4/5-string banjo
14018         tunings.  New function (four-string-banjo) turns a 5-string tuning
14019         into a 4-string tuning.  New function
14020         (fret-number-tablature-format-banjo) computes correct fret numbers
14021         on 5-string banjos.
14022
14023         * ly/engraver-init.ly: Default stringTunings = #guitar-tuning
14024         Add beam correction to TabVoice.
14025
14026         * scm/define-grobs.scm: Adjust notehead offset. Print fret numbers
14027         using bold font; makes tabs more readable.
14028
14029 2005-01-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14030
14031         * lily/font-select.cc (get_font_by_design_size): don't make
14032         Modified_font_metric; this causes trouble, since we don't know the
14033         font magnification from inside Pango_font::text_stencil()
14034
14035         * lily/all-font-metrics.cc (find_pango_font): take magnification argument.
14036
14037         * Documentation/user/notation.itely (The Lyrics context): comment out
14038         broken {Small ensembles} link.
14039
14040         * scm/framework-svg.scm (output-framework): change calling convention.
14041
14042         * lily/object-key-dumper-scheme.cc: new file.
14043
14044         * lily/object-key-undumper-scheme.cc: new file.
14045
14046         * lily/tweak-registration-scheme.cc: new file.
14047
14048         * lily/pango-select.cc (symbol_to_pango_variant): init local variable.
14049
14050         * Documentation/user/examples.itely (String quartet): uncomment
14051         broken example.
14052
14053         * lily/font-config.cc: new file.
14054
14055 2005-01-08  Jan Nieuwenhuizen  <janneke@gnu.org>
14056
14057         * scm/output-svg.scm: 
14058         * scm/output-gnome.scm: s/bigcheese/emmentaler.
14059
14060         * lily/score-engraver.cc (MUSIC_FONT): Use emmentaler20.
14061
14062 2005-01-07  Jan Nieuwenhuizen  <janneke@gnu.org>
14063
14064         * lily/general-scheme.cc (LY_DEFINE): Use snprintf (WAS: sprintf).
14065         Add headers.
14066
14067         * lily/GNUmakefile (general-scheme.o): Add version.hh dependency.
14068
14069 2005-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14070
14071         * mf/GNUmakefile (debian-mirror): rename bigcheese to emmentaler.
14072
14073         * lily/include/main.hh: lose _b hungarian suffixes for global
14074         variables.
14075
14076         * lily/include/lily-guile-macros.hh: new file.
14077
14078         * lily/pango-select-scheme.cc (LY_DEFINE): new file.
14079
14080         * lily/general-scheme.cc: new file. 
14081
14082         * lily/font-select.cc (get_font_by_design_size): retrieve
14083         PangoFont for (designsize . "pango-descr") entries.
14084
14085         * lily/lily-parser-scheme.cc: new file.
14086
14087         * lily/output-def-scheme.cc: new file.
14088
14089         * lily/paper-book-scheme.cc: new file.
14090
14091         * lily/duration-scheme.cc (LY_DEFINE): new file.
14092
14093         * lily/pitch-scheme.cc:  new file.
14094
14095         * scm/font.scm (add-cmr-fonts): use real dimens in font selection.
14096
14097 2005-01-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14098
14099         * lily/dimensions.cc (LY_DEFINE): add ly:{inch,cm,mm,bp,pt}.
14100
14101 2005-01-06  Graham Percival  <gperlist@shaw.ca>
14102
14103         * Documentation/user/notation.itely: minor editing.
14104
14105         * Documentation/user/changing-defaults: minor editing.
14106
14107         * Documentation/user/examples.itely: add template for
14108         string quartet part extraction; demonstrates tag.
14109
14110 2005-01-06  Erlend Aasland  <erlenda@gmail.com>
14111
14112         * Documentation/user/notation.itely: documents
14113         format-mark-box-letters and format-mark-box-numbers
14114
14115         * scm/define-context-properties.scm: change comment.
14116
14117 2005-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14118
14119         * scm/framework-ps.scm (output-classic-framework): new function:
14120         dump systems as separate .eps files (without fonts) and write a
14121         single collecting .tex file.
14122
14123 2005-01-05  Mats Bengtsson  <mabe@s3.kth.se>
14124
14125         * Documentation/user/notation.itely (Setting simple songs):
14126         Correct several errors in the equivalent formulation of
14127         \addlyrics. 
14128         (The Lyrics context): Corrected link to the SATB example.
14129
14130 2005-01-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14131
14132         * scm/lily.scm (completize-formats): new function
14133         (postprocess-output): new function
14134
14135         * lily/paper-book.cc (classic_output): change calling
14136         convention. Give basename as first argument. 
14137         remove Paper_book::post_processing().
14138
14139         * lily/lily-guile.cc (LY_DEFINE): ly:output-backend, new function.
14140
14141 2005-01-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14142
14143         * lily/paper-outputter.cc (LY_DEFINE): new function
14144         ly:outputter-close.
14145
14146         * lily/main.cc: change --format,-f to --backend,-b
14147
14148         * lily/include/main.hh: rename format to backend.
14149
14150         * scm/translation-functions.scm (format-mark-box-numbers): add.
14151         patch by Erlend Aasland
14152
14153 2005-01-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14154
14155         * lily/pango-font.cc (text_stencil): dump string as
14156         (utf-8-string FONTDESC UTF8) for use in -f gnome, -f svg.
14157
14158 2005-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
14159
14160         * configure.in (gui_b): Remove handy developer-only
14161         PKG_CONFIG_PATH settings that cater for Jan-and-Han-Wen ~/usr/pkg/
14162         CVS source installations (but break other non-default but correct
14163         PKG_CONFIG_PATH setups), as this is no longer developer-only.
14164
14165         * SConstruct: 
14166         * ps/GNUmakefile (INSTALLATION_FILES): teTeX-3.0
14167         compatibility (backportme).
14168
14169         * GNUmakefile.in: teTeX-3.0 compatibility (backportme).
14170
14171 2005-01-03  Werner Lemberg  <wl@gnu.org>
14172
14173         Prepare glyph shapes for mf2pt1 conversion.
14174
14175         * mf/feta-accordion.mf (accreg_pen): Removed.  No longer used.
14176         (accDiscant, accFreebase, accStdbase): Replace `draw' with
14177         `penstroke'.
14178         (accDot): Use `drawdot'.
14179         (accBayanbase): Replace `draw' with `draw_gridline'.
14180         (print_penpos): Moved to feta-macros.mf.
14181         (accOldEE): Replace `filldraw' with `penstroke'.
14182         Replace `draw' with `penstroke' and `drawdot'.
14183
14184         * mf/feta-banier.mf: Code clean-up.
14185         ("grace dash (up)", "grace dash (down)"): Replace `draw' with
14186         `fill'.
14187
14188         * mf/feta-bolletjes (draw_cross): Remove call to `labels'.
14189
14190         * mf/feta-eindelijk.mf (draw_rest_bulb, draw_eigth_rest): Add
14191         paremeter to control drawing of labels.  Update all callers.
14192
14193         * mf/feta-klef.mf (draw_c_clef): Use `&' not `..' to connect paths.
14194         (new_bulb): Return a bulb as a single path.  To do that, it now
14195         takes some more parameters.  Updated all callers.
14196         (draw_gclef): Major clean-up.  `draw' has been replaced with
14197         `penstroke', unnecessary outlines have been removed.
14198         Remove (unused) gnome-canvas code.
14199
14200         * mf/feta-macros.mf (print_penpos): New macro (from
14201         feta-accordion.mf).
14202         Other minor fixes.
14203
14204         * mf/feta-pendaal.mf ("Pedal asterisk"): Use `undrawdot'.
14205         ("Pedal dot"): Use `drawdot'.
14206         (draw_pedal_P): Add parameter to control drawing of labels.  Update
14207         all callers.
14208         Fix shape at top.
14209         (draw_pedal_e): Add parameter to control drawing of labels.  Update
14210         all callers.
14211         (draw_pedal_d): Add parameter to control drawing of labels.  Update
14212         all callers.
14213         Revert drawing direction.
14214
14215         * mf/feta-schrift.mf (draw_fermata): Use single path.
14216         (draw_short_fermata): Replace `filldraw' with `fill'.
14217         (draw_long_fermata, draw_very_long_fermata): Replace calls to
14218         `draw_rounded_block' with a single path.
14219         ("Thumb"): Draw full circle instead of mirroring segments.
14220         (draw_accent): New macro.
14221         ("> accent", "espr"): Use it.
14222         (draw_marcato): Replace `filldraw' and `draw' with `fill'.
14223         ("open (unstopped)"): Draw full circle instead of mirroring
14224         segments.
14225         (draw_vee): Removed.
14226         ("Upbow"): Use `draw_accent' instead of `draw_vee'.
14227         ("Downbow"): Replace calls to `draw_rounded_block' with a single
14228         path.
14229         ("Trill (`tr')"): Replace overlapping loop drawn with `draw' with
14230         partial pieces drawn with `fill' -- these do still overlap with the
14231         stem of the `t' but just once, not multiple times so that fontforge
14232         can handle it gracefully.
14233         Change other parts of the glyph so that fontforge's overlapping
14234         algorithm reliably works.
14235         (draw_heel): Replace `draw' with `fill'.
14236         (draw_toe): Use `draw_accent' instead of `draw_vee'.
14237         ("Flageolet"): Replace `draw' with `penstroke'.
14238         ("Segno"): Replace `filldraw' with `penstroke'.
14239         Replace `draw' with `drawdot'.
14240         ("Coda"): Replace `fill' with `penstroke', using a single path.
14241         ("Varied Coda"): Use less overlapping paths.
14242         (draw_arpeggio_arrow): Replace `filldraw' with `fill', using a
14243         single path.
14244
14245         * mf/feta-slag.mf (draw_trillelement): Put `clearxy' outside of
14246         group to better control the `labels' command.
14247         Rename argument to `offset' and use it actually.  Update all
14248         callers.
14249         Replace `filldraw' with `fill'.
14250         ("mordent", "prallmordent", "upmordent", "downmordent",
14251         "lineprall"): Replace `draw' with `draw_gridline'.
14252         ("upprall", "downprall"): Replace `draw' with `fill'.
14253
14254         * mf/feta-timesig.mf: Formatting.
14255
14256         * mf feta-toevallig.mf (draw_meta_flag): Move code to draw labels
14257         to...
14258         ("Flat"): Here.
14259         (draw_paren): Move code to draw labels to...
14260         ("Right Parenthesis"): Here.
14261
14262 2005-01-02  Graham Percival <gperlist@shaw.ca>
14263
14264         * Documentation/user/notation.itely: add example of \setTextDecresc
14265         and \setTextDim.
14266
14267 2005-01-02  Tatsuya Ono <tats_ono@infoseek.jp>
14268
14269         * scm/define-markup-commands.scm :  fix glyph-strings of
14270         accidentals and \note-by-number
14271
14272 2005-01-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14273
14274         * VERSION: 2.5.6 released.
14275         
14276         * ps/lilyponddefs.ps: put mm -> pt scaling in here.
14277
14278         * input/regression/new-markup-scheme.ly: oops. font-family=music
14279         -> font-encoding fetaMusic.  
14280
14281         * lily/main.cc: put default to PS.
14282
14283         * lily/tfm.cc: idem.
14284
14285         * lily/afm.cc: idem.
14286
14287         * lily/include/modified-font-metric.hh (struct
14288         Modified_font_metric): remove coding_scheme() method.
14289
14290         * input/mutopia/F.Schubert/morgenlied.ly: convert to utf8
14291
14292         * scripts/convert-ly.py (conv): crash on encountering \encoding.
14293
14294         * input/les-nereides.ly: convert to utf8
14295
14296         * lily/modified-font-metric.cc (text_dimension): idem.
14297
14298         * lily/parser.yy (TODO): idem.
14299
14300         * lily/include/lily-lexer.hh (class Lily_lexer): idem.
14301
14302         * lily/lexer.ll: remove encoding
14303
14304         * scm/framework-ps.scm (output-variables): separately scale the
14305         page to mm 
14306
14307         * lily/pango-font.cc (Pango_font): fix scaling.
14308
14309         * lily/font-metric.cc (design_size): design_size returns a
14310         dimension now as well.
14311
14312 2004-12-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14313
14314         * mf/GNUmakefile ($(outdir)/%.otf-table): use findstring. Fixes
14315         brace generation. 
14316
14317         * lily/text-metrics.cc (LY_DEFINE): use scm_c_make_hash_table().
14318
14319 2004-12-30  Jan Nieuwenhuizen  <janneke@gnu.org>
14320
14321         * mf/GNUmakefile (INSTALLATION_OUT_SUFFIXES): Do not try to
14322         install unbuildable Fontmap and Fontmap.lily (Simon Aridis-Lang).
14323
14324 2004-12-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14325
14326         * mf/GNUmakefile ($(outdir)/%.otf-table): include parmesan20.lisp
14327         in first run as well.
14328
14329         * scm/paper.scm (layout-set-staff-size): use text-font-size in
14330         dimension less points (ie. 12 = 12 point)
14331
14332         * lily/pango-select.cc (select_pango_font): use find_scaled_font().
14333
14334         * lily/all-font-metrics.cc (find_pango_font): set description_
14335
14336         * lily/pango-font.cc (text_stencil): export size as well.
14337         (text_stencil): fix scaling and extents box.
14338
14339 2004-12-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14340
14341         * Documentation/topdocs/NEWS.texi (Top): add -f texstr
14342
14343         * Documentation/user/invoking.itely (Invoking lilypond): document
14344         texstr
14345
14346         * scripts/convert-ly.py (conv): add ancient rules.
14347
14348         * scm/clef.scm (c0-pitch-alist): replace - with .
14349
14350         * scripts/lilypond-book.py (process_snippets): add texstr support.
14351
14352         * scm/framework-texstr.scm (header): change extension to .textmetrics
14353
14354         * lily/lily-parser.cc (parse_file): do try_load_text_metrics for
14355         -f tex.
14356
14357         * lily/text-metrics.cc: new file.
14358         (try_load_text_metrics): new function
14359
14360         * lily/include/text-metrics.hh: new file.
14361
14362 2004-12-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14363
14364         * lily/include/lily-guile.hh (ly_lily_module_constant): rename
14365         ly_scheme_function to ly_lily_module_constant.
14366
14367         * lily/modified-font-metric.cc (text_dimension): try
14368         lookup_tex_text_dimension() first.
14369
14370         * lily/tfm.cc: new function ly:load-text-dimensions
14371
14372 2004-12-27  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14373
14374         * scm/output-texstr.scm (text): use \lilygetmetrics
14375
14376         * scm/framework-texstr.scm (header): dump in new format.
14377
14378         * tex/lilypond-tex-metrics: new file.
14379         
14380 2004-12-27  Jan Nieuwenhuizen  <janneke@gnu.org>
14381
14382         * lily/pango-font.cc (text_stencil): Quick try at glyph->charcode
14383         mapping.
14384         (index_to_charcode): New method.
14385
14386         * scm/output-ps.scm (glyph-string): 
14387         * scm/output-gnome.scm (glyph-string): Add FONT parameter.
14388
14389 2004-12-26  Jan Nieuwenhuizen  <janneke@gnu.org>
14390
14391         * scm/output-gnome.scm (FIXME-glyph-string): New function.  Cannot
14392         implement fully, need FONT to get to charcode.
14393
14394         * scm/lily.scm (ly:all-stencil-expressions): Add glyph-string.
14395
14396         * scm: Cleanups.
14397
14398         * Documentation/user/changing-defaults.itely: Fix internalsrefs
14399         {Tunable context properties},
14400         {All layout objects},
14401         {Music definitions}.
14402
14403 2004-12-25  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14404
14405         * VERSION: release 2.5.5
14406         
14407         * lily/main.cc: use TeX as default output format.
14408
14409         * flower/file-path.cc (find): try to open directly as well, so we
14410         find absolute path files. 
14411
14412         * lily/pango-select.cc: new file.
14413
14414         * scm/framework-ps.scm: remove all encoding code. 
14415         load pfb/pfa for PangoFont too.
14416         
14417         * lily/lily-guile.cc (ly_chain_assoc_get): new function.
14418
14419 2004-12-22  Werner Lemberg  <wl@gnu.org>
14420
14421         Prepare glyph shapes for mf2pt1 conversion.
14422
14423         * mf/feta-toevallig.mf ("Double Sharp"): Minor path fix.
14424
14425         * mf/feta-bolletjes.mf (penposx): New auxiliary macro.
14426         (define_triangle_shape): Use it to replace `draw' with `fill' and
14427         `unfill'.  Update all callers.
14428         (draw_slash): Replace `filldraw' with `fill'.  Update all callers.
14429         (draw_cross): Ditto.
14430         ("X-Circled notehead"): Replace `draw' with `fill' and `unfill'.
14431         Use penrazor for better conversion with mf2pt1.
14432         (generic_draw_solfa_note_shape, draw_solfa_note_shape,
14433         draw_solfa_quarter_note_shape, triangle): Removed.  Unused.
14434         (draw_do_head, draw_re_head, draw_mi_head, draw_fa_head,
14435         draw_la_head, draw_ti_head): Replace `filldraw' with
14436         `fill'.  Update all callers.
14437
14438 2004-12-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14439
14440         * lily/paper-book.cc (output): revert: only allow a single output
14441         format.
14442
14443         * lily/include/pango-font.hh: new file.
14444
14445         * lily/pango-font.cc: new file.
14446
14447         * lily/font-metric.cc (text_stencil): new routine
14448
14449         * lily/all-font-metrics.cc (find_pango_font): new routine.
14450
14451         * lily/include/font-metric.hh (struct Font_metric): add
14452         text_stencil()
14453
14454         * configure.in (PKG_CONFIG_PATH): require PANGO_FT2
14455
14456 2004-12-22  Werner Lemberg  <wl@gnu.org>
14457
14458         Prepare glyph shapes for mf2pt1 conversion.
14459
14460         * mf/feta-macros.mf, mf_feta-eindelijk.mf: Some formatting.
14461
14462         * mf/feta-toevallig.mf: Formatting.
14463         (draw_meta_sharp): Modify path to replace `filldraw' with `fill'.
14464         ("Natural"): Fix paths to allow better postprocessing.
14465         (draw_meta_flat): Use `z3l' as additional point in path to get
14466         better conversion with mf2pt1.
14467         Other minor cleanups.
14468         ("3/4 Flat"): Add auxiliary points and modify path to replace
14469         `draw' with `fill'.
14470         ("Double Sharp"): Mirror path segments instead of picture elements
14471         to get a single outline.
14472         Modify path to replace `filldraw' with `fill'.
14473
14474 2004-12-22  Graham Percival  <gperlist@shaw.ca>
14475
14476         * input/test/unfold-all-repeats.ly: added file back.
14477
14478         * Documentation/user/notation.itely,
14479         Documentation/user/programming-interface.itely
14480         Documentation/user/changing-defaults.itely: fixed misc broken
14481         links to input/test/ files.
14482
14483 2004-12-22  Jan Nieuwenhuizen  <janneke@gnu.org>
14484
14485         * tex/texinfo.tex: Update.  We should not be distributing this,
14486         but since we do, use latest version.
14487
14488         * Documentation/user/macros.itexi: Comment-out \fetaflat,
14489         \fetasharp.  Fixes make web.  FIXME: make usable (compatible?) TeX
14490         macros for feta glyphs.
14491
14492 2004-12-22  Graham Percival  <gperlist@shaw.ca>
14493
14494         * Documentation/user/changing-defaults.itely: fix index for set.
14495
14496         * Documentation/user/converters.itely: added convert-ly bugs list
14497         from CVS.
14498
14499 2004-12-21  Jan Nieuwenhuizen  <janneke@gnu.org>
14500
14501         * python/lilylib.py (setup_environment): Set GS_FONTPATH, GS_LIB
14502         to empty.  Fixes make web, using gs-gpl-8.01.  In fact,
14503         gs-afpl-8.50 has more trouble with make web (ie, uses *a lot* more
14504         resourses; 3x MAXSIZE, 4x MAXRSS, 1.5x user).
14505
14506         * mf/GNUmakefile (pfa_warning): Use less broken check.
14507
14508         * python/lilylib.py (setup_environment): Remove cruft from
14509         GS_FONTPATH.
14510
14511         * configure.in: Bump mftrace requirement to 1.1.1.
14512
14513 2004-12-20  Jan Nieuwenhuizen  <janneke@gnu.org>
14514
14515         * scm/output-svg.scm (beam): Use polygon.
14516
14517         * scm/lily-library.scm: Bugfix.
14518
14519         * Documentation/user/invoking.itely (Invoking lilypond): Bugfix.
14520
14521         * mf/GNUmakefile (ALL_GEN_FILES): Remove unbuildable Fontmap.lily.
14522
14523 2004-12-19  Werner Lemberg  <wl@gnu.org>
14524
14525         Prepare glyph shapes for mf2pt1 conversion.
14526
14527         * mf/feta-eindelijk: Some formatting.
14528         (multi_rest_x, multi_beam_height): Removed.  Unused.
14529         ("Quarter rest"): Use `intersectiontimes' to create a single
14530         outline.
14531         (rest_crook): Removed.  Unused.
14532         (draw_rest_bulb): Return path (without filling).  Update callers.
14533         Simplified.
14534         (draw_eighth_rest, "16th rest", "32th rest", "64th rest",
14535         "128th rest"): Simplify `pat'.
14536         Create single outline.
14537
14538 2004-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
14539
14540         * mf/GNUmakefile (ALL_GEN_FILES):
14541         (INSTALLATION_OUT_SUFFIXES): Remove unbuildable fonts.scale.
14542
14543         * scm/output-svg.scm (polygon, draw-line, dashed-line): New
14544         function.
14545
14546 2004-12-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14547
14548         * scm/output-texstr.scm (placebox): add routine
14549
14550         * VERSION (PACKAGE_NAME): release 2.5.4
14551
14552         * scm/framework-texstr.scm (output-framework): new file.  
14553
14554         * scm/output-texstr.scm: new file. Collect (TEXT . ) calls for TeX
14555         processing.
14556
14557         * Documentation/user/invoking.itely (Invoking lilypond): add SVG
14558
14559         * stepmake/stepmake/metafont-rules.make: make single SVG/PFA/PFB
14560         rule.
14561
14562         * configure.in (gui_b): bump mftrace requirement to 1.1.0
14563
14564         * mf/feta-bolletjes.mf (triangle): add s to 0triangle.
14565
14566         * mf/GNUmakefile (ALL_GEN_FILES): make SVG files too.
14567
14568 2004-12-19  Jan Nieuwenhuizen  <janneke@gnu.org>
14569
14570         * scm/framework-svg.scm (dump-page): Implement landscape.
14571
14572 2004-12-18  Jan Nieuwenhuizen  <janneke@gnu.org>
14573
14574         * lily/main.cc (setup_paths): Add svg to search path.
14575
14576         * scm/output-svg.scm:
14577         * scm/framework-svg.scm: Add pageSet.  Update.
14578         (dump-fonts): New function.
14579         (output-framework): Use it.
14580
14581         * mf/GNUmakefile: 
14582         * buildscripts/gen-bigcheese-scripts.py: Also generate SVG font.
14583
14584 2004-12-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14585
14586         * tex/lilyponddefs.tex: comment out new ifpdf code.
14587
14588 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14589
14590         * GNUmakefile.in: 
14591         * SConstruct (symlink): Replace afm by otf.
14592
14593         * scm/framework-gnome.scm (gnome-main): Remove invocation of
14594         ly:pango-add-afm-decoder.
14595
14596         * lily/lily-guile.cc ("ly:pango-add-afm-decoder"): Build fix: Remove.
14597
14598 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14599
14600         * scm/output-ps.scm (new-text): don't access t glyph for getting
14601         space dimension.
14602
14603         * ly/init.ly: warn about \version
14604
14605         * lily/lexer.ll: set version-seen?
14606
14607 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14608
14609         * scm/output-svg.scm (string->entities): Update.
14610
14611 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14612
14613         * lily/main.cc (setup_paths): replace afm by otf for path. 
14614
14615         * lily/pangofc-afm-decoder.cc: remove.
14616
14617         * lily/include/pangofc-afm-decoder.hh: remove.
14618
14619         * scm/framework-scm.scm (output-framework): new file.
14620
14621         * mf/GNUmakefile: remove SAUTER_FONTS.
14622         remove SVG/sodipodi hacks.
14623
14624         * scm/lily-library.scm (stderr): move stderr.
14625
14626         * mf/GNUmakefile: remove AFM support.
14627
14628         * buildscripts/mf-to-table.py (base): remove AFM support.
14629
14630         * lily/open-type-font.cc (design_size): use design_size
14631
14632 2004-12-17  Pedro Kroger  <kroeger@pedrokroeger.net>
14633
14634         * lily/font-metric.cc (LY_DEFINE): Fix the docstring.
14635
14636 2004-12-17  Jan Nieuwenhuizen  <janneke@gnu.org>
14637
14638         * mf/GNUmakefile: Generate combined aybabtu info.
14639         * mf/aybabtu.pe.in (i): Load it.
14640
14641         * scm/framework-tex.scm (otf-font-load-command): Bugfix: subfonts
14642         are not symbols.
14643
14644         * lily/include/open-type-font.hh (count): New method.
14645
14646         * mf/aybabtu.pe.in: Typo.
14647
14648         * Documentation/user/out/lilypond-internals.nexi (Scheme
14649         functions): Typo.
14650
14651         * lily/include/guile-compatibility.hh (SCM_HASHTABLE_P): Add compat.
14652
14653 2004-12-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14654
14655         * buildscripts/gen-bigcheese-scripts.py (i): use symbols for
14656         subfonts.
14657
14658         * scm/output-tex.scm (named-glyph): new function. This fixes TeX output.
14659
14660         * scm/framework-tex.scm (otf-font-load-command): load subfonts.
14661         (tex-font-command-raw): new function.
14662
14663         * lily/include/virtual-font-metric.hh (Module): remove file
14664
14665         * lily/virtual-font-metric.cc (Module): remove file.
14666         
14667
14668         * lily/open-type-font.cc (LY_DEFINE): ly:otf-font-glyph-info
14669         (get_indexed_char): read bbox from lily table if present.
14670
14671 2004-12-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14672
14673         * mf/GNUmakefile ($(outdir)/aybabtu.subfonts): rule for
14674         aybabtu.subfonts
14675
14676         * mf/feta-beugel.mf (y): don't number consecutively, instead, use
14677         global glyphname. Enables more than 64 glyphs in the OTF.
14678
14679 2004-12-16  Jan Nieuwenhuizen  <janneke@gnu.org>
14680
14681         * scm/font.scm (add-music-fonts): Load aybabtu iso all separate
14682         braces.
14683
14684         * lily/open-type-font.cc (design_size): Use 12 as default for
14685         design size.
14686
14687         * mf/aybabtu.pe.in: New file.  Merge all our braces.
14688
14689         * mf/GNUmakefile: Generate aybabtu.
14690
14691         * tex/lilyponddefs.tex: teTeX 3.0 pdfetex fix.
14692
14693 2004-12-14  Jan Nieuwenhuizen  <janneke@gnu.org>
14694
14695         * scm/lily-library.scm (char->unicode-index): Remove.
14696
14697         * scm/output-gnome.scm (text): Bugfix for plain string input.
14698         Updates.
14699
14700         * scm/output-svg.scm (svg-font): Add weight to font selection.
14701
14702 2004-12-14  Mats Bengtsson  <mabe@s3.kth.se>
14703
14704         * Documentation/topdocs/INSTALL.texi (Top): Point to
14705         buildscripts/out/clean-fonts instead of
14706         buildscripts/clean-fonts.sh. 
14707
14708 2004-12-13  Graham Percival  <gperlist@shaw.ca>
14709
14710         * input/regression/figured-bass.ly: attempt to clarify text.
14711
14712         * Documentation/user/notation.tely: add cindex for tag, attempt to
14713         add figured bass example.
14714
14715         * Documentation/user/changing-defaults: basic editing.
14716
14717 2004-12-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14718
14719         * buildscripts/gen-bigcheese-scripts.py (i): load .subfonts table. 
14720
14721         * lily/open-type-font.cc (LY_DEFINE): new function
14722         ly:font-sub-fonts
14723
14724         * lily/include/font-metric.hh (struct Font_metric): new method
14725         sub_fonts()
14726
14727         * lily/vaticana-ligature-engraver.cc (transform_heads): replace
14728         . with - in add.stem.
14729         
14730 2004-12-13  Jan Nieuwenhuizen  <janneke@gnu.org>
14731
14732         * scm/encoding.scm (coding-alist): Fix encodings for fetaNumber
14733         and fetaDynamic.
14734
14735         * lily/rest.cc (glyph_name): Change - to . .
14736
14737         * scm/output-gnome.scm (text): Hello world, again.
14738
14739         * scm/output-svg.scm (named-glyph): New function.  Hello world!
14740
14741         * lily/modified-font-metric.cc (index_to_charcode): New method.
14742
14743         * lily/include/font-metric.hh (index_to_charcode): New function.
14744
14745         * lily/font-metric.cc (ly:font-glyph-name-to-charcode): Use it in
14746         new function.
14747         (ly:font-glyph-to-index): Remove.
14748
14749 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14750
14751         * lily/open-type-font.cc (make_index_to_charcode_map): new method.
14752
14753         * mf/feta-autometric.mf (code): remove tex name from fet_beginchar.
14754
14755         * lily/open-type-font.cc (load_scheme_table): new function
14756
14757         * lily/dots.cc (print): replace - 
14758
14759         * lily/open-type-font.cc (attachment_point): new function.
14760         (load_table): read LILC table
14761
14762         * buildscripts/gen-bigcheese-scripts.py (Module): new
14763         file. Generate FF scripts.
14764
14765         * mf/feta-din10.mf: idem.
14766
14767         * mf/feta-nummer10.mf: remove mf files.
14768
14769         * mf/feta-alphabet.mf (dynamic_design_size): merge din and number font.
14770
14771 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
14772
14773         * lily/lily-guile.cc: Use scm_from_locale_stringn.
14774
14775         * lily/include/guile-compatibility.hh (scm_from_locale_stringn): Add
14776         compatibility.
14777
14778 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14779
14780         * lily/open-type-font.cc (get_indexed_char): scale metrics by
14781         design-size and units_per_EM.
14782
14783         * mf/bigcheese.pe.in: set PUA codepoints before loading din & nummer.
14784
14785 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
14786
14787         * mf/bigcheese.pe.in (i): Map to 0xe000 (PUA) for testing, which
14788         does not crash fontforge.
14789
14790         * scm/lily-library.scm (char->unicode-index): Hack to map onto
14791         PUA.
14792
14793 2004-12-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14794
14795         * scm/framework-ps.scm (ps-embed-cff): new function.
14796
14797         * lily/lily-guile.cc (LY_DEFINE): make ly:gulp-file binary proof.
14798
14799 2004-12-12  Werner Lemberg  <wl@gnu.org>
14800
14801         * mf/bigcheese.pe.in: Add PUA mapping.
14802         Don't create Type 42 but bare CFF font.
14803
14804 2004-12-12  Jan Nieuwenhuizen  <janneke@gnu.org>
14805
14806         * scm/output-gnome.scm (placebox): Hackery to get bigcheese symbols
14807         within canvas boundaries.
14808
14809         * mf/merge.pe.in: Set font names, version, license GPL.
14810
14811         * make/substitute.make: Add FONTFORGE.
14812
14813         * config.make.in (FONTFORGE): Add.
14814
14815         * configure.in (gui_b): Use PATH_PROG for fontforge.
14816
14817 2004-12-11  Graham Percival  <gperlist@shaw.ca>
14818
14819         * scm/define-markup-commands.scm: add baseline-skip to info
14820         about \column.
14821
14822 2004-12-11  Jan Nieuwenhuizen  <janneke@gnu.org>
14823
14824         * lily/font-metric.cc (ly:font-get-glyph-index): New function.
14825
14826         * scm/output-gnome.scm (named-glyph): Use it.
14827
14828         * scm/lily.scm (ly:all-stencil-expressions): Add named-glyph.
14829
14830         * flower/string.cc (substitute_char): Rename, rewrite, modify this.
14831         (upper_string, lower_string, reverse_string): Remove.
14832
14833         * configure.in (fontforge): Reinstate version check.
14834
14835         * ly/engraver-init.ly: Fix clef glyph names.
14836
14837         * lily/time-signature.cc (special_time_signature): Fix fraction
14838         glyph names.
14839
14840 2004-12-11  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14841
14842         * mf/merge.pe: new file.
14843
14844         * lily/freetype.cc: new file.
14845
14846         * lily/include/open-type-font.hh (class Open_type_font): new file.
14847
14848         * lily/include/freetype.hh: new file.
14849
14850         * lily/open-type-font.cc: new file.
14851
14852         * lily/all-font-metrics.cc (find_otf): new function.
14853
14854 2004-12-11  Jan Nieuwenhuizen  <janneke@gnu.org>
14855
14856         * lily/time-signature.cc (special_time_signature): Fix.
14857
14858         * configure.in (PKG_CONFIG_PATH): Remove stray `i'.  Check for
14859         GTK2 before checking for pango.  Fixes -fgnome.
14860
14861         * lily/font-metric.cc (LY_DEFINE): Also rename C name to match
14862         Scheme name.
14863
14864         * scm/define-markup-commands.scm:
14865         * scm/safe-lily.scm: Bugfix: ly:font-by-name.
14866
14867         * configure.in: Require makeinfo 4.7 (needed for @ifdocbook).
14868
14869         * stepmake/aclocal.m4 (STEPMAKE_GET_VERSION): Grok fontforge-like
14870         date versions.  Fixes configure.
14871         (STEPMAKE_CHECK_VERSION): Support optional actual program version
14872         argument.
14873
14874 2004-12-10  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14875
14876         * buildscripts/mf-to-table.py (write_ps_encoding): write real
14877         names in .enc
14878
14879         * lily/*.cc: use '.' iso. '-' for separating glyph name elements.
14880
14881 2004-12-09  Graham Percival  <gperlist@shaw.ca>
14882
14883         * Documentation/user/changing-defaults.itely: add info about
14884         make-dynamic-script
14885
14886         * Documentation/user/notation.itely: add link in dynamics to
14887         section about make-dynamic-script.
14888
14889 2004-12-09  Christian hitz  <chhitz@gmx.net>
14890
14891         * lily/lily-guile.cc: change MACOS_X to __APPLE__
14892
14893 2004-12-09  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14894
14895         * buildscripts/mf-to-table.py (parse_logfile): use . for
14896         concatting name and group.
14897         (parse_logfile): use M for Minus (negative.)
14898
14899         * lily/include/type-swallow-translator.hh
14900         (DECLARE_EVENT_SWALLOWER): ENTER_DESCRIPTION -> ADD_TRANSLATOR
14901
14902         * lily/*.cc: cosmetics around = sign.
14903
14904         * lily/paper-column.cc (Paper_column): copy rank_. This fixes
14905         lyric spacing on the penultimate column.
14906
14907 2004-12-05  Christian Hitz  <chhitz@gmx.net>
14908
14909         * configure.in:
14910         * lily/accidental-placement.cc:
14911         * lily/bar-line.cc:
14912         * lily/beam-concave.cc:
14913         * lily/beam-quanting.cc:
14914         * lily/beam.cc:
14915         * lily/bezier-bow.cc:
14916         * lily/bezier.cc:
14917         * lily/break-align-interface.cc:
14918         * lily/custos.cc:
14919         * lily/dimension-cache.cc:
14920         * lily/dot-column.cc:
14921         * lily/font-metric.cc:
14922         * lily/font-select.cc:
14923         * lily/gourlay-breaking.cc:
14924         * lily/grob-property.cc:
14925         * lily/grob.cc:
14926         * lily/lily-guile.cc:
14927         * lily/line-spanner.cc:
14928         * lily/lookup.cc:
14929         * lily/lyric-extender.cc:
14930         * lily/lyric-hyphen.cc:
14931         * lily/mensural-ligature.cc:
14932         * lily/midi-def.cc:
14933         * lily/misc.cc:
14934         * lily/note-collision.cc:
14935         * lily/note-column.cc:
14936         * lily/note-head.cc:
14937         * lily/paper-outputter.cc:
14938         * lily/percent-repeat-item.cc:
14939         * lily/rest-collision.cc:
14940         * lily/side-position-interface.cc:
14941         * lily/simple-spacer.cc:
14942         * lily/slur-configuration.cc:
14943         * lily/slur-scoring.cc:
14944         * lily/slur.cc:
14945         * lily/spaceable-grob.cc:
14946         * lily/spacing-spanner.cc:
14947         * lily/spanner.cc:
14948         * lily/staff-symbol-referencer.cc:
14949         * lily/stem.cc:
14950         * lily/stencil.cc:
14951         * lily/system-start-delimiter.cc:
14952         * lily/system.cc:
14953         * lily/text-item.cc:
14954         * lily/tie.cc:
14955         * lily/tuplet-bracket.cc:
14956         * lily/vaticana-ligature.cc: Fix for MacOS X: use <math.h> instead of
14957         <cmath> beacause isinf/isnan is undefined in <cmath>
14958
14959 2004-12-03  Mats Bengtsson  <mabe@s3.kth.se>
14960
14961         * cygwin/lily-wins.py (stat): remove old flag -p when calling lilypond.
14962
14963 2004-12-02  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14964
14965         * VERSION: release 2.5.3
14966         
14967 2004-11-29  Arno Waschk <arno@arnowaschk.de>
14968
14969         * mf/feta-schrift.mf: added <>-like articulation mark as "espressivo"
14970
14971 2004-12-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14972
14973         * scm/music-functions.scm (cue-substitute): voice counts start at 0.
14974
14975         * lily/note-head.cc (internal_print): always try the "s" head if
14976         u/d not found.
14977
14978         * scm/titling.scm (marked-up-headfoot): reinstate default tagline.
14979
14980 2004-11-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
14981
14982         * mf/parmesan-heads.mf (overdone_heads): typos.
14983
14984 2004-11-30  Nicolas Sceaux  <nicolas.sceaux@free.fr>
14985
14986         * lily/parser.yy (markup): in markups, { .. } without command
14987         before are also flattened, ie \line must be explicitely used.
14988
14989         * Documentation/user/changing-defaults.itely:
14990         * Documentation/user/notation.itely: 
14991         * input/wilhelmus.ly: 
14992         * input/regression/instrument-name-markup.ly: 
14993         * input/regression/markup-score.ly: 
14994         * input/regression/new-markup-scheme.ly: 
14995         * input/regression/new-markup-syntax.ly: 
14996         * input/test/coriolan-margin.ly: use \line in markups where
14997         appropriate
14998         
14999 2004-11-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15000
15001         * scm/new-markup.scm (map-markup-command-list): helper function
15002         used in parser.yy to map markup commands on a markup list.
15003
15004         * lily/parser.yy: get rid off < > in markups by treating { } as
15005         real lists.
15006
15007         * lily/lexer.ll: remove < > from markup lexer mode.
15008
15009         * scripts/convert-ly.py (conv): add rule for converting 
15010         \markup < > to \markup { }
15011
15012         * ly/titling-init.ly: 
15013         * input/test/coriolan-margin.ly: 
15014         * input/regression/new-markup-syntax.ly: 
15015         * input/regression/new-markup-scheme.ly: 
15016         * input/regression/multi-measure-rest-text.ly: 
15017         * input/regression/markup-stack.ly: 
15018         * input/regression/markup-score.ly: 
15019         * input/regression/instrument-name-markup.ly: 
15020         * input/mutopia/W.A.Mozart/mozart-hrn-3.ly: 
15021         * input/mutopia/R.Schumann/romanze-op28-2.ly: 
15022         * input/mutopia/J.S.Bach/wtk1-fugue2.ly: 
15023         * input/wilhelmus.ly: 
15024         * Documentation/user/notation.itely: 
15025         * Documentation/user/music-glossary.tely: 
15026         * Documentation/user/changing-defaults.itely: change < > to { } in
15027         markups
15028
15029 2004-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15030
15031         * lily/accidental-placement.cc (position_accidentals): shortcut if
15032         no accidentals to place.
15033
15034 2004-11-28  Nicolas Sceaux  <nicolas.sceaux@free.fr>
15035
15036         * scm/define-grob-properties.scm (all-user-grob-properties): fixed
15037         typo s/ly:dimension ?/ly:dimension?/
15038
15039         * input/regression/lily-in-scheme.ly: 
15040         * input/regression/music-function.ly: 
15041         * ly/spanners-init.ly (assertBeamSlope): 
15042         * scm/music-functions.scm (def-grace-function): add the paper
15043         argument to music function definitions.
15044
15045 2004-11-28  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15046
15047         * lily/moment.cc (LY_DEFINE):
15048         ly:moment-main-{denominator,numberator}, new function.
15049
15050         * lily/score-engraver.cc (typeset_all): assign to column on basis
15051         of axis-group-parent-X setting.
15052
15053         * lily/axis-group-engraver.cc (process_acknowledged_grobs): do
15054         add_element() on basis of axis-group-parent-Y setting.
15055
15056         * lily/grob.cc: add axis-group-parent-{XY} properties.
15057
15058         * input/regression/spacing-stick-out.ly: new file.
15059
15060         * lily/simple-spacer.cc (add_columns): use binary search for
15061         setting column rods. Changes O(n^2) to O(n log(n)) for
15062         constructing spacing problem from columns.
15063         (add_columns): read allow-outside-line to make sure no texts stick
15064         out.
15065         (solve): Simple_spacer::is_active() only determines
15066         satisfies_constraints_ for non-ragged typesetting.
15067
15068         * lily/simultaneous-music.cc (to_relative_octave): only set
15069         old_relative_used if return pitch actually changed.
15070
15071         * scm/define-context-properties.scm
15072         (all-user-translation-properties): change to match implementation.
15073
15074         * python/lilylib.py: Replace re.match by re.search and adds "-c
15075         showpage" to the gs command line (Johannes Schindelin)
15076
15077         * scm/framework-ps.scm (output-preview-framework): sanitize bbox
15078         before processing. Prevents crash when inf is in the extent.
15079
15080         * scm/define-markup-commands.scm (note-by-number): add "s" to
15081         "noteheads-" glyphname.
15082  
15083         * lily/parser.yy (Generic_prefix_music): supply parser argument to
15084         music function as well.
15085         
15086 2004-11-26  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15087
15088         * VERSION: release 2.5.2
15089
15090         * Documentation/user/changing-defaults.itely (Creating titles):
15091         add breakbefore variable.
15092
15093         * lily/paper-book.cc (set_system_penalty): new function. Set
15094         penalty_ based on breakBefore setting
15095
15096         * lily/context-specced-music-iterator.cc (construct_children):
15097         interpret special context id $uniqueContextId 
15098
15099         * lily/context.cc (create_unique_context): new method. Move
15100         creation of unique (\new) contexts into interpreting phase. This
15101         makes
15102
15103           foo= \new Staff ..
15104           << \foo \foo >>
15105
15106         produce 2 staves.
15107         
15108
15109         * scm/define-music-properties.scm (all-music-properties): add
15110         quoted-voice-direction
15111
15112         * ly/music-functions-init.ly: killCues function.
15113
15114         * scm/music-functions.scm (cue-substitute): move creation of voice
15115         contexts further to the back. 
15116
15117 2004-11-25  Werner Lemberg  <wl@gnu.org>
15118
15119         * tex/GNUmakefile ($(outdir)/latin1.enc): Replace `/minus' with
15120         `/hyphen' in encoding vector to get correct glyph name for EC fonts.
15121
15122 2004-11-24  Erik Sandberg  <ersa9195@student.uu.se>
15123
15124         * buildscripts/guile-gnome.sh: Fixed typo.
15125
15126 2004-11-23  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15127
15128         * lily/lexer.ll: add < >  to markup lexer mode (backportme)
15129
15130         * scripts/abc2ly.py (dump_slyrics): add ord(). 
15131
15132         * lily/note-heads-engraver.cc (process_music): add shapeNoteStyles
15133         to regular engraver. 
15134
15135 2004-11-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15136
15137         * mf/feta-bolletjes.mf (triangle): rewrite solfa heads.
15138
15139 2004-11-22  Jan Nieuwenhuizen  <janneke@gnu.org>
15140
15141         * scm/define-markup-commands.scm (fill-line): Typo.
15142
15143         * buildscripts/guile-gnome.sh (GGVERSION): Build update for 2.7.96
15144         and newer.
15145
15146 2004-11-22  Erik Sandberg  <ersa9195@student.uu.se>
15147
15148         * ly/dynamic-scripts-init.ly: Fixed typo.
15149
15150 2004-11-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15151
15152         * mf/feta-bolletjes.mf (overdone_heads): cleanup triangle
15153         note-head, to have different attachment points for up and down.
15154
15155         * mf/feta-bolletjes.mf: merge solfa heads into main note heads.
15156
15157         * mf/feta-generic.mf (else): remove solfa.
15158
15159         * mf/feta-bolletjes.mf (tishape): remove unicode test.
15160
15161         * scm/define-context-properties.scm
15162         (all-user-translation-properties): add shapeNoteStyles property.
15163
15164         * lily/shape-note-heads-engraver.cc (process_music): new file.
15165
15166         * lily/event.cc (transpose): call Event::transpose() for
15167         transposing the tonic.
15168
15169 2004-11-21  Jan Nieuwenhuizen  <janneke@gnu.org>
15170
15171         * scm/output-gnome.scm: Save some pointers about pango/fontconfig
15172         Unicode/OpenType and AFM.
15173
15174         * lily/include/guile-compatibility.hh (scm_from_bool): Add.
15175
15176 2004-11-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15177
15178         * lily/grob.cc (Grob): idem. Plugs mem leaks. 
15179
15180         * lily/context.cc (Context): unprotect key from ctor.
15181
15182         * scm/stencil.scm (stack-lines): return empty-stencil if argument
15183         is '()
15184         (stack-stencils): idem.
15185
15186         * Documentation/user/changing-defaults.itely (Creating titles):
15187         document new title layout options.
15188
15189         * lily/parser.yy (lilypond_header_body): copy previous
15190         $globalheader if present.
15191
15192         * lily/ly-module.cc (LY_DEFINE): rename ly:import-module to
15193         ly:module-copy
15194         
15195         * scm/page-layout.scm (marked-up-headfoot): remove old functions.
15196
15197         * scm/titling.scm: remove old titling functions
15198
15199         * lily/stencil.cc (translate): remove absolute dimension.
15200
15201         * ly/titling-init.ly (oddFooterMarkup): new file. Generate titles
15202         via markup.
15203
15204         * scm/page-layout.scm (marked-up-headfoot): create header/footer
15205         field from user-supplied markup
15206
15207         * scm/define-markup-commands.scm (on-the-fly): new markup
15208         command. Enter SCM markup procedure directly in Scheme.
15209         (fromproperty): new markup command. Read markup from props argument.
15210
15211         * scm/titling.scm (marked-up-title): create title via
15212         user-specified markup. 
15213
15214         * scm/define-markup-commands.scm (column): remove empty stencils
15215         from column.
15216
15217         * lily/ly-module.cc (LY_DEFINE): use ly_module_lookup(). This does
15218         not have side-effect of creating variable stub.
15219
15220         * lily/stencil-scheme.cc (LY_DEFINE): add ly:stencil-empty?
15221
15222 2004-11-21  Jan Nieuwenhuizen  <janneke@gnu.org>
15223
15224         * scm/encoding.scm (coding-alist): 
15225         * scm/font.scm (add-ec-fonts):
15226         * ly/paper-defaults.ly: Use actual name for EC fontencoding:
15227         Extended-TeX-Font-Encoding---Latin.
15228
15229         * lily/side-position-interface.cc (general_side_position): Add
15230         actual offset to error message (avoid constant error messages).
15231
15232         * lily/all-font-metrics.cc (find_font): Add "lm" to try-AFM-first
15233         block.
15234
15235         * lily/font-select.cc (select_encoded_font)
15236         (get_font_by_mag_step, get_font_by_design_size): 
15237         * lily/modified-font-metric.cc (Modified_font_metric): 
15238         * lily/paper-def.cc (find_scaled_font): Add font_encoding parameter.
15239
15240         * scm/encoding.scm (coding-alist): Add fetaDynamic.
15241         (read-encoding-file): Bugfix: do not require space after bracket.
15242
15243         * scm/font.scm (add-cork-lm-fonts): Remove lmbxi8 and lmbxi14,
15244         these do not exist.
15245
15246 2004-11-20  Graham Percival  <gperlist@shaw.ca>
15247
15248         * Documentation/user/notation.itely: added info about typesetting
15249         boxed bar numbers.
15250
15251 2004-11-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15252
15253         * flower/interval.cc (T_to_string): gcc4 fixes.
15254
15255         * scm/define-markup-commands.scm (fill-line): use
15256         stack-stencils. This fixes problems with putting already centered
15257         stencils in a line.
15258
15259         * VERSION: release 2.5.1
15260
15261         * lily/bar-line.cc (get_staff_bar_size): add line thickness.
15262
15263 2004-11-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15264
15265         * input/example-[1-3].ly: simplify.
15266
15267         * lily/cluster-engraver.cc (try_music): react to busy-playing-event
15268
15269         * scm/output-ps.scm (new-text): new function. Use glyphshow to
15270         show glyphs.
15271
15272         * scm/encoding.scm (decode-byte-string): new function.
15273
15274         * scripts/convert-ly.py (conv): add warning about
15275         set-global-staff-size.
15276
15277         * Doxyfile: add. 
15278
15279         * scripts/convert-ly.py (conv): add raggedlastbottom rule
15280         (conv): warn for TextSpanner split.
15281         (conv): warn for textheight.
15282
15283 2004-11-19  Jan Nieuwenhuizen  <janneke@gnu.org>
15284
15285         * GNUmakefile.in (install-WWW): Invoke install-info, so that when
15286         building the documentation, info with images are installed.
15287         (final-install): Fix description.  Mention sourcing of login
15288         scripts (instead of running).
15289
15290 2004-11-18  Jan Nieuwenhuizen  <janneke@gnu.org>
15291
15292         * Debian lmodern support.  Note that LilyPond will issue warnings
15293         
15294             no such encoding: "FontSpecific"
15295
15296           The font selection mechanism wants to get the encoding from the
15297           font itself, but the idea of lmodern is that it is usable with
15298           different encodings, ie, Lily should get the encoding from the
15299           font tree, rather than the font itself.  This would require some
15300           more work.
15301         
15302         * configure.in: Test for and accept lmodern if EC fonts not found.
15303
15304         * scm/framework-tex.scm (font-load-command): TeX font name
15305         mangling for latin1 encoded cork-lm fonts.
15306         (convert-to-ps): Load lm.map if available.
15307
15308         * ly/paper-defaults.ly: Use cork-lm encoding if ec is not
15309         available.
15310
15311         * scm/encoding.scm (coding-alist): Add cork-lm encoding.
15312
15313         * scm/font.scm: Add header.  Autoload cork-lm and ec fonts if
15314         available.
15315
15316         * lily/kpath.cc (ly_kpathsea_find_file): Rename.  Do not use
15317         path for absolute file name, that is silly.
15318
15319         * lily/score-engraver.cc (initialize): 
15320
15321         * Documentation/user/GNUmakefile (local-install-info): Invoke
15322         install-info --remove first.
15323
15324         * #include cleanup (Andreas Scherer).
15325
15326 2004-11-18  Heikki Junes  <hjunes@cc.hut.fi>
15327
15328         * input/test/script-abbreviations.ly: fix typos.
15329
15330 2004-11-17  Werner Lemberg  <wl@gnu.org>
15331
15332         * python/lilylib.py (options_help_str): Support pretty-printing of
15333         newlines in fourth element of option description.
15334
15335         * scripts/lilypond-book.py (option_definitions): Use new lilylib
15336         feature.
15337         Sort options.
15338
15339         * Documentation/user/lilypond-book.itely: Finish update.
15340
15341 2004-11-17  Jan Nieuwenhuizen  <janneke@gnu.org>
15342
15343         * Documentation/user/macros.itexi: Add comment about \command.
15344
15345         * Documentation/user/lilypond.tely:
15346         * Documentation/user/lilypond-book.itely: Fix names of lilypond
15347         and lilypond-book nodes, so that `info lilypond' visits the manual
15348         at top level, and `info lilypond-book' visits the lilypond-book
15349         section.
15350
15351         * Documentation/user/GNUmakefile (local-install-info): Fix rules
15352         and packager messages.
15353
15354         * lily/pangofc-afm-decoder.cc: Update test.
15355
15356 2004-11-16  Jan Nieuwenhuizen  <janneke@gnu.org>
15357
15358         * scm/lily-library.scm (char->unicode-index): New function.
15359
15360         * scm/output-gnome.scm: 
15361         * scm/output-svg.scm: Cleanup.  Map custom fonts to PUA.
15362
15363         * Proper naming of file name throughout; s/filename/file[-_]name/.
15364
15365         * lily/modified-font-metric.cc ("ly:font-encoding"): New function.
15366
15367         * lily/pangofc-afm-decoder.cc (pango_fc_afm_get_glyph): Map onto PUA.
15368
15369 2004-11-16  Werner Lemberg  <wl@gnu.org>
15370
15371         * scripts/lilypond-book.py: The Lord has commanded me to use only
15372         tabs for indentation.  Your humble servant obeys.
15373
15374 2004-11-16  Jan Nieuwenhuizen  <janneke@gnu.org>
15375
15376         * scm/output-svg.scm: Font fixes.  Sodipodi now groks svg
15377         including font, if LilyPond-feta font is only feta font in path.
15378
15379         * scm/output-gnome.scm (text): Revert to file name of font if font
15380         has no name.  Fixes ec font selection.
15381         (char): Bugfix: do not utf8 twice.  Fixes clefs.
15382
15383         * scm/framework-svg.scm:
15384         * scm/output-svg.scm: New file.  TODO: figure out how to
15385         do character by index in font.
15386
15387         * scm/output-sodipodi.scm: Remove.
15388
15389         * scm/output-ps.scm (stem): Remove.
15390
15391 2004-11-15  Jan Nieuwenhuizen  <janneke@gnu.org>
15392
15393         * scm/output-gnome.scm (beam): New function.
15394         (slur): Round corners.
15395         (round-filled-box): Round corners.
15396
15397 2004-11-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15398
15399         * scm/output-gnome.scm (beam): add function.
15400         (draw-line): new routine.
15401         (dashed-line): stub; call draw-line
15402         (polygon): new routine.
15403
15404 2004-11-15  Werner Lemberg  <wl@gnu.org>
15405
15406         * Documentation/user/lilypond-book.itely: Revise section on
15407         lilypond-book options.
15408         Other minor fixes.
15409
15410         * scripts/lilypond-book.py: Change indentation to 4.
15411         Minor formatting.
15412
15413 2004-11-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15414
15415         * lily/system.cc (apply_tweaks): new function. Run tweaks on all
15416         grobs that have tweaks specced.
15417         
15418 2004-11-14  Heikki Junes  <hjunes@cc.hut.fi>
15419
15420         * Documentation/user/sound-output.itexi: add code snippets for MIDI.
15421
15422 2004-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
15423
15424         * lily/font-metric.cc (get_indexed_char_stencil): Bugfix: get
15425         actual char #, not 0 based index.
15426
15427         * lily/system-start-delimiter.cc (staff_brace): Start at 65.
15428
15429         * mf/feta-beugel.mf: Actually start at char #65.  Add header.
15430         Warning: do make -C mf clean.
15431
15432         * lily/context-property.cc: Compile fix.
15433
15434         * scm/output-gnome.scm: Add ec-fonts-mftraced to ~/.fonts.conf.
15435         Grok ec-fonts, braces and dynamics.
15436
15437         * scm/framework-gnome.scm (gnome-main): Register braces with pango.
15438
15439 2004-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15440
15441         * lily/include/tweak-registration.hh: new file.
15442
15443         * lily/tweak-registration.cc: new file.
15444
15445         * scm/framework-gnome.scm (save-tweaks): use new key mechanism for
15446         saving tweaks.
15447
15448         * scm/output-gnome.scm (text): comment dribble.
15449
15450 2004-11-14  Jan Nieuwenhuizen  <janneke@gnu.org>
15451
15452         * lily/pangofc-afm-decoder.cc (main): Test more feta fonts.
15453
15454         * scm/output-gnome.scm (bezier-sandwich): New function.  Reset
15455         path-def before using.  Fixes muchtomany slurs in wrong places
15456         bug.
15457
15458 2004-11-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15459
15460         * lily/grob-scheme.cc (LY_DEFINE): add new function ly:grob-key.
15461
15462         * lily/include/object-key-undumper.hh (Module): new file.
15463
15464         * lily/object-key-undumper.cc (Module): New file. Deserialize
15465         keys. SCM bindings
15466
15467         * lily/object-key-dumper.cc (Object_key_dumper): idem.
15468         Provide SCM bindings.
15469
15470         * lily/include/object-key-dumper.hh (class Object_key_dumper): 
15471         new file. Serialize object keys.
15472         
15473         * lily/object-key.cc (dump): new function.
15474         (as_scheme): new virtual function
15475         (undump): new function
15476         (undumpers): new table.
15477
15478         * lily/include/global-context.hh (Context): take \score key upon init.
15479
15480         * lily/object-key-dumper.cc (serialize_key): new file.
15481
15482         * lily/include/object-key-dumper.hh (class Object_key_dumper): new file.
15483
15484         * lily/lily-lexer.cc: remove \quote.
15485
15486         * lily/lookup.cc (triangle): rewrite, obviating symmetric_x_triangle().
15487
15488         * lily/context.cc (Context): take key argument in ctor.
15489         (create_context): new function
15490
15491         * lily/grob.cc (Grob): take key argument in ctor.  
15492
15493         * lily/lilypond-key.cc (do_compare): new file.
15494
15495         * lily/object-key.cc (Object_key): new file.
15496
15497         * lily/include/object-key.hh (class Object_key): new file.
15498
15499         * lily/include/lilypond-key.hh (class Lilypond_context_key): new file.
15500
15501 2004-11-13  Graham Percival  <gperlist@shaw.ca>
15502
15503         * Documentation/user/lilypond-book.itely: add small warning about
15504         noindent default in lilypond-book.
15505
15506         * Documentation/user/converters.itely: add examples for convert-ly.
15507
15508         * Documentation/user/examples.itely: change version string in templates
15509         to 2.4.0.
15510
15511 2004-11-12  Karl Hammar  <karl@aspodata.se>
15512
15513         * GNUmakefile.in (local-WWW-post): `find ...` overflows the
15514         cmdline, use xargs instead (backportme)
15515
15516 2004-11-10  Andreas Scherer  <andreas_mutopia@freenet.de>
15517         
15518         * Documentation/user/: Numerous fixes in the user manual.
15519
15520 2004-11-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15521
15522         * lily/parser.yy (re_rhythmed_music): search music expression for
15523         context-id, surround by \new Voice if not found. Fixes:
15524         addlyrics-second-staff.ly
15525
15526         * VERSION: 2.5.0 released.
15527         
15528 2004-11-12  Jan Nieuwenhuizen  <janneke@gnu.org>
15529
15530         * Documentation/index.html.in: Fix url to one big page.  (backportme)
15531
15532         * Documentation/user/GNUmakefile: Separate rules for split and
15533         unsplit html documents.  Remove perl massaging.  (backportme)
15534
15535 2004-11-11  Graham Percival  <gperlist@shaw.ca>
15536
15537         * Documentation/user/lilypond-book.itely: add short warning about
15538         \lilypond{} in LaTeX docs.
15539
15540 2004-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
15541
15542         * stepmake/aclocal.m4: Barf if kpathsea/kpathsea.h is not
15543         found.  (backportme)
15544
15545         * Documentation/topdocs/INSTALL.texi (ec-fonts-mtraced): Add
15546         version requirement.  (backportme)
15547
15548         * configure.in: Be explicit about old versions of
15549         ec-fonts-mtraced.  (backportme)
15550
15551         * lily/context-selector.cc (set_tweaks): New function.
15552         * lily/grob-selector.cc (set_tweaks): (Re)set hash table.  Fixes
15553         web with -DTWEAK.
15554
15555         * Documentation/user/introduction.itely (Automated engraving):
15556         Remove fragment option.  Fixes web.
15557
15558         * lily/context-property.cc (make_item_from_properties):
15559         * lily/context.cc (add_context)[TWEAK]: Tweak registration behind
15560         #ifdef.
15561
15562         * scm/define-context-properties.scm
15563         (all-internal-translation-properties): Add tweakRank and tweakCount.
15564
15565         * lily/grob.cc: 
15566         * scm/define-grob-properties.scm (all-internal-grob-properties):
15567         Add tweak-rank and tweak-count.
15568
15569 2004-11-10  Jan Nieuwenhuizen  <janneke@gnu.org>
15570
15571         * scm/output-gnome.scm (string->utf8-string, char->utf8-string):
15572         New function.
15573         (text): Use them.
15574
15575         * scm/framework-gnome.scm (item-event): Add support from TLA.  Support
15576         animated/opaque grob dragging tweaks.
15577
15578         * buildscripts/guile-gnome.sh: Update.
15579
15580 2004-11-10  Mats Bengtsson  <mabe@s3.kth.se>
15581
15582         * scm/define-grobs.scm (all-grob-descriptions): Added
15583         line-interface to the LigatureBracket object.
15584
15585 2004-11-10  Jan Nieuwenhuizen  <janneke@gnu.org>
15586
15587         * scm/framework-gnome.scm (item-event): Support non-animated mouse
15588         dragging tweaks.
15589
15590         * lily/lily-guile.cc (ly_to_string, ly_to_symbol): New function.
15591
15592         * lily/context-selector.cc (store_context): New function.
15593
15594         * lily/grob-selector.cc (register_grob)[TWEAK]: Apply tweak.
15595         (store_grob): New function.
15596         (identify_grob): Add Moment parameter.
15597
15598         * lily/lily-parser.cc (parse_file)[TWEAK]: Read .ly.t file if it
15599         exists.
15600
15601         * scm/framework-gnome.scm (save-tweaks): Write as alist.
15602
15603 2004-11-09  Jan Nieuwenhuizen  <janneke@gnu.org>
15604
15605         * scm/framework-gnome.scm (item-event): Print grob id.
15606         (save-tweaks): New function.
15607         (tweak): New funtion.
15608         (item-event): Use it, bound to arrow keys.
15609
15610         * lily/context-property.cc (make_item_from_properties): Register grob.
15611         * lily/context.cc (add_context): Register context.
15612
15613         * lily/include/context-selector.hh:
15614         * lily/include/grob-selector.hh:
15615         * lily/context-selector.cc:
15616         * lily/grob-selector.cc: New file.
15617
15618 2004-11-08  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15619
15620         * lily/slur.cc: add 'positions to interface
15621
15622         * lily/main.cc: reinstate PS as standard output format. 
15623
15624         * scm/framework-tex.scm (output-preview-framework): print systems
15625         up to first non title system.
15626
15627         * lily/grace-engraver.cc (start_translation_timestep): split
15628         scm_cadddr
15629         
15630 2004-11-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15631
15632         * lily/quote-iterator.cc (Module): remove old quote-iterator
15633
15634         * scm/define-music-types.scm (music-descriptions): move
15635         NewQuoteMusic over QuoteMusic
15636
15637         * Documentation/user/notation.itely (Formatting cue notes): use
15638         \cueDuring.
15639
15640         * lily/new-quote-iterator.cc (quote_ok): new function.
15641
15642         * input/regression/quote-cue-during.ly: new file.
15643
15644         * input/regression/quote-grace.ly: new file.
15645
15646         * scm/define-context-properties.scm (Module): change definition of
15647         graceSettings
15648
15649         * lily/context-property.cc (Module): rename from
15650         translator-property.cc
15651
15652         * lily/context.cc (context_name_symbol): new function
15653
15654         * lily/grace-engraver.cc: new file. Set properties for grobs based
15655         on the grace-ness of now_moment().
15656
15657         * scm/music-functions.scm (add-grace-property): use list
15658         iso. vector for graceSettings
15659         remove set-{start,stop}-grace-properties. 
15660
15661         * lily/new-quote-iterator.cc (construct_children): set
15662         quote_outlet_ if no quoted-context-{id,type} specified.
15663
15664         * scripts/convert-ly.py (conv): \quote -> \quoteDuring.
15665
15666         * lily/parser.yy (command_element): remove \quote.
15667
15668         * ly/music-functions-init.ly (location): add quoteDuring music
15669         function. 
15670
15671         * lily/lexer.ll: allow \encoding in lyrics as well.  Remove
15672         optional semicolon. (backportme)
15673
15674 2004-11-06  Jan Nieuwenhuizen  <janneke@gnu.org>
15675
15676         * python/GNUmakefile (STEPMAKE_TEMPLATES): Unset USER_LDFLAGS, no
15677         need to link to GUILE et al.
15678
15679 2004-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15680
15681         * scm/define-music-properties.scm (all-music-properties): add
15682         quoted-context-type, quoted-context-id.
15683
15684         * scm/lily.scm (type-check-list): new function.
15685         
15686         * scm/lily-library.scm: new file. Generic library routines.
15687
15688         * lily/parser.yy (Generic_prefix_music): move typechecking out of
15689         parser.
15690
15691         * ly/music-functions-init.ly: add quoteDuring function.
15692
15693         * lily/include/music-iterator.hh (class Music_iterator): rename
15694         set_translator -> set_context
15695
15696         * lily/parser.yy (Generic_prefix_music_scm): add
15697         MUSIC_FUNCTION_SCM_SCM_MUSIC
15698
15699         * scm/lily.scm (sanitize-command-option): new function. (backportme)
15700
15701         * scm/framework-tex.scm (header): sanitize TeX paper size.
15702         (backportme)
15703
15704 2004-11-06  Jan Nieuwenhuizen  <janneke@gnu.org>
15705
15706         * elisp/lilypond-indent.el (LilyPond-indent-level): 2 is now standard.
15707
15708         * tex/lilyponddefs.tex: If no inputencoding use latin1.  (backportme)
15709
15710         * scm/framework-tex.scm (font-load-command): Use T1 if no
15711         font-encoding set.  (backportme)
15712
15713         * scm/lily.scm (postscript->pdf): Remove .pdf file if it
15714         exists before converting.  (backportme)
15715
15716         * scm/framework-tex.scm (convert-to-dvi): Remove .dvi file if it
15717         exists before converting.  (backportme)
15718         (convert-to-ps): Remove .ps file if it exists before
15719         converting.  (backportme)
15720
15721         * lily/lexer.ll: Remove extra progress newline, use present tense.
15722
15723         * scm/paper.scm (paper-alist): public.
15724         * scm/framework-tex.scm (convert-to-ps):
15725         * scm/lily.scm (postscript->pdf): Do not leak papersizename into
15726         command line.
15727
15728 2004-11-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15729
15730         * scm/lily.scm (ly:system): add > /dev/null 2>&1 . (backportme)
15731
15732         * lily/recording-group-engraver.cc (derived_mark): mark
15733         now_events_. (backportme)
15734
15735 2004-11-05  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15736
15737         * mf/GNUmakefile: use Fedora-3 in download link. (backportme.)
15738
15739         * scm/framework-tex.scm (convert-to-dvi): use ly:system for
15740         invoking latex. (backportme.)
15741
15742         * lily/stem.cc (off_callback): center stems for all rest stems.
15743
15744 2004-11-05  Werner Lemberg  <wl@gnu.org>
15745
15746         * Documentation/user/lilypond.tely: Add more guidelines for writing
15747         lilypond texinfo documents.
15748
15749 2004-11-05  Heikki Junes  <hjunes@cc.hut.fi>
15750
15751         * Documentation/index.html.in: remove <hr>.
15752
15753         * THANKS: change 2.3 to 2.4.
15754
15755 2004-11-05  Jan Nieuwenhuizen  <jannneke@gnu.org>
15756
15757         * scm/output-gnome.scm: More fontconfig comment.
15758
15759 2004-11-05  Pedro Kroger  <kroeger@pedrokroeger.net>
15760
15761         * GNUmakefile.in ($(builddir)/share/lilypond-force): create the
15762         <package> directory in $(builddir)/share according with
15763         PACKAGE_NAME defined in the VERSION file.
15764
15765 2004-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15766
15767         * lily/beam.cc (rest_collision_callback): use local beam
15768         multiplicity.
15769
15770         * input/regression/stem-stemlet.ly: new file.
15771
15772         * lily/stem.cc (add_head): store rests as well.
15773
15774         * scm/define-grob-properties.scm (all-user-grob-properties): add
15775         stemlet-length
15776
15777         * lily/stem.cc: store rests as well.
15778         
15779         * input/regression/new-slur.ly: mention forcing.
15780
15781 2004-11-04  Werner Lemberg  <wl@gnu.org>
15782
15783         * Documentation/user/*: A new round of layout fixes and document
15784         structure cleanup.
15785
15786 2004-11-04  Heikki Junes <hjunes@cc.hut.fi>
15787
15788         * Documentation/user/lilypond.tely: changes 2.3.x to 2.5.x.
15789
15790 2004-11-04  Jan Nieuwenhuizen  <janneke@gnu.org>
15791
15792         * Documentation/topdocs/INSTALL.texi (Top): Remove geometry.
15793
15794 2004-11-03  Jan Nieuwenhuizen  <janneke@gnu.org>
15795
15796         * Documentation/topdocs/INSTALL.texi (Top): Fix geometry url (dax).
15797
15798         * lily/lily-parser.cc (LY_DEFINE): Remove "Now " from message.
15799
15800         * lily/main.cc (main): Invoke identify.
15801
15802         * scm/lily.scm (postscript->pdf): Remove progress newline.
15803         Write progress to stderr.
15804
15805         * lily/paper-book.cc (output): Remove progress newline.
15806
15807         * scm/framework-tex.scm (convert-to-dvi, convert-to-ps): Call
15808         gettext on user messages, and remove whitespace.
15809
15810         * lily/paper-outputter.cc (get_paper_outputter): Add progress newline.
15811
15812         * scripts/lilypond-latex.py (program_name): Bugfix: use only basename of
15813         argv[0] (Thomas Scharkowski).
15814
15815         * configure.in: Bugfix: add REQUIRED parameter to STEPMAKE_TEXMF
15816         call (carlyannehorse).  Also check for mf and mf-nowin.  Add check
15817         for ec-fonts-mtraced.
15818
15819         * GNUmakefile.in (builddir-exec): Add symlink tex/out.  Fixes
15820         --srcdir build (Bertalan).
15821
15822         * stepmake/aclocal.m4 (STEPMAKE_GUILE_DEVEL): Check for guile
15823         headers and library too (Laura Conrad).
15824
15825         * Documentation/topdocs/INSTALL.texi (Top): Mention development
15826         package for guile too (Laura Conrad).
15827
15828         * lily/main.cc (usage): Typo.
15829
15830 2004-11-02  Werner Lemberg  <wl@gnu.org>
15831
15832         * Documentation/user/notation.ly: More fixes to improve appearance.
15833
15834         * tex/texinfo.tex: Updated from texinfo CVS -- this version provides
15835         better output for multicolumn tables.
15836
15837 2004-11-01  Mats Bengtsson  <mabe@s3.kth.se>
15838
15839         * lily/main.cc (dir_info): Fixed typo in the printouts.
15840
15841 2004-11-01  Werner Lemberg  <wl@gnu.org>
15842
15843         * buildscripts/mf-to-table.py (write_fontlist): Improve formatting
15844         of output.
15845         Set `per_line' to 2; replace hard-coded value with it.
15846
15847         * Documentation/user/*: Many fixes to improve appearance of
15848         printed manual.
15849
15850 2004-11-01  Werner Lemberg  <wl@gnu.org>
15851
15852         * Documentation/user/changing-defaults.itely,
15853         Documentation/user/notation.ly,
15854         Documentation/user/programming-interface.itely: Use @/.
15855         Fix formatting of some lilypond snippets and tables.
15856
15857         * scripts/lilypond-book.py (compose_ly): Provide useful default
15858         for LINEWIDTH in `override'.
15859
15860 2004-10-31  Graham Percival  <gperlist@shaw.ca>
15861
15862         * Documentation/user/invoking.itely: change "3.0" -> "2.4"
15863
15864 2004-10-31  Werner Lemberg  <wl@gnu.org>
15865
15866         Resetting @exampleindent to `5' gives ugly results with texinfo's
15867         DVI output.  Use `@format @exampleindent 0 ... @end format' instead
15868         (if not quoting) to change @exampleindent only locally.
15869
15870         * scripts/lilypond-book.py (NOQUOTE): New variable.
15871         (output) [LATEX]: Remove AFTER and BEFORE.
15872         [TEXINFO]: Remove AFTER and BEFORE.
15873         Fix QUOTE and VERBATIM pattern.
15874         Add NOQUOTE pattern.
15875         (Lilypond_snippet) [output_info, output_latex]: Don't handle AFTER
15876         and BEFORE.
15877         [output_texinfo]: Use NOQUOTE.
15878
15879 2004-10-31  Graham Percival  <gperlist@shaw.ca>
15880
15881         * Documentation/user/changing-defaults.itely: clarify paper
15882         size commands with correct info.
15883
15884         * Documentation/user/lilypond-book.itely: add more docs for
15885         filename extensions.
15886
15887 2004-10-31  Han-Wen Nienhuys  <hanwen@xs4all.nl>
15888
15889         * VERSION (PATCH_LEVEL): Branch lilypond_2_4, release 2.4.0
15890         (PATCH_LEVEL): start 2.5.0.
15891
15892 #Local variables:
15893 #coding: utf-8
15894 #End:
15895