texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp TODO texi2any.pl Texinfo/Convert/Tex...


From: Patrice Dumas
Subject: texinfo/tp TODO texi2any.pl Texinfo/Convert/Tex...
Date: Tue, 21 Aug 2012 17:44:24 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        12/08/21 17:44:24

Modified files:
        tp             : TODO texi2any.pl 
        tp/Texinfo/Convert: Text.pm 

Log message:
        Implement a dumb converter_defaults method in Texinfo/Convert/Text.pm.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/TODO?cvsroot=texinfo&r1=1.291&r2=1.292
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/texi2any.pl?cvsroot=texinfo&r1=1.136&r2=1.137
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Convert/Text.pm?cvsroot=texinfo&r1=1.94&r2=1.95

Patches:
Index: TODO
===================================================================
RCS file: /sources/texinfo/texinfo/tp/TODO,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -b -r1.291 -r1.292
--- TODO        18 Aug 2012 23:36:59 -0000      1.291
+++ TODO        21 Aug 2012 17:44:21 -0000      1.292
@@ -7,8 +7,6 @@
 
 Document that makeinfo do not strip leading spaces from macro bodies.
 
-Pb with default parser options method not def for all the formats (RAWTEXT)
-
 
 Bugs
 ====
@@ -103,6 +101,8 @@
 sectioning_command_target_name
 node_target_name
 
+Implement what is proposed in HTML Cross Reference Mismatch.
+
 Protection of punctuation in nodes.
 in @ref. First : is searched.  if followed by a : the node name is found
 and there is no label. When parsing a node a filename with ( is searched for.
@@ -184,9 +184,6 @@
 could be used for the main loop.  More simply, a binary tokenizer, at 
 least, could make for a notable speedup.
 
-@ protecting end of lines in @def* is not kept in any way in the tree.
-Maybe it could be possible to have it as a 'type'?
-
 def/end_of_lines_protected_in_footnote.pl the footnote is
    (1)  -- category: deffn_name arguments arg2 more args with end of line
 and not 

Index: texi2any.pl
===================================================================
RCS file: /sources/texinfo/texinfo/tp/texi2any.pl,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -b -r1.136 -r1.137
--- texi2any.pl 18 Aug 2012 23:37:00 -0000      1.136
+++ texi2any.pl 21 Aug 2012 17:44:23 -0000      1.137
@@ -248,7 +248,7 @@
 # defaults for options relevant in the main program, not undef, and also
 # defaults for all the converters.
 # Other relevant options (undef) are NO_WARN FORCE OUTFILE
-# Others are set in the converters.
+# Others are set in the converters (SHOW_MENU).
 my $converter_default_options = { 
     'ERROR_LIMIT' => 100,
     'TEXI2DVI' => 'texi2dvi',

Index: Texinfo/Convert/Text.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Convert/Text.pm,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -b -r1.94 -r1.95
--- Texinfo/Convert/Text.pm     28 Jan 2012 12:41:35 -0000      1.94
+++ Texinfo/Convert/Text.pm     21 Aug 2012 17:44:24 -0000      1.95
@@ -688,6 +688,11 @@
   return ();
 }
 
+sub converter_defaults()
+{
+  return ();
+}
+
 1;
 
 __END__



reply via email to

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