I'm trying to make routes.py send certain URLs to static files, but I can't
make it work on App Engine (neither the development server nor a production
deployment). The following route works with Rocket, and not App Engine:
routes_in = (
(r'.*stuff.txt.*', r'/init/static/stuff.txt'),
)
# Tested as http://localhost:8080/stuff.txt
http://localhost:8080/init/static/stuff.txt works on App Engine, which
means App Engine can at least see the file and knows what to do with it.
I'm running web2py trunk commit a7268ff.
--