# make it clear to l2h, since our support only generates HTML 4.0
L2HARGS= -html_version 4.0
-PYTHONDOCS='<hr>Send comments on this document to <a href="mailto:python-docs@python.org">python-docs@python.org</a>.'
+PYTHONDOCS='<hr>See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.'
HTMLBASE= file:`pwd`
INDEXFILES=api/api.html \
use_logical_names=true
if [ "$1" = "--numeric" ] ; then
- use_logical_names=''
+ use_logical_names=false
shift 1
fi
latex2html \
-no_auto_link \
-init_file $srcdir/perl/l2hinit.perl \
- -address '<hr>Send comments on this document to <a href="mailto:python-docs@python.org">python-docs@python.org</a>.' \
+ -address '<hr>See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.' \
-dir $part \
${1:+$@} \
$srcdir/$part/$part.tex || exit $?
echo "cp $srcdir/html/style.css $part/$part.css"
cp $srcdir/html/style.css $part/$part.css || exit $?
-if [ "$use_logical_names" ] ; then
+if $use_logical_names ; then
echo "(cd $part; $srcdir/tools/node2label.pl \*.html)"
cd $part
$srcdir/tools/node2label.pl *.html || exit $?