Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Pod-Readme CPAN distribution.

Report information
The Basics
Id: 38328
Status: resolved
Priority: 0/
Queue: Pod-Readme

People
Owner: davidp [...] preshweb.co.uk
Requestors: denizen [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.09
Fixed in: (no value)



Subject: pod2html fails on Readme.pm
pod2html complains and fails when processing Readme.pm unexpected =item directive in paragraph 38. ignoring. Unmatched begin/end at chunk 40
On Fri Aug 08 11:09:02 2008, denizen wrote: Show quoted text
> pod2html complains and fails when processing Readme.pm > > unexpected =item directive in paragraph 38. ignoring. > Unmatched begin/end at chunk 40
This was easy to fix, once you gut the ^M characters out of the Readme.pm file in lib/Pod. Patch to fix this is attached. David A. Desrosiers desrod@gnu-designs.com
--- /usr/lib/perl/share/perl/5.8.8/Pod/Readme.pm 2008-08-11 13:33:18.778204370 -0400 +++ /tmp/Readme.pm.new 2008-08-11 13:26:24.833203889 -0400 @@ -64,11 +64,15 @@ =begin internal +=over 12 + =item initialize Override adds the C<readme_type> and <debug> options, and initializes the "README_SKIP" flag. +=back + =end internal =cut @@ -94,13 +98,16 @@ } } - =begin internal +=over 12 + =item output Override does not output anything if the "README_SKIP" flag is enabled. +=back + =end internal =cut @@ -114,10 +121,14 @@ =begin internal +=over + =item _parse_args Parses destination and name="value" arguments passed for L</cmd_for>. +=back + =end internal =cut @@ -164,10 +175,14 @@ =begin internal +=over + =item cmd_begin Overrides support for "begin" command. +=back + =end internal =cut @@ -199,10 +214,14 @@ =begin internal +=over + =item cmd_for Overrides support for "for" command. +=back + =end internal =cut @@ -248,10 +267,14 @@ =begin internal +=over + =item _include_file Includes a file. +=back + =end internal =cut @@ -287,10 +310,14 @@ =begin internal +=over + =item seq_l Overrides support for "L" markup. +=back + =end internal =cut @@ -335,7 +362,6 @@ } } - =head1 DESCRIPTION This module is a subclass of L<Pod::PlainText> which provides additional @@ -378,7 +404,7 @@ =item begin/end =begin readme - + =head1 README ONLY This section will only show up in the README file.
Robert has given me maintainership of this module, so I'm addressing bugs and preparing a new release. I'm working on it on Github - http://github.com/bigpresh/Pod-Readme I've just applied the patch supplied in this ticket - thanks!