[Python-checkins] python/dist/src/Doc/perl l2hinit.perl,1.69,1.70

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri, 02 May 2003 11:21:27 -0700


Update of /cvsroot/python/python/dist/src/Doc/perl
In directory sc8-pr-cvs1:/tmp/cvs-serv5701

Modified Files:
	l2hinit.perl 
Log Message:
Avoid extraneous blank line generated in the middle of the document
head.


Index: l2hinit.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/l2hinit.perl,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -d -r1.69 -r1.70
*** l2hinit.perl	2 May 2003 18:08:16 -0000	1.69
--- l2hinit.perl	2 May 2003 18:21:22 -0000	1.70
***************
*** 615,638 ****
          $MY_PARTIAL_HEADER = join('',
              ($DOCTYPE ? $DTDcomment : ''),
!             "<html>\n<head>\n",
!             ($BASE ? "<base href=\"$BASE\">\n" : ''),
!             "<link rel=\"STYLESHEET\" href=\"$STYLESHEET\" type='text/css'>\n",
              ($FAVORITES_ICON
!              ? ('<link rel="SHORTCUT ICON" href="' . "$FAVORITES_ICON\">\n")
               : ''),
              ($EXTERNAL_UP_LINK
!              ? ('<link rel="start" href="' . "$EXTERNAL_UP_LINK\""
!                 . ($EXTERNAL_UP_TITLE ? " title='$EXTERNAL_UP_TITLE'" : '')
!                 . ">\n")
               : ''),
!             "<link rel=\"first\" href=\"$FILE.html\"",
              ($t_title ? " title='$t_title'" : ''),
!             ">\n",
              ($HAVE_TABLE_OF_CONTENTS
!              ? ('<link rel="contents" href="contents.html" title="Contents">'
!                 . ($HAVE_GENERAL_INDEX ? "\n" : ''))
               : ''),
              ($HAVE_GENERAL_INDEX
!              ? '<link rel="index" href="genindex.html" title="Index">' . "\n"
               : ''),
              # disable for now -- Mozilla doesn't do well with multiple indexes
--- 615,637 ----
          $MY_PARTIAL_HEADER = join('',
              ($DOCTYPE ? $DTDcomment : ''),
!             "<html>\n<head>",
!             ($BASE ? "\n<base href=\"$BASE\">" : ''),
!             "\n<link rel=\"STYLESHEET\" href=\"$STYLESHEET\" type='text/css'>",
              ($FAVORITES_ICON
!              ? ("\n<link rel=\"SHORTCUT ICON\" href=\"" . "$FAVORITES_ICON\">")
               : ''),
              ($EXTERNAL_UP_LINK
!              ? ("\n<link rel='start' href='" . $EXTERNAL_UP_LINK
!                 . ($EXTERNAL_UP_TITLE ?
!                    "' title='$EXTERNAL_UP_TITLE'>" : "'>"))
               : ''),
!             "\n<link rel=\"first\" href=\"$FILE.html\"",
              ($t_title ? " title='$t_title'" : ''),
!             '>',
              ($HAVE_TABLE_OF_CONTENTS
!              ? "\n<link rel='contents' href='contents.html' title='Contents'>"
               : ''),
              ($HAVE_GENERAL_INDEX
!              ? "\n<link rel='index' href='genindex.html' title='Index'>"
               : ''),
              # disable for now -- Mozilla doesn't do well with multiple indexes
***************
*** 646,653 ****
               # generated node###.html page names.  Won't work with the
               # rest of the Python doc tools.
!              ? ("<link rel='last' href='about.html'"
!                 . " title='About this document...'>\n"
!                 . "<link rel='help' href='about.html'"
!                 . " title='About this document...'>\n")
               : ''),
              $more_links_mark,
--- 645,652 ----
               # generated node###.html page names.  Won't work with the
               # rest of the Python doc tools.
!              ? ("\n<link rel='last' href='about.html'"
!                 . " title='About this document...'>"
!                 . "\n<link rel='help' href='about.html'"
!                 . " title='About this document...'>")
               : ''),
              $more_links_mark,