[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Texi2html-cvs] texi2html ChangeLog NEWS texi2html.pl Tests/tes...
From: |
Patrice Dumas |
Subject: |
[Texi2html-cvs] texi2html ChangeLog NEWS texi2html.pl Tests/tes... |
Date: |
Sat, 19 Jul 2008 21:00:55 +0000 |
CVSROOT: /cvsroot/texi2html
Module name: texi2html
Changes by: Patrice Dumas <pertusus> 08/07/19 21:00:55
Modified files:
. : ChangeLog NEWS texi2html.pl
Tests : test.sh
doc : texi2html.1.in texi2html.html texi2html.texi
Log message:
* texi2html.pl, doc/*: synchronize command-line switches with
makeinfo.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texi2html/ChangeLog?cvsroot=texi2html&r1=1.297&r2=1.298
http://cvs.savannah.gnu.org/viewcvs/texi2html/NEWS?cvsroot=texi2html&r1=1.75&r2=1.76
http://cvs.savannah.gnu.org/viewcvs/texi2html/texi2html.pl?cvsroot=texi2html&r1=1.207&r2=1.208
http://cvs.savannah.gnu.org/viewcvs/texi2html/Tests/test.sh?cvsroot=texi2html&r1=1.80&r2=1.81
http://cvs.savannah.gnu.org/viewcvs/texi2html/doc/texi2html.1.in?cvsroot=texi2html&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/texi2html/doc/texi2html.html?cvsroot=texi2html&r1=1.67&r2=1.68
http://cvs.savannah.gnu.org/viewcvs/texi2html/doc/texi2html.texi?cvsroot=texi2html&r1=1.65&r2=1.66
Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texi2html/texi2html/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -b -r1.297 -r1.298
--- ChangeLog 19 Jul 2008 16:10:14 -0000 1.297
+++ ChangeLog 19 Jul 2008 21:00:52 -0000 1.298
@@ -1,3 +1,8 @@
+2008-07-19 Patrice Dumas <address@hidden>
+
+ * texi2html.pl, doc/*: synchronize command-line switches with
+ makeinfo.
+
2008-07-18 Patrice Dumas <address@hidden>
* texi2html.pl: get rid of m_cedilla, instead a specific function
Index: NEWS
===================================================================
RCS file: /cvsroot/texi2html/texi2html/NEWS,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -b -r1.75 -r1.76
--- NEWS 19 Jul 2008 16:10:15 -0000 1.75
+++ NEWS 19 Jul 2008 21:00:53 -0000 1.76
@@ -46,6 +46,13 @@
* TOC_LIST_STYLE is now called NO_BULLET_LIST_STYLE.
+* changes in command line switches to synchronize with makeinfo:
+ --number becomes --number-sections
+ --separated-footnotes becomes --footnote-style
+ --sec-nav becomes --header
+ --Verbose becomes --verbose
+ --lang becomes --document-language
+
* BUG FIXES
---------
Index: texi2html.pl
===================================================================
RCS file: /cvsroot/texi2html/texi2html/texi2html.pl,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -b -r1.207 -r1.208
--- texi2html.pl 19 Jul 2008 16:10:15 -0000 1.207
+++ texi2html.pl 19 Jul 2008 21:00:53 -0000 1.208
@@ -60,7 +60,7 @@
#--##########################################################################
# CVS version:
-# $Id: texi2html.pl,v 1.207 2008/07/19 16:10:15 pertusus Exp $
+# $Id: texi2html.pl,v 1.208 2008/07/19 21:00:53 pertusus Exp $
# Homepage:
my $T2H_HOMEPAGE = "http://www.nongnu.org/texi2html/";;
@@ -1480,6 +1480,23 @@
}
}
+# manage footnote style
+sub set_footnote_style($$)
+{
+ if ($_[1] eq 'separate')
+ {
+ $Texi2HTML::Config::SEPARATED_FOOTNOTES = 1;
+ }
+ elsif ($_[1] eq 'end')
+ {
+ $Texi2HTML::Config::SEPARATED_FOOTNOTES = 0;
+ }
+ else
+ {
+ echo_error ('Bad argument for --footnote-style');
+ }
+}
+
# find the encoding alias.
# with encoding support (USE_UNICODE), may return undef if no alias was found
@@ -1931,7 +1948,7 @@
verbose => 'output Texinfo menus',
};
-$T2H_OPTIONS -> {'number'} =
+$T2H_OPTIONS -> {'number-sections'} =
{
type => '!',
linkage => \$Texi2HTML::Config::NUMBER_SECTIONS,
@@ -1952,12 +1969,11 @@
verbose => 'produce one file per node for cross references'
};
-$T2H_OPTIONS -> {'separated-footnotes'} =
+$T2H_OPTIONS -> {'footnote-style'} =
{
- type => '!',
- linkage => \$Texi2HTML::Config::SEPARATED_FOOTNOTES,
- verbose => 'footnotes on a separated page',
- noHelp => 1,
+ type => '=s',
+ linkage => sub {set_footnote_style ($_[0], $_[1]);},
+ verbose => 'output footnotes separate|end',
};
$T2H_OPTIONS -> {'toc-links'} =
@@ -1974,11 +1990,19 @@
verbose => 'split document on section|chapter|node else no splitting',
};
-$T2H_OPTIONS -> {'sec-nav'} =
+$T2H_OPTIONS -> {'no-split'} =
+{
+ type => '!',
+ linkage => sub {$Texi2HTML::Config::SPLIT = '';},
+ verbose => 'no splitting of document',
+ noHelp => 1,
+};
+
+$T2H_OPTIONS -> {'header'} =
{
type => '!',
linkage => \$Texi2HTML::Config::SECTION_NAVIGATION,
- verbose => 'output navigation panels for each section',
+ verbose => 'output navigation headers for each section',
};
$T2H_OPTIONS -> {'subdir'} =
@@ -2040,18 +2064,18 @@
noHelp => 1,
};
-$T2H_OPTIONS -> {'Verbose'} =
+$T2H_OPTIONS -> {'verbose'} =
{
type => '!',
linkage=> \$Texi2HTML::Config::VERBOSE,
verbose => 'print progress info to stdout',
};
-$T2H_OPTIONS -> {'lang'} =
+$T2H_OPTIONS -> {'document-language'} =
{
type => '=s',
linkage => sub {set_document_language($_[1], 1)},
- verbose => 'use $s as document language (ISO 639 encoding)',
+ verbose => 'use $s as document language',
};
$T2H_OPTIONS -> {'ignore-preamble-text'} =
@@ -2182,6 +2206,40 @@
noHelp => 2
};
+$T2H_OBSOLETE_OPTIONS -> {'lang'} =
+{
+ type => '=s',
+ linkage => sub {set_document_language($_[1], 1)},
+ verbose => 'obsolete, use "--document-language" instead',
+ noHelp => 2
+};
+
+$T2H_OBSOLETE_OPTIONS -> {'number'} =
+{
+ type => '!',
+ linkage => \$Texi2HTML::Config::NUMBER_SECTIONS,
+ verbose => 'obsolete, use "--number-sections" instead',
+ noHelp => 2
+};
+
+
+$T2H_OBSOLETE_OPTIONS -> {'separated-footnotes'} =
+{
+ type => '!',
+ linkage => \$Texi2HTML::Config::SEPARATED_FOOTNOTES,
+ verbose => 'obsolete, use "--footnote-style" instead',
+ noHelp => 2
+};
+
+$T2H_OBSOLETE_OPTIONS -> {'Verbose'} =
+{
+ type => '!',
+ linkage=> \$Texi2HTML::Config::VERBOSE,
+ verbose => 'obsolete, use "--verbose" instead',
+ noHelp => 2
+};
+
+
$T2H_OBSOLETE_OPTIONS -> {init_file} =
{
type => '=s',
@@ -2266,7 +2324,15 @@
{
type => '!',
linkage => \$Texi2HTML::Config::SECTION_NAVIGATION,
- verbose => 'obsolete, use "-sec-nav" instead',
+ verbose => 'obsolete, use "-header" instead',
+ noHelp => 2
+};
+
+$T2H_OBSOLETE_OPTIONS -> {'sec-nav'} =
+{
+ type => '!',
+ linkage => \$Texi2HTML::Config::SECTION_NAVIGATION,
+ verbose => 'obsolete, use "--header" instead',
noHelp => 2
};
Index: Tests/test.sh
===================================================================
RCS file: /cvsroot/texi2html/texi2html/Tests/test.sh,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -b -r1.80 -r1.81
--- Tests/test.sh 19 Jul 2008 16:10:15 -0000 1.80
+++ Tests/test.sh 19 Jul 2008 21:00:54 -0000 1.81
@@ -224,30 +224,30 @@
test_texi sectionning before_node_and_section.texi "" 2
test_texi sectionning section_before_chapter.texi
test_texi sectionning recursive_copying.texi
-test_texi sectionning ../node_footnote/node_footnote.texi
"--no-separated-footnotes"
+test_texi sectionning ../node_footnote/node_footnote.texi
"--footnote-style=end"
test_texi no_monolithic no_monolithic.texi "-no-monolithic"
test_texi complex_no_monolithic ../no_monolithic/no_monolithic.texi
"-no-monolithic -init only_toc_out.init"
-test_texi node_footnote node_footnote.texi "-use-node -node-files
--no-separated-footnotes -split node -output ."
+test_texi node_footnote node_footnote.texi "-use-node -node-files
--footnote-style=end -split node -output ."
test_texi navigation navigation.texi
-test_texi navigation navigation.texi "--no-sec-nav -prefix navigation_no_nav"
0 texi navigation_no_nav
+test_texi navigation navigation.texi "--no-header -prefix navigation_no_nav" 0
texi navigation_no_nav
test_texi navigation navigation.texi "-init ../../examples/noheaders.init
-prefix navigation_no_headers" 0 texi navigation_no_headers
test_texi navigation navigation.texi "-init vertical_nav.init -prefix
navigation_vert" 0 texi navigation_vert
-test_texi navigation navigation.texi "-init vertical_nav.init --no-sec-nav
-prefix navigation_no_nav_vert" 0 texi navigation_no_nav_vert
+test_texi navigation navigation.texi "-init vertical_nav.init --no-header
-prefix navigation_no_nav_vert" 0 texi navigation_no_nav_vert
test_texi navigation_chapter ../navigation/navigation.texi "-split chapter
-output ."
test_texi navigation_section ../navigation/navigation.texi "-split section
-output ."
test_texi navigation_node ../navigation/navigation.texi "-split node -output ."
-test_texi navigation_chapter_no_nav ../navigation/navigation.texi "-split
chapter -no-sec-nav -output ."
-test_texi navigation_section_no_nav ../navigation/navigation.texi "-split
section -no-sec-nav -output ."
-test_texi navigation_node_no_nav ../navigation/navigation.texi "-split node
-no-sec-nav -output ."
+test_texi navigation_chapter_no_nav ../navigation/navigation.texi "-split
chapter -no-header -output ."
+test_texi navigation_section_no_nav ../navigation/navigation.texi "-split
section -no-header -output ."
+test_texi navigation_node_no_nav ../navigation/navigation.texi "-split node
-no-header -output ."
test_texi navigation_chapter_no_header ../navigation/navigation.texi "-split
chapter -init ../../examples/noheaders.init -output ."
test_texi navigation_section_no_header ../navigation/navigation.texi "-split
section -init ../../examples/noheaders.init -output ."
test_texi navigation_node_no_header ../navigation/navigation.texi "-split node
-init ../../examples/noheaders.init -output ."
test_texi navigation_chapter_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split chapter -output ."
test_texi navigation_section_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split section -output ."
test_texi navigation_node_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split node -output ."
-test_texi navigation_chapter_no_nav_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split chapter -no-sec-nav -output ."
-test_texi navigation_section_no_nav_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split section -no-sec-nav -output ."
-test_texi navigation_node_no_nav_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split node -no-sec-nav -output ."
+test_texi navigation_chapter_no_nav_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split chapter -no-header -output ."
+test_texi navigation_section_no_nav_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split section -no-header -output ."
+test_texi navigation_node_no_nav_vert ../navigation/navigation.texi "-init
../navigation/vertical_nav.init -split node -no-header -output ."
test_texi floats float.texi
#test_texi floats float.texi "-split chapter -node-files -top-file index.html"
0 texi float_node_files
@@ -256,10 +256,10 @@
test_texi floats caption_not_closed.texi
test_texi formatting clean.texi
test_texi formatting formatting.texi
-test_texi formatting formatting.texi "-split section -nosec-nav -nonumber
-toc-links -def-table -short-ref -no-separated-footnotes --css-ref
http://www.environnement.ens.fr/perso/dumas/background-color.css -prefix
exotic_formatting -output ." 0 texi exotic_formatting
+test_texi formatting formatting.texi "-split section -no-header
-nonumber-sections -toc-links -def-table -short-ref -footnote-style=end
--css-ref http://www.environnement.ens.fr/perso/dumas/background-color.css
-prefix exotic_formatting -output ." 0 texi exotic_formatting
test_texi formatting formatting.texi "-init ../../examples/html32.init -prefix
formatting_html32" 0 texi formatting_html32
-test_texi formatting formatting.texi "-lang fr -prefix fr_formatting" 0 texi
fr_formatting
-test_texi formatting formatting.texi "-lang fr -prefix icons_fr_formatting
-init icons.init" 0 texi icons_fr_formatting
+test_texi formatting formatting.texi "-document-language fr -prefix
fr_formatting" 0 texi fr_formatting
+test_texi formatting formatting.texi "-document-language fr -prefix
icons_fr_formatting -init icons.init" 0 texi icons_fr_formatting
test_texi formatting formatting.texi "-prefix weird_quotes_formatting -init
weird_quotes.init" 0 texi weird_quotes_formatting
test_texi formatting formatting_regions.texi
test_texi formatting quotes.texi
Index: doc/texi2html.1.in
===================================================================
RCS file: /cvsroot/texi2html/texi2html/doc/texi2html.1.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- doc/texi2html.1.in 9 Aug 2005 17:19:27 -0000 1.4
+++ doc/texi2html.1.in 19 Jul 2008 21:00:54 -0000 1.5
@@ -99,7 +99,7 @@
.B \-\-l2h\-skip
Do not really run latex2html. Use (kept) files of previous runs, instead.
.TP
-.B \-\-Verbose
+.B \-\-verbose
Give a verbose output.
.TP
.B \-\-version
Index: doc/texi2html.html
===================================================================
RCS file: /cvsroot/texi2html/texi2html/doc/texi2html.html,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -b -r1.67 -r1.68
--- doc/texi2html.html 19 Jul 2008 16:10:27 -0000 1.67
+++ doc/texi2html.html 19 Jul 2008 21:00:54 -0000 1.68
@@ -31,7 +31,7 @@
permission notice may be stated in a translation approved
by the Free Software Foundation.
-->
-<!-- Created on July 18, 2008 by texi2html 1.79 -->
+<!-- Created on July 19, 2008 by texi2html 1.79 -->
<!--
Written by: Lionel Cons <address@hidden> (original author)
Karl Berry <address@hidden>
@@ -993,14 +993,16 @@
</p>
<p>It is also possible to suppress the section navigation panel with
<a name="IDX43"></a>
-‘<samp>--nosec-nav</samp>’ (variable <a name="IDX44"></a>
+‘<samp>--no-headers</samp>’ (variable <a name="IDX44"></a>
<code>$SECTION_NAVIGATION</code>, the default
is to output all the navigation panels), and to specify
whether footnotes should appear at the foot of the same page which contains
-the reference to the note or on a separate page with
-<a name="IDX45"></a>
-‘<samp>--separated-footnotes</samp>’ (variable <a name="IDX46"></a>
-<code>$SEPARATED_FOOTNOTES</code>).
+the reference to the note with <a name="IDX45"></a>
+‘<samp>--footnote-style</samp>’ set to
+‘<samp>end</samp>’ or on a separate page with
‘<samp>--footnote-style</samp>’
+set to ‘<samp>separate</samp>’ (variable <a name="IDX46"></a>
+<code>$SEPARATED_FOOTNOTES</code> set to 0
+or 1).
The default is to have separated footnotes.
</p>
<hr size="6">
@@ -1110,7 +1112,7 @@
</p>
</dd>
<dt> <a name="IDX64"></a>
-<p>‘<samp>--number</samp>’
+<p>‘<samp>--number-sections</samp>’
</p></dt>
<dd><p>If this option is set, sections are numbered (variable
<a name="IDX65"></a>
@@ -1219,7 +1221,8 @@
<p>A file is also included based on the language selected,
by <a name="IDX78"></a>
<code>$LANG</code>, <a name="IDX79"></a>
-‘<samp>--lang</samp>’ or <code>@documentlanguage</code>.
+‘<samp>--document-language</samp>’ or
+<code>@documentlanguage</code>.
If no language was selected ‘<samp>en</samp>’ is considered to be
the language. All the files with name the language name in
‘<tt>/usr/local/share/texi2html/i18n/</tt>’,
@@ -4112,7 +4115,7 @@
section headings, buttons alt text and so on. These strings are
customizable. The string chosen depends on the language of the
document (set by <a name="IDX239"></a>
-‘<samp>--lang</samp>’, <a name="IDX240"></a>
+‘<samp>--document-language</samp>’, <a name="IDX240"></a>
<code>$LANG</code> or
<code>@documentlanguage</code>). This is the basis for internationalization
as it allows for strings translations.
@@ -6297,6 +6300,12 @@
</li><li> TOC_LIST_ATTRIBUTE is now called NO_BULLET_LIST_ATTRIBUTE.
</li><li> TOC_LIST_STYLE is now called NO_BULLET_LIST_STYLE.
</li><li> the $unknown function reference has a new argument, the pass number.
+</li><li> ‘<samp>--sec-nav</samp>’ is replaced by
‘<samp>--headers</samp>’.
+</li><li> ‘<samp>--Verbose</samp>’ is replaced by
‘<samp>--verbose</samp>’.
+</li><li> ‘<samp>--lang</samp>’ is replaced by
‘<samp>--document-language</samp>’.
+</li><li> ‘<samp>--separated-footnotes</samp>’ is replaced by
‘<samp>--footnote-style</samp>’.
+</li><li> ‘<samp>--lang</samp>’ is replaced by
‘<samp>--document-language</samp>’.
+
</li></ul>
</li><li> API changes between 1.76 and 1.78:
<ul>
@@ -6580,12 +6589,15 @@
<tr><th><a name="SEC97_1">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#IDX60">def-table</a></td><td
valign="top"><a href="#Style-options">4.6 Customizing the
<acronym>HTML</acronym> and text style</a></td></tr>
<tr><td></td><td valign="top"><a
href="#IDX47">doctype=<var>DTD</var></a></td><td valign="top"><a
href="#Style-options">4.6 Customizing the <acronym>HTML</acronym> and text
style</a></td></tr>
+<tr><td></td><td valign="top"><a href="#IDX79">document-language</a></td><td
valign="top"><a href="#Using-init-files">4.8 Use initialization files for fine
tuning</a></td></tr>
+<tr><td></td><td valign="top"><a href="#IDX239">document-language</a></td><td
valign="top"><a href="#Strings">7.7 Customizing strings written by
<code>texi2html</code></a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX35">D<var>var</var></a></td><td
valign="top"><a href="#Texinfo-related-options">4.4 Command line options
related to Texinfo language features</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="SEC97_2">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#IDX4">enable-translations</a></td><td
valign="top"><a href="#Advanced-build-features">3.4 Advanced build
features</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="SEC97_3">F</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#IDX45">footnote-style</a></td><td
valign="top"><a href="#Page-layout-options">4.5 Page layout related command
line options</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX41">frames</a></td><td
valign="top"><a href="#Page-layout-options">4.5 Page layout related command
line options</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX49">frameset-doctype</a></td><td
valign="top"><a href="#Style-options">4.6 Customizing the
<acronym>HTML</acronym> and text style</a></td></tr>
<tr><td></td><td valign="top"><a
href="#IDX48">frameset-doctype=<var>DTD</var></a></td><td valign="top"><a
href="#Style-options">4.6 Customizing the <acronym>HTML</acronym> and text
style</a></td></tr>
@@ -6606,20 +6618,18 @@
<tr><td></td><td valign="top"><a href="#IDX73">l2h-file</a></td><td
valign="top"><a href="#Expanding-TeX-regions">4.7 Expanding <code>@tex</code>
and <code>@math</code> regions using LaTeX2HTML</a></td></tr>
<tr><td></td><td valign="top"><a
href="#IDX69">l2h-l2h=<var>program</var></a></td><td valign="top"><a
href="#Expanding-TeX-regions">4.7 Expanding <code>@tex</code> and
<code>@math</code> regions using LaTeX2HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX71">l2h-tmp</a></td><td
valign="top"><a href="#Expanding-TeX-regions">4.7 Expanding <code>@tex</code>
and <code>@math</code> regions using LaTeX2HTML</a></td></tr>
-<tr><td></td><td valign="top"><a href="#IDX79">lang</a></td><td
valign="top"><a href="#Using-init-files">4.8 Use initialization files for fine
tuning</a></td></tr>
-<tr><td></td><td valign="top"><a href="#IDX239">lang</a></td><td
valign="top"><a href="#Strings">7.7 Customizing strings written by
<code>texi2html</code></a></td></tr>
<tr><td></td><td valign="top"><a
href="#IDX33">lang=<var>lang</var></a></td><td valign="top"><a
href="#Texinfo-related-options">4.4 Command line options related to Texinfo
language features</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="SEC97_7">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#IDX6">menu</a></td><td valign="top"><a
href="#Invoking-texi2html">4. Invoking <code>texi2html</code></a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="SEC97_8">N</a></th><td></td><td></td></tr>
+<tr><td></td><td valign="top"><a href="#IDX43">no-headers</a></td><td
valign="top"><a href="#Page-layout-options">4.5 Page layout related command
line options</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX29">no-if<region></a></td><td
valign="top"><a href="#Expansion">4.3 Specifying which regions get
expanded</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX24">node-files</a></td><td
valign="top"><a href="#Output-files">4.2 Setting output file and directory
names</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX5">nomenu</a></td><td
valign="top"><a href="#Invoking-texi2html">4. Invoking
<code>texi2html</code></a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX31">nomenu</a></td><td
valign="top"><a href="#Expansion">4.3 Specifying which regions get
expanded</a></td></tr>
-<tr><td></td><td valign="top"><a href="#IDX43">nosec-nav</a></td><td
valign="top"><a href="#Page-layout-options">4.5 Page layout related command
line options</a></td></tr>
-<tr><td></td><td valign="top"><a href="#IDX64">number</a></td><td
valign="top"><a href="#Style-options">4.6 Customizing the
<acronym>HTML</acronym> and text style</a></td></tr>
+<tr><td></td><td valign="top"><a href="#IDX64">number-sections</a></td><td
valign="top"><a href="#Style-options">4.6 Customizing the
<acronym>HTML</acronym> and text style</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="SEC97_9">O</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#IDX13">output</a></td><td
valign="top"><a href="#Output-files">4.2 Setting output file and directory
names</a></td></tr>
@@ -6632,7 +6642,6 @@
<tr><td></td><td valign="top"><a href="#IDX16">prefix</a></td><td
valign="top"><a href="#Output-files">4.2 Setting output file and directory
names</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="SEC97_11">S</a></th><td></td><td></td></tr>
-<tr><td></td><td valign="top"><a href="#IDX45">separated-footnotes</a></td><td
valign="top"><a href="#Page-layout-options">4.5 Page layout related command
line options</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX18">short-ext</a></td><td
valign="top"><a href="#Output-files">4.2 Setting output file and directory
names</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX62">short-ref</a></td><td
valign="top"><a href="#Style-options">4.6 Customizing the
<acronym>HTML</acronym> and text style</a></td></tr>
<tr><td></td><td valign="top"><a href="#IDX7">split</a></td><td
valign="top"><a href="#Splitting-output">4.1 Specifying where to split the
generated document</a></td></tr>
@@ -7226,7 +7235,7 @@
</tr></table>
<h1>About This Document</h1>
<p>
- This document was generated by <em>Patrice Dumas</em> on <em>July 18,
2008</em> using <a href="http://www.nongnu.org/texi2html/";><em>texi2html
1.79</em></a>.
+ This document was generated by <em>Patrice Dumas</em> on <em>July 19,
2008</em> using <a href="http://www.nongnu.org/texi2html/";><em>texi2html
1.79</em></a>.
</p>
<p>
The buttons in the navigation panels have the following meaning:
@@ -7328,7 +7337,7 @@
<hr size="1">
<p>
<font size="-1">
- This document was generated by <em>Patrice Dumas</em> on <em>July 18,
2008</em> using <a href="http://www.nongnu.org/texi2html/";><em>texi2html
1.79</em></a>.
+ This document was generated by <em>Patrice Dumas</em> on <em>July 19,
2008</em> using <a href="http://www.nongnu.org/texi2html/";><em>texi2html
1.79</em></a>.
</font>
<br>
Index: doc/texi2html.texi
===================================================================
RCS file: /cvsroot/texi2html/texi2html/doc/texi2html.texi,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -b -r1.65 -r1.66
--- doc/texi2html.texi 19 Jul 2008 16:10:28 -0000 1.65
+++ doc/texi2html.texi 19 Jul 2008 21:00:54 -0000 1.66
@@ -770,11 +770,13 @@
to use frames.
It is also possible to suppress the section navigation panel with
address@hidden (variable @variable{$SECTION_NAVIGATION}, the default
address@hidden (variable @variable{$SECTION_NAVIGATION}, the default
is to output all the navigation panels), and to specify
whether footnotes should appear at the foot of the same page which contains
-the reference to the note or on a separate page with
address@hidden (variable @variable{$SEPARATED_FOOTNOTES}).
+the reference to the note with @longopt{footnote-style} set to
address@hidden or on a separate page with @option{--footnote-style}
+set to @samp{separate} (variable @variable{$SEPARATED_FOOTNOTES} set to 0
+or 1).
The default is to have separated footnotes.
@c --------------------------------------------------------
@@ -839,7 +841,7 @@
If this option is set, cross-references are given without section numbers
(variable @variable{$SHORT_REF}). Default is false.
address@hidden @longopt{number}
address@hidden @longopt{number-sections}
If this option is set, sections are numbered (variable
@variable{$NUMBER_SECTIONS}). This is the default.
@@ -898,7 +900,8 @@
in the @file{/usr/local/share/texi2html/} directory.
A file is also included based on the language selected,
-by @variable{$LANG}, @longopt{lang} or @code{@@documentlanguage}.
+by @variable{$LANG}, @longopt{document-language} or
address@hidden@@documentlanguage}.
If no language was selected @samp{en} is considered to be
the language. All the files with name the language name in
@file{/usr/local/share/texi2html/i18n/},
@@ -2656,7 +2659,7 @@
various places, at the page footers, on the help page, for special
section headings, buttons alt text and so on. These strings are
customizable. The string chosen depends on the language of the
-document (set by @longopt{lang}, @variable{$LANG} or
+document (set by @longopt{document-language}, @variable{$LANG} or
@code{@@documentlanguage}). This is the basis for internationalization
as it allows for strings translations.
@@ -4050,6 +4053,12 @@
@item TOC_LIST_ATTRIBUTE is now called NO_BULLET_LIST_ATTRIBUTE.
@item TOC_LIST_STYLE is now called NO_BULLET_LIST_STYLE.
@item the $unknown function reference has a new argument, the pass number.
address@hidden @option{--sec-nav} is replaced by @option{--headers}.
address@hidden @option{--Verbose} is replaced by @option{--verbose}.
address@hidden @option{--lang} is replaced by @option{--document-language}.
address@hidden @option{--separated-footnotes} is replaced by
@option{--footnote-style}.
address@hidden @option{--lang} is replaced by @option{--document-language}.
+
@end itemize
@item API changes between 1.76 and 1.78:
@itemize @bullet
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Texi2html-cvs] texi2html ChangeLog NEWS texi2html.pl Tests/tes...,
Patrice Dumas <=