- Updating package for p5 module Pod::POM to 0.25 from 0.18
Upstream changes:
Version 0.25 2009-03-27
* updated Makefile.PL to use Module::Include properly - i.e. flag modules
as test_requires as appropriate
* output test failure reason with diag()
* added t/YAML/Tiny.pm (self-contained YAML library) to remove test-only
module dependency
* test library uses Test::Differences if available but package does not
list it as a dependency
Version 0.24 2009-03-21
* fixed broken YAML files in testcases that were causing tests to fail on
some platforms
* added text and HTML verbatim paragraph view tests
* fixed typo in synopsis in Pod::POM
Version 0.23 2009-03-20
* Applied JJ's patch for coalescing verbatim paragraphs separated by blank lines
and refined verbatim paragraph test cases and expected output
* Tweaked pom dump format to quote individual text lines
* Tweaked PodPOMTestLib to remove dependency on Class::Accessor
* Added test cases for =headN hierarchy and =begin blocks
* Added format name to =end in Pod::POM::View::Pod
* Switch Makefile.PL to Module::Include
Version 0.22 2009-03-19
* Added missing dependencies to Makefile.PL
* Added pomdump program to list of executables
Version 0.21 2009-03-18
* Added missing dependencies to Makefile.PL
Version 0.20 2009-03-17
* Added basic pod documentation to the view modules
* expanded the test cases (especially expanded sequences and blockquote
paragraphs)
* add support for blockquote paragraphs to Text and HTML views
Version 0.19 2009-03-17
* Added dump method to Pod::POM::Node
* Reorganized tests with new testcases directory
Pkgsrc changes:
- Fix HOMEPAGE
- Add empty USE_LANGUAGES as no compiler is needed to build this package
Upstream changes:
#------------------------------------------------------------------------
# Version 0.18 2009-03-11
#------------------------------------------------------------------------
* Add patches from RT
* BOOK's ticket #24266: Proposed correction for bugs #1949 and #5759
(As described in tickets #1949 and #5759, the content =begin/=end blocks
should be treated as data text (no sequence parsing, etc).)
* JJ's ticket #16764: Problem handling paragraph separators - incompatibility with perlpodspec
(Pod::POM 0.17 does not accept blank lines containing whitespace as
paragraph separators, it only accepts blank lines containing no
characters at all. According to perlpodspec, blank lines containing
whitespace should be taken as paragraph separators.
* Modified pom2 to search for viewer modules other than Pod, Text and
HTML in @INC, and to pass any options to the constructor method.
Changes since 0.02:
* Added the visit(), leave() and visiting() methods to Pod::POM::View
to allow visitors to track elements of the path that they've taken.
This allows one method to know if it has been called within the context
of another.
* Applied a patch from Leon Brocard to change 'length' to 'defined' to
make Pod::POM work OK with bleadperl.
* Changed Pod::POM::View::HTML view_seq_text() method to automatically
escape < > and &. Thanks to lazy POD author Mark Fowler for raising
the issue. :-)
* Applied a patch from Stas Bekman which:
- fixes the over/item functionality (quite a few very missing), see
the tests
- fixes a bug revealed with "" overload
- changes HTML version to be <code>foo</code>, not '<code>foo</code>'
- adds the URL hyperlinking code, borrowed from bleadperl's Pod::Html.
* Fixed a typo in the SYNOPSIS and removed some dead spaces. Thanks to
Ron Savage for reporting the problems.
* Added Ron's fancy-pom2.pl script as bin/custom-pom2
* Renamed pomcheck to podlint because it is a much catchier name :-)
* Added some docs to bin/pom2 and bin/podlint
* Several other minor documentation fixes and improvements.
* Fixed HTML view_verbatim() to escape < > and & to HTML entities.
* Bumped version number up to 0.11 to ensure it supercedes the ill fated
0.1 release which has been confusing CPAN ever since (0.1 < 0.03)
* Fixed HTML view_head1() to remove illegal <ul> ... </ul> tags. Also
modified view_over() to detect the type of the first item
(e.g. '=item *', '=item 1.' or '=item foo') and adjust accordingly to
create a '<ul>...</ul>' or '<ol>...</ol>' list. Item titles of the
form '*' or '1.' then get stripped off as appropiate. Thanks to
Stas Bekman for raising these issues.
* Added support for new =head3 and =head4 POD tags, also due to prodding
from Stas. :-)
* Added support for experimental 'meta' tag. Disabled by default.