Changeset 0a03bce in git for doc/t2h_singular.init
- Timestamp:
- Jul 23, 1999, 3:58:53 PM (24 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 860ca828c753022a381780da2d84e66cd6e47314
- Parents:
- 0b4b972fc5519650d1d74cd70a3bad342283c083
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/t2h_singular.init
r0b4b97 r0a03bce 32 32 33 33 # inside <BODY ..> 34 $T2H_BODYTEXT = 'LANG="EN" BACKGROUND=" bg.jpg"';34 $T2H_BODYTEXT = 'LANG="EN" BACKGROUND="Mybg.gif"'; 35 35 36 36 # after <BODY> 37 37 $T2H_AFTER_BODY_OPEN = <<EOT; 38 <table border="0" cellpadding=2 cellspacing=2>39 <tr valign="top"><td width="8" rowspan="4">40 <img src="spacer3.gif" width="8"></td>41 <td colspan=2>42 38 EOT 43 39 44 40 # before </BODY> 45 41 $T2H_PRE_BODY_CLOSE = <<EOT; 46 </td>47 </tr>48 </table>49 42 EOT 50 43 … … 55 48 print $fh <<EOT; 56 49 <FONT SIZE="-1"> 57 User manual for <A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE},50 User manual for <A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE}, 58 51 generated by <A HREF="$T2H_HOMEPAGE"><I>texi2html</I></A>. 59 52 </FONT> … … 63 56 EOT 64 57 } 65 66 $T2H_ICONS = 1; 58 59 60 sub singular_banner 61 { 62 my $fh = shift; 63 print $fh <<EOT 64 <a href="index.htm"><img 65 src="singular-icon-transparent.gif" width="50" 66 border="0" ALT="Top"></a> 67 EOT 68 } 69 70 $T2H_VERTICAL_HEAD_NAVIGATION = 1; 67 71 @T2H_SECTION_BUTTONS = 68 72 ( 69 'Back', 'Forward', 'FastBack', 'FastForward', 70 'Up', 'Top', 'Contents', 'Index', 'About', 73 \&singular_banner, 74 'Back', 'Forward', 'FastBack', 'FastForward', 75 'Up', 'Top', 'Contents', 'Index', 'About' 71 76 ); 72 77 78 # buttons for misc stuff 79 @T2H_MISC_BUTTONS = (\&singular_banner, 'Top', 'Contents', 'Index', 'About'); 80 81 $T2H_ICONS = 1; 82 83 if ($T2H_BLUE_BUTTONS) 84 { 85 73 86 %T2H_ACTIVE_ICONS = 74 87 ( … … 103 116 'About' , 'blue_help.gif', 104 117 ); 118 } 119 else 120 { 121 %T2H_ACTIVE_ICONS = 122 ( 123 'Top', 'a_top.gif', 124 'Contents', 'a_tableofcon.gif', 125 'Overview', '', 126 'Index', 'a_index.gif', 127 'Back', 'a_left.gif', 128 'FastBack', 'a_leftdouble.gif', 129 'Prev', 'a_leftdouble.gif', 130 'Up', 'a_up.gif', 131 'Next', 'a_rightdouble.gif', 132 'Forward', 'a_right.gif', 133 'FastForward', 'a_rightdouble.gif', 134 'About' , 'a_help.gif', 135 ' ', 'a_empty.gif' 136 ); 105 137 106 # %T2H_ACTIVE_ICONS = 107 # ( 108 # 'Top', 'blue_top.gif', 109 # 'Contents', 'blue_dir.gif', 110 # 'Overview', '', 111 # 'Index', 'blue_readme.gif', 112 # 'Back', 'xy_previous.gif', 113 # 'FastBack', 'xy_previoussection.gif', 114 # 'Prev', 'xy_previoussection.gif', 115 # 'Up', 'xy_up.gif', 116 # 'Next', 'xy_nextsection.gif', 117 # 'Forward', 'xy_next.gif', 118 # 'FastForward', 'xy_nextsection.gif', 119 # 'About' , 'blue_help.gif', 120 # ' ', '' 121 # ); 122 123 # %T2H_PASSIVE_ICONS = 124 # ( 125 # 'Top', 'blue_top.gif', 126 # 'Contents', 'blue_dir.gif', 127 # 'Overview', '', 128 # 'Index', 'blue_readme.gif', 129 # 'Back', 'xy_previous_gr.gif', 130 # 'FastBack', 'xy_previoussection_gr.gif', 131 # 'Prev', 'xy_previoussection_gr.gif', 132 # 'Up', 'xy_up_gr.gif', 133 # 'Next', 'xy_nextsection_gr.gif', 134 # 'Forward', 'xy_next_gr.gif', 135 # 'FastForward', 'xy_nextsection_gr.gif', 136 # 'About' , 'blue_help.gif', 137 # ); 138 %T2H_PASSIVE_ICONS = 139 ( 140 'Top', 'a_top_na.gif', 141 'Contents', 'a_tableofcon_na.gif', 142 'Overview', '', 143 'Index', 'a_index_na.gif', 144 'Back', 'a_left_na.gif', 145 'FastBack', 'a_leftdouble_na.gif', 146 'Prev', 'a_leftdouble_na.gif', 147 'Up', 'a_up_na.gif', 148 'Next', 'a_rightdouble_na.gif', 149 'Forward', 'a_right_na.gif', 150 'FastForward', 'a_rightdouble_na.gif', 151 'About' , 'a_help_na.gif', 152 ); 153 } 138 154 139 155 sub t2h_pre_about
Note: See TracChangeset
for help on using the changeset viewer.