does Nevow work with Twisted 2.x ?

I guess the subject says it all, I have the latest Twisted from svn and the latest Nevow from svn and I get lots of deprecation warnings and can't get any of the examples actually work

On Wed, Mar 16, 2005 at 11:15:08PM -0500, jarrod roberson wrote:
I guess the subject says it all, I have the latest Twisted from svn and the latest Nevow from svn and I get lots of deprecation warnings and can't get any of the examples actually work
Use python -W ignore at the top of twistd, my website works with SVN-trunk + nevow trunk, so far so good.

-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
You can do this without modifying twistd.
At the top of your code (your tac, probably)
import warnings; warnings.filterwarnings('ignore')
Andrea Arcangeli wrote: | On Wed, Mar 16, 2005 at 11:15:08PM -0500, jarrod roberson wrote: | |>I guess the subject says it all, I have the latest Twisted from svn |>and the latest Nevow from svn and I get lots of deprecation warnings |>and can't get any of the examples actually work | | | Use python -W ignore at the top of twistd, my website works with | SVN-trunk + nevow trunk, so far so good. | | _______________________________________________ | Twisted-web mailing list | Twisted-web@twistedmatrix.com | http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web

On Wed, 16 Mar 2005 23:15:08 -0500, jarrod roberson jarrod.roberson@gmail.com wrote:
I guess the subject says it all, I have the latest Twisted from svn and the latest Nevow from svn and I get lots of deprecation warnings and can't get any of the examples actually work
I have not looked at it much, but I can not get it to work either. For code that worked with twisted 1.3 and nevow 0.3 I get the following error
Failed to load application: type.__new__(MetaTypedInterface): MetaTypedInterface is not a subtype of type
I can post the entire thing if that will help, let me know.
Twisted-web mailing list Twisted-web@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web

On Thu, 17 Mar 2005 18:02:54 -0500, Christopher Zorn christopher.zorn@gmail.com wrote:
On Wed, 16 Mar 2005 23:15:08 -0500, jarrod roberson jarrod.roberson@gmail.com wrote:
I guess the subject says it all, I have the latest Twisted from svn and the latest Nevow from svn and I get lots of deprecation warnings and can't get any of the examples actually work
I have not looked at it much, but I can not get it to work either. For code that worked with twisted 1.3 and nevow 0.3 I get the following error
Failed to load application: type.__new__(MetaTypedInterface): MetaTypedInterface is not a subtype of type
I can post the entire thing if that will help, let me know.
Twisted 2.0 needs the zope.interface package
and I had to do a
from zope.interface import implements
and change all the __implements__ = to implements()

jarrod roberson wrote:
Twisted 2.0 needs the zope.interface package
and I had to do a
from zope.interface import implements
and change all the __implements__ = to implements()
Twisted needs this, not nevow. You must not convert any __implements__ to implements() in Nevow. You should use compy until after the next Nevow release, where you will be able to use implements().
participants (5)
-
Andrea Arcangeli
-
Christopher Zorn
-
Cory Dodt
-
jarrod roberson
-
Valentino Volonghi aka Dialtone