From de77bc5468d59d023bce9ae3d41a116f22de951f Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 14 Dec 2000 18:36:12 +0000 Subject: [PATCH] For the title page, insert the package version number before the date. This makes the title area more like the title are of the top-level index, and puts the information more people are interested in first. --- Doc/perl/python.perl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index fb1d0666ce9..ae06d764f3c 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -1278,11 +1278,11 @@ sub make_my_titlepage() { $the_title .= "\n

$t_affil

"; } if ($t_date) { - $the_title .= "\n

$t_date"; + $the_title .= "\n

"; if ($PACKAGE_VERSION) { - $the_title .= "
Release $PACKAGE_VERSION"; + $the_title .= "Release $PACKAGE_VERSION
\n"; } - $the_title .= "

" + $the_title .= "$t_date

" } if ($t_address) { $the_title .= "\n

$t_address

";