On Mon, 29 Dec 2008 08:58:56 -0600
"Jason A. Crome" <[email protected]> wrote:
> Hi all,
>
> I'm working on my IIS subclass for CA::Dispatch, and am stuck for
> reasons I am unsure of.
Jason,
Have you tried something like this?
sub _parse_path {
my ($self, $path, $table) = @_;
# get the module name from the table
return unless defined($path);
# Strip the script name from the start of the URL
$path =~ s|(/[^/]+)||;
return $self->SUPER::_parse_path($path,$table);
}
Mark
##### CGI::Application community mailing list ################
## ##
## To unsubscribe, or change your message delivery options, ##
## visit: http://www.erlbaum.net/mailman/listinfo/cgiapp ##
## ##
## Web archive: http://www.erlbaum.net/pipermail/cgiapp/ ##
## Wiki: http://cgiapp.erlbaum.net/ ##
## ##
################################################################