Changeset a823a8 in git
- Timestamp:
- Mar 31, 2000, 1:04:15 PM (23 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- b8661e0931a0c7464712ad70a5d8bd33b423a9f7
- Parents:
- 119757281f1af0949ef91c82c7aa9f7f8a614c9b
- Location:
- doc
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/t2h_singular.init
r119757 ra823a8 29 29 $T2H_IDX_SUMMARY = 'cp'; 30 30 31 $T2H_STANDARD = 1;32 33 31 # inside <BODY ..> 34 32 $T2H_BODYTEXT = 'LANG="EN" BACKGROUND="Mybg.gif"'; … … 44 42 # footer of top_page 45 43 46 sub t2h_print_Top_footer 44 $T2H_print_Top_footer = \&T2H_SING_print_Top_footer; 45 $T2H_print_page_foot = \&T2H_SING_print_page_foot; 46 47 sub T2H_SING_print_Top_footer 47 48 { 48 49 my $fh = shift; … … 53 54 "</BLOCKQUOTE>"; 54 55 55 t2h_print_foot_navigation($fh);56 t2h_print_page_foot($fh) if $T2H_SPLIT;56 &$T2H_print_foot_navigation($fh); 57 &$T2H_print_page_foot($fh) if $T2H_SPLIT; 57 58 } 58 59 59 60 # footer of page 60 sub t2h_print_page_foot61 sub T2H_SING_print_page_foot 61 62 { 62 63 my $fh = shift; 63 64 print $fh <<EOT; 64 65 <FONT SIZE="-1"> 65 User manual for <A HREF="http://www. mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE},66 User manual for <A HREF="http://www.singular.uni-kl.de/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE}, 66 67 generated by <A HREF="$T2H_HOMEPAGE"><I>texi2html</I></A>. 67 68 </FONT> … … 171 172 } 172 173 173 sub t2h_pre_about174 sub T2H_SING_pre_about 174 175 { 175 176 return <<EOT; 176 This document is the user manual for <A HREF="http://www. mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE}.177 This document is the user manual for <A HREF="http://www.singular.uni-kl.de/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE}. 177 178 <BR> 178 179 … … 181 182 <P></P> 182 183 This document was generated by <A HREF="$T2H_HOMEPAGE"><I>$THISPROG</I></A> 183 and <a href="http://www-dsed.llnl.gov/files/programs/unix/latex2html/manual/">LaTeX2<TT>HTML</TT></a>184 and <a href="http://www-dsed.llnl.gov/files/programs/unix/latex2html/manual/">LaTeX2<TT>HTML</TT></a> 184 185 and is best viewed with a 16 or 18 point screen font. 185 186 <P></P> … … 187 188 } 188 189 189 $T2H_PRE_ABOUT = \& t2h_pre_about;190 $T2H_PRE_ABOUT = \&T2H_SING_pre_about; 190 191 191 192 1; # This must be the last line
Note: See TracChangeset
for help on using the changeset viewer.