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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/GnuPGInterface.py4
-rw-r--r--src/common/__init__.py20
-rw-r--r--src/common/atom.py1
-rw-r--r--src/common/caps.py1
-rw-r--r--src/common/check_paths.py2
-rw-r--r--src/common/commands.py2
-rw-r--r--src/common/config.py3
-rw-r--r--src/common/configpaths.py3
-rw-r--r--src/common/connection.py5
-rw-r--r--src/common/connection_handlers.py3
-rw-r--r--src/common/contacts.py1
-rw-r--r--src/common/crypto.py2
-rw-r--r--src/common/dataforms.py2
-rw-r--r--src/common/dbus_support.py1
-rw-r--r--src/common/defs.py1
-rw-r--r--src/common/dh.py2
-rw-r--r--src/common/events.py1
-rw-r--r--src/common/exceptions.py2
-rwxr-xr-xsrc/common/fuzzyclock.py2
-rw-r--r--src/common/gajim.py3
-rw-r--r--src/common/helpers.py1
-rw-r--r--src/common/i18n.py2
-rw-r--r--src/common/logger.py2
-rw-r--r--src/common/nslookup.py1
-rw-r--r--src/common/optparser.py2
-rw-r--r--src/common/passwords.py4
-rw-r--r--src/common/pep.py1
-rw-r--r--src/common/proxy65_manager.py2
-rw-r--r--src/common/pubsub.py4
-rw-r--r--src/common/rst_xhtml_generator.py2
-rw-r--r--src/common/sleepy.py4
-rw-r--r--src/common/socks5.py1
-rw-r--r--src/common/stanza_session.py1
-rw-r--r--src/common/xmpp_stringprep.py2
34 files changed, 42 insertions, 48 deletions
diff --git a/src/common/GnuPGInterface.py b/src/common/GnuPGInterface.py
index e7b074558..f798d785b 100644
--- a/src/common/GnuPGInterface.py
+++ b/src/common/GnuPGInterface.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/GnuPGInterface.py
##
-## Copyright (C) 2001 Frank J. Tobin <ftobin@neverending.org>
+## Copyright (C) 2001 Frank J. Tobin <ftobin AT neverending.org>
## Copyright (C) 2005 Nikos Kouremenos <kourem AT gmail.com>
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2008 Jean-Marie Traissard <jim AT lapin.org>
-## Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/__init__.py b/src/common/__init__.py
index 5ef271917..de18c8159 100644
--- a/src/common/__init__.py
+++ b/src/common/__init__.py
@@ -1,22 +1,2 @@
-## src/common/__init__.py
-##
-## Copyright (C) 2005 Yann Leboulanger <asterix AT lagaule.org>
-## Nikos Kouremenos <kourem AT gmail.com>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
-##
-## This file is part of Gajim.
-##
-## Gajim is free software; you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published
-## by the Free Software Foundation; version 3 only.
-##
-## Gajim is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
-##
# vim: se ts=3:
diff --git a/src/common/atom.py b/src/common/atom.py
index 4b99d533a..ff9765b27 100644
--- a/src/common/atom.py
+++ b/src/common/atom.py
@@ -4,7 +4,6 @@
## Copyright (C) 2006 Jean-Marie Traissard <jim AT lapin.org>
## Tomasz Melcer <liori AT exroot.org>
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/caps.py b/src/common/caps.py
index abc7db94a..fe52704e0 100644
--- a/src/common/caps.py
+++ b/src/common/caps.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/caps.py
##
## Copyright (C) 2007 Tomasz Melcer <liori AT exroot.org>
diff --git a/src/common/check_paths.py b/src/common/check_paths.py
index 160fe4f70..4edca5d7f 100644
--- a/src/common/check_paths.py
+++ b/src/common/check_paths.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/check_paths.py
##
## Copyright (C) 2005-2006 Travis Shirk <travis AT pobox.com>
@@ -6,7 +7,6 @@
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
## Copyright (C) 2007 Tomasz Melcer <liori AT exroot.org>
## Copyright (C) 2008 Jean-Marie Traissard <jim AT lapin.org>
-## Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/commands.py b/src/common/commands.py
index 85d7e9b54..73dbd5b72 100644
--- a/src/common/commands.py
+++ b/src/common/commands.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/commands.py
##
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
## Tomasz Melcer <liori AT exroot.org>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
## Copyright (C) 2008 Brendan Taylor <whateley AT gmail.com>
-## Jonathan Schleifer <js-gajim AT webkeks.org>
## Stephan Erb <steve-e AT h3c.de>
##
## This file is part of Gajim.
diff --git a/src/common/config.py b/src/common/config.py
index f895c73d8..ed7e88f7a 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -1,8 +1,9 @@
+# -*- coding:utf-8 -*-
## src/common/config.py
##
## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2004-2005 Vincent Hanquez <tab AT snarc.org>
-## Copyright (C) 2005 Stephan Kochen <stephan AT kochen.nl>
+## Copyright (C) 2005 Stéphan Kochen <stephan AT kochen.nl>
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov AT gmail.com>
## Alex Mauer <hawke AT hawkesnest.net>
## Nikos Kouremenos <kourem AT gmail.com>
diff --git a/src/common/configpaths.py b/src/common/configpaths.py
index 311defe48..5f59fa4c5 100644
--- a/src/common/configpaths.py
+++ b/src/common/configpaths.py
@@ -1,7 +1,8 @@
+# -*- coding:utf-8 -*-
## src/common/configpaths.py
##
## Copyright (C) 2006 Jean-Marie Traissard <jim AT lapin.org>
-## Junglecow <junglecow AT gmail.com>
+## Junglecow J <junglecow AT gmail.com>
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Brendan Taylor <whateley AT gmail.com>
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
diff --git a/src/common/connection.py b/src/common/connection.py
index 5a0f0fff2..ecf39193c 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -1,13 +1,14 @@
+# -*- coding:utf-8 -*-
## src/common/connection.py
##
## Copyright (C) 2003-2005 Vincent Hanquez <tab AT snarc.org>
## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2005 Alex Mauer <hawke AT hawkesnest.net>
-## Stephan Kochen <stephan AT kochen.nl>
+## Stéphan Kochen <stephan AT kochen.nl>
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov AT gmail.com>
## Travis Shirk <travis AT pobox.com>
## Nikos Kouremenos <kourem AT gmail.com>
-## Copyright (C) 2006 Junglecow <junglecow AT gmail.com>
+## Copyright (C) 2006 Junglecow J <junglecow AT gmail.com>
## Stefan Bethge <stefan AT lanpartei.de>
## Copyright (C) 2006-2008 Jean-Marie Traissard <jim AT lapin.org>
## Copyright (C) 2007 Tomasz Melcer <liori AT exroot.org>
diff --git a/src/common/connection_handlers.py b/src/common/connection_handlers.py
index 2a575e046..361b4e9e5 100644
--- a/src/common/connection_handlers.py
+++ b/src/common/connection_handlers.py
@@ -1,7 +1,8 @@
+# -*- coding:utf-8 -*-
## src/common/connection_handlers.py
##
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
-## Junglecow <junglecow AT gmail.com>
+## Junglecow J <junglecow AT gmail.com>
## Copyright (C) 2006-2007 Tomasz Melcer <liori AT exroot.org>
## Travis Shirk <travis AT pobox.com>
## Nikos Kouremenos <kourem AT gmail.com>
diff --git a/src/common/contacts.py b/src/common/contacts.py
index 67b03fce8..944576096 100644
--- a/src/common/contacts.py
+++ b/src/common/contacts.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/contacts.py
##
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
diff --git a/src/common/crypto.py b/src/common/crypto.py
index 859b8ba15..2044cd9af 100644
--- a/src/common/crypto.py
+++ b/src/common/crypto.py
@@ -1,8 +1,8 @@
# common crypto functions (mostly specific to XEP-0116, but useful elsewhere)
+# -*- coding:utf-8 -*-
## src/common/crypto.py
##
## Copyright (C) 2007 Brendan Taylor <whateley AT gmail.com>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/dataforms.py b/src/common/dataforms.py
index 59f399815..144df2bab 100644
--- a/src/common/dataforms.py
+++ b/src/common/dataforms.py
@@ -1,10 +1,10 @@
# this will go to src/common/xmpp later, for now it is in src/common
+# -*- coding:utf-8 -*-
## src/common/dataforms.py
##
## Copyright (C) 2006-2007 Tomasz Melcer <liori AT exroot.org>
## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Stephan Erb <steve-e AT h3c.de>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/dbus_support.py b/src/common/dbus_support.py
index 76afe2d61..dd741c597 100644
--- a/src/common/dbus_support.py
+++ b/src/common/dbus_support.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/dbus_support.py
##
## Copyright (C) 2005 Andrew Sayman <lorien420 AT myrealbox.com>
diff --git a/src/common/defs.py b/src/common/defs.py
index 047f9202e..55a2b92bd 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/defs.py
##
## Copyright (C) 2006 Nikos Kouremenos <kourem AT gmail.com>
diff --git a/src/common/dh.py b/src/common/dh.py
index d371a5823..e9b30d32e 100644
--- a/src/common/dh.py
+++ b/src/common/dh.py
@@ -1,8 +1,8 @@
+# -*- coding:utf-8 -*-
## src/common/dh.py
##
## Copyright (C) 2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2008 Brendan Taylor <whateley AT gmail.com>
-## Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/events.py b/src/common/events.py
index 2741e30e4..26e47fadf 100644
--- a/src/common/events.py
+++ b/src/common/events.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/events.py
##
## Copyright (C) 2006 Jean-Marie Traissard <jim AT lapin.org>
diff --git a/src/common/exceptions.py b/src/common/exceptions.py
index 2a9b4247d..52c08b631 100644
--- a/src/common/exceptions.py
+++ b/src/common/exceptions.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/exceptions.py
##
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
## Copyright (C) 2005-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2006 Jean-Marie Traissard <jim AT lapin.org>
## Copyright (C) 2007 Brendan Taylor <whateley AT gmail.com>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/fuzzyclock.py b/src/common/fuzzyclock.py
index 8fd38f3c5..372681207 100755
--- a/src/common/fuzzyclock.py
+++ b/src/common/fuzzyclock.py
@@ -1,9 +1,9 @@
+# -*- coding:utf-8 -*-
## src/common/fuzzyclock.py
##
## Copyright (C) 2006 Christoph Neuroth <delmonico AT gmx.net>
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/gajim.py b/src/common/gajim.py
index a60b235b7..932a9ec13 100644
--- a/src/common/gajim.py
+++ b/src/common/gajim.py
@@ -1,10 +1,11 @@
+# -*- coding:utf-8 -*-
## src/common/gajim.py
##
## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov AT gmail.com>
## Travis Shirk <travis AT pobox.com>
## Nikos Kouremenos <kourem AT gmail.com>
-## Copyright (C) 2006 Junglecow <junglecow AT gmail.com>
+## Copyright (C) 2006 Junglecow J <junglecow AT gmail.com>
## Stefan Bethge <stefan AT lanpartei.de>
## Copyright (C) 2006-2008 Jean-Marie Traissard <jim AT lapin.org>
## Copyright (C) 2007-2008 Brendan Taylor <whateley AT gmail.com>
diff --git a/src/common/helpers.py b/src/common/helpers.py
index e0c999441..570b5213b 100644
--- a/src/common/helpers.py
+++ b/src/common/helpers.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/helpers.py
##
## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org>
diff --git a/src/common/i18n.py b/src/common/i18n.py
index 4d15e7536..b4c02ac41 100644
--- a/src/common/i18n.py
+++ b/src/common/i18n.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/i18n.py
##
## Copyright (C) 2003-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2004 Vincent Hanquez <tab AT snarc.org>
## Copyright (C) 2004-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/logger.py b/src/common/logger.py
index c917024ce..698e11f2f 100644
--- a/src/common/logger.py
+++ b/src/common/logger.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/logger.py
##
## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org>
@@ -7,7 +8,6 @@
## Copyright (C) 2006-2008 Jean-Marie Traissard <jim AT lapin.org>
## Copyright (C) 2007 Tomasz Melcer <liori AT exroot.org>
## Julien Pivotto <roidelapluie AT gmail.com>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/nslookup.py b/src/common/nslookup.py
index f5c2cbd76..e7b55ab98 100644
--- a/src/common/nslookup.py
+++ b/src/common/nslookup.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/nslookup.py
##
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
diff --git a/src/common/optparser.py b/src/common/optparser.py
index 5b017cbe6..52cb72937 100644
--- a/src/common/optparser.py
+++ b/src/common/optparser.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/optparser.py
##
## Copyright (C) 2003-2005 Vincent Hanquez <tab AT snarc.org>
@@ -9,7 +10,6 @@
## Brendan Taylor <whateley AT gmail.com>
## Tomasz Melcer <liori AT exroot.org>
## Stephan Erb <steve-e AT h3c.de>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/passwords.py b/src/common/passwords.py
index 9a48841ed..2acd536cc 100644
--- a/src/common/passwords.py
+++ b/src/common/passwords.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/passwords.py
##
## Copyright (C) 2006 Gustavo J. A. M. Carneiro <gjcarneiro AT gmail.com>
@@ -5,8 +6,7 @@
## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
## Julien Pivotto <roidelapluie AT gmail.com>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
-## Stephan Erb <steve-e AT h3c.de>
+## Copyright (C) 2008 Stephan Erb <steve-e AT h3c.de>
##
## This file is part of Gajim.
##
diff --git a/src/common/pep.py b/src/common/pep.py
index 9814c4937..24bd6ef35 100644
--- a/src/common/pep.py
+++ b/src/common/pep.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/pep.py
##
## Copyright (C) 2007 Piotr Gaczkowski <doomhammerng AT gmail.com>
diff --git a/src/common/proxy65_manager.py b/src/common/proxy65_manager.py
index 57b3a2f55..a3fd34ce2 100644
--- a/src/common/proxy65_manager.py
+++ b/src/common/proxy65_manager.py
@@ -1,9 +1,9 @@
+# -*- coding:utf-8 -*-
## src/common/proxy65_manager.py
##
## Copyright (C) 2006 Dimitur Kirov <dkirov AT gmail.com>
## Jean-Marie Traissard <jim AT lapin.org>
## Copyright (C) 2007 Yann Leboulanger <asterix AT lagaule.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/pubsub.py b/src/common/pubsub.py
index dfed21487..dad29d187 100644
--- a/src/common/pubsub.py
+++ b/src/common/pubsub.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/pubsub.py
##
## Copyright (C) 2006 Tomasz Melcer <liori AT exroot.org>
## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
-## Stephan Erb <steve-e AT h3c.de>
+## Copyright (C) 2008 Stephan Erb <steve-e AT h3c.de>
##
## This file is part of Gajim.
##
diff --git a/src/common/rst_xhtml_generator.py b/src/common/rst_xhtml_generator.py
index 2be34de8a..315b011ad 100644
--- a/src/common/rst_xhtml_generator.py
+++ b/src/common/rst_xhtml_generator.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/rst_xhtml_generator.py
##
## Copyright (C) 2006 Santiago Gala
## Nikos Kouremenos <kourem AT gmail.com>
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
diff --git a/src/common/sleepy.py b/src/common/sleepy.py
index a017600e6..0073908fd 100644
--- a/src/common/sleepy.py
+++ b/src/common/sleepy.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/sleepy.py
##
## Copyright (C) 2003-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
-## Mateusz Bilinski <mateusz AT bilinski.it>
+## Copyright (C) 2008 Mateusz Biliński <mateusz AT bilinski.it>
##
## This file is part of Gajim.
##
diff --git a/src/common/socks5.py b/src/common/socks5.py
index a8590a998..6787f2ffe 100644
--- a/src/common/socks5.py
+++ b/src/common/socks5.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/socks5.py
##
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov AT gmail.com>
diff --git a/src/common/stanza_session.py b/src/common/stanza_session.py
index 91e4b7f5c..7fe015073 100644
--- a/src/common/stanza_session.py
+++ b/src/common/stanza_session.py
@@ -1,3 +1,4 @@
+# -*- coding:utf-8 -*-
## src/common/stanza_session.py
##
## Copyright (C) 2007 Julien Pivotto <roidelapluie AT gmail.com>
diff --git a/src/common/xmpp_stringprep.py b/src/common/xmpp_stringprep.py
index 1ed1cb945..eb587dbca 100644
--- a/src/common/xmpp_stringprep.py
+++ b/src/common/xmpp_stringprep.py
@@ -1,10 +1,10 @@
+# -*- coding:utf-8 -*-
## src/common/xmpp_stringprep.py
##
## Copyright (C) 2001-2005 Twisted Matrix Laboratories
## Copyright (C) 2005-2007 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2006 Stefan Bethge <stefan AT lanpartei.de>
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
-## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##