texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog texi2html/texi2html.pl


From: Patrice Dumas
Subject: texinfo ChangeLog texi2html/texi2html.pl
Date: Sun, 08 Aug 2010 14:46:49 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        10/08/08 14:46:49

Modified files:
        .              : ChangeLog 
        texi2html      : texi2html.pl 

Log message:
                * texi2html/texi2html.pl: accept a --reference-limit=N option
                for backward reference with makeinfo.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1094&r2=1.1095
http://cvs.savannah.gnu.org/viewcvs/texinfo/texi2html/texi2html.pl?cvsroot=texinfo&r1=1.416&r2=1.417

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1094
retrieving revision 1.1095
diff -u -b -r1.1094 -r1.1095
--- ChangeLog   8 Aug 2010 11:36:04 -0000       1.1094
+++ ChangeLog   8 Aug 2010 14:46:48 -0000       1.1095
@@ -2,6 +2,8 @@
 
        * texi2html/texi2html.init, texi2html/texi2html.pl (do_text):
        warn if [](), appears inside @var. Report from Karl.
+       * texi2html/texi2html.pl: accept a --reference-limit=N option
+       for backward reference with makeinfo.
 
 2010-08-06  Patrice Dumas  <address@hidden>
 

Index: texi2html/texi2html.pl
===================================================================
RCS file: /sources/texinfo/texinfo/texi2html/texi2html.pl,v
retrieving revision 1.416
retrieving revision 1.417
diff -u -b -r1.416 -r1.417
--- texi2html/texi2html.pl      8 Aug 2010 11:36:04 -0000       1.416
+++ texi2html/texi2html.pl      8 Aug 2010 14:46:49 -0000       1.417
@@ -90,7 +90,7 @@
 }
 
 # CVS version:
-# $Id: texi2html.pl,v 1.416 2010/08/08 11:36:04 pertusus Exp $
+# $Id: texi2html.pl,v 1.417 2010/08/08 14:46:49 pertusus Exp $
 
 # Homepage:
 my $T2H_HOMEPAGE = "http://www.gnu.org/software/texinfo/";;
@@ -3008,14 +3008,6 @@
  'verbose' => 'output navigation headers for each section',
 };
 
-$T2H_OPTIONS -> {'subdir'} =
-{
- 'type' => '=s',
- 'linkage' => sub {set_from_cmdline('SUBDIR', $_[1]);},
- 'verbose' => 'put files in directory $s, not $cwd',
- 'noHelp' => 1,
-};
-
 $T2H_OPTIONS -> {'output|out|o'} =
 {
  'type' => '=s',
@@ -3196,6 +3188,13 @@
  'verbose' => 'Call as $s, setting corresponding defaults'
 };
 
+$T2H_OPTIONS -> {'reference-limit' } =
+{
+ 'type' => '=i',
+ 'verbose' => 'Does nothing, retained for backward compatibility',
+ 'noHelp' => 2
+};
+
 #$T2H_OPTIONS -> {'command'} =
 #{
 # 'type' => '=s',
@@ -3213,7 +3212,7 @@
     'linkage' => sub {Texi2HTML::Config::t2h_default_load_format($_[0], 1);},
     'verbose' => "output 
$Texi2HTML::Config::output_format_names{$output_format} rather than 
$Texi2HTML::Config::output_format_names{$Texi2HTML::Config::DEFAULT_OUTPUT_FORMAT}.",
   }
-}
+};
 
 $T2H_OPTIONS -> {$Texi2HTML::Config::DEFAULT_OUTPUT_FORMAT} =
 {
@@ -3228,6 +3227,14 @@
 ##
 my $T2H_OBSOLETE_OPTIONS;
 
+$T2H_OBSOLETE_OPTIONS -> {'subdir'} =
+{
+ 'type' => '=s',
+ 'linkage' => sub {set_from_cmdline('SUBDIR', $_[1]);},
+ 'verbose' => 'put files in directory $s, not $cwd',
+ 'noHelp' => 1,
+};
+
 # actually a noop, since it is not used anywhere
 $T2H_OBSOLETE_OPTIONS -> {'invisible'} =
 {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]