annotate src/bridge/bridge.py @ 587:952322b1d490

Remove trailing whitespaces.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 18 Jan 2013 17:55:34 +0100
parents ca13633d3b6b
children 1f160467f5de
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
572
ca13633d3b6b dates update
Goffi <goffi@goffi.org>
parents: 568
diff changeset
6 Copyright (C) 2009, 2010, 2011, 2012, 2013 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
480
2a072735e459 Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents: 459
diff changeset
9 it under the terms of the GNU Affero General Public License as published by
0
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
480
2a072735e459 Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents: 459
diff changeset
16 GNU Affero General Public License for more details.
0
goffi@necton2
parents:
diff changeset
17
480
2a072735e459 Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents: 459
diff changeset
18 You should have received a copy of the GNU Affero General Public License
0
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
568
239abc5484c9 bridge: generic plugin methods handling for frontend side in D-Bus Bridge \o/
Goffi <goffi@goffi.org>
parents: 480
diff changeset
24 class Bridge(object):
0
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
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
29 def newContact(self, contact):
0
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
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
48
0
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
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
60
0
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
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
66
0
goffi@necton2
parents:
diff changeset
67 def getHistory(self, from_jid, to_jid, size):
goffi@necton2
parents:
diff changeset
68 raise NotImplementedError