/[texi2html]/texi2html/doc/texi2html.html
ViewVC logotype

Diff of /texi2html/doc/texi2html.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.30 by pertusus, Tue Nov 29 19:04:25 2005 UTC revision 1.31 by pertusus, Thu Dec 1 08:38:41 2005 UTC
# Line 31  conditions for modified versions, except Line 31  conditions for modified versions, except
31  permission notice may be stated in a translation approved  permission notice may be stated in a translation approved
32  by the Free Software Foundation.  by the Free Software Foundation.
33   -->   -->
34  <!-- Created on November, 29 2005 by texi2html @PACKAGE_VERSION@ -->  <!-- Created on December, 1 2005 by texi2html 1.77 -->
35  <!--  <!--
36  Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)  Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
37              Karl Berry  <karl@freefriends.org>              Karl Berry  <karl@freefriends.org>
# Line 48  Send bugs and suggestions to <texi2html- Line 48  Send bugs and suggestions to <texi2html-
48  <meta name="keywords" content="Texi2HTML &ndash; Texinfo to HTML v1.77: Texi2HTML">  <meta name="keywords" content="Texi2HTML &ndash; Texinfo to HTML v1.77: Texi2HTML">
49  <meta name="resource-type" content="document">  <meta name="resource-type" content="document">
50  <meta name="distribution" content="global">  <meta name="distribution" content="global">
51  <meta name="Generator" content="texi2html @PACKAGE_VERSION@">  <meta name="Generator" content="texi2html 1.77">
52  <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">  <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
53  <style type="text/css">  <style type="text/css">
54  <!--  <!--
# Line 130  by the Free Software Foundation. Line 130  by the Free Software Foundation.
130  <a name="SEC_Top"></a>  <a name="SEC_Top"></a>
131    
132    
133  <p>This manual, last updated 28 August 2005, describes version 1.77  <p>This manual, last updated 30 November 2005, describes version 1.77
134  of the <code>texi2html</code> Perl script which converts  of the <code>texi2html</code> Perl script which converts
135  <a href="http://www.texinfo.org">Texinfo</a> into <a href="http://w3c.org">HTML</a>.  <a href="http://www.texinfo.org">Texinfo</a> into <a href="http://w3c.org">HTML</a>.
136  </p>  </p>
# Line 992  The default is to have separated footnot Line 992  The default is to have separated footnot
992  </tr></table>  </tr></table>
993  <h2 class="section"> 4.6 Customizing the <acronym>HTML</acronym> and text style </h2>  <h2 class="section"> 4.6 Customizing the <acronym>HTML</acronym> and text style </h2>
994    
995    
996  <p>Miscalleneous style changes may be achieved with command line options.  <p>Miscalleneous style changes may be achieved with command line options.
997  </p>  </p>
998  <dl compact="compact">  <dl compact="compact">
# Line 2019  The keys are Line 2020  The keys are
2020  <dd><p>The file name of the table of contents.  <dd><p>The file name of the table of contents.
2021  </p></dd>  </p></dd>
2022  <dt> <code>today</code></dt>  <dt> <code>today</code></dt>
2023  <dd><p>The date.  <dd><p>The date. May be overriden by <code>$DATE</code>.
2024    </p></dd>
2025    <dt> <code>user</code></dt>
2026    <dd><p>The user running <code>texi2html</code>. Maybe overriden by <code>$USER</code>.
2027    </p></dd>
2028    <dt> <code>css_import_lines</code></dt>
2029    <dd><p>reference on an array containing the <code>@import</code> lines of
2030    <acronym>CSS</acronym> files.
2031    </p></dd>
2032    <dt> <code>css_lines</code></dt>
2033    <dd><p>reference on an array containing the normal lines of
2034    <acronym>CSS</acronym> files.
2035  </p></dd>  </p></dd>
2036  </dl>  </dl>
2037    
# Line 2229  reference may be redefined: Line 2241  reference may be redefined:
2241  </tr></table>  </tr></table>
2242  <h2 class="section"> 6.7 Customizing the <code>texi2html</code> css lines </h2>  <h2 class="section"> 6.7 Customizing the <code>texi2html</code> css lines </h2>
2243    
2244    
2245  <p>It is possible to modify the <code>texi2html</code> css lines by modifying  <p>It is possible to modify the <code>texi2html</code> css lines by modifying
2246  the entries or adding to the <a name="IDX119"></a>  the entries or adding to the <a name="IDX119"></a>
2247  <code>%css_map</code> hash. Each key is a css  <code>%css_map</code> hash. Each key is a css
# Line 2243  want any css entries, set Line 2256  want any css entries, set
2256  </p>  </p>
2257  <table><tr><td>&nbsp;</td><td><pre class="example">$CSS_LINES = '';  <table><tr><td>&nbsp;</td><td><pre class="example">$CSS_LINES = '';
2258  </pre></td></tr></table>  </pre></td></tr></table>
2259    <p>Another possiblility is to modify the array corresponding with the array
2260    reference <code>$Texi2HTML::THISDOC{'css_import_lines'}</code> that contains the
2261    <code>@import</code> lines of <acronym>CSS</acronym> files, and similarly it is possible
2262    to modify the array corresponding with the array
2263    reference <code>$Texi2HTML::THISDOC{'css_lines'}</code>  that contains
2264    the normal <acronym>CSS</acronym> files lines (for details on what corresponds with
2265    those different lines, see <a href="texinfo.html#HTML-CSS">(texinfo)HTML CSS</a> section `HTML CSS' in <cite>GNU Texinfo</cite>).
2266    The right place to modify these arrays is in a function appearing in
2267    the <code>@command_handler_process</code> array
2268    (see section <a href="#SEC89">Bypassing normal formatting</a>). Later, the <acronym>CSS</acronym> lines
2269    are allready expanded, by the function reference below.
2270    </p>
2271    
2272  <p>It is also possible to change completely the way <a name="IDX122"></a>  <p>It is also possible to change completely the way <a name="IDX122"></a>
2273  <code>$CSS_LINES</code> are  <code>$CSS_LINES</code> are
2274  generated by redefining the following function reference:  generated by redefining the following function reference:
# Line 6438  text Line 6464  text
6464  <tr><td></td><td valign="top"><a href="#SEC68">complex format</a></td><td valign="top"><a href="#SEC68">7.10 Formatting of complex formats (<code>@example</code>, <code>@display</code>&hellip;)</a></td></tr>  <tr><td></td><td valign="top"><a href="#SEC68">complex format</a></td><td valign="top"><a href="#SEC68">7.10 Formatting of complex formats (<code>@example</code>, <code>@display</code>&hellip;)</a></td></tr>
6465  <tr><td></td><td valign="top"><a href="#SEC17"><tt>`Config'</tt></a></td><td valign="top"><a href="#SEC17">4.8 Use initialization files for fine tuning</a></td></tr>  <tr><td></td><td valign="top"><a href="#SEC17"><tt>`Config'</tt></a></td><td valign="top"><a href="#SEC17">4.8 Use initialization files for fine tuning</a></td></tr>
6466  <tr><td></td><td valign="top"><a href="#SEC4">configure</a></td><td valign="top"><a href="#SEC4">3. Installation of <code>texi2html</code></a></td></tr>  <tr><td></td><td valign="top"><a href="#SEC4">configure</a></td><td valign="top"><a href="#SEC4">3. Installation of <code>texi2html</code></a></td></tr>
6467    <tr><td></td><td valign="top"><a href="#SEC15"><acronym>CSS</acronym></a></td><td valign="top"><a href="#SEC15">4.6 Customizing the <acronym>HTML</acronym> and text style</a></td></tr>
6468    <tr><td></td><td valign="top"><a href="#SEC38"><acronym>CSS</acronym></a></td><td valign="top"><a href="#SEC38">6.7 Customizing the <code>texi2html</code> css lines</a></td></tr>
6469  <tr><td colspan="3"> <hr></td></tr>  <tr><td colspan="3"> <hr></td></tr>
6470  <tr><th><a name="SEC100_3">D</a></th><td></td><td></td></tr>  <tr><th><a name="SEC100_3">D</a></th><td></td><td></td></tr>
6471  <tr><td></td><td valign="top"><a href="#SEC3">downloading <code>texi2html</code> source</a></td><td valign="top"><a href="#SEC3">2. Obtaining <code>texi2html</code></a></td></tr>  <tr><td></td><td valign="top"><a href="#SEC3">downloading <code>texi2html</code> source</a></td><td valign="top"><a href="#SEC3">2. Obtaining <code>texi2html</code></a></td></tr>
# Line 6694  text Line 6722  text
6722  </tr></table>  </tr></table>
6723  <h1>About This Document</h1>  <h1>About This Document</h1>
6724  <p>  <p>
6725    This document was generated by <em>Patrice Dumas</em> on <em>November, 29 2005</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html @PACKAGE_VERSION@</em></a>.    This document was generated by <em>Patrice Dumas</em> on <em>December, 1 2005</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.77</em></a>.
6726  </p>  </p>
6727  <p>  <p>
6728    The buttons in the navigation panels have the following meaning:    The buttons in the navigation panels have the following meaning:
# Line 6796  text Line 6824  text
6824  <hr size="1">  <hr size="1">
6825  <p>  <p>
6826   <font size="-1">   <font size="-1">
6827    This document was generated by <em>Patrice Dumas</em> on <em>November, 29 2005</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html @PACKAGE_VERSION@</em></a>.    This document was generated by <em>Patrice Dumas</em> on <em>December, 1 2005</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.77</em></a>.
6828   </font>   </font>
6829   <br>   <br>
6830    

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26