#!/usr/bin/env python """ convert PEP's to (X)HTML - courtesy of /F Usage: %(PROGRAM)s [options] [sf_username] Options: -i/--install After generating the HTML, install it SourceForge. In that case the user's name is used in the scp and ssh commands, unless sf_username is given (in which case, it is used instead). Without -i, sf_username is ignored. -h/--help Print this help message and exit. """ import sys import os import re import cgi import glob import getopt PROGRAM = sys.argv[0] HOST = "shell.sourceforge.net" # host for update HDIR = "/home/groups/python/htdocs/peps" # target host directory LOCALVARS = "Local Variables:" # The generated HTML doesn't validate -- you cannot use
tags. But if I change that, the result doesn't look very nice... DTD = ('') fixpat = re.compile("((http|ftp):[-_a-zA-Z0-9/.+~:?#$=&]+)|(pep-\d+(.txt)?)|.") def usage(code, msg=''): sys.stderr.write(__doc__ % globals() + '\n') if msg: msg = str(msg) if msg[-1] <> '\n': msg = msg + '\n' sys.stderr.write(msg) sys.exit(code) def fixanchor(current, match): text = match.group(0) link = None if text[:5] == "http:" or text[:4] == "ftp:": link = text elif text[:4] == "pep-" and text != current: link = os.path.splitext(text)[0] + ".html" if link: return "%s" % (link, cgi.escape(text)) return cgi.escape(match.group(0)) # really slow, but it works... def fixfile(infile, outfile): # convert plain text pep to minimal XHTML markup fi = open(infile) fo = open(outfile, "w") fo.write(DTD + "\n\n\n") # head header = [] pep = "" title = "" while 1: line = fi.readline() if not line.strip(): break if line[0].strip(): if ":" not in line: break key, value = line.split(":", 1) value = value.strip() header.append((key, value)) else: # continuation line key, value = header[-1] value = value + line header[-1] = key, value if key.lower() == "title": title = value elif key.lower() == "pep": pep = value if pep: title = "PEP " + pep + " -- " + title if title: fo.write("%s \n" ' \n' % cgi.escape(title)) fo.write("\n") # body fo.write('\n' ' \n' '\n\n\n') for k, v in header: if k.lower() == 'author': mailtos = [] for addr in v.split(): if '@' in addr: mailtos.append( '%s' % (addr, pep, addr)) else: mailtos.append(addr) v = ' '.join(mailtos) else: v = cgi.escape(v) fo.write("
\n\n" % (cgi.escape(k), v)) title = 0 fo.write(" %s: %s
\n" "") while 1: line = fi.readline() if not line: break if line[0] != "\f": if line[0].strip(): if line.strip() == LOCALVARS: break fo.write("\n%s
\n" % line.strip()) title = 0 else: line = fixpat.sub(lambda x, c=infile: fixanchor(c, x), line) fo.write(line) fo.write("\n" "\n" "\n") fo.close() os.chmod(outfile, 0664) def main(): # defaults update = 0 username = '' try: opts, args = getopt.getopt(sys.argv[1:], 'ih', ['install', 'help']) except getopt.error, msg: usage(1, msg) if args: username = args[0] + '@' del args[0] if args: usage(1, 'unexpected arguments') for opt, arg in opts: if opt in ('-h', '--help'): usage(0) elif opt in ('-i', '--install'): update = 1 for file in glob.glob("pep-*.txt"): newfile = os.path.splitext(file)[0] + ".html" print file, "->", newfile fixfile(file, newfile) if update: os.system("scp pep-*.html style.css " + username + HOST + ":" + HDIR) os.system("ssh " + username + HOST + " chmod 664 " + HDIR + "/*") if __name__ == "__main__": main()