I presume then, that having a /*/... wildcard action to catch everything else
is not advisable? Is using the default action the preferred method then to
allow for unknown/dynamic URLs where an application defined action is
unavailable?
The usual thing to do with default is to catch 404 errors.
If the default action should only really be used for 404 errors, how
should one cater for URLs where the full path is dynamic and no part of
it matches a controller (chained) action? Is this inadvisable?
For example, I started having:
/pages/mypage1
with the controller/action match on "pages". But then I decided that it
would be nicer to eliminate the "pages" part (indeed one of my clients
expressly requested it be removed!):
/mypage1
Thanks,
Nick
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/