Change the suggestions pointer at the bottom of generated HTML pages.

This commit is contained in:
Fred Drake 1999-10-29 20:51:43 +00:00
parent c6d45afb1b
commit 5bd608d46e
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ BUILDINDEX=$(TOOLSDIR)/buildindex.py
# make it clear to l2h, since our support only generates HTML 4.0 # make it clear to l2h, since our support only generates HTML 4.0
L2HARGS= -html_version 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` HTMLBASE= file:`pwd`
INDEXFILES=api/api.html \ INDEXFILES=api/api.html \

View File

@ -16,7 +16,7 @@ cd $WORKDIR
use_logical_names=true use_logical_names=true
if [ "$1" = "--numeric" ] ; then if [ "$1" = "--numeric" ] ; then
use_logical_names='' use_logical_names=false
shift 1 shift 1
fi fi
@ -34,7 +34,7 @@ echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part" \
latex2html \ latex2html \
-no_auto_link \ -no_auto_link \
-init_file $srcdir/perl/l2hinit.perl \ -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 \ -dir $part \
${1:+$@} \ ${1:+$@} \
$srcdir/$part/$part.tex || exit $? $srcdir/$part/$part.tex || exit $?
@ -45,7 +45,7 @@ cp $part/$part.html $part/index.html
echo "cp $srcdir/html/style.css $part/$part.css" echo "cp $srcdir/html/style.css $part/$part.css"
cp $srcdir/html/style.css $part/$part.css || exit $? 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)" echo "(cd $part; $srcdir/tools/node2label.pl \*.html)"
cd $part cd $part
$srcdir/tools/node2label.pl *.html || exit $? $srcdir/tools/node2label.pl *.html || exit $?