]> git.donarmstrong.com Git - lilypond.git/commitdiff
show XML with ly:progress
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 2 Jan 2007 22:11:57 +0000 (23:11 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 2 Jan 2007 22:11:57 +0000 (23:11 +0100)
input/regression/to-xml.ly

index 036063fbdb594d981cd9dda33c1e9b36ddb2a71e..7db3f8dd0823ea9bb01ed4347ced8649faada562 100644 (file)
@@ -1,27 +1,18 @@
 \version "2.10.0"
 
-fooBar =  { << c''4 \\ g'4 >> }
+testMusic =  { << c''4 \\ g'4 >> }
 
-#(ly:set-option 'parse-protect #f)
 #(load-from-path "to-xml.scm")
 
-#(music-to-xml fooBar (current-output-port))
+#(ly:progress "\nXML:\n\n~A\n"
+  (call-with-output-string
+   (lambda (p) (music-to-xml testMusic p))))
 
 \header {
-    texidoc = "@cindex To XML"
-       texidoc = #(string-append
-      "The input representation is very generic. Therefore, it
-      should not be hard to convert it to XML or a similar format:\n\n"
-
-      "@example\n"
-       (call-with-output-string
-              (lambda (p) (music-to-xml fooBar p))
-      )
-    "@end example" )
+  texidoc =
+  "The input representation is generic, and may be translated to XML. "
 }
 
 
-\score {
-\fooBar
-}
+\testMusic