Change as suggested by Peter Funk <pf@artcom-gmbh.de>:
authorFred Drake <fdrake@acm.org>
Mon, 31 Jul 2000 20:13:23 +0000 (20:13 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 31 Jul 2000 20:13:23 +0000 (20:13 +0000)
Move around the navigational links on the left-hand side of the navigation
bar to be more like the cursor keys.

Doc/perl/l2hinit.perl

index 23279215228ab8e296f8db4431adb4ac97b18cc2..bd85f686d48b0524eb5d29053d5fa6a51e01cf63 100644 (file)
@@ -148,9 +148,9 @@ sub make_nav_panel {
     $s = ('<table align="center" width="100%" cellpadding="0" cellspacing="2">'
           . "\n<tr>"
           # left-hand side
-          . "\n<td>$NEXT</td>"
-          . "\n<td>$UP</td>"
           . "\n<td>$PREVIOUS</td>"
+          . "\n<td>$UP</td>"
+          . "\n<td>$NEXT</td>"
           # title box
           . "\n<td align=\"center\"$NAV_BGCOLOR width=\"100%\">"
           . "\n <b class=\"title\">$t_title</b></td>"
@@ -160,9 +160,10 @@ sub make_nav_panel {
           . "\n<td>$INDEX</td>"
           . "\n</tr></table>\n"
           # textual navigation
-          . make_nav_sectref("Next", $NEXT_TITLE)
+          . make_nav_sectref("Previous", $PREVIOUS_TITLE)
           . make_nav_sectref("Up", $UP_TITLE)
-          . make_nav_sectref("Previous", $PREVIOUS_TITLE));
+          . make_nav_sectref("Next", $NEXT_TITLE)
+          );
     # remove these; they are unnecessary and cause errors from validation
     $s =~ s/ NAME="tex2html\d+"\n */ /g;
     return $s;