When I was using Pyramid Framework, I has discovered great method to route urls, named traversal.
Pyramid Traversal first maps request path to the traversal sequence (for example '/a/b/c' => [u'a', u'b', u'c']), and then traverse it consecutive through resources graph.
I am looking for some library or appoach for doing URL traversal in Lift.
If there is no such library, the basics would not be that hard to implement.
Pseudocode: