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.
The default (example) app.yaml includes this section for routing static files, so web2py and its router never see the requests: - url: /(?P<a>.+?)/static/(?P<b>.+) static_files: applications/\1/static/\2 upload: applications/(.+?)/static/(.+) secure: optional > > On Friday, May 18, 2012 11:42:29 AM UTC-3, Jonathan Lundell wrote: > Post your routing dictionary, please. > > BTW, for ""it/static/base.css" to work (that is, without specifying an > application name), you need to turn on map_static. >

