~ubuntu-branches/ubuntu/natty/telepathy-haze/natty

« back to all changes in this revision

Viewing changes to tests/twisted/ns.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonny Lamb
  • Date: 2010-07-19 12:33:29 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20100719123329-lz52qtzku66jpw17
Tags: 0.3.6-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
DISCO_INFO = "http://jabber.org/protocol/disco#info"
6
6
DISCO_ITEMS = "http://jabber.org/protocol/disco#items"
7
7
FEATURE_NEG = 'http://jabber.org/protocol/feature-neg'
 
8
FILE_TRANSFER = 'http://jabber.org/protocol/si/profile/file-transfer'
 
9
GEOLOC = 'http://jabber.org/protocol/geoloc'
 
10
GOOGLE_FEAT_SESSION = 'http://www.google.com/xmpp/protocol/session'
 
11
GOOGLE_FEAT_SHARE = 'http://google.com/xmpp/protocol/share/v1'
 
12
GOOGLE_FEAT_VOICE = 'http://www.google.com/xmpp/protocol/voice/v1'
 
13
GOOGLE_FEAT_VIDEO = 'http://www.google.com/xmpp/protocol/video/v1'
8
14
GOOGLE_JINGLE_INFO = 'google:jingleinfo'
9
15
GOOGLE_P2P = "http://www.google.com/transport/p2p"
 
16
GOOGLE_QUEUE = 'google:queue'
10
17
GOOGLE_ROSTER = 'google:roster'
 
18
GOOGLE_SESSION = "http://www.google.com/session"
 
19
GOOGLE_SESSION_SHARE = "http://www.google.com/session/share"
 
20
GOOGLE_SESSION_PHONE = "http://www.google.com/session/phone"
 
21
GOOGLE_SESSION_VIDEO = "http://www.google.com/session/video"
 
22
GOOGLE_MAIL_NOTIFY = "google:mail:notify"
11
23
IBB = 'http://jabber.org/protocol/ibb'
12
 
JINGLE = "http://jabber.org/protocol/jingle"
13
 
JINGLE_AUDIO = "http://jabber.org/protocol/jingle/description/audio"
 
24
JINGLE_015 = "http://jabber.org/protocol/jingle"
 
25
JINGLE_015_AUDIO = "http://jabber.org/protocol/jingle/description/audio"
 
26
JINGLE_015_VIDEO = "http://jabber.org/protocol/jingle/description/video"
 
27
JINGLE = "urn:xmpp:jingle:1"
 
28
JINGLE_RTP = "urn:xmpp:jingle:apps:rtp:1"
 
29
JINGLE_RTP_AUDIO = "urn:xmpp:jingle:apps:rtp:audio"
 
30
JINGLE_RTP_VIDEO = "urn:xmpp:jingle:apps:rtp:video"
 
31
JINGLE_RTP_ERRORS = "urn:xmpp:jingle:apps:rtp:errors:1"
 
32
JINGLE_RTP_INFO_1 = "urn:xmpp:jingle:apps:rtp:info:1"
 
33
JINGLE_TRANSPORT_ICEUDP = "urn:xmpp:jingle:transports:ice-udp:1"
 
34
JINGLE_TRANSPORT_RAWUDP = "urn:xmpp:jingle:transports:raw-udp:1"
14
35
MUC = 'http://jabber.org/protocol/muc'
15
36
MUC_BYTESTREAM = 'http://telepathy.freedesktop.org/xmpp/protocol/muc-bytestream'
16
37
MUC_OWNER = '%s#owner' % MUC
17
38
MUC_USER = '%s#user' % MUC
 
39
NICK = "http://jabber.org/protocol/nick"
18
40
OLPC_ACTIVITIES = "http://laptop.org/xmpp/activities"
19
41
OLPC_ACTIVITIES_NOTIFY = "%s+notify" % OLPC_ACTIVITIES
20
42
OLPC_ACTIVITY = "http://laptop.org/xmpp/activity"
26
48
OLPC_CURRENT_ACTIVITY = "http://laptop.org/xmpp/current-activity"
27
49
OLPC_CURRENT_ACTIVITY_NOTIFY = "%s+notify" % OLPC_CURRENT_ACTIVITY
28
50
PUBSUB = "http://jabber.org/protocol/pubsub"
 
51
PUBSUB_EVENT = "%s#event" % PUBSUB
 
52
REGISTER = "jabber:iq:register"
 
53
ROSTER = "jabber:iq:roster"
 
54
SEARCH = 'jabber:iq:search'
29
55
SI = 'http://jabber.org/protocol/si'
30
56
SI_MULTIPLE = 'http://telepathy.freedesktop.org/xmpp/si-multiple'
31
57
STANZA = "urn:ietf:params:xml:ns:xmpp-stanzas"
 
58
STREAMS = "urn:ietf:params:xml:ns:xmpp-streams"
 
59
TEMPPRES = "urn:xmpp:temppres:0"
32
60
TUBES = 'http://telepathy.freedesktop.org/xmpp/tubes'
 
61
MUJI = 'http://telepathy.freedesktop.org/xmpp/muji'
 
62
VCARD_TEMP = 'vcard-temp'
 
63
VCARD_TEMP_UPDATE = 'vcard-temp:x:update'
33
64
X_DATA = 'jabber:x:data'
 
65
X_DELAY = 'jabber:x:delay'
 
66
XML = 'http://www.w3.org/XML/1998/namespace'
 
67
X_OOB = 'jabber:x:oob'
 
68
GABBLE_CAPS="http://telepathy.freedesktop.org/caps"