]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/mutopia-index.py
release: 1.5.43
[lilypond.git] / buildscripts / mutopia-index.py
index 4cb45eae1e323ada6f63ad53f8eba653087bf284..2e5d3b5e35ce558d830ca22bfb8f91932c4c4442 100755 (executable)
@@ -3,7 +3,6 @@
 
 name = 'mutopia-index'
 
-# find.py -- deprecated in python 2.0
 import fnmatch
 import os
 
@@ -53,13 +52,18 @@ def file_exist_b (fn):
 
 
 headertext= r"""
-These example files are taken from the LilyPond distribution. 
-LilyPond currently only outputs TeX and MIDI.  The pictures and 
-PostScript files were generated using TeX, Ghostscript and some 
-graphics tools.         The papersize used for these examples is A4. 
-The  images are in PNG format, and should be viewable with any current browser.
-<p>
-These images are generated at approximately 180dpi. If you want a better impression of the appearance do print out one the postscript version of the samples."""
+<p>You're looking at a page with some LilyPond samples.
+These files are also included in the distribution. The output is
+completely generated by LilyPond, without any touch up by humans.
+
+<p>The PostScript files were generated using TeX and dvips at 600 dpi.
+The pictures are 90dpi anti-aliased snapshots of the printed output.
+The images are in PNG format, and should be viewable with any current
+browser.
+
+<p>If you want a better impression of the appearance, do print out one of
+the postscript files.
+"""
 
 
 #
@@ -111,8 +115,8 @@ def gen_list(inputs, filename):
                list = open(filename, 'w')
        else:
                list = sys.stdout
-       list.write ('<html><TITLE>Rendered Examples</TITLE>\n')
-       list.write ('<body bgcolor=white>')
+       list.write ('<html><title>Rendered Examples</title>\n')
+       list.write ('<body bgcolor=white>\n')
        
        if inputs:
                        list.write (headertext)
@@ -137,18 +141,22 @@ def gen_list(inputs, filename):
                head = read_dict('title', os.path.basename (base))
                composer = read_dict('composer', '')
                desc = read_dict('description', '')
-               list.write('<hr>')
-               list.write('<h1>example file: %s</h1>' % head);
+               list.write('<hr>\n')
+               list.write('<h1>example file: %s</h1>\n' % head);
                if composer <> '':
                        list.write('<h2>%s</h2>\n' % composer)
                if desc <> '':
                        list.write('%s<p>' % desc)
-               list.write ('<ul>')
+               list.write ('<ul>\n')
                def list_item(filename, desc, type, l = list):
                        if file_exist_b(filename):
-                               l.write ('<li><a href=%s>%s</a>' % (filename, desc))
+                               l.write ('<li><a href="%s">%s</a>' % (filename, desc))
                                size=os.stat(filename)[stat.ST_SIZE]
-                               l.write (' (%s %dk)' % (type, (size + 512) / 1024))
+                               kB=(size + 512) / 1024
+                               if kB:
+                                       l.write (' (%s %dkB)' % (type, kB))
+                               else:
+                                       l.write (' (%s %dcharacters)' % (type, size))
                                pictures = ['jpeg', 'png', 'xpm']
                                l.write ('\n')
 
@@ -157,12 +165,13 @@ def gen_list(inputs, filename):
                        f  = base + '-page%d.png' % pageno
                        if not file_exist_b (f):
                                break
-                       list_item(f, 'The output, page %d' % pageno, 'png')
-               list_item(base + '.ps.gz', 'The output', 'gzipped PostScript')
-               list_item(base + '.midi', 'The output', 'MIDI')
-               list.write ("</ul>");
+                       list_item(f, 'See a picture of page %d' % pageno, 'png')
+               list_item(base + '.pdf', 'Print ', 'PDF')
+               list_item(base + '.ps.gz', 'Print ', 'gzipped PostScript')
+               list_item(base + '.midi', 'Listen', 'MIDI')
+               list.write ("</ul>\n");
 
-       list.write( "</BODY></HTML>");
+       list.write('</body></html>\n');
        list.close()
 
 import getopt