2006-03-02 11:45:09 -05:00
|
|
|
|
#!/usr/bin/env python
|
2006-03-22 23:23:24 -05:00
|
|
|
|
"""
|
|
|
|
|
Convert PEPs to (X)HTML fragments for Pyramid - courtesy of /F
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
Usage: %(PROGRAM)s [options] [<peps> ...]
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
2006-03-22 23:23:24 -05:00
|
|
|
|
-d <DIR>, --destdir <DIR>
|
|
|
|
|
Specify the base destination directory for Pyramid files.
|
2006-03-27 20:20:51 -05:00
|
|
|
|
Default: %(SERVER_DEST_DIR_BASE)s
|
|
|
|
|
|
|
|
|
|
-f, --force
|
|
|
|
|
Force the rebuilding of output files, regardless of modification times.
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
2006-03-27 20:27:28 -05:00
|
|
|
|
-k, --keep-going
|
|
|
|
|
Continue building past errors if possible.
|
|
|
|
|
|
2006-03-02 11:45:09 -05:00
|
|
|
|
-q, --quiet
|
|
|
|
|
Turn off verbose messages.
|
|
|
|
|
|
|
|
|
|
-h, --help
|
|
|
|
|
Print this help message and exit.
|
|
|
|
|
|
|
|
|
|
The optional arguments ``peps`` are either pep numbers or .txt files.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
import os
|
2006-03-23 13:45:55 -05:00
|
|
|
|
import codecs
|
2006-03-02 11:45:09 -05:00
|
|
|
|
import re
|
|
|
|
|
import cgi
|
|
|
|
|
import glob
|
|
|
|
|
import getopt
|
|
|
|
|
import errno
|
|
|
|
|
import random
|
|
|
|
|
import time
|
2006-03-02 12:40:56 -05:00
|
|
|
|
import shutil
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
REQUIRES = {'python': '2.2',
|
2006-03-22 23:23:24 -05:00
|
|
|
|
'docutils': '0.5'}
|
2006-03-02 11:45:09 -05:00
|
|
|
|
PROGRAM = sys.argv[0]
|
2006-03-27 20:20:51 -05:00
|
|
|
|
SERVER_DEST_DIR_BASE = (
|
|
|
|
|
'/data/ftp.python.org/pub/beta.python.org/build/data/dev/peps')
|
2006-03-02 11:45:09 -05:00
|
|
|
|
RFCURL = 'http://www.faqs.org/rfcs/rfc%d.html'
|
2011-03-24 04:10:55 -04:00
|
|
|
|
PEPCVSURL = 'http://hg.python.org/peps/file/tip/pep-%04d.txt'
|
2006-03-23 22:14:52 -05:00
|
|
|
|
PEPDIRURL = '/dev/peps/'
|
|
|
|
|
PEPURL = PEPDIRURL + 'pep-%04d'
|
|
|
|
|
PEPANCHOR = '<a href="' + PEPURL + '">%i</a>'
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LOCALVARS = "Local Variables:"
|
|
|
|
|
|
|
|
|
|
COMMENT = """<!--
|
|
|
|
|
This HTML is auto-generated. DO NOT EDIT THIS FILE! If you are writing a new
|
2006-03-23 09:28:55 -05:00
|
|
|
|
PEP, see http://www.python.org/dev/peps/pep-0001 for instructions and links
|
2006-03-02 11:45:09 -05:00
|
|
|
|
to templates. DO NOT USE THIS HTML FILE AS YOUR TEMPLATE!
|
|
|
|
|
-->"""
|
|
|
|
|
|
|
|
|
|
# The generated HTML doesn't validate -- you cannot use <hr> and <h3> inside
|
|
|
|
|
# <pre> tags. But if I change that, the result doesn't look very nice...
|
|
|
|
|
|
|
|
|
|
fixpat = re.compile("((https?|ftp):[-_a-zA-Z0-9/.+~:?#$=&,]+)|(pep-\d+(.txt)?)|"
|
|
|
|
|
"(RFC[- ]?(?P<rfcnum>\d+))|"
|
|
|
|
|
"(PEP\s+(?P<pepnum>\d+))|"
|
|
|
|
|
".")
|
|
|
|
|
|
2006-03-23 13:45:55 -05:00
|
|
|
|
CONTENT_HTML = """\
|
|
|
|
|
<n:invisible n:data="content" n:render="mapping">
|
2006-03-24 07:39:25 -05:00
|
|
|
|
<div id="breadcrumb" n:data="breadcrumb" n:render="breadcrumb" />
|
2006-03-23 13:45:55 -05:00
|
|
|
|
<n:slot name="text"></n:slot>
|
|
|
|
|
</n:invisible>
|
|
|
|
|
"""
|
|
|
|
|
|
2006-03-22 23:23:24 -05:00
|
|
|
|
CONTENT_YML = """\
|
|
|
|
|
--- !fragment
|
|
|
|
|
# Type of template to use
|
|
|
|
|
template: content.html
|
|
|
|
|
|
|
|
|
|
# The data to pass to the template
|
|
|
|
|
local:
|
|
|
|
|
content:
|
|
|
|
|
breadcrumb: !breadcrumb nav.yml nav
|
|
|
|
|
text: !htmlfile body.html
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
INDEX_YML = """\
|
|
|
|
|
--- !fragment
|
|
|
|
|
template: index.html
|
|
|
|
|
# The data to pass to the template
|
|
|
|
|
local:
|
|
|
|
|
title: "%s"
|
|
|
|
|
content: !fragment content.yml
|
|
|
|
|
"""
|
|
|
|
|
|
2006-03-02 11:45:09 -05:00
|
|
|
|
EMPTYSTRING = ''
|
|
|
|
|
SPACE = ' '
|
|
|
|
|
COMMASPACE = ', '
|
|
|
|
|
|
|
|
|
|
|
2006-03-27 20:20:51 -05:00
|
|
|
|
class Settings:
|
|
|
|
|
|
|
|
|
|
# defaults:
|
|
|
|
|
verbose = True
|
|
|
|
|
keep_going = False
|
|
|
|
|
force_rebuild = False
|
|
|
|
|
dest_dir_base = SERVER_DEST_DIR_BASE
|
|
|
|
|
|
|
|
|
|
settings = Settings()
|
|
|
|
|
|
|
|
|
|
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
def usage(code, msg=''):
|
|
|
|
|
"""Print usage message and exit. Uses stderr if code != 0."""
|
|
|
|
|
if code == 0:
|
|
|
|
|
out = sys.stdout
|
|
|
|
|
else:
|
|
|
|
|
out = sys.stderr
|
|
|
|
|
print >> out, __doc__ % globals()
|
|
|
|
|
if msg:
|
|
|
|
|
print >> out, msg
|
|
|
|
|
sys.exit(code)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def fixanchor(current, match):
|
|
|
|
|
text = match.group(0)
|
|
|
|
|
link = None
|
|
|
|
|
if (text.startswith('http:') or text.startswith('https:')
|
|
|
|
|
or text.startswith('ftp:')):
|
|
|
|
|
# Strip off trailing punctuation. Pattern taken from faqwiz.
|
|
|
|
|
ltext = list(text)
|
|
|
|
|
while ltext:
|
|
|
|
|
c = ltext.pop()
|
|
|
|
|
if c not in '();:,.?\'"<>':
|
|
|
|
|
ltext.append(c)
|
|
|
|
|
break
|
|
|
|
|
link = EMPTYSTRING.join(ltext)
|
2006-03-23 22:14:52 -05:00
|
|
|
|
elif text.endswith('.txt') and text <> current:
|
|
|
|
|
link = PEPDIRURL + os.path.splitext(text)[0] + '/' + text
|
2006-03-02 11:45:09 -05:00
|
|
|
|
elif text.startswith('pep-') and text <> current:
|
|
|
|
|
link = os.path.splitext(text)[0] + ".html"
|
|
|
|
|
elif text.startswith('PEP'):
|
|
|
|
|
pepnum = int(match.group('pepnum'))
|
|
|
|
|
link = PEPURL % pepnum
|
|
|
|
|
elif text.startswith('RFC'):
|
|
|
|
|
rfcnum = int(match.group('rfcnum'))
|
|
|
|
|
link = RFCURL % rfcnum
|
|
|
|
|
if link:
|
|
|
|
|
return '<a href="%s">%s</a>' % (cgi.escape(link), cgi.escape(text))
|
|
|
|
|
return cgi.escape(match.group(0)) # really slow, but it works...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NON_MASKED_EMAILS = [
|
|
|
|
|
'peps@python.org',
|
|
|
|
|
'python-list@python.org',
|
|
|
|
|
'python-dev@python.org',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def fixemail(address, pepno):
|
|
|
|
|
if address.lower() in NON_MASKED_EMAILS:
|
|
|
|
|
# return hyperlinked version of email address
|
|
|
|
|
return linkemail(address, pepno)
|
|
|
|
|
else:
|
|
|
|
|
# return masked version of email address
|
|
|
|
|
parts = address.split('@', 1)
|
|
|
|
|
return '%s at %s' % (parts[0], parts[1])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def linkemail(address, pepno):
|
|
|
|
|
parts = address.split('@', 1)
|
|
|
|
|
return ('<a href="mailto:%s@%s?subject=PEP%%20%s">'
|
|
|
|
|
'%s at %s</a>'
|
|
|
|
|
% (parts[0], parts[1], pepno, parts[0], parts[1]))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def fixfile(inpath, input_lines, outfile):
|
|
|
|
|
from email.Utils import parseaddr
|
|
|
|
|
basename = os.path.basename(inpath)
|
|
|
|
|
infile = iter(input_lines)
|
|
|
|
|
# head
|
|
|
|
|
header = []
|
|
|
|
|
pep = ""
|
|
|
|
|
title = ""
|
|
|
|
|
for line in infile:
|
|
|
|
|
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
|
|
|
|
|
r = random.choice(range(64))
|
2006-03-23 09:28:55 -05:00
|
|
|
|
print >> outfile, COMMENT
|
2006-03-22 23:23:24 -05:00
|
|
|
|
print >> outfile, '<div class="header">\n<table border="0" class="rfc2822">'
|
2006-03-02 13:24:48 -05:00
|
|
|
|
for k, v in header:
|
|
|
|
|
if k.lower() in ('author', 'discussions-to'):
|
|
|
|
|
mailtos = []
|
|
|
|
|
for part in re.split(',\s*', v):
|
|
|
|
|
if '@' in part:
|
|
|
|
|
realname, addr = parseaddr(part)
|
|
|
|
|
if k.lower() == 'discussions-to':
|
|
|
|
|
m = linkemail(addr, pep)
|
|
|
|
|
else:
|
|
|
|
|
m = fixemail(addr, pep)
|
|
|
|
|
mailtos.append('%s <%s>' % (realname, m))
|
|
|
|
|
elif part.startswith('http:'):
|
|
|
|
|
mailtos.append(
|
|
|
|
|
'<a href="%s">%s</a>' % (part, part))
|
|
|
|
|
else:
|
|
|
|
|
mailtos.append(part)
|
|
|
|
|
v = COMMASPACE.join(mailtos)
|
|
|
|
|
elif k.lower() in ('replaces', 'replaced-by', 'requires'):
|
|
|
|
|
otherpeps = ''
|
|
|
|
|
for otherpep in re.split(',?\s+', v):
|
|
|
|
|
otherpep = int(otherpep)
|
2006-03-23 22:14:52 -05:00
|
|
|
|
otherpeps += PEPANCHOR % (otherpep, otherpep)
|
2006-03-02 13:24:48 -05:00
|
|
|
|
v = otherpeps
|
|
|
|
|
elif k.lower() in ('last-modified',):
|
2006-03-23 22:06:11 -05:00
|
|
|
|
date = v or time.strftime('%Y-%m-%d',
|
2006-03-02 13:24:48 -05:00
|
|
|
|
time.localtime(os.stat(inpath)[8]))
|
2006-03-23 22:06:11 -05:00
|
|
|
|
if date.startswith('$' 'Date: ') and date.endswith(' $'):
|
|
|
|
|
date = date[6:-2]
|
2006-03-02 13:24:48 -05:00
|
|
|
|
try:
|
|
|
|
|
url = PEPCVSURL % int(pep)
|
|
|
|
|
v = '<a href="%s">%s</a> ' % (url, cgi.escape(date))
|
|
|
|
|
except ValueError, error:
|
|
|
|
|
v = date
|
2006-03-23 22:06:11 -05:00
|
|
|
|
elif k.lower() == 'content-type':
|
2006-03-02 13:24:48 -05:00
|
|
|
|
url = PEPURL % 9
|
|
|
|
|
pep_type = v or 'text/plain'
|
|
|
|
|
v = '<a href="%s">%s</a> ' % (url, cgi.escape(pep_type))
|
2006-03-23 22:06:11 -05:00
|
|
|
|
elif k.lower() == 'version':
|
|
|
|
|
if v.startswith('$' 'Revision: ') and v.endswith(' $'):
|
|
|
|
|
v = cgi.escape(v[11:-2])
|
2006-03-02 13:24:48 -05:00
|
|
|
|
else:
|
|
|
|
|
v = cgi.escape(v)
|
2006-03-22 23:23:24 -05:00
|
|
|
|
print >> outfile, (' <tr><th class="field-name">%s: </th>'
|
|
|
|
|
'<td>%s</td></tr>' % (cgi.escape(k), v))
|
2006-03-02 13:24:48 -05:00
|
|
|
|
print >> outfile, '</table>'
|
2006-03-22 23:23:24 -05:00
|
|
|
|
print >> outfile, '</div>'
|
2006-03-02 11:45:09 -05:00
|
|
|
|
need_pre = 1
|
|
|
|
|
for line in infile:
|
|
|
|
|
if line[0] == '\f':
|
|
|
|
|
continue
|
|
|
|
|
if line.strip() == LOCALVARS:
|
|
|
|
|
break
|
|
|
|
|
if line[0].strip():
|
|
|
|
|
if not need_pre:
|
|
|
|
|
print >> outfile, '</pre>'
|
|
|
|
|
print >> outfile, '<h3>%s</h3>' % line.strip()
|
|
|
|
|
need_pre = 1
|
|
|
|
|
elif not line.strip() and need_pre:
|
|
|
|
|
continue
|
|
|
|
|
else:
|
|
|
|
|
# PEP 0 has some special treatment
|
|
|
|
|
if basename == 'pep-0000.txt':
|
|
|
|
|
parts = line.split()
|
|
|
|
|
if len(parts) > 1 and re.match(r'\s*\d{1,4}', parts[1]):
|
|
|
|
|
# This is a PEP summary line, which we need to hyperlink
|
|
|
|
|
url = PEPURL % int(parts[1])
|
|
|
|
|
if need_pre:
|
|
|
|
|
print >> outfile, '<pre>'
|
|
|
|
|
need_pre = 0
|
|
|
|
|
print >> outfile, re.sub(
|
|
|
|
|
parts[1],
|
2006-03-21 09:41:48 -05:00
|
|
|
|
'<a href="/dev/peps/pep-%04d/">%s</a>' % (int(parts[1]),
|
2006-03-02 11:45:09 -05:00
|
|
|
|
parts[1]), line, 1),
|
|
|
|
|
continue
|
|
|
|
|
elif parts and '@' in parts[-1]:
|
|
|
|
|
# This is a pep email address line, so filter it.
|
|
|
|
|
url = fixemail(parts[-1], pep)
|
|
|
|
|
if need_pre:
|
|
|
|
|
print >> outfile, '<pre>'
|
|
|
|
|
need_pre = 0
|
|
|
|
|
print >> outfile, re.sub(
|
|
|
|
|
parts[-1], url, line, 1),
|
|
|
|
|
continue
|
|
|
|
|
line = fixpat.sub(lambda x, c=inpath: fixanchor(c, x), line)
|
|
|
|
|
if need_pre:
|
|
|
|
|
print >> outfile, '<pre>'
|
|
|
|
|
need_pre = 0
|
|
|
|
|
outfile.write(line)
|
2006-03-02 13:12:44 -05:00
|
|
|
|
if not need_pre:
|
|
|
|
|
print >> outfile, '</pre>'
|
2006-03-22 23:23:24 -05:00
|
|
|
|
return title
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
docutils_settings = None
|
|
|
|
|
"""Runtime settings object used by Docutils. Can be set by the client
|
|
|
|
|
application when this module is imported."""
|
|
|
|
|
|
|
|
|
|
def fix_rst_pep(inpath, input_lines, outfile):
|
|
|
|
|
from docutils import core
|
2012-04-19 04:32:50 -04:00
|
|
|
|
from docutils.transforms.peps import Headers
|
|
|
|
|
Headers.pep_cvs_url = PEPCVSURL
|
2006-03-22 23:23:24 -05:00
|
|
|
|
parts = core.publish_parts(
|
2006-03-02 11:45:09 -05:00
|
|
|
|
source=''.join(input_lines),
|
|
|
|
|
source_path=inpath,
|
2006-03-02 12:40:56 -05:00
|
|
|
|
destination_path=outfile.name,
|
2006-03-02 11:45:09 -05:00
|
|
|
|
reader_name='pep',
|
|
|
|
|
parser_name='restructuredtext',
|
|
|
|
|
writer_name='pep_html',
|
|
|
|
|
settings=docutils_settings,
|
|
|
|
|
# Allow Docutils traceback if there's an exception:
|
|
|
|
|
settings_overrides={'traceback': 1})
|
2006-03-23 22:06:11 -05:00
|
|
|
|
outfile.write(parts['whole'])
|
2006-03-22 23:23:24 -05:00
|
|
|
|
title = 'PEP %s -- %s' % (parts['pepnum'], parts['title'][0])
|
|
|
|
|
return title
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_pep_type(input_lines):
|
|
|
|
|
"""
|
|
|
|
|
Return the Content-Type of the input. "text/plain" is the default.
|
|
|
|
|
Return ``None`` if the input is not a PEP.
|
|
|
|
|
"""
|
|
|
|
|
pep_type = None
|
|
|
|
|
for line in input_lines:
|
|
|
|
|
line = line.rstrip().lower()
|
|
|
|
|
if not line:
|
|
|
|
|
# End of the RFC 2822 header (first blank line).
|
|
|
|
|
break
|
|
|
|
|
elif line.startswith('content-type: '):
|
|
|
|
|
pep_type = line.split()[1] or 'text/plain'
|
|
|
|
|
break
|
|
|
|
|
elif line.startswith('pep: '):
|
|
|
|
|
# Default PEP type, used if no explicit content-type specified:
|
|
|
|
|
pep_type = 'text/plain'
|
|
|
|
|
return pep_type
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_input_lines(inpath):
|
|
|
|
|
try:
|
2006-03-23 13:45:55 -05:00
|
|
|
|
infile = codecs.open(inpath, 'r', 'utf-8')
|
2006-03-02 11:45:09 -05:00
|
|
|
|
except IOError, e:
|
|
|
|
|
if e.errno <> errno.ENOENT: raise
|
|
|
|
|
print >> sys.stderr, 'Error: Skipping missing PEP file:', e.filename
|
|
|
|
|
sys.stderr.flush()
|
|
|
|
|
return None, None
|
|
|
|
|
lines = infile.read().splitlines(1) # handles x-platform line endings
|
|
|
|
|
infile.close()
|
|
|
|
|
return lines
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def find_pep(pep_str):
|
|
|
|
|
"""Find the .txt file indicated by a cmd line argument"""
|
|
|
|
|
if os.path.exists(pep_str):
|
|
|
|
|
return pep_str
|
|
|
|
|
num = int(pep_str)
|
|
|
|
|
return "pep-%04d.txt" % num
|
|
|
|
|
|
2006-03-27 20:20:51 -05:00
|
|
|
|
def make_html(inpath):
|
2006-03-02 11:45:09 -05:00
|
|
|
|
input_lines = get_input_lines(inpath)
|
|
|
|
|
pep_type = get_pep_type(input_lines)
|
|
|
|
|
if pep_type is None:
|
|
|
|
|
print >> sys.stderr, 'Error: Input file %s is not a PEP.' % inpath
|
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
return None
|
|
|
|
|
elif not PEP_TYPE_DISPATCH.has_key(pep_type):
|
|
|
|
|
print >> sys.stderr, ('Error: Unknown PEP type for input file %s: %s'
|
|
|
|
|
% (inpath, pep_type))
|
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
return None
|
|
|
|
|
elif PEP_TYPE_DISPATCH[pep_type] == None:
|
|
|
|
|
pep_type_error(inpath, pep_type)
|
|
|
|
|
return None
|
2006-03-22 23:23:24 -05:00
|
|
|
|
destDir, needSvn, pepnum = set_up_pyramid(inpath)
|
|
|
|
|
outpath = os.path.join(destDir, 'body.html')
|
2006-03-27 20:20:51 -05:00
|
|
|
|
if ( not settings.force_rebuild
|
|
|
|
|
and (os.path.exists(outpath)
|
|
|
|
|
and os.stat(inpath).st_mtime <= os.stat(outpath).st_mtime)):
|
|
|
|
|
if settings.verbose:
|
2006-03-27 00:46:54 -05:00
|
|
|
|
print "Skipping %s (outfile up to date)"%(inpath)
|
|
|
|
|
return
|
2006-03-27 20:20:51 -05:00
|
|
|
|
if settings.verbose:
|
2006-03-02 11:45:09 -05:00
|
|
|
|
print inpath, "(%s)" % pep_type, "->", outpath
|
|
|
|
|
sys.stdout.flush()
|
2006-03-23 13:45:55 -05:00
|
|
|
|
outfile = codecs.open(outpath, "w", "utf-8")
|
2006-03-22 23:23:24 -05:00
|
|
|
|
title = PEP_TYPE_DISPATCH[pep_type](inpath, input_lines, outfile)
|
|
|
|
|
outfile.close()
|
|
|
|
|
os.chmod(outfile.name, 0664)
|
|
|
|
|
write_pyramid_index(destDir, title)
|
|
|
|
|
# for PEP 0, copy body to parent directory as well
|
|
|
|
|
if pepnum == '0000':
|
|
|
|
|
shutil.copyfile(outpath, os.path.join(destDir, '..', 'body.html'))
|
2012-11-11 10:42:32 -05:00
|
|
|
|
# apparently we need the index.yml as well to generate <title> right
|
|
|
|
|
shutil.copyfile(os.path.join(destDir, 'index.yml'),
|
|
|
|
|
os.path.join(destDir, '..', 'index.yml'))
|
2006-03-23 22:06:11 -05:00
|
|
|
|
copy_aux_files(inpath, destDir)
|
2006-03-22 23:23:24 -05:00
|
|
|
|
return outpath
|
2006-03-02 12:40:56 -05:00
|
|
|
|
|
2006-03-22 23:23:24 -05:00
|
|
|
|
def set_up_pyramid(inpath):
|
2006-03-02 12:40:56 -05:00
|
|
|
|
m = re.search(r'pep-(\d+)\.', inpath)
|
|
|
|
|
if not m:
|
2006-03-22 23:23:24 -05:00
|
|
|
|
print >>sys.stderr, "Can't find PEP number in file name."
|
2006-03-02 12:40:56 -05:00
|
|
|
|
sys.exit(1)
|
2006-03-22 23:23:24 -05:00
|
|
|
|
pepnum = m.group(1)
|
2006-03-27 20:20:51 -05:00
|
|
|
|
destDir = os.path.join(settings.dest_dir_base, 'pep-%s' % pepnum)
|
2006-03-02 12:40:56 -05:00
|
|
|
|
|
|
|
|
|
needSvn = 0
|
|
|
|
|
if not os.path.exists(destDir):
|
|
|
|
|
needSvn = 1
|
2006-05-02 14:34:22 -04:00
|
|
|
|
os.makedirs(destDir)
|
2006-03-02 12:40:56 -05:00
|
|
|
|
|
|
|
|
|
# write content.html
|
|
|
|
|
foofilename = os.path.join(destDir, 'content.html')
|
2006-03-23 13:45:55 -05:00
|
|
|
|
fp = codecs.open(foofilename, 'w', 'utf-8')
|
|
|
|
|
fp.write(CONTENT_HTML)
|
2006-03-02 12:40:56 -05:00
|
|
|
|
fp.close()
|
|
|
|
|
os.chmod(foofilename, 0664)
|
|
|
|
|
|
|
|
|
|
# write content.yml
|
|
|
|
|
foofilename = os.path.join(destDir, 'content.yml')
|
2006-03-23 13:45:55 -05:00
|
|
|
|
fp = codecs.open(foofilename, 'w', 'utf-8')
|
2006-03-22 23:23:24 -05:00
|
|
|
|
fp.write(CONTENT_YML)
|
2006-03-02 12:40:56 -05:00
|
|
|
|
os.chmod(foofilename, 0664)
|
2006-03-22 23:23:24 -05:00
|
|
|
|
return destDir, needSvn, pepnum
|
2006-03-02 12:40:56 -05:00
|
|
|
|
|
2006-03-22 23:23:24 -05:00
|
|
|
|
def write_pyramid_index(destDir, title):
|
|
|
|
|
filename = os.path.join(destDir, 'index.yml')
|
2006-03-23 13:45:55 -05:00
|
|
|
|
fp = codecs.open(filename, 'w', 'utf-8')
|
2007-04-20 16:55:15 -04:00
|
|
|
|
title = title.replace('\\', '\\\\') # Escape existing backslashes
|
2006-03-22 23:23:24 -05:00
|
|
|
|
fp.write(INDEX_YML % title.replace('"', '\\"'))
|
|
|
|
|
fp.close()
|
|
|
|
|
os.chmod(filename, 0664)
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
2006-03-23 22:06:11 -05:00
|
|
|
|
def copy_aux_files(pep_path, dest_dir):
|
|
|
|
|
"""
|
|
|
|
|
Copy auxiliary files whose names match 'pep-XXXX-*.*'.
|
|
|
|
|
"""
|
|
|
|
|
dirname, pepname = os.path.split(pep_path)
|
|
|
|
|
base, ext = os.path.splitext(pepname)
|
|
|
|
|
files = glob.glob(os.path.join(dirname, base) + '-*.*')
|
|
|
|
|
for path in files:
|
|
|
|
|
filename = os.path.basename(path)
|
|
|
|
|
dest_path = os.path.join(dest_dir, filename)
|
|
|
|
|
print '%s -> %s' % (path, dest_path)
|
|
|
|
|
shutil.copy(path, dest_path)
|
|
|
|
|
|
|
|
|
|
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
PEP_TYPE_DISPATCH = {'text/plain': fixfile,
|
|
|
|
|
'text/x-rst': fix_rst_pep}
|
|
|
|
|
PEP_TYPE_MESSAGES = {}
|
|
|
|
|
|
|
|
|
|
def check_requirements():
|
|
|
|
|
# Check Python:
|
|
|
|
|
try:
|
|
|
|
|
from email.Utils import parseaddr
|
|
|
|
|
except ImportError:
|
|
|
|
|
PEP_TYPE_DISPATCH['text/plain'] = None
|
|
|
|
|
PEP_TYPE_MESSAGES['text/plain'] = (
|
|
|
|
|
'Python %s or better required for "%%(pep_type)s" PEP '
|
|
|
|
|
'processing; %s present (%%(inpath)s).'
|
|
|
|
|
% (REQUIRES['python'], sys.version.split()[0]))
|
|
|
|
|
# Check Docutils:
|
|
|
|
|
try:
|
|
|
|
|
import docutils
|
|
|
|
|
except ImportError:
|
|
|
|
|
PEP_TYPE_DISPATCH['text/x-rst'] = None
|
|
|
|
|
PEP_TYPE_MESSAGES['text/x-rst'] = (
|
|
|
|
|
'Docutils not present for "%(pep_type)s" PEP file %(inpath)s. '
|
|
|
|
|
'See README.txt for installation.')
|
|
|
|
|
else:
|
|
|
|
|
installed = [int(part) for part in docutils.__version__.split('.')]
|
|
|
|
|
required = [int(part) for part in REQUIRES['docutils'].split('.')]
|
|
|
|
|
if installed < required:
|
|
|
|
|
PEP_TYPE_DISPATCH['text/x-rst'] = None
|
|
|
|
|
PEP_TYPE_MESSAGES['text/x-rst'] = (
|
|
|
|
|
'Docutils must be reinstalled for "%%(pep_type)s" PEP '
|
|
|
|
|
'processing (%%(inpath)s). Version %s or better required; '
|
|
|
|
|
'%s present. See README.txt for installation.'
|
|
|
|
|
% (REQUIRES['docutils'], docutils.__version__))
|
|
|
|
|
|
|
|
|
|
def pep_type_error(inpath, pep_type):
|
|
|
|
|
print >> sys.stderr, 'Error: ' + PEP_TYPE_MESSAGES[pep_type] % locals()
|
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
|
|
|
2006-03-27 20:35:11 -05:00
|
|
|
|
def build_peps(args=None):
|
2006-03-27 20:20:51 -05:00
|
|
|
|
if args:
|
|
|
|
|
filenames = pep_filename_generator(args)
|
|
|
|
|
else:
|
|
|
|
|
# do them all
|
|
|
|
|
filenames = glob.glob("pep-*.txt")
|
|
|
|
|
filenames.sort()
|
|
|
|
|
for filename in filenames:
|
|
|
|
|
try:
|
|
|
|
|
make_html(filename)
|
|
|
|
|
except (KeyboardInterrupt, SystemExit):
|
|
|
|
|
raise
|
|
|
|
|
except:
|
|
|
|
|
print "While building PEPs: %s" % filename
|
|
|
|
|
if settings.keep_going:
|
|
|
|
|
ee, ev, et = sys.exc_info()
|
|
|
|
|
traceback.print_exception(ee, ev, et, file=sys.stdout)
|
|
|
|
|
print "--keep-going/-k specified, continuing"
|
|
|
|
|
continue
|
|
|
|
|
else:
|
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
|
def pep_filename_generator(args):
|
|
|
|
|
for pep in args:
|
|
|
|
|
filename = find_pep(pep)
|
|
|
|
|
yield filename
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
2006-03-27 20:20:51 -05:00
|
|
|
|
|
|
|
|
|
def main(argv=None):
|
2006-03-02 11:45:09 -05:00
|
|
|
|
check_requirements()
|
|
|
|
|
|
|
|
|
|
if argv is None:
|
|
|
|
|
argv = sys.argv[1:]
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
opts, args = getopt.getopt(
|
2006-03-27 20:27:28 -05:00
|
|
|
|
argv, 'hd:fkq',
|
|
|
|
|
['help', 'destdir=', 'force', 'keep-going', 'quiet'])
|
2006-03-02 11:45:09 -05:00
|
|
|
|
except getopt.error, msg:
|
|
|
|
|
usage(1, msg)
|
|
|
|
|
|
|
|
|
|
for opt, arg in opts:
|
|
|
|
|
if opt in ('-h', '--help'):
|
|
|
|
|
usage(0)
|
2006-03-22 23:23:24 -05:00
|
|
|
|
elif opt in ('-d', '--destdir'):
|
2006-03-27 20:20:51 -05:00
|
|
|
|
settings.dest_dir_base = arg
|
|
|
|
|
elif opt in ('-f', '--force'):
|
|
|
|
|
settings.force_rebuild = True
|
2006-03-27 20:27:28 -05:00
|
|
|
|
elif opt in ('-k', '--keep-going'):
|
|
|
|
|
settings.force_rebuild = True
|
2006-03-02 11:45:09 -05:00
|
|
|
|
elif opt in ('-q', '--quiet'):
|
2006-03-27 20:20:51 -05:00
|
|
|
|
settings.verbose = False
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
2006-03-27 20:20:51 -05:00
|
|
|
|
build_peps(args)
|
2006-03-02 11:45:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
main()
|