gajim: branch for GSOC project of Jeff Ling

2009-05-18 Thread Yann Leboulanger
changeset e42f369de737 in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=e42f369de737
description: branch for GSOC project of Jeff LingX-Hg-Repo: gajim
Subject: gajim: Branch for GSOC project of Anaël Verrier
From: Yann Leboulanger 

changeset 20bbce413b8d in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=20bbce413b8d
description: Branch for GSOC project of Anaël Verrier
___
Commits mailing list
Commits@gajim.org
http://lists.gajim.org/cgi-bin/listinfo/commits


gajim: [Dicson] Don't try to translate empty string. Fixes #5032

2009-05-18 Thread Yann Leboulanger
changeset 72e11f979542 in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=72e11f979542
description: [Dicson] Don't try to translate empty string. Fixes #5032
diffstat:

 src/notify.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r f36942be7aca -r 72e11f979542 src/notify.py
--- a/src/notify.py Mon May 18 16:17:14 2009 +0200
+++ b/src/notify.py Mon May 18 22:33:09 2009 +0200
@@ -562,7 +562,7 @@
dbus.UInt32(0), 
# replaces_id (uint)
ntype,  
# event_id (string)
dbus.String(gajim_icon),
# app_icon (string)
-   dbus.String(_('')), 
# summary (string)
+   dbus.String(''),
# summary (string)
dbus.String(notification_text), # body (string)
# actions (stringlist)
(dbus.String('default'), 
dbus.String(self.event_type),
___
Commits mailing list
Commits@gajim.org
http://lists.gajim.org/cgi-bin/listinfo/commits


gajim: prevent traceback when notification daemon doesn't suppor...

2009-05-18 Thread Yann Leboulanger
changeset f36942be7aca in /home/hg/repos/gajim

details:http://hg.gajim.org/gajim?cmd=changeset;node=f36942be7aca
description: prevent traceback when notification daemon doesn't support 
GetCapabilities. Fixed #5015
diffstat:

 src/notify.py |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (12 lines):

diff -r ed03130710de -r f36942be7aca src/notify.py
--- a/src/notify.py Sun May 17 17:59:00 2009 +0200
+++ b/src/notify.py Mon May 18 16:17:14 2009 +0200
@@ -544,6 +544,8 @@
self.attempt_notify()
else:
self.capabilities = self.notif.GetCapabilities()
+   if self.capabilities is None:
+   self.capabilities = ['actions']
self.get_version()
 
def attempt_notify(self):
___
Commits mailing list
Commits@gajim.org
http://lists.gajim.org/cgi-bin/listinfo/commits