Apache-PageKit
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
#
#
#
package MY;
sub postamble {
return <<'ENDE';
patch_blib: pm_to_blib
test "$(PERLRUN_VERSION_GE_58)" && ( cd blib; $(PATCH) -V never -Elp1 <../patch_file.diff )
@$(TOUCH) $@
ENDE
}
sub tools_other {
my $t = shift->SUPER::tools_other(@_);
$t .= "PATCH = patch\n";
$t .= "PERLRUN_VERSION_GE_58 = " . ( $] >= 5.008 ) . "\n";
$t;
}
sub top_targets {
my $t = shift->SUPER::top_targets(@_);
if ( $] >= 5.008 ) {
$t =~ s!pure_all :: config pm_to_blib!pure_all :: config patch_blib!;
}
$t;
}
1;
#
# write the diff. so it can be easy removed from cvs one day.
#
package main;
open FH, ">patch_file.diff" || die $!;
print FH <<'__THIS_IS_THE_END__';
diff -Nur a/lib/Apache/PageKit/Content.pm b/lib/Apache/PageKit/Content.pm
--- a/lib/Apache/PageKit/Content.pm 2005-01-01 20:42:57.099137592 +0100
+++ b/lib/Apache/PageKit/Content.pm 2005-01-01 19:33:16.000000000 +0100
@@ -103,8 +103,7 @@
# this pattern is not very accurate, but only as quick check if a run of XPathTemplate is needed
my $content_pattern = ( $content->{relaxed_parser} eq 'yes' ) ? '<(?:!--)?\s*CONTENT_(VAR|LOOP|IF|UNLESS)\s+' : '<CONTENT_(VAR|LOOP|IF|UNLESS)\s+';
- my $skip_xpath_content = $$template_ref =~ m!$content_pattern!i;
- if( $skip_xpath_content ){
+ if($$template_ref =~ m!$content_pattern!i){
# XPathTemplate template
my $xpt = HTML::Template::XPath->new( default_lang => $content->{default_lang},
@@ -126,7 +125,7 @@
} else {
$lang_tmpl->{$content->{default_lang}} = $template_ref;
}
- return wantarray ? ( $lang_tmpl, $skip_xpath_content ) : $lang_tmpl;
+ return $lang_tmpl;
}
sub _rel2abs {
diff -Nur a/lib/Apache/PageKit/Edit.pm b/lib/Apache/PageKit/Edit.pm
--- a/lib/Apache/PageKit/Edit.pm 2005-01-01 20:42:57.117134856 +0100
+++ b/lib/Apache/PageKit/Edit.pm 2005-01-01 19:33:16.000000000 +0100
@@ -44,14 +44,15 @@
$model->output( read_only => 1 ) if ( ! -w $file );
- open FILE, "$file" or die $!;
- binmode FILE;
- local $/ = undef;
+ my $default_input_charset = $model->{pkit_pk}->{view}->{default_input_charset};
+ open my $fh, $file or die $!;
+ binmode $fh, ":encoding($default_input_charset)";
+ local $/;
# we need to escape HTML tags to avoid </textarea>
# my $content = Apache::Util::escape_html(<PAGE> || "");
- my $content = <FILE>;
- close FILE;
+ my $content = <$fh>;
+ close $fh;
# we need to escape all & chars so that for example is
( run in 1.306 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )