Hello everybody! :) I am developing a multi-language website deployed on GAE. For my routes.py I would like to use this configuration, shown on the online book ( http://web2py.com/books/default/chapter/29/04#Parameter-based-system):
routers = dict( BASE = dict(default_application='myapp'), myapp = dict(languages=['en', 'it', 'jp'], default_language='en'), ) However, it looks like I am having some troubles with loading the static files. Indeed static files are not loaded and the console shows the following error: [Errno 2] No such file or directory: '/home/dapids/web2py/applications/myapp/en/static/css/bootstrap-responsive.min.css' Am I doing something wrong? Cheers, David --

