]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.0.10
authorfred <fred>
Tue, 26 Mar 2002 21:26:08 +0000 (21:26 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:26:08 +0000 (21:26 +0000)
Documentation/tex/html-disclaimer.yo-urg [new file with mode: 0644]
Documentation/tex/refman.yo
Documentation/tex/tutorial.yo
NEWS
buildscripts/mutopia-index.py
stepmake/NEWS
stepmake/VERSION

diff --git a/Documentation/tex/html-disclaimer.yo-urg b/Documentation/tex/html-disclaimer.yo-urg
new file mode 100644 (file)
index 0000000..2fa20c3
--- /dev/null
@@ -0,0 +1,15 @@
+COMMENT(
+I cannot be named .yo, because i'm not a complete document, yodl2x will break.
+)
+whenhtml(
+nsubsect(Disclaimer)
+This document is written in url(Yodl)(ftp://pcnov095.win.tue.nl/pub/yodl)
+and should foremost produce nice LaTeX() output.
+In other formats, such as html, some things will look a bit different,
+while other things will be simply left out.
+Therefore, the authoritive version of this document is the PostScript version, 
+produced via LaTeX().
+As you know, url(no gifs due to patent problems)(http://www.gnu.org/philosophy/gif.html), 
+but the png images should be viewable with any current browser 
+(jpeg is inappropriate for music images).
+)
index e591332169dc6960afd1be3339ff1dedb4b478e9..396e561d975b7b14c7fa768f727f7cfd54741caf 100644 (file)
@@ -49,6 +49,7 @@ latexcommand(\def\texttt#1{\tt #1})
 latexcommand(\def\textbf#1{\bf #1})
 )
 
+includefile(html-disclaimer.yo-urg)
 
 bf(This document is not up to date).  All rendered examples of course
 are current, but the rest probably isn't.  Adjusting the tutorial was
index ef463ef7aa66918912e57c789729b2d1c85f2b84..1f0d591e5fb466bbbd0fa21574006dd373361076 100644 (file)
@@ -62,15 +62,7 @@ latexcommand(\def\preexample{\par})
 latexcommand(\def\postexample{\par\medskip})
 latexcommand(\def\file#1{{mycode(#1)}})
 
-whenhtml(
-nsubsect(Disclaimer)
-This document is written in url(Yodl)(ftp://pcnov095.win.tue.nl/pub/yodl)
-and should foremost produce nice LaTeX() output.
-In other formats, such as html, some things will look a bit different,
-while other things will be simply left out.
-Therefore, the authoritive version of this document is the PostScript version, 
-produced via LaTeX().
-)
+includefile(html-disclaimer.yo-urg)
 
 sect(Introduction)
 label(tutorial:introduction)
diff --git a/NEWS b/NEWS
index 63070dc0a49988fdd1581a774131e3a8c0ae2bd4..794216b558b1d14da72c844c5cc546652c09ecc4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,20 @@
 
 (need to fix pictures. I know)
 
+
+pl 9.jcn1
+       - started gnuisation of website
+         * filetype and size
+         * 'no gifs due to patent problems'
+       - bumped stepmake version nr (again):
+         please update stepmake/VERSION after making changes to stepmake...
+  
+pl 9.hwn1
+       - do default midi,paper by toplevel \paper / \midi (mudela 1.0.4)
+       - bf: error if no Score context
+       - notename table now can be declared as well.
+       - junked \clear
+
 pl 9
        
 pl 8.uu1
index a4c4652b92869e5024bc40a9978941110f0a0466..b72042cadfb4d2d3b2994bdfd0e9ff98815908e5 100644 (file)
@@ -6,6 +6,7 @@ name = 'mutopia-index'
 import regex
 import os
 import sys
+import stat
 sys.path.append ('@abs-step-bindir@')
 
 
@@ -77,11 +78,15 @@ def gen_list(inputs, subdir, filename):
        list.write ('</ul>')
 
     list.write('<h2>Contents of this directory</h2>\n');
-    list.write ('These example files are taken from the LilyPond distribution.\n'
-     'LilyPond currently only outputs TeX and MIDI. The pictures and\n'
-     'PostScript files were generated using TeX, Ghostscript and some\n'
-     'graphics tools.  The papersize used for these examples is A4.  The GIF\n'
-     'files have been scaled to eliminate aliasing.\n');
+    list.write (
+    '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. '
+    'As you know, <a href="http://www.gnu.org/philosophy/gif.html">no gifs due to patent problems</a>, '
+    'but the png images should be viewable with any current browser '
+    '(jpeg is inappropriate for music images).'
+    '\n');
 
 
     for ex in inputs:
@@ -109,18 +114,24 @@ def gen_list(inputs, subdir, filename):
        if desc <> '':
            list.write('%s<p>' % desc)
        list.write ('<ul>')
-       def list_item(filename, desc, l = list):
+       def list_item(filename, desc, type, l = list):
            if file_exist_b(filename):
-               l.write ('<li><a href=%s>%s</a>\n' % (filename, desc))
-           
-       list_item(ex + ex_ext + '.txt', 'The input')
+               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))
+               pictures = ['jpeg', 'png', 'xpm']
+               # silly, no?
+               if 0 and type in pictures:
+                   l.write (' <a href="http://www.gnu.org/philosophy/gif.html">no gifs due to patent problems</a>')
+               l.write ('\n')
+       list_item(ex + ex_ext + '.txt', 'The input', 'ASCII')
        for pageno in range(1,100):
            f  = ex + '-page%d.png' % pageno
            if not file_exist_b (f):
                break
-           list_item(f, 'The output (picture, page %d)' % pageno)
-       list_item(ex + '.ps.gz', 'The output (gzipped PostScript)')
-       list_item(ex + '.midi', 'The output (MIDI)')
+           list_item(f, 'The output, page %d' % pageno, 'png')
+       list_item(ex + '.ps.gz', 'The output', 'gzipped PostScript')
+       list_item(ex + '.midi', 'The output', 'MIDI')
        list.write ("</ul>");
 
     list.write( "</BODY></HTML>");
index ac662d058d1e9e02e5b84a7d9a11e28218f01649..518805cb3c7b7d3e06275dbfef7f3f62111ef47b 100644 (file)
@@ -1,3 +1,6 @@
+pl 51
+       - bumped version nr
+
 pl 50
        - bf's: PATHSEP
        - png
index a044234f747d838df61fb135d6321692de2ee207..8571e128dc9ecdf549a1d02bef7457a1d4c501c4 100644 (file)
@@ -1,7 +1,7 @@
 PACKAGE_NAME=StepMake
 MAJOR_VERSION=0
 MINOR_VERSION=1
-PATCH_LEVEL=50
+PATCH_LEVEL=51
 MY_PATCH_LEVEL=
 
 # use the above to send patches, always empty for released version: