2003-07-29 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+ * mutopia/claop.py (accents): update to 1.8
+
* Documentation/user/music-glossary.tely (Top): remove 13pt.
* Documentation/user/macros.itexi: don't color glossary links.
@seealso
@internalsref{OverrideProperty}, @internalsref{RevertProperty},
-@internalsref{PropertySet}, @internalsref{backend properties}, and
-@internalsref{All layout objects}.
+@internalsref{PropertySet}, @internalsref{All-backend-properties}, and
+@internalsref{All-layout-objects}.
@refbugs
@internalsref{Score}.
The internals document also contains alphabetical lists of
-@internalsref{All contexts}, @internalsref{All layout objects} and
-@internalsref{All music types}, so you can also find which objects to
+@internalsref{Contexts}, @internalsref{All-layout-objects} and
+@internalsref{Music-expressions}, so you can also find which objects to
tweak by browsing the internals document.
@seealso
-@internalsref{Markup functions}, and @file{scm/new-markup.scm}.
+@internalsref{Markup-functions}, and @file{scm/new-markup.scm}.
@refbugs
\notes <
\property Score.BarNumber \override #'padding = #2.5
\property Score.autoBeamSettings \override
- #'(end * * * *) = #(make-moment 1 4)
+ #'(end * * * *) = #(ly:make-moment 1 4)
\property Score.skipBars = ##t
\context StaffGroup <
\property StaffGroup.Stem \override #'direction = #1
def read_pipe (cmd, mode = 'r'):
redirect = ''
+ error_log_file = ''
if __main__.verbose_p:
progress (_ ("Opening pipe `%s\'") % cmd)
- redirect = ' 2>%s' % error_log (command_name (cmd))
+ error_log_file = error_log (command_name (cmd))
+ redirect = ' 2>%s' % error_log_file
+
pipe = os.popen (cmd + redirect, mode)
output = pipe.read ()
status = pipe.close ()
error (_ ("The error log is as follows:"))
sys.stderr.write (open (error_log (command_name (cmd)).read ()))
exit (status)
+
if __main__.verbose_p:
progress ('\n')
+
+ if error_log_file:
+ os.unlink (error_log_file)
+
return output
def system (cmd, ignore_error = 0, progress_p = 0):
(texi (description-list->texi descs))
)
(make <texi-node>
- #:name "backend properties"
- #:desc "all the properties in use as grob properties"
+ #:name "All backend properties"
+ #:desc "All grob properties in a big list"
#:text texi)
))