From: Han-Wen Nienhuys Date: Tue, 11 Mar 2003 22:49:54 +0000 (+0000) Subject: new file. X-Git-Tag: release/1.7.15~12 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ae807132f6b243c669edccf1cb845da93d696053;p=lilypond.git new file. --- diff --git a/ChangeLog b/ChangeLog index 98c7bda9ba..45c1b8a4b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2003-03-11 Han-Wen Nienhuys + * buildscripts/texi2omf.py: new file. + * mf/feta-beugel.mf: include font count, not staffsize (16) in font-name diff --git a/buildscripts/texi2omf.py b/buildscripts/texi2omf.py new file mode 100644 index 0000000000..f0c3d2859c --- /dev/null +++ b/buildscripts/texi2omf.py @@ -0,0 +1,147 @@ +import time +import re +import sys +import getopt +import os + +def usage (): + sys.stderr.write (''' +texi2omf [options] texifile + +Options: + +--format=FORM format is FORM. Supported: HTML, PS, PDF +--location=FILE path to file on disk. +--version=VERSION + +Use the following commands (enclose in @ignore) + +@omfsubject . . +@omfdescription . . +@omftype . . + +etc. + + +''') + +(options, files) = getopt.getopt (sys.argv[1:], '', + ['format=', 'location=', 'version=']) + +license = 'FDL' +location = '' +version = '' +email = os.getenv ('MAILADDRESS') +name = os.getenv ('USERNAME') + +for (o,a) in options: + if o == '--format': + format = a + elif o == '--location': + location = 'file:%s' % a + elif o == '--version': + version = a + else: + assert 0 + + +if not files: + usage() + sys.exit (2) + + +formats = { + 'html' : 'text/html', + 'pdf' : 'application/pdf', + 'ps' : 'application/postscript', + } + +if not formats.has_key (format): + sys.stderr.write ("Format `%s' unknown\n" % format) + sys.exit (1) + + +infile =files[0] + +today = time.localtime() + +texi = open (infile).read() + +if not location: + location = 'file:%s' % re.sub (r'\.*', '.html', infile) + + +omf_vars = { + 'date': '%d-%d-%d' % today[:3], + 'mimeformat': formats[format], + 'maintainer': "%s (%s)" % (name, email), + 'version' : version, + 'location' : location, + } + +for a in ['subject','creator', 'title', 'subtitle', 'version', 'category', 'type', + 'description', 'license']: + + m = re.search ('@omf%s (.*)\n'% a, texi) + if m: + omf_vars[a] = m.group (1) + elif not omf_vars.has_key (a): + omf_vars[a] = '' + +if not omf_vars['title']: + title = '' + m = re.search ('@title (.*)\n', texi) + if m: + title = m.group (1) + + subtitle = '' + m = re.search ('@subtitle (.*)\n', texi) + if m: + subtitle = m.group (1) + + if subtitle: + title = '%s -- %s' % (title, subtitle) + + omf_vars['title'] = title + +if not omf_vars['creator']: + m = re.search ('@author (.*)\n', texi) + if m: + omf_vars['creator'] = m.group (1) + + + +print r''' + + + + + + %(creator)s + + + %(maintainer)s + + + %(title)s + + + %(date)s + + + + + %(description)s + + + %(type)s + + + + + + + +''' % omf_vars + +