]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/build/lys-to-tely.py
Corrects image size in web.pdf - issue 982
[lilypond.git] / scripts / build / lys-to-tely.py
index 6f6ad475e47e3355188ea85c6e66fe5b1cb258de..4b2e232053e8b6504f6f923df6d39ecabc10bbe9 100644 (file)
@@ -92,13 +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)
-    elif html_file_re.match (n) or pdf_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
@@ -107,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"""