[X2Go-Commits] [x2gobroker] 01/05: misc: copyright update.
git-admin at x2go.org
git-admin at x2go.org
Sat Feb 2 20:46:23 CET 2019
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch master
in repository x2gobroker.
commit 2d5bd763c25219c0768ec60c0b2a64a3ab2d9695
Author: Mihai Moldovan <ionic at ionic.de>
Date: Sat Feb 2 07:21:40 2019 +0100
misc: copyright update.
---
Makefile | 2 +-
Makefile.docupload | 2 +-
bin/x2gobroker | 2 +-
bin/x2gobroker-testauth | 2 +-
debian/changelog | 1 +
debian/copyright | 8 ++++----
debian/rules | 2 +-
etc/broker/x2gobroker-authservice-logger.conf | 2 +-
etc/broker/x2gobroker-loadchecker-logger.conf | 2 +-
etc/broker/x2gobroker-loggers.conf | 2 +-
etc/x2gobroker.conf | 2 +-
init/x2gobroker-authservice.init | 2 +-
init/x2gobroker-daemon.init | 2 +-
init/x2gobroker-loadchecker.init | 2 +-
lib/x2gobroker-agent.pl | 2 +-
sbin/x2gobroker-authservice | 2 +-
sbin/x2gobroker-daemon-debug | 2 +-
sbin/x2gobroker-keygen | 2 +-
sbin/x2gobroker-loadchecker | 2 +-
sbin/x2gobroker-pubkeyauthorizer | 2 +-
sbin/x2gobroker-testagent | 2 +-
setup.py | 2 +-
src/x2gobroker-agent.c | 2 +-
src/x2gobroker-ssh.c | 2 +-
test.py | 2 +-
x2gobroker/__init__.py | 2 +-
x2gobroker/_paramiko.py | 2 +-
x2gobroker/agent.py | 2 +-
x2gobroker/authmechs/__init__.py | 2 +-
x2gobroker/authmechs/base_authmech.py | 2 +-
x2gobroker/authmechs/https_get_authmech.py | 4 ++--
x2gobroker/authmechs/none_authmech.py | 2 +-
x2gobroker/authmechs/pam_authmech.py | 2 +-
x2gobroker/authmechs/testsuite_authmech.py | 2 +-
x2gobroker/authservice.py | 2 +-
x2gobroker/basicauth.py | 2 +-
x2gobroker/brokers/__init__.py | 2 +-
x2gobroker/brokers/base_broker.py | 4 ++--
x2gobroker/brokers/inifile_broker.py | 2 +-
x2gobroker/brokers/zeroconf_broker.py | 2 +-
x2gobroker/client/__init__.py | 2 +-
x2gobroker/client/plain.py | 2 +-
x2gobroker/config.py | 2 +-
x2gobroker/defaults.py | 2 +-
x2gobroker/loadchecker.py | 2 +-
x2gobroker/loggers.py | 2 +-
x2gobroker/nameservices/__init__.py | 2 +-
x2gobroker/nameservices/base_nameservice.py | 2 +-
x2gobroker/nameservices/libnss_nameservice.py | 2 +-
x2gobroker/nameservices/testsuite_nameservice.py | 2 +-
x2gobroker/optional_scripts/__init__.py | 2 +-
x2gobroker/optional_scripts/base_script.py | 2 +-
x2gobroker/tests/__init__.py | 2 +-
x2gobroker/tests/runalltests.py | 2 +-
x2gobroker/tests/test_broker_agent.py | 2 +-
x2gobroker/tests/test_broker_base.py | 2 +-
x2gobroker/tests/test_broker_inifile.py | 2 +-
x2gobroker/tests/test_broker_zeroconf.py | 2 +-
x2gobroker/tests/test_client_plain_base.py | 2 +-
x2gobroker/tests/test_utils.py | 2 +-
x2gobroker/tests/test_web_plain_base.py | 2 +-
x2gobroker/tests/test_web_plain_inifile.py | 2 +-
x2gobroker/tests/test_web_plain_zeroconf.py | 2 +-
x2gobroker/tests/test_web_uccs_zeroconf.py | 2 +-
x2gobroker/uccsjson.py | 2 +-
x2gobroker/utils.py | 2 +-
x2gobroker/web/__init__.py | 2 +-
x2gobroker/web/extras.py | 2 +-
x2gobroker/web/json.py | 2 +-
x2gobroker/web/plain.py | 2 +-
x2gobroker/web/uccs.py | 2 +-
x2gobroker/x2gobroker_exceptions.py | 2 +-
72 files changed, 77 insertions(+), 76 deletions(-)
diff --git a/Makefile b/Makefile
index 23e50b8..07186f3 100755
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/Makefile.docupload b/Makefile.docupload
index 96ea17b..976ca16 100644
--- a/Makefile.docupload
+++ b/Makefile.docupload
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
# Makefile.docupload file - for python-x2gobroker
-# Copyright 2010-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>, GPLv3+ applies to this file
+# Copyright 2010-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>, GPLv3+ applies to this file
VERSION=`head -n1 debian/changelog | sed 's,.*(\(.*\)).*,\1,' | cut -d"-" -f1`
DOC_HOST=code.x2go.org
diff --git a/bin/x2gobroker b/bin/x2gobroker
index 9a9191f..317fcf5 100755
--- a/bin/x2gobroker
+++ b/bin/x2gobroker
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/bin/x2gobroker-testauth b/bin/x2gobroker-testauth
index 84a4750..3d33f81 100755
--- a/bin/x2gobroker-testauth
+++ b/bin/x2gobroker-testauth
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/debian/changelog b/debian/changelog
index 41a29ab..477b82c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -145,6 +145,7 @@ x2gobroker (0.0.4.0-0x2go1) UNRELEASED; urgency=medium
LDFLAGS values, even if passed in through the make command line.
- src/x2gobroker-{agent,ssh}.c: fix compile warnings/errors.
- src/x2gobroker-{agent,ssh}.c: fix more compile errors.
+ - misc: copyright update.
* x2gobroker.spec:
- Add %debug_package macro when debugging is to be enabled, hoping that it
will actually generate proper debuginfo (and -source) sub packages
diff --git a/debian/copyright b/debian/copyright
index 64f682d..94bb1b4 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -6,24 +6,24 @@ Source: http://code.x2go.org/releases/source/x2gobroker
Files: *
Copyright:
- 2012-2018, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+ 2012-2019, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
License: AGPL-3+
Files: x2gobroker/authmechs/https_get_authmech.py
x2gobroker/brokers/base_broker.py
x2gobroker/optional_scripts/__init__.py
x2gobroker/optional_scripts/base_script.py
-Copyright: 2012-2018, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+Copyright: 2012-2019, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
2014, Josh Lukens <jlukens at botch.com>
License: AGPL-3+
Files: lib/x2gobroker-agent.pl
-Copyright: 2012-2018, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+Copyright: 2012-2019, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
2012, Oleksandr Shneyder <oleksandr.schneyder at obviously-nice.de>
License: AGPL-3+
Files: debian/*
-Copyright: 2012-2018, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+Copyright: 2012-2019, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
License: AGPL-3+
License: AGPL-3+
diff --git a/debian/rules b/debian/rules
index a780b64..e49a7e8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/etc/broker/x2gobroker-authservice-logger.conf b/etc/broker/x2gobroker-authservice-logger.conf
index 844fe46..91f769a 100644
--- a/etc/broker/x2gobroker-authservice-logger.conf
+++ b/etc/broker/x2gobroker-authservice-logger.conf
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/etc/broker/x2gobroker-loadchecker-logger.conf b/etc/broker/x2gobroker-loadchecker-logger.conf
index d3fa75b..5f2f7a6 100644
--- a/etc/broker/x2gobroker-loadchecker-logger.conf
+++ b/etc/broker/x2gobroker-loadchecker-logger.conf
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/etc/broker/x2gobroker-loggers.conf b/etc/broker/x2gobroker-loggers.conf
index 7e6814c..bdcd811 100644
--- a/etc/broker/x2gobroker-loggers.conf
+++ b/etc/broker/x2gobroker-loggers.conf
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/etc/x2gobroker.conf b/etc/x2gobroker.conf
index 6501458..e6cd534 100644
--- a/etc/x2gobroker.conf
+++ b/etc/x2gobroker.conf
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/init/x2gobroker-authservice.init b/init/x2gobroker-authservice.init
index 98f75b4..53d474a 100755
--- a/init/x2gobroker-authservice.init
+++ b/init/x2gobroker-authservice.init
@@ -2,7 +2,7 @@
#
# Start the X2Go Session Broker PAM Authentication Service
#
-# Copyright © 2014-2018 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright © 2014-2019 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
# Distributable under the terms of the GNU AGPL version 3+.
#
### BEGIN INIT INFO
diff --git a/init/x2gobroker-daemon.init b/init/x2gobroker-daemon.init
index 14b2215..079b878 100755
--- a/init/x2gobroker-daemon.init
+++ b/init/x2gobroker-daemon.init
@@ -2,7 +2,7 @@
#
# Start the X2Go Session Broker standalone daemon
#
-# Copyright © 2012-2018 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright © 2012-2019 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
# Distributable under the terms of the GNU AGPL version 3+.
#
### BEGIN INIT INFO
diff --git a/init/x2gobroker-loadchecker.init b/init/x2gobroker-loadchecker.init
index 31e3301..ab84120 100755
--- a/init/x2gobroker-loadchecker.init
+++ b/init/x2gobroker-loadchecker.init
@@ -2,7 +2,7 @@
#
# Start the X2Go Session Broker Load Checker Service
#
-# Copyright © 2014-2018 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright © 2014-2019 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
# Distributable under the terms of the GNU AGPL version 3+.
#
### BEGIN INIT INFO
diff --git a/lib/x2gobroker-agent.pl b/lib/x2gobroker-agent.pl
index 3b2889d..f0624eb 100755
--- a/lib/x2gobroker-agent.pl
+++ b/lib/x2gobroker-agent.pl
@@ -2,7 +2,7 @@
# This file is part of the X2Go Project - http://www.x2go.org
# Copyright (C) 2011-2015 by Oleksandr Shneyder <oleksandr.shneyder at obviously-nice.de>
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/sbin/x2gobroker-authservice b/sbin/x2gobroker-authservice
index c80a86f..433d662 100755
--- a/sbin/x2gobroker-authservice
+++ b/sbin/x2gobroker-authservice
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/sbin/x2gobroker-daemon-debug b/sbin/x2gobroker-daemon-debug
index 0df520a..ac733db 100755
--- a/sbin/x2gobroker-daemon-debug
+++ b/sbin/x2gobroker-daemon-debug
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/sbin/x2gobroker-keygen b/sbin/x2gobroker-keygen
index 5fe716b..e4a322a 100755
--- a/sbin/x2gobroker-keygen
+++ b/sbin/x2gobroker-keygen
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/sbin/x2gobroker-loadchecker b/sbin/x2gobroker-loadchecker
index 98245f9..6f3aa24 100755
--- a/sbin/x2gobroker-loadchecker
+++ b/sbin/x2gobroker-loadchecker
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/sbin/x2gobroker-pubkeyauthorizer b/sbin/x2gobroker-pubkeyauthorizer
index 6624427..d5284d4 100755
--- a/sbin/x2gobroker-pubkeyauthorizer
+++ b/sbin/x2gobroker-pubkeyauthorizer
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/sbin/x2gobroker-testagent b/sbin/x2gobroker-testagent
index dfddca6..912de75 100755
--- a/sbin/x2gobroker-testagent
+++ b/sbin/x2gobroker-testagent
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/setup.py b/setup.py
index 245ebf1..70a837d 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/src/x2gobroker-agent.c b/src/x2gobroker-agent.c
index 39d7eda..32dc68e 100644
--- a/src/x2gobroker-agent.c
+++ b/src/x2gobroker-agent.c
@@ -1,6 +1,6 @@
/*
* This file is part of the X2Go Project - http://www.x2go.org
- * Copyright (C) 2012-2018 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+ * Copyright (C) 2012-2019 Mike Gabriel <mike.gabriel at das-netzwerkteam.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
diff --git a/src/x2gobroker-ssh.c b/src/x2gobroker-ssh.c
index e091980..e9a50d9 100644
--- a/src/x2gobroker-ssh.c
+++ b/src/x2gobroker-ssh.c
@@ -1,6 +1,6 @@
/*
* This file is part of the X2Go Project - http://www.x2go.org
- * Copyright (C) 2012-2018 Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+ * Copyright (C) 2012-2019 Mike Gabriel <mike.gabriel at das-netzwerkteam.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
diff --git a/test.py b/test.py
index f463672..a1fa2e9 100755
--- a/test.py
+++ b/test.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-# Copyright (C) 2014-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2014-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/__init__.py b/x2gobroker/__init__.py
index 59e5e81..cfdbd29 100644
--- a/x2gobroker/__init__.py
+++ b/x2gobroker/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/_paramiko.py b/x2gobroker/_paramiko.py
index 2f45db8..c45c4ab 100644
--- a/x2gobroker/_paramiko.py
+++ b/x2gobroker/_paramiko.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# Python X2Go is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/agent.py b/x2gobroker/agent.py
index 3647b8b..55864a1 100644
--- a/x2gobroker/agent.py
+++ b/x2gobroker/agent.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authmechs/__init__.py b/x2gobroker/authmechs/__init__.py
index 0d89658..a78bf12 100644
--- a/x2gobroker/authmechs/__init__.py
+++ b/x2gobroker/authmechs/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authmechs/base_authmech.py b/x2gobroker/authmechs/base_authmech.py
index 47d006d..ff344b9 100644
--- a/x2gobroker/authmechs/base_authmech.py
+++ b/x2gobroker/authmechs/base_authmech.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authmechs/https_get_authmech.py b/x2gobroker/authmechs/https_get_authmech.py
index 6e01ddf..e2db510 100644
--- a/x2gobroker/authmechs/https_get_authmech.py
+++ b/x2gobroker/authmechs/https_get_authmech.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
-# Copyright (C) 2012-2018 by Josh Lukens <jlukens at botch.com>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Josh Lukens <jlukens at botch.com>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authmechs/none_authmech.py b/x2gobroker/authmechs/none_authmech.py
index 147cef6..68607ab 100644
--- a/x2gobroker/authmechs/none_authmech.py
+++ b/x2gobroker/authmechs/none_authmech.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authmechs/pam_authmech.py b/x2gobroker/authmechs/pam_authmech.py
index d059aac..4b5ddcd 100644
--- a/x2gobroker/authmechs/pam_authmech.py
+++ b/x2gobroker/authmechs/pam_authmech.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authmechs/testsuite_authmech.py b/x2gobroker/authmechs/testsuite_authmech.py
index d3b2a7a..2e060ea 100644
--- a/x2gobroker/authmechs/testsuite_authmech.py
+++ b/x2gobroker/authmechs/testsuite_authmech.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/authservice.py b/x2gobroker/authservice.py
index 01cbf95..64da9c6 100644
--- a/x2gobroker/authservice.py
+++ b/x2gobroker/authservice.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/basicauth.py b/x2gobroker/basicauth.py
index f4da6aa..d519549 100644
--- a/x2gobroker/basicauth.py
+++ b/x2gobroker/basicauth.py
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/brokers/__init__.py b/x2gobroker/brokers/__init__.py
index 6c377e8..26a2a87 100644
--- a/x2gobroker/brokers/__init__.py
+++ b/x2gobroker/brokers/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/brokers/base_broker.py b/x2gobroker/brokers/base_broker.py
index f70c558..a82ccf7 100644
--- a/x2gobroker/brokers/base_broker.py
+++ b/x2gobroker/brokers/base_broker.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
-# Copyright (C) 2012-2018 by Josh Lukens <jlukens at botch.com>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Josh Lukens <jlukens at botch.com>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/brokers/inifile_broker.py b/x2gobroker/brokers/inifile_broker.py
index 918d0d7..e4128c5 100644
--- a/x2gobroker/brokers/inifile_broker.py
+++ b/x2gobroker/brokers/inifile_broker.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/brokers/zeroconf_broker.py b/x2gobroker/brokers/zeroconf_broker.py
index 697a800..881a8e4 100644
--- a/x2gobroker/brokers/zeroconf_broker.py
+++ b/x2gobroker/brokers/zeroconf_broker.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/client/__init__.py b/x2gobroker/client/__init__.py
index 6c377e8..26a2a87 100644
--- a/x2gobroker/client/__init__.py
+++ b/x2gobroker/client/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/client/plain.py b/x2gobroker/client/plain.py
index ec4e8d5..2534286 100644
--- a/x2gobroker/client/plain.py
+++ b/x2gobroker/client/plain.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/config.py b/x2gobroker/config.py
index f518d24..018eec3 100644
--- a/x2gobroker/config.py
+++ b/x2gobroker/config.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/defaults.py b/x2gobroker/defaults.py
index 1615354..2d1cd30 100644
--- a/x2gobroker/defaults.py
+++ b/x2gobroker/defaults.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/loadchecker.py b/x2gobroker/loadchecker.py
index b672e80..1ccc891 100644
--- a/x2gobroker/loadchecker.py
+++ b/x2gobroker/loadchecker.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/loggers.py b/x2gobroker/loggers.py
index fa06bf0..6061091 100644
--- a/x2gobroker/loggers.py
+++ b/x2gobroker/loggers.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/nameservices/__init__.py b/x2gobroker/nameservices/__init__.py
index 6c377e8..26a2a87 100644
--- a/x2gobroker/nameservices/__init__.py
+++ b/x2gobroker/nameservices/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/nameservices/base_nameservice.py b/x2gobroker/nameservices/base_nameservice.py
index 2f7920b..5a63922 100644
--- a/x2gobroker/nameservices/base_nameservice.py
+++ b/x2gobroker/nameservices/base_nameservice.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/nameservices/libnss_nameservice.py b/x2gobroker/nameservices/libnss_nameservice.py
index 3c7622a..6832aae 100644
--- a/x2gobroker/nameservices/libnss_nameservice.py
+++ b/x2gobroker/nameservices/libnss_nameservice.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/nameservices/testsuite_nameservice.py b/x2gobroker/nameservices/testsuite_nameservice.py
index 70e5d96..fa7ca2a 100644
--- a/x2gobroker/nameservices/testsuite_nameservice.py
+++ b/x2gobroker/nameservices/testsuite_nameservice.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/optional_scripts/__init__.py b/x2gobroker/optional_scripts/__init__.py
index d6862c2..a5c4c68 100755
--- a/x2gobroker/optional_scripts/__init__.py
+++ b/x2gobroker/optional_scripts/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
# Copyright (C) 2014 by Josh Lukens <jlukens at botch.com>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
diff --git a/x2gobroker/optional_scripts/base_script.py b/x2gobroker/optional_scripts/base_script.py
index 92b31e5..9dcde93 100755
--- a/x2gobroker/optional_scripts/base_script.py
+++ b/x2gobroker/optional_scripts/base_script.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
# Copyright (C) 2014 by Josh Lukens <jlukens at botch.com>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
diff --git a/x2gobroker/tests/__init__.py b/x2gobroker/tests/__init__.py
index 7d2121e..dba87da 100644
--- a/x2gobroker/tests/__init__.py
+++ b/x2gobroker/tests/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/runalltests.py b/x2gobroker/tests/runalltests.py
index af324a7..edbaaa2 100644
--- a/x2gobroker/tests/runalltests.py
+++ b/x2gobroker/tests/runalltests.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_broker_agent.py b/x2gobroker/tests/test_broker_agent.py
index c3c4552..45b6826 100644
--- a/x2gobroker/tests/test_broker_agent.py
+++ b/x2gobroker/tests/test_broker_agent.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_broker_base.py b/x2gobroker/tests/test_broker_base.py
index 769e37c..2038495 100644
--- a/x2gobroker/tests/test_broker_base.py
+++ b/x2gobroker/tests/test_broker_base.py
@@ -1,5 +1,5 @@
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_broker_inifile.py b/x2gobroker/tests/test_broker_inifile.py
index 41462f4..3aadb15 100644
--- a/x2gobroker/tests/test_broker_inifile.py
+++ b/x2gobroker/tests/test_broker_inifile.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_broker_zeroconf.py b/x2gobroker/tests/test_broker_zeroconf.py
index 4d95325..3fd8c62 100644
--- a/x2gobroker/tests/test_broker_zeroconf.py
+++ b/x2gobroker/tests/test_broker_zeroconf.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_client_plain_base.py b/x2gobroker/tests/test_client_plain_base.py
index c6c3c9f..3d95f54 100644
--- a/x2gobroker/tests/test_client_plain_base.py
+++ b/x2gobroker/tests/test_client_plain_base.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_utils.py b/x2gobroker/tests/test_utils.py
index 7d347bd..5095524 100644
--- a/x2gobroker/tests/test_utils.py
+++ b/x2gobroker/tests/test_utils.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_web_plain_base.py b/x2gobroker/tests/test_web_plain_base.py
index 35b2718..2c947c1 100644
--- a/x2gobroker/tests/test_web_plain_base.py
+++ b/x2gobroker/tests/test_web_plain_base.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_web_plain_inifile.py b/x2gobroker/tests/test_web_plain_inifile.py
index 7bdd15d..3a55885 100644
--- a/x2gobroker/tests/test_web_plain_inifile.py
+++ b/x2gobroker/tests/test_web_plain_inifile.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_web_plain_zeroconf.py b/x2gobroker/tests/test_web_plain_zeroconf.py
index eabdc44..a22814c 100644
--- a/x2gobroker/tests/test_web_plain_zeroconf.py
+++ b/x2gobroker/tests/test_web_plain_zeroconf.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/tests/test_web_uccs_zeroconf.py b/x2gobroker/tests/test_web_uccs_zeroconf.py
index 1e47bb6..3934bb4 100644
--- a/x2gobroker/tests/test_web_uccs_zeroconf.py
+++ b/x2gobroker/tests/test_web_uccs_zeroconf.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/uccsjson.py b/x2gobroker/uccsjson.py
index fe09e54..111311f 100644
--- a/x2gobroker/uccsjson.py
+++ b/x2gobroker/uccsjson.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/utils.py b/x2gobroker/utils.py
index 3e16985..822e88c 100644
--- a/x2gobroker/utils.py
+++ b/x2gobroker/utils.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/web/__init__.py b/x2gobroker/web/__init__.py
index 6c377e8..26a2a87 100644
--- a/x2gobroker/web/__init__.py
+++ b/x2gobroker/web/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/web/extras.py b/x2gobroker/web/extras.py
index 627ff78..46d16be 100644
--- a/x2gobroker/web/extras.py
+++ b/x2gobroker/web/extras.py
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/web/json.py b/x2gobroker/web/json.py
index 28b7fd4..8be0506 100644
--- a/x2gobroker/web/json.py
+++ b/x2gobroker/web/json.py
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/web/plain.py b/x2gobroker/web/plain.py
index 6183672..17dd843 100644
--- a/x2gobroker/web/plain.py
+++ b/x2gobroker/web/plain.py
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/web/uccs.py b/x2gobroker/web/uccs.py
index c1189f5..b528135 100644
--- a/x2gobroker/web/uccs.py
+++ b/x2gobroker/web/uccs.py
@@ -1,5 +1,5 @@
# This file is part of the X2Go Project - http://www.x2go.org
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/x2gobroker/x2gobroker_exceptions.py b/x2gobroker/x2gobroker_exceptions.py
index b6e866e..08864e7 100644
--- a/x2gobroker/x2gobroker_exceptions.py
+++ b/x2gobroker/x2gobroker_exceptions.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2018 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+# Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
#
# X2Go Session Broker is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
More information about the x2go-commits
mailing list