]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/build/lys-to-tely.py
MusicXML test suite: use custom py formatter for MusicXML files
[lilypond.git] / scripts / build / lys-to-tely.py
index f0de9cd66b0b320e1614254bc3c1ddad594ca691..4b2e232053e8b6504f6f923df6d39ecabc10bbe9 100644 (file)
@@ -92,12 +92,16 @@ for opt in options:
 
 texi_file_re = re.compile ('.*\.i?te(ly|xi)$')
 html_file_re = re.compile ('.*\.i?htm(l)?$')
+xml_file_re = re.compile ('.*\.i?(xm|mx)l$')
+tex_file_re = re.compile ('.*\.i?(la)?tex$')
+pdf_file_re = re.compile ('.*\.i?pdf$')
 
 def name2line (n):
     if texi_file_re.match (n):
         # We have a texi include file, simply include it:
         s = r"@include %s" % os.path.basename (n)
-    if html_file_re.match (n):
+    elif (html_file_re.match (n) or pdf_file_re.match (n) or
+          tex_file_re.match (n)):
         s = r"""
 @ifhtml
 @html
@@ -106,7 +110,19 @@ def name2line (n):
 @end html
 @end ifhtml
 """ % (os.path.basename (n), os.path.basename (n))
-        return s
+
+    elif (xml_file_re.match (n)):
+        # Assume it's a MusicXML file -> convert, create image etc.
+        s = r"""
+@ifhtml
+@html
+<a name="%s"></a>
+@end html
+@end ifhtml
+
+@musicxmlfile[%s]{%s}
+""" % (os.path.basename (n), fragment_options, n)
+
     else:
         # Assume it's a lilypond file -> create image etc.
         s = r"""