I have a method in my root controller which goes like this:
def tag(self, *args):
[...]
If I request /tag/xxx/feed/atom.xml the method gets called fine with
args = ['xxx', 'feed', 'atom.xml'].
If I request /tag/xxx/feed%2Fatom.xml I get a 404 error.
a) Shouldn't %2F be handled like / no matter what?
b) Even if %2F and / are treated differently, shouldn't the second case
also result in a method invocation?
( with args = ['xxx', 'feed/atom.xml'] or so) ?
-- Sven
CherryPy reacts like I expected in b)
sorry to have bothered you with this..
-- Sven