source: git/doc/t2h_singular.init @ f5a734

spielwiese
Last change on this file since f5a734 was 460c1e1, checked in by Olaf Bachmann <obachman@…>, 25 years ago
* increased version 1o 1-3-4 * parsing of help strings by doc2tex * much better texi2html * new directory layout for install in source tree git-svn-id: file:///usr/local/Singular/svn/trunk@3292 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 3.3 KB
Line 
1# -*-perl-*-
2######################################################################
3#
4# File: t2h_singular.init init file for singular t2h
5#
6
7# we only redefine things which ar of relevance to singular
8# all the others we simply "include"
9
10# -prefix
11# Set the output file prefix, prepended to all .html, .gif and .pl files.
12$T2H_PREFIX = 'sing';
13
14# -expand
15# if set to "tex" (or, "info") expand @iftex and @tex (or, @ifinfo) sections
16# else, neither expand @iftex, @tex, nor @ifinfo sections
17$T2H_EXPAND = "tex";
18
19# if set, creates one html file per node
20$T2H_SPLIT = 'node';
21
22# if set, puts html files into current directory, overwrites settings of
23# $T2H_SUBDIR
24$T2H_NO_SUBDIR = 0;
25
26# -short_extn
27# If this is set all HTML file will have extension ".htm" instead of
28# ".html". This is helpful when shipping the document to PC systems.
29$T2H_SHORTEXTN = 1;
30
31#if set cross-references are given without section numbers
32$T2H_SHORT_REF = 1;
33
34# if set, chatter about what we are doing
35$T2H_VERBOSE = 1;
36
37# print index summary for 'cp' index
38$T2H_IDX_SUMMARY = 'cp';
39
40$T2H_STANDARD = 1;
41
42# inside <BODY ..>
43$T2H_BODYTEXT = 'LANG="EN"  BACKGROUND="bg.jpg"';
44
45# after <BODY>
46$T2H_AFTER_BODY_OPEN = <<EOT;
47    <table border="0" cellpadding=2 cellspacing=2>
48      <tr valign="top"><td width="8" rowspan="4">
49          <img src="spacer3.gif" width="8"></td>
50          <td colspan=2>
51EOT
52
53# before </BODY>
54$T2H_PRE_BODY_CLOSE = <<EOT;
55          </td>
56        </tr>
57      </table>
58EOT
59
60# footer of page
61sub t2h_print_page_foot
62{
63  my $fh = shift;
64  print $fh <<EOT;
65<FONT SIZE="-1">
66User manual for <A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE},
67generated by <A HREF="$T2H_HOMEPAGE"><I>texi2html</I></A>.
68</FONT>
69$T2H_PRE_BODY_CLOSE
70</BODY>
71</HTML>
72EOT
73}
74 
75$T2H_ICONS = 1;
76
77%T2H_ACTIVE_ICONS =
78  (
79   'Top',      'blue_top.gif',
80   'Contents', 'blue_dir.gif',
81   'Overview', '',
82   'Index',    'blue_readme.gif',
83   'Back',     'xy_previous.gif',
84   'FastBack', 'xy_previoussection.gif',
85   'Prev',     'xy_previoussection.gif',
86   'Up',       'xy_up.gif',
87   'Next',     'xy_nextsection.gif',
88   'Forward',  'xy_next.gif',
89   'FastForward', 'xy_nextsection.gif',
90   'About' ,    'blue_help.gif',
91   ' ',        ''
92  );
93
94%T2H_PASSIVE_ICONS =
95  (
96   'Top',      'blue_top.gif',
97   'Contents', 'blue_dir.gif',
98   'Overview', '',
99   'Index',    'blue_readme.gif',
100   'Back',     'xy_previous_gr.gif',
101   'FastBack', 'xy_previoussection_gr.gif',
102   'Prev',     'xy_previoussection_gr.gif',
103   'Up',       'xy_up_gr.gif',
104   'Next',     'xy_nextsection_gr.gif',
105   'Forward',  'xy_next_gr.gif',
106   'FastForward', 'xy_nextsection_gr.gif',
107   'About' ,    'blue_help.gif',
108  );
109
110sub t2h_pre_about
111{
112  return <<EOT;
113This 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}.
114<BR>  
115
116For questions and comments about Singular, send email to <A href="mailto:singular\@mathematik.uni-kl.de">singular\@mathematik.uni-kl.de</a>.
117 
118<P></P> 
119This document was generated by <A HREF="$T2H_HOMEPAGE"><I>$THISPROG</I></A>
120and <ahref="http://www-dsed.llnl.gov/files/programs/unix/latex2html/manual/">LaTeX2<TT>HTML</TT></a>
121and is best  viewed with 16 or 18 point screen font.
122<P></P> 
123EOT
124}
125
126$T2H_PRE_ABOUT = \&t2h_pre_about;
127
1281;      # This must be the last line
Note: See TracBrowser for help on using the repository browser.