From 5bd608d46ee9e160c0e8f1fccf5355581f49d30a Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 29 Oct 1999 20:51:43 +0000 Subject: Change the suggestions pointer at the bottom of generated HTML pages. --- Doc/html/Makefile | 2 +- Doc/tools/mkhtml.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Doc/html/Makefile b/Doc/html/Makefile index ce0baa0..05f9259 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -25,7 +25,7 @@ BUILDINDEX=$(TOOLSDIR)/buildindex.py # make it clear to l2h, since our support only generates HTML 4.0 L2HARGS= -html_version 4.0 -PYTHONDOCS='
Send comments on this document to python-docs@python.org.' +PYTHONDOCS='
See About this document... for information on suggesting changes.' HTMLBASE= file:`pwd` INDEXFILES=api/api.html \ diff --git a/Doc/tools/mkhtml.sh b/Doc/tools/mkhtml.sh index 11f7fea..85a66b7 100755 --- a/Doc/tools/mkhtml.sh +++ b/Doc/tools/mkhtml.sh @@ -16,7 +16,7 @@ cd $WORKDIR use_logical_names=true if [ "$1" = "--numeric" ] ; then - use_logical_names='' + use_logical_names=false shift 1 fi @@ -34,7 +34,7 @@ echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part" \ latex2html \ -no_auto_link \ -init_file $srcdir/perl/l2hinit.perl \ - -address '
Send comments on this document to python-docs@python.org.' \ + -address '
See About this document... for information on suggesting changes.' \ -dir $part \ ${1:+$@} \ $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" 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 $? -- cgit v0.12