Apache-PageKit
view release on metacpan or search on metacpan
docsrc/features.xml view on Meta::CPAN
<chapter><?dbhtml filename="features.html"?>
<chapterinfo>
<releaseinfo role="meta">
$Id: features.xml,v 1.21 2003/11/25 10:20:24 borisz Exp $
</releaseinfo>
</chapterinfo>
<title>Overview of Features</title>
<sect1><?dbhtml filename="mvcc.html"?>
<title>Model/View/Content/Controller approach to design</title>
<para>
PageKit follows a Model/View/Content/Controller design pattern, which
is an adaption of the Model/View/Controller pattern used in many other
web frameworks, including Java's Webmacro and Struts.
</para>
lib/Apache/PageKit/FAQ.pod view on Meta::CPAN
=head2 2.4 I can not build libapreq or it stops working after a reboot.
You use perl >= 5.8.1 which includes a new version of ExtUtils::MakeMaker.
Read more here:
http://marc.theaimsgroup.com/?l=perl5-porters&m=105981649201380&w=2
http://marc.theaimsgroup.com/?l=apreq-dev&m=106146287323705&w=2
To fix the problem apply this patch from Steve Hay or use I<libapreq-1.3>
--- c/Makefile.PL.orig 2001-04-03 20:24:12.000000000 +0100
+++ c/Makefile.PL 2004-08-21 11:31:42.000000000 +0100
@@ -34,7 +34,8 @@
sub MY::dynamic {
my $self = shift;
my $string = $self->MM::dynamic;
- $string =~ s/(Makefile\s+).*/$1/g;
+ $string =~ s{ \$\(INST_DYNAMIC\)}{}g;
+ $string =~ s{ \$\(INST_BOOT\)}{}g;
$string;
}
( run in 1.564 second using v1.01-cache-2.11-cpan-7add2cbd662 )