> > Unfortunately the code blows up with current web2py - something about > 'updateable' views no longer being allowed. >
What does "updateable views" mean? Are you talking about generic views? If so, they can be enabled via the following in a model file: response.generic_patterns = ['*'] Though for security reasons, it's not recommended to be quite so liberal with allowing generic views. See http://web2py.com/books/default/chapter/29/10#Generic-views. If that's not the issue, have you actually tried version 1.77 (or other later versions) -- even if you app doesn't work with 1.99, it might work with some other earlier version. Anyway, perhaps Massimo has older versions available somewhere. Anthony

