Yes, if host.domain.tld/meetings/2011/ points to the MYAPP already, you don't need routes_in. Probably your outgoing routes mapping should look like this:
routes_out = (
("/MYAPP/(.*)", r"/meetings/2011/MYAPP/\1"),
)
Yes, if host.domain.tld/meetings/2011/ points to the MYAPP already, you don't need routes_in. Probably your outgoing routes mapping should look like this:
routes_out = (
("/MYAPP/(.*)", r"/meetings/2011/MYAPP/\1"),
)