]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add directories for input/tolsr.
authorGraham Percival <graham@percival-music.ca>
Sat, 5 May 2007 00:30:38 +0000 (17:30 -0700)
committerGraham Percival <graham@percival-music.ca>
Sat, 5 May 2007 00:30:38 +0000 (17:30 -0700)
46 files changed:
input/tolsr/GNUmakefile
input/tolsr/README
input/tolsr/SConscript
input/tolsr/ancient/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/ancient/GNUmakefile [new file with mode: 0644]
input/tolsr/ancient/SConscript [new file with mode: 0644]
input/tolsr/chords/AAA-intro-chords.ly [new file with mode: 0644]
input/tolsr/chords/GNUmakefile [new file with mode: 0644]
input/tolsr/chords/SConscript [new file with mode: 0644]
input/tolsr/connecting/AAA-intro-connecting.ly [new file with mode: 0644]
input/tolsr/connecting/GNUmakefile [new file with mode: 0644]
input/tolsr/connecting/SConscript [new file with mode: 0644]
input/tolsr/contemporary/AAA-intro-contemporary.ly [new file with mode: 0644]
input/tolsr/contemporary/GNUmakefile [new file with mode: 0644]
input/tolsr/contemporary/SConscript [new file with mode: 0644]
input/tolsr/expressive/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/expressive/GNUmakefile
input/tolsr/expressive/SConscript [new file with mode: 0644]
input/tolsr/expressive/line-arrows.ly
input/tolsr/guitar/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/guitar/GNUmakefile [new file with mode: 0644]
input/tolsr/guitar/SConscript [new file with mode: 0644]
input/tolsr/parts/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/parts/GNUmakefile
input/tolsr/parts/SConscript [new file with mode: 0644]
input/tolsr/parts/quote-transposition.ly
input/tolsr/parts/quote.ly
input/tolsr/repeats/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/repeats/GNUmakefile [new file with mode: 0644]
input/tolsr/repeats/SConscript [new file with mode: 0644]
input/tolsr/scheme/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/scheme/GNUmakefile [new file with mode: 0644]
input/tolsr/scheme/SConscript [new file with mode: 0644]
input/tolsr/spacing/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/spacing/GNUmakefile [new file with mode: 0644]
input/tolsr/spacing/SConscript [new file with mode: 0644]
input/tolsr/staff/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/staff/GNUmakefile [new file with mode: 0644]
input/tolsr/staff/SConscript [new file with mode: 0644]
input/tolsr/text/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/text/GNUmakefile
input/tolsr/text/SConscript [new file with mode: 0644]
input/tolsr/text/utf-8.ly
input/tolsr/vocal/AAA-intro-advanced.ly [new file with mode: 0644]
input/tolsr/vocal/GNUmakefile [new file with mode: 0644]
input/tolsr/vocal/SConscript [new file with mode: 0644]

index c68fb22e235d205233f8268bcad809b7afb8bf30..d6dbfbcbe0dfa3ad511a85028e31af58b92414fa 100644 (file)
@@ -1,12 +1,12 @@
 depth = ../../
 
+SUBDIRS = ancient chords connecting contemporary guitar parts repeats spacing staff text vocal expressive scheme
+
 STEPMAKE_TEMPLATES=documentation texinfo tex
 LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
 EXTRA_DIST_FILES=README
-
-SUBDIRS+=expressive parts text
-
 include $(depth)/make/stepmake.make
 
-TITLE=Stuff waiting for LSR -- you should not see this!
+
+TITLE=Storage for new features -- you should not see these!
 
index 19d1430c55305d6a2a3d6b62b351ce3ff9770925..0ceb46066f4b3312036e4c25a9561c4d6550d37f 100644 (file)
@@ -1,7 +1,4 @@
-If you have a snippet that should be added to the official approved
-LSR snippets, please leave it here.  We'll take care of it.
-
-Note that LSR is currently 2.10.  You can add snippets that require 2.11
-to this directory, but they will not be added to LSR until it is updated.
-The snippets will still be displayed on the LilyPond website.
+This directory is for examples of new features in the current
+unstable development series.  These snippets will be added to LSR
+when it supports a version of LilyPond that includes these features.
 
index d5d0cb95ad0ebab7d250df4d1ad593f3a1be4b04..c534e3573ef3b3837b8126a5f1063e707d5eb742 100644 (file)
@@ -1,4 +1,4 @@
 # -*-python-*-
 
 Import ('env', 'collate')
-collate (title = 'Stuff waiting for LSR -- you should not see this!')
+collate (title = 'LilyPond Examples')
diff --git a/input/tolsr/ancient/AAA-intro-advanced.ly b/input/tolsr/ancient/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/ancient/GNUmakefile b/input/tolsr/ancient/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/ancient/SConscript b/input/tolsr/ancient/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/chords/AAA-intro-chords.ly b/input/tolsr/chords/AAA-intro-chords.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/chords/GNUmakefile b/input/tolsr/chords/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/chords/SConscript b/input/tolsr/chords/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/connecting/AAA-intro-connecting.ly b/input/tolsr/connecting/AAA-intro-connecting.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/connecting/GNUmakefile b/input/tolsr/connecting/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/connecting/SConscript b/input/tolsr/connecting/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/contemporary/AAA-intro-contemporary.ly b/input/tolsr/contemporary/AAA-intro-contemporary.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/contemporary/GNUmakefile b/input/tolsr/contemporary/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/contemporary/SConscript b/input/tolsr/contemporary/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/expressive/AAA-intro-advanced.ly b/input/tolsr/expressive/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
index 43325ab6988c342d5e5d9a6bd264c0a68c0e00d4..432f8c1c4ffb18d8be3e178b92f264aec9fce53d 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 
 depth = ../../../
 
