Kevin, you are right, static content works fine within a single application running just under root. However, it doesn't work with an application plugged-in under another application:
class UserController:
@turbogears.expose()
def index(self)
....
class Root:
users = UserController()
cherrypy.root = Root()
cherrypy.server.start()
Any workaround for this?

