For information about current developments and future releases, see:
http://maypole.perl.org/?TheRoadmap
+2.06 XXX
+ Fixes:
+ - #9129: Skip t/apache_mvc.t if Apache::Request isn't installed
+
2.05 Fri Dec 24 03:20:00 2004
- Revised and updated documentation. Many thanks to Dave Howorth for his
hard work and 120kb documentation patches.
use Maypole::Constants;
use Maypole::Headers;
-our $VERSION = '2.05';
+our $VERSION = '2.06';
__PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
__PACKAGE__->mk_accessors(
Simon Cozens, C<simon#cpan.org>
+Sebastian Riedel, C<sri#oook.de> maintained Maypole from 1.8 to 2.04
+
=head1 THANKS TO
-Danijel Milicevic, Dave Slack, Jesse Sheidlower, Jody Belka, Marcus Ramberg,
-Mickael Joanne, Randal Schwartz, Simon Flack, Steve Simms, Veljko Vidovic
-and all the others who've helped.
+Sebastian Riedel, Danijel Milicevic, Dave Slack, Jesse Sheidlower, Jody Belka,
+Marcus Ramberg, Mickael Joanne, Randal Schwartz, Simon Flack, Steve Simms,
+Veljko Vidovic and all the others who've helped.
=head1 LICENSE
#!/usr/bin/perl -w
use strict;
use Test::More;
-BEGIN { if (eval { require mod_perl }) {
- plan tests => 2;
- } else { Test::More->import(skip_all =>"mod_perl is not installed: $@") }
- }
+BEGIN {
+ if (eval { require Apache::Request }) {
+ plan tests => 2;
+ } else {
+ Test::More->import(skip_all =>"Apache::Request is not installed: $@");
+ }
+}
+
require_ok('Apache::MVC');
ok($Apache::MVC::VERSION, 'defines $VERSION');
# defines $VERSION