is_applicable has this line:

warn "We don't have that table ($self->{table}).\n"
      . "Available tables are: "
      . join( ",", @{ $config->{display_tables} } )
      if $self->debug
      and not $config->ok_tables->{ $self->{table} }
      and $self->{action};

As far as I can tell, $self->{action} will always be true.
is_applicable() is almost the first thing run in handler_guts(), i.e.
just after all the path parsing and other setup in handler().
parse_path() is run as part of this, and it says $self->{action} ||=
"index";

Can anyone see when $self->{action} might be false?

d.


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Maypole-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/maypole-devel

Reply via email to