1999-03-03 16:24:30 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# -*- Python -*-
|
|
|
|
"""usage: %(program)s [options...] file ...
|
|
|
|
|
|
|
|
Options specifying formats to build:
|
2001-01-30 18:30:01 -04:00
|
|
|
--html HyperText Markup Language (default)
|
|
|
|
--pdf Portable Document Format
|
1999-03-03 16:24:30 -04:00
|
|
|
--ps PostScript
|
|
|
|
--dvi 'DeVice Indepentent' format from TeX
|
|
|
|
--text ASCII text (requires lynx)
|
|
|
|
|
|
|
|
More than one output format may be specified, or --all.
|
|
|
|
|
|
|
|
HTML options:
|
|
|
|
--address, -a Specify an address for page footers.
|
2002-10-01 12:24:03 -03:00
|
|
|
--dir Specify the directory for HTML output.
|
1999-03-03 16:24:30 -04:00
|
|
|
--link Specify the number of levels to include on each page.
|
|
|
|
--split, -s Specify a section level for page splitting, default: %(max_split_depth)s.
|
2002-10-01 12:20:20 -03:00
|
|
|
--iconserver, -i Specify location of icons (default: ./).
|
1999-09-22 16:55:35 -03:00
|
|
|
--image-type Specify the image type to use in HTML output;
|
2004-04-08 15:51:39 -03:00
|
|
|
values: gif, png (default).
|
2000-03-31 16:27:36 -04:00
|
|
|
--numeric Don't rename the HTML files; just keep node#.html for
|
|
|
|
the filenames.
|
2000-08-29 15:15:05 -03:00
|
|
|
--style Specify the CSS file to use for the output (filename,
|
|
|
|
not a URL).
|
2000-08-31 03:58:34 -03:00
|
|
|
--up-link URL to a parent document.
|
|
|
|
--up-title Title of a parent document.
|
2002-10-30 13:02:21 -04:00
|
|
|
--favicon Icon to display in the browsers location bar.
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
Other options:
|
|
|
|
--a4 Format for A4 paper.
|
|
|
|
--letter Format for US letter paper (the default).
|
|
|
|
--help, -H Show this text.
|
|
|
|
--logging, -l Log stdout and stderr to a file (*.how).
|
|
|
|
--debugging, -D Echo commands as they are executed.
|
|
|
|
--keep, -k Keep temporary files around.
|
|
|
|
--quiet, -q Do not print command output to stdout.
|
|
|
|
(stderr is also lost, sorry; see *.how for errors)
|
|
|
|
"""
|
|
|
|
|
|
|
|
import getopt
|
|
|
|
import glob
|
|
|
|
import os
|
1999-05-06 16:37:38 -03:00
|
|
|
import re
|
1999-03-03 16:24:30 -04:00
|
|
|
import shutil
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
2000-08-29 15:15:05 -03:00
|
|
|
MYDIR = os.path.abspath(sys.path[0])
|
|
|
|
TOPDIR = os.path.dirname(MYDIR)
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
ISTFILE = os.path.join(TOPDIR, "texinputs", "python.ist")
|
|
|
|
NODE2LABEL_SCRIPT = os.path.join(MYDIR, "node2label.pl")
|
|
|
|
L2H_INIT_FILE = os.path.join(TOPDIR, "perl", "l2hinit.perl")
|
|
|
|
|
|
|
|
BIBTEX_BINARY = "bibtex"
|
|
|
|
DVIPS_BINARY = "dvips"
|
|
|
|
LATEX_BINARY = "latex"
|
|
|
|
LATEX2HTML_BINARY = "latex2html"
|
|
|
|
LYNX_BINARY = "lynx"
|
|
|
|
MAKEINDEX_BINARY = "makeindex"
|
|
|
|
PDFLATEX_BINARY = "pdflatex"
|
|
|
|
PERL_BINARY = "perl"
|
|
|
|
PYTHON_BINARY = "python"
|
|
|
|
|
|
|
|
|
2003-10-01 01:07:44 -03:00
|
|
|
def usage(options, file):
|
|
|
|
print >>file, __doc__ % options
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
def error(options, message, err=2):
|
2003-10-01 01:07:44 -03:00
|
|
|
print >>sys.stderr, message
|
|
|
|
print >>sys.stderr
|
|
|
|
usage(options, sys.stderr)
|
1999-03-03 16:24:30 -04:00
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
|
|
|
|
class Options:
|
|
|
|
program = os.path.basename(sys.argv[0])
|
|
|
|
#
|
|
|
|
address = ''
|
2001-02-19 15:18:09 -04:00
|
|
|
builddir = None
|
1999-03-03 16:24:30 -04:00
|
|
|
debugging = 0
|
|
|
|
discard_temps = 1
|
|
|
|
have_temps = 0
|
2002-10-01 12:20:20 -03:00
|
|
|
icon_server = "."
|
2004-04-08 15:51:39 -03:00
|
|
|
image_type = "png"
|
1999-03-03 16:24:30 -04:00
|
|
|
logging = 0
|
|
|
|
max_link_depth = 3
|
|
|
|
max_split_depth = 6
|
|
|
|
paper = "letter"
|
|
|
|
quiet = 0
|
1999-09-22 16:55:35 -03:00
|
|
|
runs = 0
|
2000-03-31 16:27:36 -04:00
|
|
|
numeric = 0
|
2001-01-09 18:02:10 -04:00
|
|
|
global_module_index = None
|
1999-03-03 16:24:30 -04:00
|
|
|
style_file = os.path.join(TOPDIR, "html", "style.css")
|
1999-09-23 13:55:09 -03:00
|
|
|
about_file = os.path.join(TOPDIR, "html", "about.dat")
|
2000-08-31 03:58:34 -03:00
|
|
|
up_link = None
|
|
|
|
up_title = None
|
2002-10-30 13:02:21 -04:00
|
|
|
favicon = None
|
1999-03-03 16:24:30 -04:00
|
|
|
#
|
2001-10-30 12:09:51 -04:00
|
|
|
# 'dvips_safe' is a weird option. It is used mostly to make
|
|
|
|
# LaTeX2HTML not try to be too smart about protecting the user
|
|
|
|
# from a bad version of dvips -- some versions would core dump if
|
|
|
|
# the path to the source DVI contained a dot, and it's appearantly
|
|
|
|
# difficult to determine if the version available has that bug.
|
|
|
|
# This option gets set when PostScript output is requested
|
|
|
|
# (because we're going to run dvips regardless, and we'll either
|
|
|
|
# know it succeeds before LaTeX2HTML is run, or we'll have
|
|
|
|
# detected the failure and bailed), or the user asserts that it's
|
|
|
|
# safe from the command line.
|
|
|
|
#
|
|
|
|
# So, why does LaTeX2HTML think it appropriate to protect the user
|
|
|
|
# from a dvips that's only potentially going to core dump? Only
|
|
|
|
# because they want to avoid doing a lot of work just to have to
|
|
|
|
# bail later with no useful intermediates. Unfortunately, they
|
|
|
|
# bail *before* they know whether dvips will be needed at all.
|
|
|
|
# I've gone around the bush a few times with the LaTeX2HTML
|
|
|
|
# developers over whether this is appropriate behavior, and they
|
|
|
|
# don't seem interested in changing their position.
|
|
|
|
#
|
|
|
|
dvips_safe = 0
|
|
|
|
#
|
2001-01-30 18:30:01 -04:00
|
|
|
DEFAULT_FORMATS = ("html",)
|
1999-03-03 16:24:30 -04:00
|
|
|
ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text")
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.formats = []
|
2000-08-31 03:14:38 -03:00
|
|
|
self.l2h_init_files = []
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
# This is used when formatting the usage message.
|
|
|
|
try:
|
|
|
|
return getattr(self, key)
|
|
|
|
except AttributeError:
|
|
|
|
raise KeyError, key
|
|
|
|
|
|
|
|
def parse(self, args):
|
1999-09-22 16:55:35 -03:00
|
|
|
opts, args = getopt.getopt(args, "Hi:a:s:lDkqr:",
|
1999-03-03 16:24:30 -04:00
|
|
|
["all", "postscript", "help", "iconserver=",
|
2000-08-31 03:14:38 -03:00
|
|
|
"address=", "a4", "letter", "l2h-init=",
|
1999-03-03 16:24:30 -04:00
|
|
|
"link=", "split=", "logging", "debugging",
|
1999-09-23 13:55:09 -03:00
|
|
|
"keep", "quiet", "runs=", "image-type=",
|
2001-02-19 15:18:09 -04:00
|
|
|
"about=", "numeric", "style=", "paper=",
|
|
|
|
"up-link=", "up-title=", "dir=",
|
2002-10-30 13:02:21 -04:00
|
|
|
"global-module-index=", "dvips-safe",
|
|
|
|
"favicon="]
|
1999-09-22 16:55:35 -03:00
|
|
|
+ list(self.ALL_FORMATS))
|
1999-03-03 16:24:30 -04:00
|
|
|
for opt, arg in opts:
|
|
|
|
if opt == "--all":
|
|
|
|
self.formats = list(self.ALL_FORMATS)
|
2001-10-30 12:09:51 -04:00
|
|
|
self.dvips_safe = "ps" in self.formats
|
1999-03-03 16:24:30 -04:00
|
|
|
elif opt in ("-H", "--help"):
|
2003-10-01 01:07:44 -03:00
|
|
|
usage(self, sys.stdout)
|
1999-03-03 16:24:30 -04:00
|
|
|
sys.exit()
|
|
|
|
elif opt == "--iconserver":
|
|
|
|
self.icon_server = arg
|
|
|
|
elif opt in ("-a", "--address"):
|
|
|
|
self.address = arg
|
|
|
|
elif opt == "--a4":
|
|
|
|
self.paper = "a4"
|
|
|
|
elif opt == "--letter":
|
|
|
|
self.paper = "letter"
|
|
|
|
elif opt == "--link":
|
|
|
|
self.max_link_depth = int(arg)
|
|
|
|
elif opt in ("-s", "--split"):
|
|
|
|
self.max_split_depth = int(arg)
|
|
|
|
elif opt in ("-l", "--logging"):
|
|
|
|
self.logging = self.logging + 1
|
|
|
|
elif opt in ("-D", "--debugging"):
|
|
|
|
self.debugging = self.debugging + 1
|
|
|
|
elif opt in ("-k", "--keep"):
|
|
|
|
self.discard_temps = 0
|
|
|
|
elif opt in ("-q", "--quiet"):
|
|
|
|
self.quiet = 1
|
1999-09-22 16:55:35 -03:00
|
|
|
elif opt in ("-r", "--runs"):
|
|
|
|
self.runs = int(arg)
|
|
|
|
elif opt == "--image-type":
|
|
|
|
self.image_type = arg
|
1999-09-23 13:55:09 -03:00
|
|
|
elif opt == "--about":
|
|
|
|
# always make this absolute:
|
|
|
|
self.about_file = os.path.normpath(
|
2000-08-29 15:15:05 -03:00
|
|
|
os.path.abspath(arg))
|
2000-03-31 16:27:36 -04:00
|
|
|
elif opt == "--numeric":
|
|
|
|
self.numeric = 1
|
2000-08-29 15:15:05 -03:00
|
|
|
elif opt == "--style":
|
|
|
|
self.style_file = os.path.abspath(arg)
|
2000-08-31 03:14:38 -03:00
|
|
|
elif opt == "--l2h-init":
|
|
|
|
self.l2h_init_files.append(os.path.abspath(arg))
|
2002-10-30 13:02:21 -04:00
|
|
|
elif opt == "--favicon":
|
|
|
|
self.favicon = arg
|
2000-08-31 03:58:34 -03:00
|
|
|
elif opt == "--up-link":
|
|
|
|
self.up_link = arg
|
|
|
|
elif opt == "--up-title":
|
|
|
|
self.up_title = arg
|
2001-01-09 18:02:10 -04:00
|
|
|
elif opt == "--global-module-index":
|
|
|
|
self.global_module_index = arg
|
2001-02-19 15:18:09 -04:00
|
|
|
elif opt == "--dir":
|
2001-08-10 17:17:09 -03:00
|
|
|
if os.sep == "\\":
|
2003-09-27 16:35:37 -03:00
|
|
|
arg = re.sub("/", "\\\\", arg)
|
2002-10-01 12:30:56 -03:00
|
|
|
self.builddir = os.path.expanduser(arg)
|
2001-02-19 15:18:09 -04:00
|
|
|
elif opt == "--paper":
|
|
|
|
self.paper = arg
|
2001-10-30 12:09:51 -04:00
|
|
|
elif opt == "--dvips-safe":
|
|
|
|
self.dvips_safe = 1
|
1999-03-03 16:24:30 -04:00
|
|
|
#
|
|
|
|
# Format specifiers:
|
|
|
|
#
|
|
|
|
elif opt[2:] in self.ALL_FORMATS:
|
|
|
|
self.add_format(opt[2:])
|
|
|
|
elif opt == "--postscript":
|
|
|
|
# synonym for --ps
|
|
|
|
self.add_format("ps")
|
|
|
|
self.initialize()
|
|
|
|
#
|
|
|
|
# return the args to allow the caller access:
|
|
|
|
#
|
|
|
|
return args
|
|
|
|
|
|
|
|
def add_format(self, format):
|
|
|
|
"""Add a format to the formats list if not present."""
|
|
|
|
if not format in self.formats:
|
2001-10-30 12:09:51 -04:00
|
|
|
if format == "ps":
|
|
|
|
# assume this is safe since we're going to run it anyway
|
|
|
|
self.dvips_safe = 1
|
1999-03-03 16:24:30 -04:00
|
|
|
self.formats.append(format)
|
|
|
|
|
|
|
|
def initialize(self):
|
|
|
|
"""Complete initialization. This is needed if parse() isn't used."""
|
|
|
|
# add the default format if no formats were specified:
|
|
|
|
if not self.formats:
|
|
|
|
self.formats = self.DEFAULT_FORMATS
|
|
|
|
# determine the base set of texinputs directories:
|
2003-09-27 04:05:12 -03:00
|
|
|
texinputs = os.environ.get("TEXINPUTS", "").split(os.pathsep)
|
1999-03-03 16:24:30 -04:00
|
|
|
if not texinputs:
|
|
|
|
texinputs = ['']
|
2003-09-27 04:05:12 -03:00
|
|
|
mydirs = [os.path.join(TOPDIR, "paper-" + self.paper),
|
|
|
|
os.path.join(TOPDIR, "texinputs"),
|
|
|
|
]
|
|
|
|
if '' in texinputs:
|
|
|
|
i = texinputs.index('')
|
|
|
|
texinputs[i:i] = mydirs
|
|
|
|
else:
|
|
|
|
texinputs += mydirs
|
|
|
|
self.base_texinputs = texinputs
|
2001-06-23 00:06:01 -03:00
|
|
|
if self.builddir:
|
|
|
|
self.builddir = os.path.abspath(self.builddir)
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
class Job:
|
1999-09-22 16:55:35 -03:00
|
|
|
latex_runs = 0
|
|
|
|
|
1999-03-03 16:24:30 -04:00
|
|
|
def __init__(self, options, path):
|
|
|
|
self.options = options
|
1999-05-06 16:37:38 -03:00
|
|
|
self.doctype = get_doctype(path)
|
1999-03-03 16:24:30 -04:00
|
|
|
self.filedir, self.doc = split_pathname(path)
|
2001-06-23 00:06:01 -03:00
|
|
|
self.builddir = os.path.abspath(options.builddir or self.doc)
|
2001-07-17 11:46:09 -03:00
|
|
|
if ("html" in options.formats or "text" in options.formats):
|
|
|
|
if not os.path.exists(self.builddir):
|
|
|
|
os.mkdir(self.builddir)
|
|
|
|
self.log_filename = os.path.join(self.builddir, self.doc + ".how")
|
|
|
|
else:
|
|
|
|
self.log_filename = os.path.abspath(self.doc + ".how")
|
1999-03-03 16:24:30 -04:00
|
|
|
if os.path.exists(self.log_filename):
|
|
|
|
os.unlink(self.log_filename)
|
2002-08-27 13:34:54 -03:00
|
|
|
l2hconf = self.doc + ".l2h"
|
|
|
|
if os.path.exists(l2hconf):
|
|
|
|
if os.path.exists(l2hconf + "~"):
|
|
|
|
os.unlink(l2hconf + "~")
|
|
|
|
os.rename(l2hconf, l2hconf + "~")
|
|
|
|
self.l2h_aux_init_file = self.doc + ".l2h"
|
1999-03-03 16:24:30 -04:00
|
|
|
self.write_l2h_aux_init_file()
|
|
|
|
|
|
|
|
def build(self):
|
|
|
|
self.setup_texinputs()
|
|
|
|
formats = self.options.formats
|
|
|
|
if "dvi" in formats or "ps" in formats:
|
|
|
|
self.build_dvi()
|
|
|
|
if "pdf" in formats:
|
|
|
|
self.build_pdf()
|
|
|
|
if "ps" in formats:
|
|
|
|
self.build_ps()
|
|
|
|
if "html" in formats:
|
|
|
|
self.require_temps()
|
2001-06-23 00:06:01 -03:00
|
|
|
self.build_html(self.builddir)
|
1999-03-03 16:24:30 -04:00
|
|
|
if self.options.icon_server == ".":
|
1999-09-22 16:55:35 -03:00
|
|
|
pattern = os.path.join(TOPDIR, "html", "icons",
|
|
|
|
"*." + self.options.image_type)
|
|
|
|
imgs = glob.glob(pattern)
|
|
|
|
if not imgs:
|
|
|
|
self.warning(
|
|
|
|
"Could not locate support images of type %s."
|
|
|
|
% `self.options.image_type`)
|
|
|
|
for fn in imgs:
|
2002-10-01 12:38:01 -03:00
|
|
|
new_fn = os.path.join(self.builddir, os.path.basename(fn))
|
1999-03-03 16:24:30 -04:00
|
|
|
shutil.copyfile(fn, new_fn)
|
|
|
|
if "text" in formats:
|
|
|
|
self.require_temps()
|
|
|
|
tempdir = self.doc
|
|
|
|
need_html = "html" not in formats
|
|
|
|
if self.options.max_split_depth != 1:
|
|
|
|
fp = open(self.l2h_aux_init_file, "a")
|
|
|
|
fp.write("# re-hack this file for --text:\n")
|
|
|
|
l2hoption(fp, "MAX_SPLIT_DEPTH", "1")
|
|
|
|
fp.write("1;\n")
|
|
|
|
fp.close()
|
|
|
|
tempdir = self.doc + "-temp-html"
|
|
|
|
need_html = 1
|
|
|
|
if need_html:
|
|
|
|
self.build_html(tempdir, max_split_depth=1)
|
|
|
|
self.build_text(tempdir)
|
|
|
|
if self.options.discard_temps:
|
|
|
|
self.cleanup()
|
|
|
|
|
|
|
|
def setup_texinputs(self):
|
2003-09-27 04:05:12 -03:00
|
|
|
texinputs = [self.filedir] + self.options.base_texinputs
|
|
|
|
os.environ["TEXINPUTS"] = os.pathsep.join(texinputs)
|
1999-03-03 17:57:58 -04:00
|
|
|
self.message("TEXINPUTS=" + os.environ["TEXINPUTS"])
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
def build_aux(self, binary=None):
|
|
|
|
if binary is None:
|
|
|
|
binary = LATEX_BINARY
|
|
|
|
new_index( "%s.ind" % self.doc, "genindex")
|
|
|
|
new_index("mod%s.ind" % self.doc, "modindex")
|
|
|
|
self.run("%s %s" % (binary, self.doc))
|
|
|
|
self.use_bibtex = check_for_bibtex(self.doc + ".aux")
|
1999-09-22 16:55:35 -03:00
|
|
|
self.latex_runs = 1
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
def build_dvi(self):
|
|
|
|
self.use_latex(LATEX_BINARY)
|
|
|
|
|
|
|
|
def build_pdf(self):
|
|
|
|
self.use_latex(PDFLATEX_BINARY)
|
|
|
|
|
|
|
|
def use_latex(self, binary):
|
|
|
|
self.require_temps(binary=binary)
|
2000-09-20 02:49:09 -03:00
|
|
|
if self.latex_runs < 2:
|
|
|
|
if os.path.isfile("mod%s.idx" % self.doc):
|
|
|
|
self.run("%s mod%s.idx" % (MAKEINDEX_BINARY, self.doc))
|
2000-11-02 22:57:31 -04:00
|
|
|
use_indfix = 0
|
2000-09-20 02:49:09 -03:00
|
|
|
if os.path.isfile(self.doc + ".idx"):
|
2000-11-02 22:57:31 -04:00
|
|
|
use_indfix = 1
|
2000-09-20 02:49:09 -03:00
|
|
|
# call to Doc/tools/fix_hack omitted; doesn't appear necessary
|
|
|
|
self.run("%s %s.idx" % (MAKEINDEX_BINARY, self.doc))
|
|
|
|
import indfix
|
|
|
|
indfix.process(self.doc + ".ind")
|
|
|
|
if self.use_bibtex:
|
|
|
|
self.run("%s %s" % (BIBTEX_BINARY, self.doc))
|
|
|
|
self.process_synopsis_files()
|
|
|
|
self.run("%s %s" % (binary, self.doc))
|
2001-02-12 11:30:22 -04:00
|
|
|
self.latex_runs = self.latex_runs + 1
|
2000-09-20 02:49:09 -03:00
|
|
|
if os.path.isfile("mod%s.idx" % self.doc):
|
|
|
|
self.run("%s -s %s mod%s.idx"
|
|
|
|
% (MAKEINDEX_BINARY, ISTFILE, self.doc))
|
2000-11-02 22:57:31 -04:00
|
|
|
if use_indfix:
|
2000-09-20 02:49:09 -03:00
|
|
|
self.run("%s -s %s %s.idx"
|
|
|
|
% (MAKEINDEX_BINARY, ISTFILE, self.doc))
|
2000-11-02 22:57:31 -04:00
|
|
|
indfix.process(self.doc + ".ind")
|
2000-09-20 02:49:09 -03:00
|
|
|
self.process_synopsis_files()
|
1999-05-06 16:37:38 -03:00
|
|
|
#
|
|
|
|
# and now finish it off:
|
|
|
|
#
|
1999-03-03 16:24:30 -04:00
|
|
|
if os.path.isfile(self.doc + ".toc") and binary == PDFLATEX_BINARY:
|
|
|
|
import toc2bkm
|
2000-09-05 18:45:11 -03:00
|
|
|
if self.doctype == "manual":
|
|
|
|
bigpart = "chapter"
|
|
|
|
else:
|
|
|
|
bigpart = "section"
|
|
|
|
toc2bkm.process(self.doc + ".toc", self.doc + ".bkm", bigpart)
|
1999-03-03 16:24:30 -04:00
|
|
|
if self.use_bibtex:
|
|
|
|
self.run("%s %s" % (BIBTEX_BINARY, self.doc))
|
|
|
|
self.run("%s %s" % (binary, self.doc))
|
2001-02-12 11:30:22 -04:00
|
|
|
self.latex_runs = self.latex_runs + 1
|
1999-05-06 16:37:38 -03:00
|
|
|
|
|
|
|
def process_synopsis_files(self):
|
|
|
|
synopsis_files = glob.glob(self.doc + "*.syn")
|
|
|
|
for path in synopsis_files:
|
|
|
|
uniqify_module_table(path)
|
|
|
|
|
1999-03-03 16:24:30 -04:00
|
|
|
def build_ps(self):
|
|
|
|
self.run("%s -N0 -o %s.ps %s" % (DVIPS_BINARY, self.doc, self.doc))
|
|
|
|
|
2001-07-17 11:46:09 -03:00
|
|
|
def build_html(self, builddir, max_split_depth=None):
|
1999-03-03 16:24:30 -04:00
|
|
|
if max_split_depth is None:
|
|
|
|
max_split_depth = self.options.max_split_depth
|
|
|
|
texfile = None
|
2003-09-27 04:05:12 -03:00
|
|
|
for p in os.environ["TEXINPUTS"].split(os.pathsep):
|
1999-03-03 16:24:30 -04:00
|
|
|
fn = os.path.join(p, self.doc + ".tex")
|
|
|
|
if os.path.isfile(fn):
|
|
|
|
texfile = fn
|
|
|
|
break
|
|
|
|
if not texfile:
|
1999-09-22 16:55:35 -03:00
|
|
|
self.warning("Could not locate %s.tex; aborting." % self.doc)
|
1999-03-03 16:24:30 -04:00
|
|
|
sys.exit(1)
|
|
|
|
# remove leading ./ (or equiv.); might avoid problems w/ dvips
|
|
|
|
if texfile[:2] == os.curdir + os.sep:
|
|
|
|
texfile = texfile[2:]
|
|
|
|
# build the command line and run LaTeX2HTML:
|
2000-04-03 01:19:14 -03:00
|
|
|
if not os.path.isdir(builddir):
|
|
|
|
os.mkdir(builddir)
|
2000-09-14 19:25:47 -03:00
|
|
|
else:
|
|
|
|
for fname in glob.glob(os.path.join(builddir, "*.html")):
|
|
|
|
os.unlink(fname)
|
1999-03-03 16:24:30 -04:00
|
|
|
args = [LATEX2HTML_BINARY,
|
|
|
|
"-init_file", self.l2h_aux_init_file,
|
|
|
|
"-dir", builddir,
|
|
|
|
texfile
|
|
|
|
]
|
2003-09-27 04:05:12 -03:00
|
|
|
self.run(" ".join(args)) # XXX need quoting!
|
1999-03-03 16:24:30 -04:00
|
|
|
# ... postprocess
|
|
|
|
shutil.copyfile(self.options.style_file,
|
|
|
|
os.path.join(builddir, self.doc + ".css"))
|
1999-05-03 11:29:07 -03:00
|
|
|
shutil.copyfile(os.path.join(builddir, self.doc + ".html"),
|
|
|
|
os.path.join(builddir, "index.html"))
|
2001-03-02 12:26:45 -04:00
|
|
|
if max_split_depth != 1:
|
2001-05-09 01:03:16 -03:00
|
|
|
label_file = os.path.join(builddir, "labels.pl")
|
|
|
|
fp = open(label_file)
|
|
|
|
about_node = None
|
|
|
|
target = " = q/about/;\n"
|
|
|
|
x = len(target)
|
|
|
|
while 1:
|
|
|
|
line = fp.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
if line[-x:] == target:
|
2001-03-02 12:26:45 -04:00
|
|
|
line = fp.readline()
|
2001-05-09 01:03:16 -03:00
|
|
|
m = re.search(r"\|(node\d+\.[a-z]+)\|", line)
|
|
|
|
about_node = m.group(1)
|
|
|
|
shutil.copyfile(os.path.join(builddir, about_node),
|
|
|
|
os.path.join(builddir, "about.html"))
|
|
|
|
break
|
|
|
|
if not self.options.numeric:
|
2001-03-02 12:26:45 -04:00
|
|
|
pwd = os.getcwd()
|
|
|
|
try:
|
|
|
|
os.chdir(builddir)
|
|
|
|
self.run("%s %s *.html" % (PERL_BINARY, NODE2LABEL_SCRIPT))
|
|
|
|
finally:
|
|
|
|
os.chdir(pwd)
|
2003-01-17 17:25:04 -04:00
|
|
|
# These files need to be cleaned up here since builddir there
|
|
|
|
# can be more than one, so we clean each of them.
|
|
|
|
if self.options.discard_temps:
|
|
|
|
for fn in ("images.tex", "images.log", "images.aux"):
|
|
|
|
safe_unlink(os.path.join(builddir, fn))
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
def build_text(self, tempdir=None):
|
|
|
|
if tempdir is None:
|
|
|
|
tempdir = self.doc
|
|
|
|
indexfile = os.path.join(tempdir, "index.html")
|
|
|
|
self.run("%s -nolist -dump %s >%s.txt"
|
|
|
|
% (LYNX_BINARY, indexfile, self.doc))
|
|
|
|
|
|
|
|
def require_temps(self, binary=None):
|
1999-09-22 16:55:35 -03:00
|
|
|
if not self.latex_runs:
|
1999-03-03 16:24:30 -04:00
|
|
|
self.build_aux(binary=binary)
|
|
|
|
|
|
|
|
def write_l2h_aux_init_file(self):
|
2000-08-31 03:14:38 -03:00
|
|
|
options = self.options
|
1999-03-03 16:24:30 -04:00
|
|
|
fp = open(self.l2h_aux_init_file, "w")
|
2000-07-31 14:47:49 -03:00
|
|
|
d = string_to_perl(os.path.dirname(L2H_INIT_FILE))
|
|
|
|
fp.write("package main;\n"
|
|
|
|
"push (@INC, '%s');\n"
|
|
|
|
"$mydir = '%s';\n"
|
|
|
|
% (d, d))
|
2000-07-24 20:03:32 -03:00
|
|
|
fp.write(open(L2H_INIT_FILE).read())
|
2000-08-31 03:14:38 -03:00
|
|
|
for filename in options.l2h_init_files:
|
|
|
|
fp.write("\n# initialization code incorporated from:\n# ")
|
|
|
|
fp.write(filename)
|
|
|
|
fp.write("\n")
|
|
|
|
fp.write(open(filename).read())
|
2000-07-24 20:03:32 -03:00
|
|
|
fp.write("\n"
|
|
|
|
"# auxillary init file for latex2html\n"
|
1999-03-03 16:24:30 -04:00
|
|
|
"# generated by mkhowto\n"
|
1999-05-03 11:29:07 -03:00
|
|
|
"$NO_AUTO_LINK = 1;\n"
|
1999-03-03 16:24:30 -04:00
|
|
|
)
|
1999-09-23 13:55:09 -03:00
|
|
|
l2hoption(fp, "ABOUT_FILE", options.about_file)
|
1999-03-03 16:24:30 -04:00
|
|
|
l2hoption(fp, "ICONSERVER", options.icon_server)
|
1999-09-22 16:55:35 -03:00
|
|
|
l2hoption(fp, "IMAGE_TYPE", options.image_type)
|
1999-03-03 16:24:30 -04:00
|
|
|
l2hoption(fp, "ADDRESS", options.address)
|
|
|
|
l2hoption(fp, "MAX_LINK_DEPTH", options.max_link_depth)
|
|
|
|
l2hoption(fp, "MAX_SPLIT_DEPTH", options.max_split_depth)
|
2000-08-31 03:58:34 -03:00
|
|
|
l2hoption(fp, "EXTERNAL_UP_LINK", options.up_link)
|
|
|
|
l2hoption(fp, "EXTERNAL_UP_TITLE", options.up_title)
|
2002-10-30 13:02:21 -04:00
|
|
|
l2hoption(fp, "FAVORITES_ICON", options.favicon)
|
2001-01-09 18:02:10 -04:00
|
|
|
l2hoption(fp, "GLOBAL_MODULE_INDEX", options.global_module_index)
|
2001-10-30 12:09:51 -04:00
|
|
|
l2hoption(fp, "DVIPS_SAFE", options.dvips_safe)
|
1999-03-03 16:24:30 -04:00
|
|
|
fp.write("1;\n")
|
|
|
|
fp.close()
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.__have_temps = 0
|
|
|
|
for pattern in ("%s.aux", "%s.log", "%s.out", "%s.toc", "%s.bkm",
|
1999-05-06 16:37:38 -03:00
|
|
|
"%s.idx", "%s.ilg", "%s.ind", "%s.pla",
|
1999-03-03 16:24:30 -04:00
|
|
|
"%s.bbl", "%s.blg",
|
|
|
|
"mod%s.idx", "mod%s.ind", "mod%s.ilg",
|
|
|
|
):
|
|
|
|
safe_unlink(pattern % self.doc)
|
1999-05-06 16:37:38 -03:00
|
|
|
map(safe_unlink, glob.glob(self.doc + "*.syn"))
|
1999-03-03 16:24:30 -04:00
|
|
|
for spec in ("IMG*", "*.pl", "WARNINGS", "index.dat", "modindex.dat"):
|
|
|
|
pattern = os.path.join(self.doc, spec)
|
|
|
|
map(safe_unlink, glob.glob(pattern))
|
|
|
|
if "dvi" not in self.options.formats:
|
|
|
|
safe_unlink(self.doc + ".dvi")
|
|
|
|
if os.path.isdir(self.doc + "-temp-html"):
|
|
|
|
shutil.rmtree(self.doc + "-temp-html", ignore_errors=1)
|
|
|
|
if not self.options.logging:
|
|
|
|
os.unlink(self.log_filename)
|
|
|
|
if not self.options.debugging:
|
|
|
|
os.unlink(self.l2h_aux_init_file)
|
|
|
|
|
|
|
|
def run(self, command):
|
1999-03-03 17:57:58 -04:00
|
|
|
self.message(command)
|
2001-08-10 17:17:09 -03:00
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
rc = os.system(command)
|
|
|
|
else:
|
|
|
|
rc = os.system("(%s) </dev/null >>%s 2>&1"
|
|
|
|
% (command, self.log_filename))
|
1999-03-03 16:24:30 -04:00
|
|
|
if rc:
|
1999-09-22 16:55:35 -03:00
|
|
|
self.warning(
|
|
|
|
"Session transcript and error messages are in %s."
|
1999-03-03 16:24:30 -04:00
|
|
|
% self.log_filename)
|
2003-05-14 01:16:14 -03:00
|
|
|
result = 1
|
2001-08-10 17:17:09 -03:00
|
|
|
if hasattr(os, "WIFEXITED"):
|
|
|
|
if os.WIFEXITED(rc):
|
2003-05-14 01:16:14 -03:00
|
|
|
result = os.WEXITSTATUS(rc)
|
|
|
|
self.warning("Exited with status %s." % result)
|
2001-08-10 17:17:09 -03:00
|
|
|
else:
|
|
|
|
self.warning("Killed by signal %s." % os.WSTOPSIG(rc))
|
|
|
|
else:
|
|
|
|
self.warning("Return code: %s" % rc)
|
2001-02-04 11:20:26 -04:00
|
|
|
sys.stderr.write("The relevant lines from the transcript are:\n")
|
|
|
|
sys.stderr.write("-" * 72 + "\n")
|
|
|
|
sys.stderr.writelines(get_run_transcript(self.log_filename))
|
2003-05-14 01:16:14 -03:00
|
|
|
sys.exit(result)
|
1999-03-03 16:24:30 -04:00
|
|
|
|
1999-03-03 17:57:58 -04:00
|
|
|
def message(self, msg):
|
|
|
|
msg = "+++ " + msg
|
|
|
|
if not self.options.quiet:
|
|
|
|
print msg
|
1999-09-22 16:55:35 -03:00
|
|
|
self.log(msg + "\n")
|
|
|
|
|
|
|
|
def warning(self, msg):
|
|
|
|
msg = "*** %s\n" % msg
|
|
|
|
sys.stderr.write(msg)
|
|
|
|
self.log(msg)
|
|
|
|
|
|
|
|
def log(self, msg):
|
1999-03-03 17:57:58 -04:00
|
|
|
fp = open(self.log_filename, "a")
|
1999-09-22 16:55:35 -03:00
|
|
|
fp.write(msg)
|
1999-03-03 17:57:58 -04:00
|
|
|
fp.close()
|
|
|
|
|
1999-03-03 16:24:30 -04:00
|
|
|
|
2001-02-04 11:20:26 -04:00
|
|
|
def get_run_transcript(filename):
|
|
|
|
"""Return lines from the transcript file for the most recent run() call."""
|
|
|
|
fp = open(filename)
|
|
|
|
lines = fp.readlines()
|
|
|
|
fp.close()
|
|
|
|
lines.reverse()
|
|
|
|
L = []
|
|
|
|
for line in lines:
|
|
|
|
L.append(line)
|
|
|
|
if line[:4] == "+++ ":
|
|
|
|
break
|
|
|
|
L.reverse()
|
|
|
|
return L
|
|
|
|
|
|
|
|
|
1999-03-03 16:24:30 -04:00
|
|
|
def safe_unlink(path):
|
2001-02-04 11:20:26 -04:00
|
|
|
"""Unlink a file without raising an error if it doesn't exist."""
|
1999-03-03 16:24:30 -04:00
|
|
|
try:
|
|
|
|
os.unlink(path)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
1999-05-06 16:37:38 -03:00
|
|
|
def split_pathname(path):
|
2001-06-23 00:06:01 -03:00
|
|
|
path = os.path.abspath(path)
|
1999-05-06 16:37:38 -03:00
|
|
|
dirname, basename = os.path.split(path)
|
1999-03-03 16:24:30 -04:00
|
|
|
if basename[-4:] == ".tex":
|
|
|
|
basename = basename[:-4]
|
|
|
|
return dirname, basename
|
|
|
|
|
|
|
|
|
1999-05-06 16:37:38 -03:00
|
|
|
_doctype_rx = re.compile(r"\\documentclass(?:\[[^]]*\])?{([a-zA-Z]*)}")
|
|
|
|
def get_doctype(path):
|
|
|
|
fp = open(path)
|
|
|
|
doctype = None
|
|
|
|
while 1:
|
|
|
|
line = fp.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
m = _doctype_rx.match(line)
|
|
|
|
if m:
|
|
|
|
doctype = m.group(1)
|
|
|
|
break
|
|
|
|
fp.close()
|
|
|
|
return doctype
|
|
|
|
|
|
|
|
|
1999-03-03 16:24:30 -04:00
|
|
|
def main():
|
|
|
|
options = Options()
|
|
|
|
try:
|
|
|
|
args = options.parse(sys.argv[1:])
|
|
|
|
except getopt.error, msg:
|
|
|
|
error(options, msg)
|
|
|
|
if not args:
|
|
|
|
# attempt to locate single .tex file in current directory:
|
|
|
|
args = glob.glob("*.tex")
|
|
|
|
if not args:
|
|
|
|
error(options, "No file to process.")
|
|
|
|
if len(args) > 1:
|
|
|
|
error(options, "Could not deduce which files should be processed.")
|
|
|
|
#
|
|
|
|
# parameters are processed, let's go!
|
|
|
|
#
|
|
|
|
for path in args:
|
|
|
|
Job(options, path).build()
|
|
|
|
|
|
|
|
|
|
|
|
def l2hoption(fp, option, value):
|
|
|
|
if value:
|
|
|
|
fp.write('$%s = "%s";\n' % (option, string_to_perl(str(value))))
|
|
|
|
|
|
|
|
|
|
|
|
_to_perl = {}
|
|
|
|
for c in map(chr, range(1, 256)):
|
|
|
|
_to_perl[c] = c
|
|
|
|
_to_perl["@"] = "\\@"
|
|
|
|
_to_perl["$"] = "\\$"
|
|
|
|
_to_perl['"'] = '\\"'
|
|
|
|
|
|
|
|
def string_to_perl(s):
|
2003-09-27 04:05:12 -03:00
|
|
|
return ''.join(map(_to_perl.get, s))
|
1999-03-03 16:24:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
def check_for_bibtex(filename):
|
|
|
|
fp = open(filename)
|
2003-09-27 04:05:12 -03:00
|
|
|
pos = fp.read().find(r"\bibdata{")
|
1999-03-03 16:24:30 -04:00
|
|
|
fp.close()
|
|
|
|
return pos >= 0
|
|
|
|
|
|
|
|
def uniqify_module_table(filename):
|
|
|
|
lines = open(filename).readlines()
|
|
|
|
if len(lines) > 1:
|
|
|
|
if lines[-1] == lines[-2]:
|
|
|
|
del lines[-1]
|
|
|
|
open(filename, "w").writelines(lines)
|
|
|
|
|
|
|
|
|
|
|
|
def new_index(filename, label="genindex"):
|
|
|
|
fp = open(filename, "w")
|
|
|
|
fp.write(r"""\
|
|
|
|
\begin{theindex}
|
|
|
|
\label{%s}
|
|
|
|
\end{theindex}
|
|
|
|
""" % label)
|
|
|
|
fp.close()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|