On Mar 16, 2012, at 6:39 PM, Anthony wrote: > I'm not sure, but I think if you have routes_app, it will ignore routes_in > and routes_out in the root routes.py if the request is for one of the apps in > routes_app. If you're using routes_app, then you also need routes.py files > within the specific application folders as well.
Offhand, I don't think so. Or at least if it's true, it's not intentional. routes_app is there for app-specific routing because the router has to know which app is being referenced in order to find an app-specific routes.py. But it *should* default to the global routes.py for any app that doesn't have one. I think.