texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp TODO Texinfo/Common.pm Texinfo/Parse...


From: Patrice Dumas
Subject: texinfo/tp TODO Texinfo/Common.pm Texinfo/Parse...
Date: Sat, 04 Feb 2012 14:22:33 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        12/02/04 14:22:33

Modified files:
        tp             : TODO 
        tp/Texinfo     : Common.pm Parser.pm Report.pm 

Log message:
        Fix pod of modules.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/TODO?cvsroot=texinfo&r1=1.260&r2=1.261
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Common.pm?cvsroot=texinfo&r1=1.123&r2=1.124
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Parser.pm?cvsroot=texinfo&r1=1.357&r2=1.358
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Report.pm?cvsroot=texinfo&r1=1.20&r2=1.21

Patches:
Index: TODO
===================================================================
RCS file: /sources/texinfo/texinfo/tp/TODO,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -b -r1.260 -r1.261
--- TODO        3 Feb 2012 17:48:25 -0000       1.260
+++ TODO        4 Feb 2012 14:22:32 -0000       1.261
@@ -7,10 +7,7 @@
 
 Document TEXTCONTENT_COMMENT.
 
-Remove :: in node to avoid confusing @ref in info.
-
-New command to modify/transform a texinfo manual, for now to fix
-a tree by adding empty unnumbered commands.
+pod2texi: remove :: in node to avoid confusing @ref in info.
 
 
 Bugs
@@ -90,6 +87,9 @@
 And about @setfilename in included files which is for now completly
 removed (consistently with documentation).
 
+New command to modify/transform a texinfo manual, for now to fix
+a tree by adding empty unnumbered commands.
+
 Right now VERBOSE is almost not used.
 
 Handle better @exdent in html? (there is a FIXME in the code)

Index: Texinfo/Common.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Common.pm,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -b -r1.123 -r1.124
--- Texinfo/Common.pm   3 Feb 2012 17:48:25 -0000       1.123
+++ Texinfo/Common.pm   4 Feb 2012 14:22:33 -0000       1.124
@@ -1525,7 +1525,7 @@
   my $contents = shift;
   my @contents = @$contents;
   my $brace;
-  if ($contents[0] and @$contents->[0]{'text'} and @contents[0]->{'text'} =~ 
/^\(/) {
+  if ($contents[0] and $contents->[0]{'text'} and $contents[0]->{'text'} =~ 
/^\(/) {
     if ($contents[0]->{'text'} !~ /^\($/) {
       $brace = shift @contents;
       my $brace_text = $brace->{'text'};
@@ -1719,7 +1719,7 @@
 
 Most methods takes a I<$converter> as argument, sometime optionally, 
 to get some information and use methods for error reporting, 
-see L<Texinfo::convert::Converter> and L<Texinfo::Report>.
+see L<Texinfo::Convert::Converter> and L<Texinfo::Report>.
 
 =over
 
@@ -1790,7 +1790,7 @@
 
 =head1 SEE ALSO
 
-L<Texinfo::Parser>, L<Texinfo::convert::Converter> and L<Texinfo::Report>. 
+L<Texinfo::Parser>, L<Texinfo::Convert::Converter> and L<Texinfo::Report>. 
 
 =head1 AUTHOR
 

Index: Texinfo/Parser.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Parser.pm,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -b -r1.357 -r1.358
--- Texinfo/Parser.pm   28 Jan 2012 17:51:34 -0000      1.357
+++ Texinfo/Parser.pm   4 Feb 2012 14:22:33 -0000       1.358
@@ -5158,7 +5158,7 @@
 
 The associated value is a reference on an array.  All the commands in the
 array are collected during parsing.  They are afterwards available 
-through L</global_informations>.
+through L<global_informations|/$info = global_informations($parser)>.
 
 =item include_directories
 
@@ -5270,7 +5270,7 @@
 
 The errors collected during the tree parsing are available through the
 C<errors> method.  This method comes from C<Texinfo::Report>, and is 
-described in L<Texinfo::Report/errors>.
+described in L<errors|Texinfo::Report/($error_warnings_list, $error_count) = 
errors ($converter)>.
 
 =head2 Getting informations on the document
 

Index: Texinfo/Report.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Report.pm,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- Texinfo/Report.pm   6 Jan 2012 00:20:31 -0000       1.20
+++ Texinfo/Report.pm   4 Feb 2012 14:22:33 -0000       1.21
@@ -506,7 +506,7 @@
 error or warning.  The optional I<$line_nr> holds the information
 on the error or warning location.  It is associated with the I<line_nr> 
 key of Texinfo tree elements as described in L<Texinfo::Parser/line_nr>
-for the @-commands.  The I<$line_nr> structure is described in L</errors>
+for the @-commands.  The I<$line_nr> structure is described in 
L<errors|($error_warnings_list, $error_count) = errors ($converter)>
 above.  If I<$continuation> is set, the line is an error message continuation
 line and not a new error.
 



reply via email to

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