I'd like to change Shiro to do case insensitive matches on urls. I've figured out how to override the matching in authc by creating a filter and overriding the pathsmatch method it appears I also need to override whatever calls the filter in the first place. I think that's the PathMatchingFilter but I can't figure out how to plug a different one in.
I'm trying to use Shiro with Tapestry and the problem is Tapestry will send /admin, /Admin, /admiN etc all to the same place. I'd like to match them all with [urls] /admin/** = authc, roles[administrator] but that config only handles /admin Thanks Barry
