On May 18, 2012, at 8:01 AM, csantos wrote: > This is my routers: > routers = dict( > # base router > BASE = dict(default_application = 'appteste'), > appteste = dict(languages=['en', 'pt-br'], default_language='pt-br'), > ) > Also I tried to turn on map_static, but that didn't make any differences. By > running web2py webserver, though, the routing seemed to work properly. So it > appears to me that this only happens on GAE indeed. >
map_static allows removal of the (default) application name from outgoing URLs of static resources. Ordinarily we don't do that, to make the outgoing static URLs more stable for external routing.

