]> git.donarmstrong.com Git - lilypond.git/commitdiff
* THANKS: add Meisters to the Development team.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 24 Oct 2004 15:19:59 +0000 (15:19 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 24 Oct 2004 15:19:59 +0000 (15:19 +0000)
* scm/framework-tex.scm (convert-to-dvi): redirect output to
/dev/null for non-verbose.

* Documentation/user/invoking.itely (Invoking lilypond): add note
about resource usage.

* Documentation/user/lilypond.tely: add -*- coding: latin-1 -*- everywhere.

* Documentation/user/lilypond.tely: add language and encoding.

ChangeLog
Documentation/user/invoking.itely
Documentation/user/lilypond.tely
THANKS
scm/documentation-lib.scm
scm/framework-tex.scm
scripts/lilypond-book.py

index ce15cec15453ceb783c9bc87b97c1dbff2809119..cefebfd7f3d2ca11879d6e2afd3de98446ee3b76 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2004-10-24  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * THANKS: add Meisters to the Development team.
+
+       * scm/framework-tex.scm (convert-to-dvi): redirect output to
+       /dev/null for non-verbose.
+
+       * Documentation/user/invoking.itely (Invoking lilypond): add note
+       about resource usage.
+
        * tex/GNUmakefile (TEX_FILES): add texinfo.cnf
 
        * stepmake/stepmake/texinfo-vars.make (MAKEINFO): add
index c05ad87c28d1d745824df3d62e9d855f252190e3..d0005ebde0744f6f39f31e09bb0cfdac60415507 100644 (file)
@@ -119,9 +119,9 @@ into Scheme.
 
 @code{--safe} does @emph{not} detect resource overuse. It is still
 possible to make the program hang indefinitely, for example by feeding
-cyclic data structures into the backend.  If using LilyPond
-on a publically accessible webserver, the process should limited in both
-allowed  CPU and memory usage.
+cyclic data structures into the backend.  Therefore, if using LilyPond
+on a publicly accessible webserver, the process should limited in
+both allowed CPU and memory usage.
 
 @item -v,--version
 Show version information.
index d9e2bb68033ea0a1a9267292a8c9845d96042465..c0809fa045c625fbccde609576b91eee52a60c49 100644 (file)
@@ -1,4 +1,4 @@
-\input texinfo @c -*- coding: latin-1; mode: texinfo; -*-
+i\input texinfo @c -*- coding: latin-1; mode: texinfo; -*-
 @setfilename lilypond.info
 @settitle GNU LilyPond
 @iftex
diff --git a/THANKS b/THANKS
index 5402806268b0cd3c7bcb464353553bdb2922ba5f..4993d2af9a70329b52c2bf567bca5dd62512b6d6 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -2,25 +2,25 @@
 Release 2.3
 ***********
 
-HEAD HACKERS
+DEVELOPMENT TEAM
 
 Han-Wen Nienhuys
 Jan Nieuwenhuizen
+Erik Sandberg - Bug Meister
+Pedro Kroger - Build Meister
+Graham Parcival - Documentation Editor
 
 
 CONTRIBUTORS
 
 Carl Sorensen
 David Svoboda
-Erik Sandberg
-Graham Percival
 Guy Gascoigne-Piggford
 Heikki Junes
 Hendrik Maryns
 Kristof Bastiaensen
 Mats Bengtsson
 Michael Welsh Duggan
-Pedro Kroger
 Peter Lutek
 Werner Lemberg
 
index 4f7a0f05948dacb9c3c067230f0809eb46c7cda2..02d610462ee480930352abe1a0a1536c0d870cd8 100644 (file)
    "\n@direntry"
    ;; prepend GNU for dir, must be unique
    "\n* GNU " name ": (" file-name ").          " name "."
-   "\n@end direntry"
+   "\n@end direntry\n"
    "@documentlanguage en\n"
    "@documentencoding ISO-8859-1\n"
 
index c119578c520303cde030401ffe444d34e7e830dd..6fc83dcfc423a181cbdeb2453ef890849cbad1a0 100644 (file)
                                 " -t landscape "
                                 " ")
                             "  -u+ec-mftrace.map -u+lilypond.map -Ppdf "
-                            (basename name ".tex"))))
-    (display (format #f (_ "Invoking ~S") cmd) (current-error-port))
-    (newline (current-error-port))
+                            (basename name ".tex")
+
+                            (if (ly:get-option 'verbose)
+                                " "
+                                " 2>&1 1>& /dev/null ")
+                            )))
+
+    (if (ly:get-option 'verbose)
+       (begin 
+         (newline (current-error-port))
+
+         (display (format #f (_ "Invoking ~S") cmd) (current-error-port))
+         (newline (current-error-port)))
+       (display "Converting to PS" (current-error-port))
+       )
     (system cmd)))
 
 (define-public (convert-to-dvi book name)
            #f " *%.*\n?"
            (ly:kpathsea-expand-variable "$extra_mem_top")
            'pre "" 'post)))
-        (cmd (string-append "latex \\\\nonstopmode \\\\input " name)))
+        (cmd (string-append
+              "latex \\\\nonstopmode \\\\input " name
+              (if (ly:get-option 'verbose)
+                  " "
+                  " 2>&1 1>& /dev/null ")
+
+              )))
     (setenv "extra_mem_top" (number->string (max curr-extra-mem 1024000)))
-    (newline (current-error-port))
-    (display (format #f (_ "Invoking ~S") cmd) (current-error-port))
-    (newline (current-error-port))
+    (if (ly:get-option 'verbose)
+       (begin 
+         (newline (current-error-port))
+         (display (format #f (_ "Invoking ~S") cmd) (current-error-port))
+         (newline (current-error-port)))
+       (display "Converting to PDF" (current-error-port)))
 
     ;; fixme: set in environment?
     (if (ly:get-option 'safe)
index afb35496a0e9358867e580372403b2a45293afab..7c428ac266d49560be2daf7230bdc352801d9f54 100644 (file)
@@ -464,9 +464,16 @@ PREAMBLE_LY = r"""%%%% Generated by %(program_name)s
 
 FRAGMENT_LY = r'''
     %(notes_string)s{
-       %(code)s    }
+%% ly snippet contents follows: 
+       %(code)s
+%% end ly snippet
+       }
+'''
+FULL_LY = '''
+%% ly snippet:
+%(code)s
+%% end ly snippet
 '''
-FULL_LY = '%(code)s'
 
 texinfo_linewidths = {
        '@afourpaper': '160 \\mm',