'Pod::Simple' =>
{
'MAINTAINER' => 'arandal',
- 'DISTRIBUTION' => 'ARANDAL/Pod-Simple-3.07.tar.gz',
+ 'DISTRIBUTION' => 'ARANDAL/Pod-Simple-3.08.tar.gz',
'FILES' => q[cpan/Pod-Simple],
- # XXX these two files correspond to similar ones in bleed under
- # pod/, but the bleed ones have newer changes, and also seem to
+ # XXX these two files correspond to similar ones in blead under
+ # pod/, but the blead ones have newer changes, and also seem to
# have been in blead a long time. I'm going to assume then that
# the blead versions of these two files are authoritative - DAPM
'EXCLUDED' => [ qw( lib/perlpod.pod lib/perlpodspec.pod ) ],
'CPAN' => 1,
- 'UPSTREAM' => undef,
+ 'UPSTREAM' => 'cpan',
},
'podlators' =>
# ChangeLog for Pod::Simple dist
#---------------------------------------------------------------------------
+2009-07-16 Allison Randal <allison@perl.org>
+ * Release 3.08
+
+ Fix installdirs for Perl versions where Pod::Simple was core;
+ RT#36446 & RT#39709, thanks to Jerry Hedden.
+
+ Fix encoding handling for code in paragraphs; RT#45829, thanks
+ to David Wheeler.
+
2008-06-04 Allison Randal <allison@perl.org>
* Release 3.07
);
@ISA = ('Pod::Simple::BlackBox');
-$VERSION = '3.07';
+$VERSION = '3.08';
@Known_formatting_codes = qw(I B C L E F S X Z);
%Known_formatting_codes = map(($_=>1), @Known_formatting_codes);
sub start_B { $_[0]{'scratch'} .= '<b>' }
sub end_B { $_[0]{'scratch'} .= '</b>' }
-sub start_C { $_[0]{'scratch'} .= '<code>' }
-sub end_C { $_[0]{'scratch'} .= '</code>' }
+sub start_C { $_[0]{'scratch'} .= '<code>'; $_[0]{'in_verbatim'} = 1; }
+sub end_C { $_[0]{'scratch'} .= '</code>'; $_[0]{'in_verbatim'} = 0; }
sub start_E { $_[0]{'scratch'} .= '&' }
sub end_E { $_[0]{'scratch'} .= ';' }