I don't think this is doable.  

if you have this route accept slashes

   /{base_id}/{sub_id_with_slashes}

than how do you differentiate these 2 routes ?

   /{base_id}/{sub_id_with_slashes}
   /{base_id}/{sub_id_with_slashes}/{some_text}

this url would match both patterns :

     /base_id/aaa/bb

if you need to do wildcard matches, then the *subpath which Gael linked to 
will work. 

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pylons-discuss.
For more options, visit https://groups.google.com/d/optout.

Reply via email to