]> granicus.if.org Git - python/commitdiff
Change the suggestions pointer at the bottom of generated HTML pages.
authorFred Drake <fdrake@acm.org>
Fri, 29 Oct 1999 20:51:43 +0000 (20:51 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 29 Oct 1999 20:51:43 +0000 (20:51 +0000)
Doc/html/Makefile
Doc/tools/mkhtml.sh

index ce0baa01ea67d20153a847be493b1236d93ea971..05f925998de4ed57c73722cda281ccfc40c0b732 100644 (file)
@@ -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='<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 \
index 11f7feac784ba428587ac0c1693c1ff9721b784b..85a66b780b8b66b1d53fca1145f56231344cc594 100755 (executable)
@@ -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 '<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 $?
@@ -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 $?