I use TurboGears from SVN: 0.9a0dev-r588
WinXP, Postgres 8.1, win-psycopg24-pg8.0
I can successfully run a quickstarted project, I see the page as
expected in the browser.
I also see messages on the console.
I can successfully create the db with after doing the soClasses
workaround in model.py
(which IMHO should be included in the tutorial).
But when I mount catwalk with:
import cherrypy
import turbogears
from turbogears import controllers
from turbogears.toolbox.catwalk import CatWalk
from turbogears import identity
import model
class Root(controllers.RootController):
catwalk = CatWalk(model)
...it stops working.
At the next startup I don't see any messages on the console and the
browser fails to load the page, too.
I can't kill python from the cmd line with a simple CTRL-C in this
case, only CTRL-Break works.
-- nyenyec