]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.33
authorfred <fred>
Sun, 24 Mar 2002 19:32:35 +0000 (19:32 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:32:35 +0000 (19:32 +0000)
Documentation/make_website
src/commandrequest.cc

index 4b1a9aaf4af78dc71d7c794217f209853b73948f..1aede3536704a3feaf6d3a2549d092960ea577d2 100755 (executable)
@@ -11,7 +11,7 @@ sub
 local $base="lilypond/";
 local @examples=("wohltemperirt");
 
-system  'make html';
+system  'pod2html';
 
 print "resetting refs.\n";
 
@@ -31,7 +31,6 @@ foreach $a (@examples) {
        "gs -q -sDEVICE=ppmraw -sOutputFile=- -r200 -dNOPAUSE  $a.ps -c quit |pnmscale 0.5| ppmtogif > $a.gif"
 }
 
-system "mkdir docxx; make -C.. docxx; ln ../docxx/* ./docxx/;"
-
-system "tar cf website.tar *.html *.gif *.png *.ps docxx/;" .
-"gzip -9 website.tar;"
+system "mkdir docxx; make -C.. docxx; ln ../docxx/* ./docxx/;" .
+        "tar cf website.tar *.html *.gif *.png *.ps docxx/;" .
+       "gzip -9 website.tar;"
index 065f69ae5367a2a6eaa91e9b60d743e3aa019fd7..9af17503f37f90407b36f56a48cfde453c34e56b 100644 (file)
@@ -17,10 +17,21 @@ Cadenza_req::do_print()const
     mtor << on_b;
 }
 
+int
+Bar_req::compare(const Bar_req &c1)const
+{
+    return type_str_ == c1.type_str_;
+}
+
 void
 Bar_req::do_print() const
 {
-    mtor << type;
+    mtor << type_str_;
+}
+
+Bar_req::Bar_req(String s)
+{
+    type_str_ = s;
 }
 
 Partial_measure_req::Partial_measure_req(Moment m)
@@ -55,10 +66,6 @@ Nonmusical_req::do_print()const{}
 void
 Barcheck_req::do_print() const{}
 
-Bar_req::Bar_req(String s)
-{
-    type = s;
-}
 /* *************** */
 void
 Clef_change_req::do_print() const