1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#! /usr/bin/env python
assert __name__ == "__main__"
import sys
from macro import Macro, writeFile
tmpl = """\
@node %(name)s
@unnumberedsec %(name)s
@majorheading Synopsis
%(synopsis)s
@majorheading Description
%(description)s
@majorheading Source Code
Download the
@uref{http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/%(name)s.m4,latest
version of @file{%(name)s.m4}} or browse
@uref{http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=history;f=m4/%(name)s.m4,the
macro's revision history}.
@majorheading License
%(authors)s
%(license)s
"""
def quoteTexi(buf):
return buf.replace('@', "@@").replace('{', "@{").replace('}', "@}")
def formatParagraph(para):
assert para
assert para[0]
assert para[0][0]
if para[0][0].isspace():
return "@smallexample\n%s\n@end smallexample" % quoteTexi('\n'.join(para))
else:
return quoteTexi('\n'.join(para))
def formatAuthor(a):
assert a
a["year"] = quoteTexi(a["year"])
a["name"] = quoteTexi(a["name"])
if "email" in a:
a["email"] = quoteTexi(a["email"])
return "Copyright @copyright{} %(year)s %(name)s @email{%(email)s}" % a
else:
return "Copyright @copyright{} %(year)s %(name)s" % a
if len(sys.argv) != 3:
raise Exception("invalid command line syntax: %s" % ' '.join(map(repr, sys.argv)))
(m4File,outFile) = sys.argv[1:]
assert outFile != m4File
m = Macro(m4File)
m.synopsis = "@smallexample\n%s\n@end smallexample" % "\n".join(map(quoteTexi, m.synopsis))
m.description = '\n\n'.join(map(formatParagraph, m.description))
m.description = m.description.replace("@end smallexample\n@smallexample", "\n")
m.authors = " @* ".join([ "@w{%s}" % formatAuthor(a) for a in m.authors ])
m.license = "\n\n".join(map(formatParagraph, m.license))
writeFile(outFile, tmpl % m.__dict__)
|