[Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl,1.43,1.44
Fred L. Drake
python-dev@python.org
2000年7月31日 13:13:26 -0700
Update of /cvsroot/python/python/dist/src/Doc/perl
In directory slayer.i.sourceforge.net:/tmp/cvs-serv10768/perl
Modified Files:
l2hinit.perl
Log Message:
Change as suggested by Peter Funk <pf@artcom-gmbh.de>:
Move around the navigational links on the left-hand side of the navigation
bar to be more like the cursor keys.
Index: l2hinit.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/l2hinit.perl,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -r1.43 -r1.44
*** l2hinit.perl 2000年07月31日 17:53:45 1.43
--- l2hinit.perl 2000年07月31日 20:13:23 1.44
***************
*** 149,155 ****
. "\n<tr>"
# left-hand side
- . "\n<td>$NEXT</td>"
- . "\n<td>$UP</td>"
. "\n<td>$PREVIOUS</td>"
# title box
. "\n<td align=\"center\"$NAV_BGCOLOR width=\"100%\">"
--- 149,155 ----
. "\n<tr>"
# left-hand side
. "\n<td>$PREVIOUS</td>"
+ . "\n<td>$UP</td>"
+ . "\n<td>$NEXT</td>"
# title box
. "\n<td align=\"center\"$NAV_BGCOLOR width=\"100%\">"
***************
*** 161,167 ****
. "\n</tr></table>\n"
# textual navigation
! . make_nav_sectref("Next", $NEXT_TITLE)
. make_nav_sectref("Up", $UP_TITLE)
! . make_nav_sectref("Previous", $PREVIOUS_TITLE));
# remove these; they are unnecessary and cause errors from validation
$s =~ s/ NAME="tex2html\d+"\n */ /g;
--- 161,168 ----
. "\n</tr></table>\n"
# textual navigation
! . make_nav_sectref("Previous", $PREVIOUS_TITLE)
. make_nav_sectref("Up", $UP_TITLE)
! . make_nav_sectref("Next", $NEXT_TITLE)
! );
# remove these; they are unnecessary and cause errors from validation
$s =~ s/ NAME="tex2html\d+"\n */ /g;