Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2010-10-20 12:08:09 +0400
committerDenis Fomin <fominde@gmail.com>2010-10-20 12:08:09 +0400
commit9182910da16216a8c7bb8808d11a83872d80378b (patch)
tree8e424a8513a42c21da03b3e3cba99ce895635749 /clients_icons
parent62ac20bcdf76fd3a7ab590d1b825e6c6e09bf31f (diff)
clients_icons. support Siemens Native Jabber Client
Diffstat (limited to 'clients_icons')
-rw-r--r--clients_icons/clients_icons.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/clients_icons/clients_icons.py b/clients_icons/clients_icons.py
index 50b7fbf..61415a6 100644
--- a/clients_icons/clients_icons.py
+++ b/clients_icons/clients_icons.py
@@ -71,7 +71,7 @@ clients = {
'http://2010.qip.ru/caps': 'qipinfium.png',
'http://qip.ru/caps': 'qipinfium.png',
'http://glu.net/': 'glu.png',
- '-Z-r': 'siejc.png',
+ 'Siemens': 'siejc.png',# Siemens Native Jabber Client
'telepathy.': 'telepathy.freedesktop.org.png',
'http://live.genome.org/empathy/caps': 'telepathy.freedesktop.org.png',
'http://telepathy.freedesktop.org/caps': 'telepathy.freedesktop.org.png',
@@ -224,7 +224,7 @@ class ClientsIconsPlugin(GajimPlugin):
if self.config['show_unknown_icon']:
model[iter_][pos] = self.default_pixbuf
return
- client_icon = clients.get(caps.split('#')[0], None)
+ client_icon = clients.get(caps.split('#')[0].split()[0], None)
if not client_icon:
if self.config['show_unknown_icon']:
model[iter_][pos] = self.default_pixbuf