[EMAIL PROTECTED] wrote: > The last line of my traceback was mysteriously lost, but here it is > anyway, the core of my problem: > name "SQLObject" not defined > I installed fresh today, so everything should be up-to-date.
Normally, Page is implemented in wiki20/model.py. Your stack trace is suggests you're implementing it in controllers.py. Technically, this should work if you simply add 'from sqlobject import *' near the top of controllers.py. However, this isn't the recommended route. Moving the definition into your model.py would be more typical. Kevin (or anyone else that might know), are the source files from the 20 minute wiki checked into SVN or otherwise posted on the website? Following the demo gets tricky because it goes so fast (which is exactly the point).

