]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.7
authorfred <fred>
Tue, 26 Mar 2002 22:43:34 +0000 (22:43 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:43:34 +0000 (22:43 +0000)
Documentation/user/lilypond.tely
Documentation/user/mudela-book.tely
scripts/ly2dvi.py
scripts/mudela-book.py

index 1567ec748ee37501cbb3b7b4343574e639a95325..24e06721ab54569965f334d78a27276cd07f0eb4 100644 (file)
@@ -5,7 +5,7 @@
 
 
 @titlepage
-@title LilyPond 
+@title LilyPond Reference Manual
 @subtitle The GNU Project Typesetter
 @author Han-Wen Nienhuys, Jan Nieuwenhuizen and Adrian Mariano
 
index 10f115a11609fd7be88500da5835c5d7c5bdfa26..37299dc14e47335799bb5ff27964e685350452cb 100644 (file)
@@ -1,6 +1,74 @@
 \input texinfo @c -*-texinfo-*-
-@setfilename reference-manual.info
-@settitle Reference Manual
+@setfilename mudela-book.info
+@settitle mudela-book Manual
+
+
+@titlepage
+@title mudela-book Manual
+@subtitle Integrating mudela with LateX and TeXinfo
+@author Tom Cato Amundsen and  Han-Wen Nienhuys
+
+     Copyright @copyright 1999 by the authors
+
+@vskip 0pt plus 1filll
+
+Permission is granted to make and distribute verbatim
+copies of this manual provided the copyright notice and
+this permission notice are preserved on all copies.
+
+Permission is granted to copy and distribute modified
+versions of this manual under the conditions for
+verbatim copying, provided also that the sections
+entitled ``Copying'' and ``GNU General Public License''
+are included exactly as in the original, and provided
+that the entire resulting derived work is distributed
+under the terms of a permission notice identical to this
+one.
+
+Permission is granted to copy and distribute
+translations of this manual into another language,
+under the above conditions for modified versions,
+except that this permission notice may be stated in a
+translation approved by the Free Software Foundation.
+
+@end titlepage
+
+@ifinfo
+This file documents GNU LilyPond.
+
+Copyright 1999 Tom Cato Amundsen and  Han-Wen Nienhuys
+
+
+Permission is granted to make and distribute verbatim
+copies of this manual provided the copyright notice and
+this permission notice are preserved on all copies.
+
+@ignore
+Permission is granted to process this file through TeX
+and print the results, provided the printed document
+carries a copying permission notice identical to this
+one except for the removal of this paragraph (this
+paragraph not being relevant to the printed manual).
+
+@end ignore
+
+Permission is granted to copy and distribute modified
+versions of this manual under the conditions for
+verbatim copying, provided also that the sections
+entitled ``Copying'' and ``GNU General Public License''
+are included exactly as in the original, and provided
+that the entire resulting derived work is distributed
+under the terms of a permission notice identical to this
+one.
+
+Permission is granted to copy and distribute
+translations of this manual into another language,
+under the above conditions for modified versions,
+except that this permission notice may be stated in a
+translation approved by the Free Software Foundation.
+
+@end ifinfo
+
 
 @node Top, , , (dir)
 @top
index 57702825d5bef1449382e98d9115f8ef65d63a2e..b309317ff177e2efe538f24162da14a65bc57d08 100644 (file)
@@ -925,7 +925,7 @@ def writeLilylog(file,contents):
 def getTeXFile(contents):
     texfiles=[]
     for line in string.split(contents,'\n'):
-        m = re.search('^paper output to (.+)\.\.\.', line)
+        m = re.search('paper output to (.+)\.\.\.', line)
         if m:
             texfiles.append(m.group(1))
 
index 59bde3bbd7dbd24d3c0f065c3d4050fed0c7492d..e4114a7de88d0eee513cf065db00a53c4468738b 100644 (file)
@@ -52,6 +52,7 @@ options = [
   ('', '', 'force-verbatim', 'make all mudela verbatim'),
   ('', 'M', 'dependencies', 'write dependencies'),
   ('', 'n', 'no-lily', 'don\'t run lilypond'),
+  ('', '', 'no-pictures', "don\'t generate pictures"),
   ('FILE', 'o', 'outname', 'prefix for filenames'),
   ('', 'v', 'version', 'print version information' ),
   ('PREF', '',  'dep-prefix', 'prepend PREF before each -M dependency')
@@ -61,6 +62,7 @@ format = ''
 run_lilypond = 1
 use_hash = 1
 no_match = 'a\ba'
+do_pictures = 1
 
 # format specific strings, ie. regex-es for input, and % strings for output
 output_dict= {
@@ -669,7 +671,7 @@ def compile_all_files (chunks):
                                eps.append (base)
                        elif e == 'tex':
                                tex.append (base + '.ly')
-                       elif e == 'png':
+                       elif e == 'png' and do_pictures:
                                png.append (base)
 
                if __main__.use_hash:
@@ -863,6 +865,8 @@ for opt in options:
                initfile =  a
        elif o == '--dep-prefix':
                dep_prefix = a
+       elif o == '--no-pictures':
+               do_pictures = 0
 
 identify()