diff --git a/input/tolsr/expressive/SConscript b/input/tolsr/expressive/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
index 19538243e7bba7bd82444217f5f0c210bff6fc76..7a5e573fe28f53771be36e169aea1a1f120b7aed 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 % contemporary
 
 \header {
diff --git a/input/tolsr/guitar/AAA-intro-advanced.ly b/input/tolsr/guitar/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/guitar/GNUmakefile b/input/tolsr/guitar/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/guitar/SConscript b/input/tolsr/guitar/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/parts/AAA-intro-advanced.ly b/input/tolsr/parts/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
index 43325ab6988c342d5e5d9a6bd264c0a68c0e00d4..432f8c1c4ffb18d8be3e178b92f264aec9fce53d 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 
 depth = ../../../
 
diff --git a/input/tolsr/parts/SConscript b/input/tolsr/parts/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
index 7611de255d44b6d30ff394d761572ade37732416..ff3aa5cd7dbc96a289d989bbef8c6963c5d4df47 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 %preparing
 
 \header
index f3d2e9d02d42a3fa2b00af9f743f6d2d4a8a038b..4f98e24112218b7b2942c49b88ea058737dc325d 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 %preparing
 
 \header
diff --git a/input/tolsr/repeats/AAA-intro-advanced.ly b/input/tolsr/repeats/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/repeats/GNUmakefile b/input/tolsr/repeats/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/repeats/SConscript b/input/tolsr/repeats/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/scheme/AAA-intro-advanced.ly b/input/tolsr/scheme/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/scheme/GNUmakefile b/input/tolsr/scheme/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/scheme/SConscript b/input/tolsr/scheme/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/spacing/AAA-intro-advanced.ly b/input/tolsr/spacing/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/spacing/GNUmakefile b/input/tolsr/spacing/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/spacing/SConscript b/input/tolsr/spacing/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/staff/AAA-intro-advanced.ly b/input/tolsr/staff/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..48fe478
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.11.15"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/staff/GNUmakefile b/input/tolsr/staff/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/staff/SConscript b/input/tolsr/staff/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
diff --git a/input/tolsr/text/AAA-intro-advanced.ly b/input/tolsr/text/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
index 43325ab6988c342d5e5d9a6bd264c0a68c0e00d4..432f8c1c4ffb18d8be3e178b92f264aec9fce53d 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 
 depth = ../../../
 
diff --git a/input/tolsr/text/SConscript b/input/tolsr/text/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')
index 5f8f98ab16f3e392a6852101b1590ca95a1836b1..c491bed77568d853cd12172499f53963741dabcf 100644 (file)
@@ -1,3 +1,4 @@
+%%  Do not edit this file; it is auto-generated from LSR!
 % text
 
 \version "2.10.0"
diff --git a/input/tolsr/vocal/AAA-intro-advanced.ly b/input/tolsr/vocal/AAA-intro-advanced.ly
new file mode 100644 (file)
index 0000000..b907dd0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.10.0"
+%% +.ly: Be the first .ly file for lys-to-tely.py.
+%% Better to make lys-to-tely.py include "introduction.texi" or
+%% other .texi documents too?
+
+\header{
+texidoc = #(string-append "
+@unnumbered Introduction
+
+This document shows examples from the
+@uref{http://lsr@/.dsi@/.unimi@/.it,LilyPond Snippet Repository}.
+
+In the web version of this document, you can click on the file name
+or figure for each example to see the corresponding input file.
+
+This document is for LilyPond version 
+" (lilypond-version) "." )
+}
+
+% make sure .png  is generated.
+\lyrics {  " " }
diff --git a/input/tolsr/vocal/GNUmakefile b/input/tolsr/vocal/GNUmakefile
new file mode 100644 (file)
index 0000000..43325ab
--- /dev/null
@@ -0,0 +1,16 @@
+
+depth = ../../../
+
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly lysdoc
+
+## Hmm, would this work?  No -- if we really want examples, move
+## to other dir (input/) comes to mind.
+## examples = font20 ancient-font
+## LOCALSTEPMAKE_TEMPLATES += ly mutopia
+
+EXTRA_DIST_FILES= 
+
+include $(depth)/make/stepmake.make
+
+TITLE=Advanced snippets
diff --git a/input/tolsr/vocal/SConscript b/input/tolsr/vocal/SConscript
new file mode 100644 (file)
index 0000000..f72bfff
--- /dev/null
@@ -0,0 +1,4 @@
+# -*-python-*-
+
+Import ('env', 'collate')
+collate (title = 'Advanced snippets')