# HG changeset patch # User Ralph Meijer # Date 1133882310 0 # Node ID ea8b4189ae3b825372abddbf23c9862be2647a22 # Parent f809b998c6f4449dd11f0e8c82cc53a910516522 Update to Twisted Words 0.3.0. diff -r f809b998c6f4 -r ea8b4189ae3b idavoll/data_form.py --- a/idavoll/data_form.py Wed Oct 05 07:02:40 2005 +0000 +++ b/idavoll/data_form.py Tue Dec 06 15:18:30 2005 +0000 @@ -1,4 +1,4 @@ -from twisted.xish import domish +from twisted.words.xish import domish NS_X_DATA = 'jabber:x:data' diff -r f809b998c6f4 -r ea8b4189ae3b idavoll/disco.py --- a/idavoll/disco.py Wed Oct 05 07:02:40 2005 +0000 +++ b/idavoll/disco.py Tue Dec 06 15:18:30 2005 +0000 @@ -1,4 +1,4 @@ -from twisted.xish import domish +from twisted.words.xish import domish NS = 'http://jabber.org/protocol/disco' NS_INFO = NS + '#info' diff -r f809b998c6f4 -r ea8b4189ae3b idavoll/generic_backend.py --- a/idavoll/generic_backend.py Wed Oct 05 07:02:40 2005 +0000 +++ b/idavoll/generic_backend.py Tue Dec 06 15:18:30 2005 +0000 @@ -2,8 +2,8 @@ import time import uuid from twisted.words.protocols.jabber import jid +from twisted.words.xish import utility from twisted.application import service -from twisted.xish import utility from twisted.internet import defer from zope.interface import implements import backend, storage diff -r f809b998c6f4 -r ea8b4189ae3b idavoll/pubsub.py --- a/idavoll/pubsub.py Wed Oct 05 07:02:40 2005 +0000 +++ b/idavoll/pubsub.py Tue Dec 06 15:18:30 2005 +0000 @@ -1,5 +1,5 @@ from twisted.words.protocols.jabber import component,jid -from twisted.xish import utility, domish +from twisted.words.xish import utility, domish from twisted.python import components from twisted.internet import defer from zope.interface import implements diff -r f809b998c6f4 -r ea8b4189ae3b idavoll/storage.py --- a/idavoll/storage.py Wed Oct 05 07:02:40 2005 +0000 +++ b/idavoll/storage.py Tue Dec 06 15:18:30 2005 +0000 @@ -1,6 +1,6 @@ from zope.interface import Interface from twisted.words.protocols.jabber import jid -from twisted.xish import domish +from twisted.words.xish import domish class Error(Exception): msg = None