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:
-rw-r--r--AUTHORS1
-rw-r--r--src/chat_control.py5
-rw-r--r--src/common/config.py5
-rw-r--r--src/common/connection.py5
-rw-r--r--src/common/contacts.py6
-rw-r--r--src/common/events.py1
-rw-r--r--src/common/helpers.py6
-rw-r--r--src/common/optparser.py1
-rw-r--r--src/config.py1
-rw-r--r--src/dialogs.py3
-rw-r--r--src/features_window.py1
-rwxr-xr-xsrc/gajim.py5
-rw-r--r--src/gajim_themes_window.py1
-rw-r--r--src/groupchat_control.py3
-rw-r--r--src/gtkgui_helpers.py5
-rw-r--r--src/message_control.py1
-rw-r--r--src/message_window.py3
-rw-r--r--src/notify.py1
-rw-r--r--src/roster_window.py1
19 files changed, 36 insertions, 19 deletions
diff --git a/AUTHORS b/AUTHORS
index 9c646612b..ca8bfb650 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -3,6 +3,7 @@ CURRENT DEVELOPERS:
Yann Le Boulanger (asterix AT lagaule.org)
Nikos Kouremenos (kourem AT gmail.com)
Travis Shirk (travis AT pobox.com)
+Stephan Erb (steve-e AT h3c.de)
PAST DEVELOPERS:
diff --git a/src/chat_control.py b/src/chat_control.py
index 8d7e5a95b..5898c30dc 100644
--- a/src/chat_control.py
+++ b/src/chat_control.py
@@ -3,9 +3,10 @@
## Copyright (C) 2006 Yann Le Boulanger <asterix@lagaule.org>
## Copyright (C) 2006-2007 Nikos Kouremenos <kourem@gmail.com>
## Copyright (C) 2006 Travis Shirk <travis@pobox.com>
-## Copyright (C) 2006 Dimitur Kirov <dkirov@gmail.com>
+## Dimitur Kirov <dkirov@gmail.com>
## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
-## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
+## Julien Pivotto <roidelapluie@gmail.com>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/common/config.py b/src/common/config.py
index 082c31be0..e80eb4034 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -4,10 +4,11 @@
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
## Copyright (C) 2004-2005 Vincent Hanquez <tab@snarc.org>
## Copyright (C) 2005 Dimitur Kirov <dkirov@gmail.com>
-## Copyright (C) 2005 Travis Shirk <travis@pobox.com>
-## Copyright (C) 2005 Norman Rasmussen <norman@rasmussen.co.za>
+## Travis Shirk <travis@pobox.com>
+## Norman Rasmussen <norman@rasmussen.co.za>
## Copyright (C) 2006 Stefan Bethge <stefan@lanpartei.de>
## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/common/connection.py b/src/common/connection.py
index f7b3d01d8..26fd39af0 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -4,9 +4,10 @@
## Copyright (C) 2003-2004 Vincent Hanquez <tab@snarc.org>
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
-## Copyright (C) 2005-2006 Dimitur Kirov <dkirov@gmail.com>
-## Copyright (C) 2005-2006 Travis Shirk <travis@pobox.com>
+## Dimitur Kirov <dkirov@gmail.com>
+## Travis Shirk <travis@pobox.com>
## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/common/contacts.py b/src/common/contacts.py
index 35308da7f..524b076c8 100644
--- a/src/common/contacts.py
+++ b/src/common/contacts.py
@@ -1,10 +1,10 @@
## common/contacts.py
##
## Copyright (C) 2006 Yann Le Boulanger <asterix@lagaule.org>
-## Copyright (C) 2006 Nikos Kouremenos <kourem@gmail.com>
+## Nikos Kouremenos <kourem@gmail.com>
## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
-## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
-##
+## Julien Pivotto <roidelapluie@gmail.com>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/common/events.py b/src/common/events.py
index ddb7eef2e..cf570982f 100644
--- a/src/common/events.py
+++ b/src/common/events.py
@@ -9,6 +9,7 @@
## Dimitur Kirov <dkirov@gmail.com>
## Travis Shirk <travis@pobox.com>
## Norman Rasmussen <norman@rasmussen.co.za>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/common/helpers.py b/src/common/helpers.py
index 35f782ded..178b51302 100644
--- a/src/common/helpers.py
+++ b/src/common/helpers.py
@@ -2,11 +2,11 @@
##
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
-## Copyright (C) 2005
-## Dimitur Kirov <dkirov@gmail.com>
+## Copyright (C) 2005 Dimitur Kirov <dkirov@gmail.com>
## Travis Shirk <travis@pobox.com>
## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
-##
+## Stephan Erb <steve-e@h3c.de>
+##
## This program 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 2 only.
diff --git a/src/common/optparser.py b/src/common/optparser.py
index c5aaede3e..6123ab567 100644
--- a/src/common/optparser.py
+++ b/src/common/optparser.py
@@ -1,6 +1,7 @@
##
## Copyright (C) 2005-2006 Yann Le Boulanger <asterix@lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/config.py b/src/config.py
index 2f4f43988..2dd78654e 100644
--- a/src/config.py
+++ b/src/config.py
@@ -5,6 +5,7 @@
## Copyright (C) 2005 Dimitur Kirov <dkirov@gmail.com>
## Copyright (C) 2003-2005 Vincent Hanquez <tab@snarc.org>
## Copyright (C) 2006 Stefan Bethge <stefan@lanpartei.de>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/dialogs.py b/src/dialogs.py
index 99995f920..ab3425a7c 100644
--- a/src/dialogs.py
+++ b/src/dialogs.py
@@ -8,7 +8,8 @@
## Copyright (C) 2005-2006 Travis Shirk <travis@pobox.com>
## Copyright (C) 2005 Norman Rasmussen <norman@rasmussen.co.za>
## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
-## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
+## Julien Pivotto <roidelapluie@gmail.com>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/features_window.py b/src/features_window.py
index 1e1af2d55..49618c146 100644
--- a/src/features_window.py
+++ b/src/features_window.py
@@ -1,6 +1,7 @@
## features_window.py
##
## Copyright (C) 2007 Yann Le Boulanger <asterix@lagaule.org>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/gajim.py b/src/gajim.py
index 7a0587718..1c5983288 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -4,10 +4,11 @@
##
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
-## Copyright (C) 2005-2006 Dimitur Kirov <dkirov@gmail.com>
+## Dimitur Kirov <dkirov@gmail.com>
## Copyright (C) 2005 Travis Shirk <travis@pobox.com>
## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
-## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
+## Julien Pivotto <roidelapluie@gmail.com>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/gajim_themes_window.py b/src/gajim_themes_window.py
index 3454ee79f..15db1bc9e 100644
--- a/src/gajim_themes_window.py
+++ b/src/gajim_themes_window.py
@@ -13,6 +13,7 @@
## Dimitur Kirov <dkirov@gmail.com>
## Travis Shirk <travis@pobox.com>
## Norman Rasmussen <norman@rasmussen.co.za>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/groupchat_control.py b/src/groupchat_control.py
index 431a3f4cc..b2eda8c99 100644
--- a/src/groupchat_control.py
+++ b/src/groupchat_control.py
@@ -10,7 +10,8 @@
## Copyright (C) 2006 Travis Shirk <travis@pobox.com>
## Copyright (C) 2005-2007 Nikos Kouremenos <kourem@gmail.com>
## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
-## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
+## Lukas Petrovicky <lukas@petrovicky.net>
+## Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/gtkgui_helpers.py b/src/gtkgui_helpers.py
index 4be7a618e..b69e4cba9 100644
--- a/src/gtkgui_helpers.py
+++ b/src/gtkgui_helpers.py
@@ -4,8 +4,9 @@
## Copyright (C) 2004-2005 Vincent Hanquez <tab@snarc.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
## Copyright (C) 2005 Dimitur Kirov <dkirov@gmail.com>
-## Copyright (C) 2005 Travis Shirk <travis@pobox.com>
-## Copyright (C) 2005 Norman Rasmussen <norman@rasmussen.co.za>
+## Travis Shirk <travis@pobox.com>
+## Norman Rasmussen <norman@rasmussen.co.za>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/message_control.py b/src/message_control.py
index fe575a9d8..4489599fb 100644
--- a/src/message_control.py
+++ b/src/message_control.py
@@ -1,6 +1,7 @@
## message_control.py
##
## Copyright (C) 2006 Travis Shirk <travis@pobox.com>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/message_window.py b/src/message_window.py
index 1bd1d97da..b1deb10e1 100644
--- a/src/message_window.py
+++ b/src/message_window.py
@@ -9,7 +9,8 @@
## Travis Shirk <travis@pobox.com>
## Norman Rasmussen <norman@rasmussen.co.za>
## Copyright (C) 2006 Travis Shirk <travis@pobox.com>
-## Copyright (C) 2006 Geobert Quach <geobert@gmail.com>
+## Geobert Quach <geobert@gmail.com>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
diff --git a/src/notify.py b/src/notify.py
index a359bd5ff..813ff108c 100644
--- a/src/notify.py
+++ b/src/notify.py
@@ -3,6 +3,7 @@
## Copyright (C) 2005-2006 Yann Le Boulanger <asterix@lagaule.org>
## Copyright (C) 2005-2007 Nikos Kouremenos <kourem@gmail.com>
## Copyright (C) 2005-2006 Andrew Sayman <lorien420@myrealbox.com>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## Notification daemon connection via D-Bus code:
## Copyright (C) 2005 by Sebastian Estienne
diff --git a/src/roster_window.py b/src/roster_window.py
index 0d65adf18..ea5d58094 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -6,6 +6,7 @@
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov@gmail.com>
## Copyright (C) 2007 Lukas Petrovicky <lukas@petrovicky.net>
## Copyright (C) 2007 Julien Pivotto <roidelapluie@gmail.com>
+## Copyright (C) 2007 Stephan Erb <steve-e@h3c.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published