Could you elaborate more on how you integrated Routes with TurboGears? Did you just use a single top-level catch-all default method, or did you manage to hook more elegantly into TurboGears?
there's a catch-all default method on the root controller that gives Routes a crack at any url coming in. mostly Routes then passes it along to the right controller. it's not terribly elegant, but it's pretty straightforward.
Anonymous - April 23, 2006, 10:53 p.m.
Could you elaborate more on how you integrated Routes with TurboGears? Did you just use a single top-level catch-all default method, or did you manage to hook more elegantly into TurboGears?
anders pearson - Mon 24 Apr 2006 20:21:27
there's a catch-all default method on the root controller that gives Routes a crack at any url coming in. mostly Routes then passes it along to the right controller. it's not terribly elegant, but it's pretty straightforward.