Moved ar accessor to Apache::MVC (bug 14014)
Refactored core to support further development in 2.11 and onwards
Fixed related_class method (bug 14566)
+ Empty session attribute, and get_session method added to Maypole.pm
+ get_session now called during handler_guts before authenticate
+ new preprocess_path method added and called by parse_path, parse_path will leave any
+ properties set by preprocess_path in place
2.10 Tue 19 Jul 2005
Multiple Template Paths added ( http://rt.cpan.org/NoAuth/Bug.html?id=13447 )
for (keys %headers) {
$self->headers_in->set($_, $headers{$_});
}
-
my $path = $self->ar->uri;
my $loc = $self->ar->location;
{
return $self->exception($error);
}
+
=item exception
This method is called if any exceptions are raised during the authentication or
$self->$_(undef) for qw/action table args/;
$self->preprocess_path;
-
$self->path || $self->path('frontpage');
-
+
my @pi = grep {length} split '/', $self->path;
-
+
+
$self->table || $self->table(shift @pi);
$self->action || $self->action( shift @pi or 'index' );
$self->args || $self->args(\@pi);