]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.0.6
authorfred <fred>
Tue, 26 Mar 2002 21:30:06 +0000 (21:30 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:30:06 +0000 (21:30 +0000)
18 files changed:
lily/horizontal-group-elem.cc [deleted file]
lily/horizontal-vertical-group-elem.cc [deleted file]
lily/super-elem.cc [deleted file]
make/docrules.make [deleted file]
make/mutopia.make [deleted file]
mf/feta-black16.mf [deleted file]
mf/feta-brackets16.mf [deleted file]
mf/feta-brackets20.mf [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/allemande-alto.ly [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/courante-alto.ly [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/gigue-alto.ly [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/menuetto-alto.ly [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/prelude-alto.ly [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/sarabande-alto.ly [deleted file]
mutopia/J.S.Bach/Solo-Cello-Suites/scsii-alto.ly [deleted file]
stepmake/stepmake/documentation.shared.make [deleted file]
stepmake/stepmake/po-vars.make [deleted file]
stepmake/stepmake/substitute-targets.make [deleted file]

diff --git a/lily/horizontal-group-elem.cc b/lily/horizontal-group-elem.cc
deleted file mode 100644 (file)
index 804dd6d..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "horizontal-group-element.hh"
-#include "interval.hh"
-#include "item.hh"
-#include "debug.hh"
-
-
-IMPLEMENT_IS_TYPE_B1(Horizontal_group_element, Axis_group_element);
-
-Horizontal_group_element::Horizontal_group_element ()
-  : Axis_group_element (X_AXIS,X_AXIS)
-{
-}
-
-Interval
-Horizontal_group_element::do_width() const
-{
-  return Graphical_axis_group::extent (X_AXIS);
-}
-
diff --git a/lily/horizontal-vertical-group-elem.cc b/lily/horizontal-vertical-group-elem.cc
deleted file mode 100644 (file)
index 9021d88..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#include "horizontal-vertical-group-element.hh"
-#include "interval.hh"
-#include "item.hh"
-#include "debug.hh"
-
-Horizontal_vertical_group_element::Horizontal_vertical_group_element()
-{
-  axis1_ = X_AXIS;
-  axis2_ = Y_AXIS;    
-}
-
-
-
-IMPLEMENT_IS_TYPE_B2(Horizontal_vertical_group_element, Horizontal_group_element, Vertical_group_element);
diff --git a/lily/super-elem.cc b/lily/super-elem.cc
deleted file mode 100644 (file)
index fda20ea..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
-  super-elem.cc -- implement Super_elem
-
-  source file of the LilyPond music typesetter
-
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-#include "super-element.hh"
-#include "line-of-score.hh"
-#include "p-score.hh"
-#include "string.hh"
-#include "tex-outputter.hh"
-
-void
-Super_elem::handle_broken_dependencies()
-{
-  lines_arr_ = line_of_score_l_->get_lines();
-  for (int i =0; i < lines_arr_.size(); i++) 
-    add_dependency (lines_arr_[i]);
-}
-  
-
-void
-Super_elem::do_substitute_dependency (Score_element*o,Score_element* n)
-{
-  if (line_of_score_l_ == o->access_Spanner ())
-    line_of_score_l_ = n? (Line_of_score*) n->access_Spanner () : 0;
-}
-
-Super_elem::Super_elem()
-{
-  line_of_score_l_ = new Line_of_score ;
-}
-
-void
-Super_elem::do_add_processing()
-{
-  pscore_l_->typeset_unbroken_spanner (line_of_score_l_);
-  add_dependency (line_of_score_l_);
-}
-
-IMPLEMENT_IS_TYPE_B1(Super_elem,Score_element);
-
-
-/**
-    for administration of what was done already
-    */
-enum Score_element_status {
-  ORPHAN=0,                    // not yet added to pstaff
-  VIRGIN,                      // added to pstaff
-  PREBROKEN,
-  PRECALCING,
-  PRECALCED,           // calcs before spacing done
-  SPACING,
-  SPACED,
-  BROKEN,
-  POSTCALCING,         // busy calculating. This is used to trap cyclic deps.
-  POSTCALCED,          // after spacing calcs done
-  BREWING,
-  BREWED,
-  UNLINKING,
-  UNLINKED,
-};
-
-void
-Super_elem::pre_processing ()
-{
-  calcalute_dependencies (PRECALCING, PRECALCED, &Score_element::do_pre_processing);
-}
-
-void
-Super_elem::space_processing ()
-{
-  calcalute_dependencies (SPACING, SPACED, &Score_element::do_space_processing);
-}
-
-/* for break processing, use only one status, because copies have to
-  have correct status. (Previously,
-  Score_element::handle_[pre]broken_dependencies assigned to status_i_
-  */
-void
-Super_elem::breakable_col_processing ()
-{
-  calcalute_dependencies (PREBROKEN, PREBROKEN, &Score_element::do_breakable_col_processing);
-}
-
-void
-Super_elem::break_processing ()
-{
-  calcalute_dependencies (BROKEN, BROKEN, &Score_element::do_break_processing);
-}
-void
-Super_elem::post_processing ()
-{
-  calcalute_dependencies (POSTCALCING, POSTCALCED, &Score_element::do_post_processing);
-}
-
-void
-Super_elem::output_all () 
-{
-  for (int i=0; i < lines_arr_.size(); i++)
-    {
-      pscore_l_->outputter_l_->start_line ();
-      lines_arr_[i]->calcalute_dependencies (BREWING, BREWED, &Score_element::do_brew_molecule);
-      pscore_l_->outputter_l_->stop_line ();
-    }
-}
-
-
-
-void
-Super_elem::unlink_all ()
-{
-  calcalute_dependencies (UNLINKING, UNLINKED, &Score_element::junk_links);
-}
-
diff --git a/make/docrules.make b/make/docrules.make
deleted file mode 100644 (file)
index 9351453..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-# Docrules.make
-
-include $(make-dir)/mudela_rules.make
diff --git a/make/mutopia.make b/make/mutopia.make
deleted file mode 100644 (file)
index 1c541ee..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-# make/Mutopia.make
-
-
diff --git a/mf/feta-black16.mf b/mf/feta-black16.mf
deleted file mode 100644 (file)
index beb6b07..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-% feta-test16
-% part of LilyPond's pretty-but-neat music font
-
-
-input feta-autometric;
-fet_beginfont("feta-test", 16);
-staffsize#:=16pt#;
-test:=1;
-
-% smoked cheese
-test := -1;
-
-
-% dem piksels.
-%test := 1;
-
-input feta-generic;
-
-fet_endfont("feta");
-
-end.
-
diff --git a/mf/feta-brackets16.mf b/mf/feta-brackets16.mf
deleted file mode 100644 (file)
index 9e2a79e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-
-% 
-% feta-brackets16.mf --  implement 
-% 
-% source file of the Feta (Font-En-Tja) music font
-% 
-% (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-%      Jan Nieuwenhuizen <janneke@gnu.org>
-% 
-
-font_identifier:="feta-brackets16";
-font_size 16;
-mode_setup;
-
-staffsize#:=16pt#;
-input feta-haak;
-end.
-
diff --git a/mf/feta-brackets20.mf b/mf/feta-brackets20.mf
deleted file mode 100644 (file)
index fb40909..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-% 
-% feta-brackets20.mf --  implement 
-% 
-% source file of the Feta (Font-En-Tja) music font
-% 
-% (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-%      Jan Nieuwenhuizen <janneke@gnu.org>
-% 
-
-font_identifier:="feta-brackets20";
-font_size 20;
-mode_setup;
-
-staffsize#:=20pt#;
-input feta-haak;
-end.
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/allemande-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/allemande-alto.ly
deleted file mode 100644 (file)
index e8fbc3b..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-\header{
-filename =      "allemande-alto.ly";
-title =         "Solo Cello Suites";
-subtitle = "Suite II";
-piece = "Allemande";
-% opus =        "BWV 1008";
-opus =  "";
-composer =      "Johann Sebastian Bach (1685-1750)";
-enteredby =     "JCN";
-copyright =     "public domain";
-}
-
-%{
- Tested Features:breaking algorithm, chords, multivoice, accents, 
- dotted slurs
-%}
-
-\version "1.0.0";
-
-\include "allemande-urtext.ly";
-
-allemande_alto_global = \melodic{
-       \time 4/4;
-       \key f;
-       \partial 16;
-       \clef alto;
-       \skip 1*11;
-       s2. s8.
-       \bar ":|:";
-       \skip 1*11;
-       s2. s4 s8
-       \bar ":|";
-}
-
-allemande_alto_scripts = \melodic{
-}
-
-allemande_alto_staff = \type Staff <
-       \melodic \transpose c'' \$allemande
-       \$allemande_alto_global
-       \$allemande_alto_scripts
->
-
-\score{
-       \$allemande_alto_staff
-       \include "scs-paper.ly";
-       \midi{ \tempo 4 = 45; }
-}
-
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/courante-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/courante-alto.ly
deleted file mode 100644 (file)
index 8e7f097..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-\header{
-filename =      "courante-alto.ly";
-title =         "Solo Cello Suites";
-subtitle = "Suite II";
-piece = "Courante";
-% opus =        "BWV 1008";
-opus =  "";
-composer =      "Johann Sebastian Bach (1685-1750)";
-enteredby =     "JCN";
-copyright =     "public domain";
-}
-
-%{
- Tested Features:breaking algorithm, chords, multivoice, accents, 
- dotted slurs
-%}
-
-\version "1.0.0";
-
-\include "courante-urtext.ly";
-
-courante_alto_global = \melodic{
-       \time 3/4;
-       \key f;
-       \partial 16;
-       \clef alto;
-       \skip 2.*15;
-       s2 s8.
-       \bar ":|:";
-       \skip 2.*15;
-       s2 s8.
-       \bar ":|";
-}
-
-courante_alto_scripts = \melodic{
-}
-
-courante_alto_staff = \type Staff <
-       \melodic \transpose c' \$courante
-       \$courante_alto_global
-       \$courante_alto_scripts
->
-
-\score{
-       \$courante_alto_staff
-       \include "scs-paper.ly";
-       \midi{ \tempo 4 = 55; }
-}
-
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/gigue-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/gigue-alto.ly
deleted file mode 100644 (file)
index 784dea6..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-\header{
-filename =      "gigue-cello.ly";
-title =         "Solo Cello Suites";
-subtitle = "Suite II";
-piece = "Pr\\'elude";          % duh
-% opus =        "BWV 1008";
-opus =  "";
-composer =      "Johann Sebastian Bach (1685-1750)";
-enteredby =     "JCN";
-copyright =     "public domain";
-}
-
-%{
- Tested Features:breaking algorithm, chords, multivoice, accents, 
- dotted slurs
-%}
-
-\version "1.0.0";
-
-\include "gigue-urtext.ly";
-
-gigue_cello_global = \melodic{
-       \time 3/8;
-       \key f;
-       \clef bass;
-       \partial 8
-       \skip 4.*31;
-       s4
-       \bar ":|:";
-       \skip 4.*44;
-       s4
-       \bar ":|";
-}
-
-gigue_cello_scripts = \melodic{
-}
-
-gigue_cello_staff = \type Staff <
-       \melodic \transpose c' \$gigue
-       \$gigue_cello_global
-       \$gigue_cello_scripts
->
-
-\score{
-       \$gigue_cello_staff
-       \include "scs-paper.ly";
-%broken
-       \midi{ \tempo 4 = 60; }
-}
-
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/menuetto-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/menuetto-alto.ly
deleted file mode 100644 (file)
index 96ed306..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-\header{
-filename =      "menuetto-alto.ly";
-title =         "Solo Cello Suites";
-subtitle = "Suite II";
-piece = "Menuetto I";
-description =   "Transcribed for Alto";
-source =        "?";
-% opus =        "BWV 1008 no. 5";
-opus =  "";
-composer =      "Johann Sebastian Bach (1685-1750)";
-enteredby =     "JCN";
-copyright =     "public domain";
-}
-
-%{
- Tested Features:breaking algorithm, chords, multivoice, accents, 
- dotted slurs
-%}
-
-\version "1.0.0";
-
-\include "menuetto-urtext.ly";
-
-menuetto_i_alto_global = \melodic{
-       \time 3/4;
-       \key f;
-       \clef alto;
-       \skip 2.*8;
-       \bar ":|:";
-       \clef violin;
-       \skip 2.*1;
-       \slurdotted
-       \skip 2.*3;
-       \clef alto;
-       \skip 2.*11;
-       s2._"Fine"
-       \bar ":|";
-}
-
-menuetto_i_alto_scripts = \melodic{
-       s2.
-       s8^"~"^1_2_4 s8*5
-       s2.*5
-       s4 s-\upbow s-\downbow
-       s2.-\upbow
-       s2.*5
-       s2 s4-\upbow
-       s4-\downbow s2
-       s2.*1
-       s2^0 s4
-       s2.*1
-       s4-\downbow s4-\upbow
-}
-
-menuetto_i_alto_staff = \type Staff <
-       \melodic \transpose c' \$menuetto_i
-       \$menuetto_i_alto_global
-%      \$menuetto_i_alto_scripts
->
-
-\score{
-       \$menuetto_i_alto_staff
-       \include "scs-paper.ly";
-       \midi{ \tempo 4 = 110; }
-}
-
-menuetto_ii_alto_global = \melodic{
-       \time 3/4;
-       \key D;
-       \clef alto;
-       \skip 2.*8;
-       \bar ":|:";
-       \skip 2.*1;
-       \slurdotted
-       \skip 2.*14;
-       s2._"Menuetto I da Capo"
-       \bar ":|";
-}
-
-menuetto_ii_alto_staff = \type Staff <
-       \melodic \transpose c' \$menuetto_ii
-       \$menuetto_ii_alto_global
-%      \$menuetto_ii_alto_scripts
->
-
-\header{
-piece = "Menuetto II";
-opus =  "";
-}
-\score{
-       \$menuetto_ii_alto_staff
-       \include "scs-paper.ly";
-       \midi{ \tempo 4 = 130; }
-}
-
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/prelude-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/prelude-alto.ly
deleted file mode 100644 (file)
index 2219165..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-\header{
-filename =      "prelude-alto.ly";
-title =         "Solo Cello Suites";
-subtitle = "Suite II";
-piece = "Pr\\'elude";          % duh
-opus =  "BWV 1008";
-% opus =        "";
-composer =      "Johann Sebastian Bach (1685-1750)";
-enteredby =     "JCN";
-copyright =     "public domain";
-}
-
-%{
- Tested Features:breaking algorithm, chords, multivoice, accents, 
- dotted slurs
-%}
-
-\version "1.0.0";
-
-\include "prelude-urtext.ly";
-
-prelude_alto_global = \melodic{
-       \time 3/4;
-       \key f;
-       \clef alto;
-       \skip 2.*63;
-       \bar "|.";
-}
-
-prelude_alto_scripts = \melodic{
-}
-
-prelude_alto_staff = \type Staff <
-       \melodic \transpose c' \$prelude
-       \$prelude_alto_global
-       \$prelude_alto_scripts
->
-
-\score{
-       \$prelude_alto_staff
-       \include "scs-paper.ly";
-       \midi{ \tempo 4 = 40; }
-}
-
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/sarabande-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/sarabande-alto.ly
deleted file mode 100644 (file)
index b39274e..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-\header{
-filename =      "sarabande-alto.ly";
-title =         "Solo Cello Suites";
-subtitle = "Suite II";
-piece = "Sarabande";
-% opus =        "BWV 1008";
-opus =  "";
-composer =      "Johann Sebastian Bach (1685-1750)";
-enteredby =     "JCN";
-copyright =     "public domain";
-}
-
-%{
- Tested Features:breaking algorithm, chords, multivoice, accents, 
- dotted slurs
-%}
-
-\version "1.0.0";
-
-\include "sarabande-urtext.ly";
-
-sarabande_alto_global = \melodic{
-       \time 3/4;
-       \key f;
-       \clef alto;
-       \skip 2.*12;
-       \bar ":|:";
-       \skip 2.*16;
-       \bar ":|";
-}
-
-sarabande_alto_scripts = \melodic{
-}
-
-sarabande_alto_staff = \type Staff <
-       \melodic \transpose c' \$sarabande
-       \$sarabande_alto_global
-       \$sarabande_alto_scripts
->
-
-\score{
-       \$sarabande_alto_staff
-       \include "scs-paper.ly";
-       \midi{ \tempo 4 = 40; }
-}
-
diff --git a/mutopia/J.S.Bach/Solo-Cello-Suites/scsii-alto.ly b/mutopia/J.S.Bach/Solo-Cello-Suites/scsii-alto.ly
deleted file mode 100644 (file)
index e0ba581..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-\header{
-instrument="Alto";
-}
-
-instrument="alto";
-\include "solo-cello-suite-ii.ly"
-
diff --git a/stepmake/stepmake/documentation.shared.make b/stepmake/stepmake/documentation.shared.make
deleted file mode 100644 (file)
index 79c67fb..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-# stepmake/documentation.shared.make
-# urg: stuff shared between yodl/lily/stepmake
-
-# could/should do this for bin/Makefile make/Makefile too
-
-### below here is shared between lily/yodl/Documentation and topdocs...
-
-include $(stepdir)/documentation_vars.make
-include $(stepdir)/documentation_rules.make
diff --git a/stepmake/stepmake/po-vars.make b/stepmake/stepmake/po-vars.make
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/stepmake/stepmake/substitute-targets.make b/stepmake/stepmake/substitute-targets.make
deleted file mode 100644 (file)
index e69de29..0000000