annotate sat_bridge/bridge.py @ 71:efe81b61673c

quick app: updatedValue wrong parameter fix
author Goffi <goffi@goffi.org>
date Sat, 06 Mar 2010 14:57:23 +1100
parents a5b5fb5fc9fd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
goffi@necton2
parents:
diff changeset
1 #!/usr/bin/python
goffi@necton2
parents:
diff changeset
2 #-*- coding: utf-8 -*-
goffi@necton2
parents:
diff changeset
3
goffi@necton2
parents:
diff changeset
4 """
goffi@necton2
parents:
diff changeset
5 SAT: a jabber client
57
a5b5fb5fc9fd updated README and copyright note
Goffi <goffi@goffi.org>
parents: 0
diff changeset
6 Copyright (C) 2009, 2010 Jérôme Poisson (goffi@goffi.org)
0
goffi@necton2
parents:
diff changeset
7
goffi@necton2
parents:
diff changeset
8 This program is free software: you can redistribute it and/or modify
goffi@necton2
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
goffi@necton2
parents:
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
goffi@necton2
parents:
diff changeset
11 (at your option) any later version.
goffi@necton2
parents:
diff changeset
12
goffi@necton2
parents:
diff changeset
13 This program is distributed in the hope that it will be useful,
goffi@necton2
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
goffi@necton2
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
goffi@necton2
parents:
diff changeset
16 GNU General Public License for more details.
goffi@necton2
parents:
diff changeset
17
goffi@necton2
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
goffi@necton2
parents:
diff changeset
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
goffi@necton2
parents:
diff changeset
20 """
goffi@necton2
parents:
diff changeset
21
goffi@necton2
parents:
diff changeset
22 from logging import debug, info, error
goffi@necton2
parents:
diff changeset
23
goffi@necton2
parents:
diff changeset
24 class Bridge:
goffi@necton2
parents:
diff changeset
25 def __init__(self):
goffi@necton2
parents:
diff changeset
26 info ("Bridge initialization")
goffi@necton2
parents:
diff changeset
27
goffi@necton2
parents:
diff changeset
28 ##signals
goffi@necton2
parents:
diff changeset
29 def newContact(self, contact):
goffi@necton2
parents:
diff changeset
30 raise NotImplementedError
goffi@necton2
parents:
diff changeset
31
goffi@necton2
parents:
diff changeset
32 def newMessage(self, from_jid, msg, type='chat'):
goffi@necton2
parents:
diff changeset
33 raise NotImplementedError
goffi@necton2
parents:
diff changeset
34
goffi@necton2
parents:
diff changeset
35 def presenceUpdate(self, type, jid, show, status, priority):
goffi@necton2
parents:
diff changeset
36 raise NotImplementedError
goffi@necton2
parents:
diff changeset
37
goffi@necton2
parents:
diff changeset
38 def paramUpdate(self, name, value):
goffi@necton2
parents:
diff changeset
39 raise NotImplementedError
goffi@necton2
parents:
diff changeset
40
goffi@necton2
parents:
diff changeset
41
goffi@necton2
parents:
diff changeset
42 ##methods
goffi@necton2
parents:
diff changeset
43 def connect(self):
goffi@necton2
parents:
diff changeset
44 raise NotImplementedError
goffi@necton2
parents:
diff changeset
45
goffi@necton2
parents:
diff changeset
46 def getContacts(self):
goffi@necton2
parents:
diff changeset
47 raise NotImplementedError
goffi@necton2
parents:
diff changeset
48
goffi@necton2
parents:
diff changeset
49 def getPresenceStatus(self):
goffi@necton2
parents:
diff changeset
50 raise NotImplementedError
goffi@necton2
parents:
diff changeset
51
goffi@necton2
parents:
diff changeset
52 def sendMessage(self):
goffi@necton2
parents:
diff changeset
53 raise NotImplementedError
goffi@necton2
parents:
diff changeset
54
goffi@necton2
parents:
diff changeset
55 def setPresence(self, to="", type="", show="", status="", priority=0):
goffi@necton2
parents:
diff changeset
56 raise NotImplementedError
goffi@necton2
parents:
diff changeset
57
goffi@necton2
parents:
diff changeset
58 def setParam(self, name, value, namespace):
goffi@necton2
parents:
diff changeset
59 raise NotImplementedError
goffi@necton2
parents:
diff changeset
60
goffi@necton2
parents:
diff changeset
61 def getParam(self, name, namespace):
goffi@necton2
parents:
diff changeset
62 raise NotImplementedError
goffi@necton2
parents:
diff changeset
63
goffi@necton2
parents:
diff changeset
64 def getParams(self, namespace):
goffi@necton2
parents:
diff changeset
65 raise NotImplementedError
goffi@necton2
parents:
diff changeset
66
goffi@necton2
parents:
diff changeset
67 def getHistory(self, from_jid, to_jid, size):
goffi@necton2
parents:
diff changeset
68 raise NotImplementedError