From 16385e8a523f8656c1709002fc989491ceb7ed7d Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 16 Aug 2013 09:33:15 +0200 Subject: [PATCH] we release under GPL v3 --- src/common/jingle.py | 10 ++++++---- src/common/jingle_content.py | 10 ++++++---- src/common/jingle_ftstates.py | 10 ++++++---- src/common/jingle_rtp.py | 10 ++++++---- src/common/jingle_session.py | 10 ++++++---- src/common/jingle_transport.py | 10 ++++++---- src/common/multimedia_helpers.py | 10 ++++++---- 7 files changed, 42 insertions(+), 28 deletions(-) diff --git a/src/common/jingle.py b/src/common/jingle.py index 4e657b845..e14c8d042 100644 --- a/src/common/jingle.py +++ b/src/common/jingle.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2006 Gajim Team ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . """ Handles the jingle signalling protocol """ diff --git a/src/common/jingle_content.py b/src/common/jingle_content.py index df04d729f..141677085 100644 --- a/src/common/jingle_content.py +++ b/src/common/jingle_content.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2006 Gajim Team ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . """ Handles Jingle contents (XEP 0166) diff --git a/src/common/jingle_ftstates.py b/src/common/jingle_ftstates.py index a83ab9e30..94d39a993 100644 --- a/src/common/jingle_ftstates.py +++ b/src/common/jingle_ftstates.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2006 Gajim Team ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . import gajim import nbxmpp diff --git a/src/common/jingle_rtp.py b/src/common/jingle_rtp.py index 1691e2097..8df076f0e 100644 --- a/src/common/jingle_rtp.py +++ b/src/common/jingle_rtp.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2006 Gajim Team ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . """ Handles Jingle RTP sessions (XEP 0167) diff --git a/src/common/jingle_session.py b/src/common/jingle_session.py index a19056f9b..f497a453c 100644 --- a/src/common/jingle_session.py +++ b/src/common/jingle_session.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2006 Gajim Team ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . """ Handles Jingle sessions (XEP 0166) diff --git a/src/common/jingle_transport.py b/src/common/jingle_transport.py index b812fe471..b8c0f2016 100644 --- a/src/common/jingle_transport.py +++ b/src/common/jingle_transport.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2006 Gajim Team ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . """ Handles Jingle Transports (currently only ICE-UDP) diff --git a/src/common/multimedia_helpers.py b/src/common/multimedia_helpers.py index 59270f0d7..3c8798cbd 100644 --- a/src/common/multimedia_helpers.py +++ b/src/common/multimedia_helpers.py @@ -1,15 +1,17 @@ ## ## Copyright (C) 2009 Thibaut GIRKA ## -## This program is free software; you can redistribute it and/or modify +## 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 2 only. +## by the Free Software Foundation; version 3 only. ## -## This program is distributed in the hope that it will be useful, +## 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 +## 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 . import gst