[DELTA]
25-Jan-2012 Marek Rouchal <marekr@cpan.org>
-----------------------------------------------------------------------------
Version 1.51
+ CPAN#74271: Pod::Parser should not flag L<text|hyperlink>
undo change CPAN#47473: L<alt text|URL> _is_ allowed (see discussion on
pod-people and p5p); confirmed by blead change; references:
http://code.activestate.com/lists/perl-pod-people/1690/
http://code.activestate.com/lists/perl-pod-people/1393/
http://perl5.git.perl.org/perl.git/commit/
f6e963e4dd62b8e3c01b31f4a4dd57e47e104997
+ bump all module versions (except Pod::PlainText) to 1.51
+ update META.yml (thanks rjbs for the hint)
'Pod::Parser' => {
'MAINTAINER' => 'marekr',
- 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.50.tar.gz',
+ 'DISTRIBUTION' => 'MAREKR/Pod-Parser-1.51.tar.gz',
'FILES' => q[cpan/Pod-Parser],
- 'UPSTREAM' => undef,
+ 'UPSTREAM' => 'cpan',
},
'Pod::Perldoc' => {
use strict;
use vars qw($VERSION @ISA @EXPORT %VALID_COMMANDS %VALID_SEQUENCES);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
use Pod::ParseUtils; ## for hyperlinks and lists
POD. This also happened when a single word node name is not enclosed in
C<"">.
-=item * hyperlink to URL with alt text deprecated in perlpodspec
-
-Absolute hyperlinks with alternative text like
-C<LE<lt>The Perl Home Page|http://www.perl.orgE<gt>> are discouraged in
-L<perlpodspec>. There is a section in L<perlpod> though, which allows this
-option. As L<perlpodspec> is the more modern document containing the essence
-of many prior discussions, L<Pod::Checker> flags this as an error.
-
=item * Unknown command "I<CMD>"
An invalid POD command has been found. Valid are C<=head1>, C<=head2>,
-msg => "unresolved internal link '$node'"});
}
}
- if($link->type() eq 'hyperlink') {
- my $alt = $link->alttext();
- if(defined($alt) && length($alt)) {
- $self->poderror({ -line => $line || '', -file => $infile,
- -severity => 'ERROR',
- -msg => "hyperlink to URL with alt text deprecated in perlpodspec"});
- }
- }
}
# check the internal nodes for uniqueness. This pertains to
use strict;
use vars qw($VERSION);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
use Carp;
use strict;
use vars qw($VERSION);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
#############################################################################
use strict;
use vars qw($VERSION);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
=head1 NAME
## These "variables" are used as local "glob aliases" for performance
use vars qw($VERSION @ISA %myData %myOpts @input_stack);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
#############################################################################
use strict;
use vars qw($VERSION @ISA @EXPORT $MAX_HEADING_LEVEL %myData @section_headings @selected_sections);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
#############################################################################
use strict;
use vars qw($VERSION @ISA @EXPORT);
-$VERSION = '1.50'; ## Current version of this package
+$VERSION = '1.51'; ## Current version of this package
require 5.005; ## requires this Perl version or later
=head1 NAME
L<"Warnings"> this one is ok
L</unescaped> ok too, this POD has an X of the same name
L<http://www.perl.org> this is OK
-L<The Perl Home Page|http://www.perl.org> this is not OK
+L<The Perl Home Page|http://www.perl.org> this is also OK
=head2 Warnings
*** ERROR: unresolved internal link 'end with begin' at line 109 in file t/pod/poderrs.t
*** ERROR: unresolved internal link 'OoPs' at line 110 in file t/pod/poderrs.t
*** ERROR: unresolved internal link 'abc def' at line 114 in file t/pod/poderrs.t
-*** ERROR: hyperlink to URL with alt text deprecated in perlpodspec at line 122 in file t/pod/poderrs.t
*** ERROR: unresolved internal link 'I/O Operators' at line 213 in file t/pod/poderrs.t
=item *
-L<Pod::Parser> has been upgraded from version 1.37 to version 1.50.
+L<Pod::Parser> has been upgraded from version 1.37 to version 1.51.
=back