if you are using TG from SVN, this might work (haven't tested it):
add this to the end of your config.py:
path("/")
staticFilter.on = True
staticFilter.file = absfile("***your package name here***", "static/
index.html")
forget about this, this is probably a bad idea as it will make
cherrypy lookup all files as static files first...
I think this is the correct way:
class Root(controllers.RootController):
@turbogears.expose()
def index(self):
raise cherrypy.InternalRedirect(turbogears.url("/static/
index.html"))
ciao
Martina