Changeset 5b0536 in git for doc/texi2html
- Timestamp:
- Jun 18, 1998, 11:21:40 AM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- c8c3b80aa697582a89405ccbe97006dc6f19ae07
- Parents:
- 4c79e770576c3cddc0481e07b9f53e5363727aba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/texi2html
r4c79e7 r5b0536 2 2 'di '; 3 3 'ig 00 '; 4 # $Id: texi2html,v 1. 3 1998-06-09 13:16:27krueger Exp $4 # $Id: texi2html,v 1.4 1998-06-18 09:21:40 krueger Exp $ 5 5 # Description: Program to transform most Texinfo documents to HTML. 6 6 # The plan is for the next version of makeinfo to support HTML output … … 36 36 $DEBUG_USER = 64; 37 37 38 $IMG_FIRST_ACTIVE = "<IMG SRC=\"first-b.gif\">"; 39 $IMG_FIRST_PASSIVE = "<IMG SRC=\"first-t.gif\">"; 40 $IMG_LAST_ACTIVE = "<IMG SRC=\"last-b.gif\">"; 41 $IMG_LAST_PASSIVE = "<IMG SRC=\"last-t.gif\">"; 42 $IMG_NEXT_ACTIVE = "<IMG SRC=\"next-b.gif\">"; 43 $IMG_NEXT_PASSIVE = "<IMG SRC=\"next-t.gif\">"; 44 $IMG_PREV_ACTIVE = "<IMG SRC=\"previous-b.gif\">"; 45 $IMG_PREV_PASSIVE = "<IMG SRC=\"previous-t.gif\">"; 46 $IMG_TOC = "<IMG SRC=\"toc-b.gif\">"; 38 #$IMG_FIRST_ACTIVE = "<IMG SRC=\"first-b.gif\">"; 39 #$IMG_FIRST_PASSIVE = "<IMG SRC=\"first-t.gif\">"; 40 #$IMG_LAST_ACTIVE = "<IMG SRC=\"last-b.gif\">"; 41 #$IMG_LAST_PASSIVE = "<IMG SRC=\"last-t.gif\">"; 42 #$IMG_NEXT_ACTIVE = "<IMG SRC=\"next-b.gif\">"; 43 #$IMG_NEXT_PASSIVE = "<IMG SRC=\"next-t.gif\">"; 44 #$IMG_PREV_ACTIVE = "<IMG SRC=\"previous-b.gif\">"; 45 #$IMG_PREV_PASSIVE = "<IMG SRC=\"previous-t.gif\">"; 46 #$IMG_TOC = "<IMG SRC=\"toc-b.gif\">"; 47 $IMG_FIRST_ACTIVE = ""; 48 $IMG_FIRST_PASSIVE = ""; 49 $IMG_LAST_ACTIVE = ""; 50 $IMG_LAST_PASSIVE = ""; 51 $IMG_NEXT_ACTIVE = "<IMG SRC=\"next_motif.gif\">"; 52 $IMG_NEXT_PASSIVE = "<IMG SRC=\"next_motif_gr.gif\">"; 53 $IMG_PREV_ACTIVE = "<IMG SRC=\"previous_motif.gif\">"; 54 $IMG_PREV_PASSIVE = "<IMG SRC=\"previous_motif_gr.gif\">"; 55 $IMG_TOC = "<IMG SRC=\"contents_motif.gif\">"; 47 56 48 57 $BIBRE = '\[[\w\/]+\]'; # RE for a bibliography reference … … 1530 1539 1531 1540 push(@menu_lines, "<BODY BACKGROUND=\"/rock.gif\">\n"); 1532 push(@menu_lines, "<IMG SRC=\" Singulars.gif\"><P>\n");1541 push(@menu_lines, "<IMG SRC=\"singular-small.jpg\"><P>\n"); 1533 1542 #push(@menu_lines, "<BODY BACKGROUND=\"/rock.gif\" TEXT=\"yellow\""); 1534 1543 #push(@menu_lines, " LINK=#FFFFFF ALINK=#FF00FF VLINK=\"#00FF00\">\n"); … … 1655 1664 #$navigation = "<p>Go to the "; 1656 1665 $navigation = "<p>"; 1657 $navigation .= ($prev_doc ? &anchor('', $first_doc, '', $IMG_FIRST_ACTIVE) : $IMG_FIRST_PASSIVE); 1658 $navigation .= " "; 1666 if ($IMG_FIRST_ACTIVE ne "") { 1667 $navigation .= ($prev_doc ? &anchor('', $first_doc, '', 1668 $IMG_FIRST_ACTIVE) : $IMG_FIRST_PASSIVE); 1669 $navigation .= " "; 1670 } 1659 1671 $navigation .= ($prev_doc ? &anchor('', $prev_doc, '', $IMG_PREV_ACTIVE) : $IMG_PREV_PASSIVE); 1660 1672 $navigation .= " "; 1661 1673 $navigation .= ($next_doc ? &anchor('', $next_doc, '', $IMG_NEXT_ACTIVE) : $IMG_NEXT_PASSIVE); 1662 $navigation .= " "; 1663 $navigation .= ($next_doc ? &anchor('', $last_doc, '', $IMG_LAST_ACTIVE) : $IMG_LAST_PASSIVE); 1674 if ($IMG_LAST_ACTIVE ne "") { 1675 $navigation .= " "; 1676 $navigation .= ($next_doc ? &anchor('', $last_doc, '', 1677 $IMG_LAST_ACTIVE) : $IMG_LAST_PASSIVE); 1678 } 1664 1679 #$navigation .= " section, " . &anchor('', $docu_toc, '', "<IMG SRC=\"toc-b.gif\">") . ".\n"; 1665 1680 $navigation .= " " . &anchor('', $docu_toc, '', $IMG_TOC) . "\n";
Note: See TracChangeset
for help on using the changeset viewer.