]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/usage/updating.itely
Doc: cleanup @file{}, take 2: remove all @/ escaping sequences.
[lilypond.git] / Documentation / usage / updating.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.13.36"
12
13
14 @node Updating files with convert-ly
15 @chapter Updating files with @command{convert-ly}
16
17 @cindex Updating a LilyPond file
18 @cindex convert-ly
19
20 The LilyPond input syntax is routinely changed to simplify it or improve
21 it in different ways.  As a side effect of this, the LilyPond interpreter
22 often is no longer compatible with older input files.  To remedy this,
23 the program @command{convert-ly} can be used to deal with most of the
24 syntax changes between LilyPond versions.
25
26 @menu
27 * Why does the syntax change?::
28 * Invoking convert-ly::
29 * Command line options for convert-ly::
30 * Problems running convert-ly::
31 * Manual conversions::
32 @end menu
33
34
35 @node Why does the syntax change?
36 @section Why does the syntax change?
37
38 @cindex convert-ly
39 @cindex updating old input files
40
41 The LilyPond input syntax occasionally changes.  As LilyPond
42 itself improves, the syntax (input language) is modified
43 accordingly.  Sometimes these changes are made to make the input
44 easier to read and write or sometimes the changes are made to
45 accommodate new features of LilyPond.
46
47 For example, all @code{\paper} and @code{\layout} property names
48 are supposed to be written in the form @code{first-second-third}.
49 However, in version 2.11.60, we noticed that the
50 @code{printallheaders} property did not follow this convention.
51 Should we leave it alone (confusing new users who must deal with
52 an inconsistent input format), or change it (annoying old users
53 with existing scores)?  In this case, we decided to change the
54 name to @code{print-all-headers}.  Fortunately, this change can be
55 automated with our @command{convert-ly} tool.
56
57 Unfortunately, @code{convert-ly} cannot handle all input changes.
58 For example, in LilyPond 2.4 and earlier, accents and non-English
59 letters were entered using LaTeX -- displaying the French word for
60 Christmas was entered as @code{No\"el}.  But in LilyPond
61 @c keep "-matching straight in fancy editors
62 2.6 and above, the special @code{ë} must be entered directly into
63 the LilyPond file as an UTF-8 character.  @code{convert-ly} cannot
64 change all the LaTeX special characters into UTF-8 characters; you
65 must manually update your old LilyPond input files.
66
67
68 @node Invoking convert-ly
69 @section Invoking @command{convert-ly}
70
71 @command{convert-ly} uses @code{\version} statements in the input
72 file to detect the old version number.  In most cases, to upgrade
73 your input file it is sufficient to run
74
75 @example
76 convert-ly -e myfile.ly
77 @end example
78
79 @noindent
80 in the directory containing the file.  This will upgrade
81 @file{myfile.ly} in-place and preserve the original file in
82 @file{myfile.ly~}.
83
84 @warning{@command{convert-ly} always converts up to the last
85 syntax change handled by it.  This means that the @code{\version}
86 number left in the file is usually lower than the version of
87 @command{convert-ly} itself.}
88
89 To convert all the input files in a directory together use
90
91 @example
92 convert-ly -e *.ly
93 @end example
94
95 Alternatively, if you want to specify a different name for the
96 upgraded file, preserving the original file and name unchanged,
97 use
98
99 @example
100 convert-ly myfile.ly > mynewfile.ly
101 @end example
102
103 The program will list the version numbers for which conversions
104 have been made.  If no version numbers are listed the file is
105 already up to date.
106
107 MacOS@tie{}X users may execute these commands under the menu entry
108 @code{Compile > Update syntax}.
109
110 Windows users should enter these commands in a Command Prompt
111 window, which is usually found under
112 @code{Start > Accessories > Command Prompt}.
113
114
115 @node Command line options for convert-ly
116 @section Command line options for @command{convert-ly}
117
118 The program is invoked as follows:
119
120 @example
121 convert-ly [@var{option}]@dots{} @var{filename}@dots{}
122 @end example
123
124
125 The following options can be given:
126
127 @table @code
128 @item -e,--edit
129 Apply the conversions direct to the input file, modifying it
130 in-place.
131
132 @item -f,--from=@var{from-patchlevel}
133 Set the version to convert from.  If this is not set, @command{convert-ly}
134 will guess this, on the basis of @code{\version} strings in the file.
135 E.g. @code{--from=2.10.25}
136
137 @item -n,--no-version
138 Normally, @command{convert-ly} adds a @code{\version} indicator
139 to the output.  Specifying this option suppresses this.
140
141 @item -s, --show-rules
142 Show all known conversions and exit.
143
144 @item --to=@var{to-patchlevel}
145 Set the goal version of the conversion.  It defaults to the latest
146 available version.  E.g. @code{--to=2.12.2}
147
148 @item -h, --help
149 Print usage help.
150 @end table
151
152 To upgrade LilyPond fragments in texinfo files, use
153
154 @example
155 convert-ly --from=... --to=... --no-version *.itely
156 @end example
157
158 To see the changes in the LilyPond syntax between two versions, use
159
160 @example
161 convert-ly --from=... --to=... -s
162 @end example
163
164
165 @node Problems running convert-ly
166 @section Problems running @code{convert-ly}
167
168 When running convert-ly in a Command Prompt window under Windows
169 on a file which has spaces in the filename or in the path to it,
170 it is necessary to surround the entire input file name with three
171 (!) sets of double quotes:
172
173 @example
174 convert-ly """D:/My Scores/Ode.ly""" > "D:/My Scores/new Ode.ly"
175 @end example
176
177 If the simple @command{convert-ly -e *.ly} command fails because the
178 expanded command line becomes too long, the @command{convert-ly}
179 command may be placed in a loop instead.  This example for UNIX
180 will upgrade all @file{.ly} files in the current directory
181
182 @example
183 for f in *.ly; do convert-ly -e $f; done;
184 @end example
185
186 In the Windows Command Prompt window the corresponding command is
187
188 @example
189 for %x in (*.ly) do convert-ly -e """%x"""
190 @end example
191
192 Not all language changes are handled.  Only one output option can be
193 specified.  Automatically updating scheme and LilyPond scheme
194 interfaces is quite unlikely; be prepared to tweak scheme code
195 manually.
196
197
198 @node Manual conversions
199 @section Manual conversions
200
201 In theory, a program like @command{convert-ly} could handle any
202 syntax change.  After all, a computer program interprets the old
203 version and the new version, so another computer program can
204 translate one file into another@footnote{At least, this is
205 possible in any LilyPond file which does not contain scheme.  If
206 there is scheme in the file, then the LilyPond file contains a
207 Turing-complete language, and we run into problems with the famous
208 @qq{Halting Problem} in computer science.}.
209
210 However, the LilyPond project has limited resources: not all
211 conversions are performed automatically.  Below is a list of known
212 problems.
213
214
215 @verbatim
216 1.6->2.0:
217  Doesn't always convert figured bass correctly, specifically things like {<
218 >}.  Mats' comment on working around this:
219    To be able to run convert-ly
220    on it, I first replaced all occurrences of '{<' to some dummy like '{#'
221    and similarly I replaced '>}' with '&}'.  After the conversion, I could
222    then change back from '{ #' to '{ <' and from '& }' to '> }'.
223  Doesn't convert all text markup correctly.  In the old markup syntax,
224  it was possible to group a number of markup commands together within
225 parentheses, e.g.
226    -#'((bold italic) "string")
227    This will incorrectly be converted into
228    -\markup{{\bold italic} "string"}
229    instead of the correct
230    -\markup{\bold \italic "string"}
231 2.0->2.2:
232  Doesn't handle \partcombine
233  Doesn't do \addlyrics => \lyricsto, this breaks some scores with multiple
234 stanzas.
235 2.0->2.4:
236  \magnify isn't changed to \fontsize.
237     - \magnify #m => \fontsize #f, where f = 6ln(m)/ln(2)
238  remove-tag isn't changed.
239     - \applyMusic #(remove-tag '. . .) => \keepWithTag #'. . .
240  first-page-number isn't changed.
241     - first-page-number no => print-first-page-number = ##f
242  Line breaks in header strings aren't converted.
243     - \\\\  as line break in \header strings => \markup \center-align <
244       "First Line" "Second Line" >
245  Crescendo and decrescendo terminators aren't converted.
246     - \rced => \!
247     - \rc => \!
248 2.2->2.4:
249  \turnOff (used in \set Staff.VoltaBracket = \turnOff) is not properly
250 converted.
251 2.4.2->2.5.9
252  \markup{ \center-align <{ ... }> } should be converted to:
253  \markup{ \center-align {\line { ... }} }
254  but now, \line is missing.
255 2.4->2.6
256  Special LaTeX characters such as $~$ in text are not converted to UTF8.
257 2.8
258  \score{} must now begin with a music expression.  Anything else
259  (particularly \header{}) must come after the music.
260 @end verbatim
261
262