]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove input/test/ files that have been moved into LSR.
authorGraham Percival <graham@percival-music.ca>
Mon, 14 May 2007 06:02:35 +0000 (23:02 -0700)
committerGraham Percival <graham@percival-music.ca>
Mon, 14 May 2007 06:02:35 +0000 (23:02 -0700)
input/test/dynamic-extra.ly [deleted file]
input/test/header-ifelse.ly [deleted file]
input/test/staff-bracket.ly [deleted file]

diff --git a/input/test/dynamic-extra.ly b/input/test/dynamic-extra.ly
deleted file mode 100644 (file)
index e2f25f7..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-
-\version "2.10.0"
-% probably should be merged into refman.
-\header{
-    texidoc = "@cindex Dynamic Piu Forte
-Più forte dynamics is produced using @code{\markup}. " }
-
-piuf = \markup {  \italic "più" \dynamic "f" }
-
-\layout{ragged-right = ##t}
-
-\relative c''{
-  c-\piuf
-  c
-  c2\< c2\!
-  
-  c2\< c2\!
-}
-
-
-%% Local Variables:
-%% coding: utf-8
-%% End:
diff --git a/input/test/header-ifelse.ly b/input/test/header-ifelse.ly
deleted file mode 100644 (file)
index c6ea946..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-\version "2.10.0"
-
-
-#(if (not (defined? 'pieceTagLine))
-  (define pieceTagLine (string-append "Title has version " (lilypond-version))))
-
-\header{
-    title = \pieceTagLine
-    texidoc = "
-
-High level functionality (eg. conditional defines), can be
-accomplished with GUILE.
-
-This example puts the current version in the title via Scheme.
-
-" 
-}
-
-\layout {ragged-right=##t}
-{ c'4 }
-
diff --git a/input/test/staff-bracket.ly b/input/test/staff-bracket.ly
deleted file mode 100644 (file)
index 217f952..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-\version "2.10.0" 
-
-\header{
-  texidoc="@cindex Nested Staff Groups
-Staves can be nested in various combinations.  Here, @code{StaffGroup}
-and @code{ChoirStaff} produce similar straight brackets, whereas 
-@code{GrandStaff} produces curly brackets.  In @code{InnerStaffGroup} 
-and @code{InnerChoirStaff}, the brackets are shifted leftwards."
-}
-
-\score { 
-<<
-  \new StaffGroup << 
-  \new Staff {c' d' e' f'}
-  \new InnerStaffGroup <<
-   \new Staff {c' d' e' f'}
-   \new GrandStaff <<
-     \new Staff {c' d' e' f'}
-     \new Staff {c' d' e' f'}
-   >>
-  \new Staff {c' d' e' f'}
-  >>
-  \new ChoirStaff <<
-   \new Staff {c' d' e' f'}
-    \new InnerStaffGroup <<
-     \new Staff {c' d' e' f'}
-    >>
-   \new Staff {c' d' e' f'}
-  >>
-  >>
-  \new ChoirStaff << 
-   \new Staff {c' d' e' f'}
-   \new InnerChoirStaff <<
-    \new Staff {c' d' e' f'}
-    \new Staff {c' d' e' f'}
-   >>
-   \new Staff {c' d' e' f'}
-  >>
-
->>
-
- \layout { ragged-right = ##t}
-}
-