Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/chat
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-26 10:56:40 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-26 10:56:40 (GMT)
commit4f3e3a290c9c70ba18c43c5d01b497c483758ccc (patch)
treecf38f3a8fdc62045bec3b920d08fc47398fa71ee /sugar/chat
parent8ab45f697dd2af0a6598c73486b70c23ab618e4b (diff)
Remove unused MeshChat
Diffstat (limited to 'sugar/chat')
-rw-r--r--sugar/chat/Makefile.am1
-rw-r--r--sugar/chat/MeshChat.py15
2 files changed, 0 insertions, 16 deletions
diff --git a/sugar/chat/Makefile.am b/sugar/chat/Makefile.am
index 94b3d60..cf5fde4 100644
--- a/sugar/chat/Makefile.am
+++ b/sugar/chat/Makefile.am
@@ -10,7 +10,6 @@ sugar_PYTHON = \
ChatToolbar.py \
Emoticons.py \
GroupChat.py \
- MeshChat.py \
richtext.py
EXTRA_DIST = \
diff --git a/sugar/chat/MeshChat.py b/sugar/chat/MeshChat.py
deleted file mode 100644
index a9cb635..0000000
--- a/sugar/chat/MeshChat.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from sugar.chat.GroupChat import GroupChat
-from sugar.presence.Service import Service
-import sugar.env
-
-class MeshChat(GroupChat):
- SERVICE_TYPE = "_olpc_mesh_chat._udp"
- SERVICE_ADDRESS = "232.5.5.5"
- SERVICE_PORT = 6301
-
- def __init__(self):
- GroupChat.__init__(self)
-
- service = Service(sugar.env.get_nick_name(), MeshChat.SERVICE_TYPE,
- 'local', MeshChat.SERVICE_ADDRESS, MeshChat.SERVICE_PORT)
- self._setup_stream(service)