Changeset 0a03bce in git
- Timestamp:
- Jul 23, 1999, 3:58:53 PM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 860ca828c753022a381780da2d84e66cd6e47314
- Parents:
- 0b4b972fc5519650d1d74cd70a3bad342283c083
- Location:
- doc
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.in
r0b4b97 r0a03bce 72 72 DOC2TEX_FILES = \ 73 73 examples.tex general.tex math.tex reference.tex \ 74 start.tex types.tex pdata.tex tricks.tex 74 start.tex types.tex pdata.tex tricks.tex platform.tex 75 75 76 76 MANUAL_FILES = ${TEX_FILES} ${DOC2TEX_FILES} -
doc/pl2doc.pl
r0b4b97 r0a03bce 1 1 #!/usr/local/bin/perl 2 # $Id: pl2doc.pl,v 1. 3 1999-07-22 14:51:32obachman Exp $2 # $Id: pl2doc.pl,v 1.4 1999-07-23 13:58:34 obachman Exp $ 3 3 ################################################################### 4 4 # Computer Algebra System SINGULAR … … 9 9 $Usage = <<EOT; 10 10 Usage: 11 $0 [-o out_file -db db_file -no_ex -no_fun ] library_perl_file.doc11 $0 [-o out_file -db db_file -no_ex -no_fun -doc] library_perl_file.doc 12 12 Convert library_perl_file.pl to library_perl_file.doc 13 13 EOT … … 22 22 if (/^-db$/) { $db_file = shift(@ARGV); next;} 23 23 if (/^-no_fun$/) { $no_fun = 1;next;} 24 if (/^-h(elp)?$/) 24 if (/^-h(elp)?$/) { print $Usage; exit;} 25 25 die "Error: Unknown option: $_:$Usage\n"; 26 26 } -
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.