In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/db396eb2bfb2bbdad4d1510f9c09abd029ed6759?hp=45ed5e1b00da4aecc4751dbc6583302752186d25>
- Log ----------------------------------------------------------------- commit db396eb2bfb2bbdad4d1510f9c09abd029ed6759 Merge: 45ed5e1 978af2c Author: Steve Peters <[email protected]> Date: Mon Jun 4 09:52:17 2012 -0500 Merge branch 'post-5.16' into blead commit 978af2c644ee9abf9563f61b3c3af177446ed2f5 Author: Steve Peters <[email protected]> Date: Fri May 4 10:51:06 2012 -0500 Add --libpods back as a non-functional option to pod2html. When --libpods was removed, this broke backward compatiblility with existing uses. This change adds back the option, but warns that --libpods is no longer supported. M ext/Pod-Html/lib/Pod/Html.pm M ext/Pod-Html/t/feature.t commit dad26a174010648e2263a2cbfb432fea9bcec30e Author: Steve Peters <[email protected]> Date: Fri May 4 09:21:17 2012 -0500 Since the HTML files generated by pod2html claim to have a utf-8 charset, actually write the files out using utf-8. This is a fix for RT #111446. M ext/Pod-Html/lib/Pod/Html.pm ----------------------------------------------------------------------- Summary of changes: ext/Pod-Html/lib/Pod/Html.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/ext/Pod-Html/lib/Pod/Html.pm b/ext/Pod-Html/lib/Pod/Html.pm index 47b937a..2da6ac0 100644 --- a/ext/Pod-Html/lib/Pod/Html.pm +++ b/ext/Pod-Html/lib/Pod/Html.pm @@ -432,6 +432,7 @@ HTMLFOOT } else { open $fhout, ">-"; } + binmode $fhout, ":utf8"; print $fhout $output; close $fhout or die "Failed to close $Htmlfile: $!"; chmod 0644, $Htmlfile unless $Htmlfile eq '-'; -- Perl5 Master Repository
