The branch, build-baikal has been updated via 0d27975dc295831410a0a560b71d8acca1128667 (commit) from 789796abd42e49889abb9c625e42c950f29cef31 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: Makefile.pre-debuild | 2 +- TODO | 2 +- build-for-reprepro.sh | 2 +- debian/control | 2 +- debian/copyright | 2 +- debian/rules | 2 +- examples/x2go_resume_session.py | 2 +- examples/x2go_start_session.py | 2 +- setup.py | 2 +- test.py | 2 +- tests/__init__.py | 2 +- tests/runalltests.py | 2 +- tests/test_printing.py | 2 +- x2go/__init__.py | 2 +- x2go/backends/__init__.py | 2 +- x2go/backends/control/__init__.py | 2 +- x2go/backends/control/_stdout.py | 2 +- x2go/backends/info/__init__.py | 2 +- x2go/backends/info/_stdout.py | 2 +- x2go/backends/printing/__init__.py | 2 +- x2go/backends/printing/_file.py | 2 +- x2go/backends/printing/_gconf.py | 2 +- x2go/backends/printing/_winreg.py | 2 +- x2go/backends/profiles/__init__.py | 2 +- x2go/backends/profiles/_file.py | 2 +- x2go/backends/profiles/_gconf.py | 2 +- x2go/backends/profiles/_httpsbroker.py | 2 +- x2go/backends/profiles/_winreg.py | 2 +- x2go/backends/proxy/__init__.py | 2 +- x2go/backends/proxy/_nx3.py | 2 +- x2go/backends/proxy/base.py | 2 +- x2go/backends/settings/__init__.py | 2 +- x2go/backends/settings/_file.py | 2 +- x2go/backends/settings/_gconf.py | 2 +- x2go/backends/settings/_winreg.py | 2 +- x2go/backends/terminal/__init__.py | 2 +- x2go/backends/terminal/_stdout.py | 2 +- x2go/cache.py | 2 +- x2go/checkhosts.py | 2 +- x2go/cleanup.py | 2 +- x2go/client.py | 2 +- x2go/defaults.py | 2 +- x2go/dropbox.py | 2 +- x2go/dropboxactions.py | 2 +- x2go/forward.py | 2 +- x2go/gevent_subprocess.py | 2 +- x2go/guardian.py | 2 +- x2go/inifiles.py | 2 +- x2go/log.py | 2 +- x2go/printactions.py | 2 +- x2go/printqueue.py | 3 +-- x2go/pulseaudio.py | 2 +- x2go/registry.py | 2 +- x2go/rforward.py | 2 +- x2go/session.py | 2 +- x2go/sftpserver.py | 4 ++-- x2go/sshproxy.py | 2 +- x2go/utils.py | 2 +- x2go/x2go_exceptions.py | 2 +- x2go/xserver.py | 2 +- 60 files changed, 61 insertions(+), 62 deletions(-) The diff of changes is: diff --git a/Makefile.pre-debuild b/Makefile.pre-debuild index ea2ebee..0505780 100644 --- a/Makefile.pre-debuild +++ b/Makefile.pre-debuild @@ -1,6 +1,6 @@ #!/usr/bin/make -f # Makefile.pre-debuild file - for python-x2go -# Copyright 2010 by Mike Gabriel, GPLv3 applies to this file +# Copyright 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, GPLv3 applies to this file VERSION=`head -n1 debian/changelog | sed 's,.*(\(.*\)).*,\1,' | cut -d"-" -f1` DOC_HOST=packages.das-netzwerkteam.de diff --git a/TODO b/TODO index b5c061c..1ab675b 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -python-x2go - Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +python-x2go - Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Published under the terms of the GNU General Public License. See http://www.gnu.org/licenses/gpl.html for a recent copy. diff --git a/build-for-reprepro.sh b/build-for-reprepro.sh index e7a1220..78f6759 100644 --- a/build-for-reprepro.sh +++ b/build-for-reprepro.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # This programme is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/debian/control b/debian/control index 9a49629..e9c68bf 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: python-x2go Section: python Priority: optional -Maintainer: Mike Gabriel <m.gabriel@das-netzwerkteam.de> +Maintainer: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Build-Depends: debhelper (>= 7), python, python-setuptools, python-support, python-epydoc Standards-Version: 3.9.1 Homepage: http://das-netzwerkteam.de/site/?q=node/71 diff --git a/debian/copyright b/debian/copyright index a0aded4..e7b4495 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,4 +1,4 @@ -Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de +Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de Python X2go is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/debian/rules b/debian/rules index 8ffd8a2..2cd5ecd 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f # debian/rules file - for python-x2go # Based on sample debian/rules file - for GNU Hello (1.3). -# Copyright 2010 by Mike Gabriel +# Copyright 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> #PYVERS=$(shell pyversions -vr) diff --git a/examples/x2go_resume_session.py b/examples/x2go_resume_session.py index fa33c71..7353dac 100755 --- a/examples/x2go_resume_session.py +++ b/examples/x2go_resume_session.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/examples/x2go_start_session.py b/examples/x2go_start_session.py index 0e2b200..8d2aab0 100755 --- a/examples/x2go_start_session.py +++ b/examples/x2go_start_session.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/setup.py b/setup.py index e65fc14..1e22ee6 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/test.py b/test.py index fc21ff2..5078684 100644 --- a/test.py +++ b/test.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/__init__.py b/tests/__init__.py index a4129a8..ec92a8c 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/runalltests.py b/tests/runalltests.py index a2cb22b..275d2d8 100644 --- a/tests/runalltests.py +++ b/tests/runalltests.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_printing.py b/tests/test_printing.py index 4bd6a20..1eb788a 100644 --- a/tests/test_printing.py +++ b/tests/test_printing.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/__init__.py b/x2go/__init__.py index 02c974f..054d73b 100644 --- a/x2go/__init__.py +++ b/x2go/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/__init__.py b/x2go/backends/__init__.py index 6ae2e10..9b8b314 100644 --- a/x2go/backends/__init__.py +++ b/x2go/backends/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/control/__init__.py b/x2go/backends/control/__init__.py index 02c4845..7967887 100644 --- a/x2go/backends/control/__init__.py +++ b/x2go/backends/control/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/control/_stdout.py b/x2go/backends/control/_stdout.py index 7490809..b380aa0 100644 --- a/x2go/backends/control/_stdout.py +++ b/x2go/backends/control/_stdout.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/info/__init__.py b/x2go/backends/info/__init__.py index 48f01cf..9f99b7e 100644 --- a/x2go/backends/info/__init__.py +++ b/x2go/backends/info/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/info/_stdout.py b/x2go/backends/info/_stdout.py index 22a3141..b59880e 100644 --- a/x2go/backends/info/_stdout.py +++ b/x2go/backends/info/_stdout.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/printing/__init__.py b/x2go/backends/printing/__init__.py index db5dc76..c5e8da6 100644 --- a/x2go/backends/printing/__init__.py +++ b/x2go/backends/printing/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/printing/_file.py b/x2go/backends/printing/_file.py index 8134ae5..308b411 100644 --- a/x2go/backends/printing/_file.py +++ b/x2go/backends/printing/_file.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/printing/_gconf.py b/x2go/backends/printing/_gconf.py index 19a10d9..426c2c4 100644 --- a/x2go/backends/printing/_gconf.py +++ b/x2go/backends/printing/_gconf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/printing/_winreg.py b/x2go/backends/printing/_winreg.py index fe5e3d3..c7d739b 100644 --- a/x2go/backends/printing/_winreg.py +++ b/x2go/backends/printing/_winreg.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/profiles/__init__.py b/x2go/backends/profiles/__init__.py index 7e2c53f..0111e70 100644 --- a/x2go/backends/profiles/__init__.py +++ b/x2go/backends/profiles/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/profiles/_file.py b/x2go/backends/profiles/_file.py index c9c2064..fffdd7c 100644 --- a/x2go/backends/profiles/_file.py +++ b/x2go/backends/profiles/_file.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/profiles/_gconf.py b/x2go/backends/profiles/_gconf.py index f630639..32bfd5b 100644 --- a/x2go/backends/profiles/_gconf.py +++ b/x2go/backends/profiles/_gconf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/profiles/_httpsbroker.py b/x2go/backends/profiles/_httpsbroker.py index 26ffc45..ddf2f7d 100644 --- a/x2go/backends/profiles/_httpsbroker.py +++ b/x2go/backends/profiles/_httpsbroker.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/profiles/_winreg.py b/x2go/backends/profiles/_winreg.py index 66ba624..43d7dec 100644 --- a/x2go/backends/profiles/_winreg.py +++ b/x2go/backends/profiles/_winreg.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/proxy/__init__.py b/x2go/backends/proxy/__init__.py index a755e65..f7a60e4 100644 --- a/x2go/backends/proxy/__init__.py +++ b/x2go/backends/proxy/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/proxy/_nx3.py b/x2go/backends/proxy/_nx3.py index df5fb39..c5bd842 100644 --- a/x2go/backends/proxy/_nx3.py +++ b/x2go/backends/proxy/_nx3.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/proxy/base.py b/x2go/backends/proxy/base.py index 33a418f..567eecf 100644 --- a/x2go/backends/proxy/base.py +++ b/x2go/backends/proxy/base.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/settings/__init__.py b/x2go/backends/settings/__init__.py index e63d281..5bfae94 100644 --- a/x2go/backends/settings/__init__.py +++ b/x2go/backends/settings/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/settings/_file.py b/x2go/backends/settings/_file.py index eabc439..674aa58 100644 --- a/x2go/backends/settings/_file.py +++ b/x2go/backends/settings/_file.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/settings/_gconf.py b/x2go/backends/settings/_gconf.py index 3f3521a..9962b3e 100644 --- a/x2go/backends/settings/_gconf.py +++ b/x2go/backends/settings/_gconf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/settings/_winreg.py b/x2go/backends/settings/_winreg.py index d1f8906..a837640 100644 --- a/x2go/backends/settings/_winreg.py +++ b/x2go/backends/settings/_winreg.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/terminal/__init__.py b/x2go/backends/terminal/__init__.py index d3307d6..4e5b7fe 100644 --- a/x2go/backends/terminal/__init__.py +++ b/x2go/backends/terminal/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/backends/terminal/_stdout.py b/x2go/backends/terminal/_stdout.py index 567f332..7234c86 100644 --- a/x2go/backends/terminal/_stdout.py +++ b/x2go/backends/terminal/_stdout.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/cache.py b/x2go/cache.py index 57dc8b7..e6d0a56 100644 --- a/x2go/cache.py +++ b/x2go/cache.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/checkhosts.py b/x2go/checkhosts.py index 9ee815a..f0cf447 100644 --- a/x2go/checkhosts.py +++ b/x2go/checkhosts.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/cleanup.py b/x2go/cleanup.py index 8009116..e79cb4a 100644 --- a/x2go/cleanup.py +++ b/x2go/cleanup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/client.py b/x2go/client.py index c517f3f..d251610 100644 --- a/x2go/client.py +++ b/x2go/client.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify diff --git a/x2go/defaults.py b/x2go/defaults.py index ad972d5..85dd978 100644 --- a/x2go/defaults.py +++ b/x2go/defaults.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/dropbox.py b/x2go/dropbox.py index 7a7a08b..4767779 100644 --- a/x2go/dropbox.py +++ b/x2go/dropbox.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/dropboxactions.py b/x2go/dropboxactions.py index 2fb149b..a66817b 100644 --- a/x2go/dropboxactions.py +++ b/x2go/dropboxactions.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/forward.py b/x2go/forward.py index 13e6651..73018f4 100644 --- a/x2go/forward.py +++ b/x2go/forward.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/gevent_subprocess.py b/x2go/gevent_subprocess.py index c483f75..f6009ff 100644 --- a/x2go/gevent_subprocess.py +++ b/x2go/gevent_subprocess.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/guardian.py b/x2go/guardian.py index a068586..eba8811 100644 --- a/x2go/guardian.py +++ b/x2go/guardian.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/inifiles.py b/x2go/inifiles.py index e110366..e78af61 100644 --- a/x2go/inifiles.py +++ b/x2go/inifiles.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/log.py b/x2go/log.py index 7fecb99..be9e16b 100644 --- a/x2go/log.py +++ b/x2go/log.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/printactions.py b/x2go/printactions.py index 42b748b..3dfea51 100644 --- a/x2go/printactions.py +++ b/x2go/printactions.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/printqueue.py b/x2go/printqueue.py index c70a6fb..8e7940b 100644 --- a/x2go/printqueue.py +++ b/x2go/printqueue.py @@ -1,7 +1,6 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/pulseaudio.py b/x2go/pulseaudio.py index 95acb62..0c563f4 100644 --- a/x2go/pulseaudio.py +++ b/x2go/pulseaudio.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/registry.py b/x2go/registry.py index 8d134e7..1fcb148 100644 --- a/x2go/registry.py +++ b/x2go/registry.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/rforward.py b/x2go/rforward.py index 9a0d0fe..703a819 100644 --- a/x2go/rforward.py +++ b/x2go/rforward.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/session.py b/x2go/session.py index c225c60..79acd90 100644 --- a/x2go/session.py +++ b/x2go/session.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/sftpserver.py b/x2go/sftpserver.py index 79e335d..189f9d4 100644 --- a/x2go/sftpserver.py +++ b/x2go/sftpserver.py @@ -1,6 +1,6 @@ -#!/usr/bin/python +# -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # The Python X2go sFTPServer code was originally written by Richard Murri, # for further information see his website: http://www.richardmurri.com diff --git a/x2go/sshproxy.py b/x2go/sshproxy.py index 7ef8e63..1dadc18 100644 --- a/x2go/sshproxy.py +++ b/x2go/sshproxy.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/utils.py b/x2go/utils.py index c4f76ce..e3af44b 100644 --- a/x2go/utils.py +++ b/x2go/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/x2go_exceptions.py b/x2go/x2go_exceptions.py index 917e50e..a2d7968 100644 --- a/x2go/x2go_exceptions.py +++ b/x2go/x2go_exceptions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/x2go/xserver.py b/x2go/xserver.py index 6b59c5c..815acf3 100644 --- a/x2go/xserver.py +++ b/x2go/xserver.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2011 by Mike Gabriel <m.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # Python X2go is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by hooks/post-receive -- python-x2go.git (Python X2Go Client API) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "python-x2go.git" (Python X2Go Client API).