This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 79ac8d0a6ad0847304f4108a5da71d250a3ec279 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 2 09:29:06 2019 +0100 misc: add vim file encoding modelines. --- bin/x2gobroker | 1 + bin/x2gobroker-testauth | 1 + docs/source/conf.py | 1 + man/man1/x2gobroker-testauth.1 | 1 + man/man1/x2gobroker.1 | 1 + man/man8/x2gobroker-authservice.8 | 1 + man/man8/x2gobroker-daemon-debug.8 | 1 + man/man8/x2gobroker-keygen.8 | 1 + man/man8/x2gobroker-loadchecker.8 | 1 + man/man8/x2gobroker-pubkeyauthorizer.8 | 1 + man/man8/x2gobroker-testagent.8 | 1 + sbin/x2gobroker-authservice | 1 + sbin/x2gobroker-daemon-debug | 1 + sbin/x2gobroker-keygen | 1 + sbin/x2gobroker-loadchecker | 1 + sbin/x2gobroker-pubkeyauthorizer | 1 + sbin/x2gobroker-testagent | 1 + setup.py | 1 + test.py | 1 + x2gobroker/__init__.py | 1 + x2gobroker/_paramiko.py | 1 + x2gobroker/agent.py | 1 + x2gobroker/authmechs/__init__.py | 1 + x2gobroker/authmechs/base_authmech.py | 1 + x2gobroker/authmechs/https_get_authmech.py | 1 + x2gobroker/authmechs/none_authmech.py | 1 + x2gobroker/authmechs/pam_authmech.py | 1 + x2gobroker/authmechs/testsuite_authmech.py | 1 + x2gobroker/authservice.py | 1 + x2gobroker/basicauth.py | 1 + x2gobroker/brokers/__init__.py | 1 + x2gobroker/brokers/base_broker.py | 1 + x2gobroker/brokers/inifile_broker.py | 1 + x2gobroker/brokers/zeroconf_broker.py | 1 + x2gobroker/client/__init__.py | 1 + x2gobroker/client/plain.py | 1 + x2gobroker/config.py | 1 + x2gobroker/defaults.py | 1 + x2gobroker/loadchecker.py | 1 + x2gobroker/loggers.py | 1 + x2gobroker/nameservices/__init__.py | 1 + x2gobroker/nameservices/base_nameservice.py | 1 + x2gobroker/nameservices/libnss_nameservice.py | 1 + x2gobroker/nameservices/testsuite_nameservice.py | 1 + x2gobroker/optional_scripts/__init__.py | 1 + x2gobroker/optional_scripts/base_script.py | 1 + x2gobroker/tests/__init__.py | 1 + x2gobroker/tests/runalltests.py | 1 + x2gobroker/tests/test_broker_agent.py | 1 + x2gobroker/tests/test_broker_base.py | 1 + x2gobroker/tests/test_broker_inifile.py | 1 + x2gobroker/tests/test_broker_zeroconf.py | 1 + x2gobroker/tests/test_client_plain_base.py | 1 + x2gobroker/tests/test_uccsjson.py | 1 + x2gobroker/tests/test_utils.py | 1 + x2gobroker/tests/test_web_plain_base.py | 1 + x2gobroker/tests/test_web_plain_inifile.py | 1 + x2gobroker/tests/test_web_plain_zeroconf.py | 1 + x2gobroker/tests/test_web_uccs_zeroconf.py | 1 + x2gobroker/uccsjson.py | 1 + x2gobroker/utils.py | 1 + x2gobroker/web/__init__.py | 1 + x2gobroker/web/extras.py | 1 + x2gobroker/web/json.py | 1 + x2gobroker/web/plain.py | 1 + x2gobroker/web/uccs.py | 1 + x2gobroker/x2gobroker_exceptions.py | 1 + 67 files changed, 67 insertions(+) diff --git a/bin/x2gobroker b/bin/x2gobroker index 9574ed4..d5e8bdb 100755 --- a/bin/x2gobroker +++ b/bin/x2gobroker @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/bin/x2gobroker-testauth b/bin/x2gobroker-testauth index 5f52b9d..107ff70 100755 --- a/bin/x2gobroker-testauth +++ b/bin/x2gobroker-testauth @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/docs/source/conf.py b/docs/source/conf.py index b896e24..bdf0f97 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # # X2Go Session Broker documentation build configuration file, created by # sphinx-quickstart on Fri Sep 7 08:45:37 2018. diff --git a/man/man1/x2gobroker-testauth.1 b/man/man1/x2gobroker-testauth.1 index a3f2d6a..83c7055 100644 --- a/man/man1/x2gobroker-testauth.1 +++ b/man/man1/x2gobroker-testauth.1 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man1/x2gobroker.1 b/man/man1/x2gobroker.1 index f15ecda..6933728 100644 --- a/man/man1/x2gobroker.1 +++ b/man/man1/x2gobroker.1 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man8/x2gobroker-authservice.8 b/man/man8/x2gobroker-authservice.8 index 171c3c9..fb4eb4e 100644 --- a/man/man8/x2gobroker-authservice.8 +++ b/man/man8/x2gobroker-authservice.8 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man8/x2gobroker-daemon-debug.8 b/man/man8/x2gobroker-daemon-debug.8 index 6a69dd8..3371824 100644 --- a/man/man8/x2gobroker-daemon-debug.8 +++ b/man/man8/x2gobroker-daemon-debug.8 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man8/x2gobroker-keygen.8 b/man/man8/x2gobroker-keygen.8 index 18dc78c..0be1284 100644 --- a/man/man8/x2gobroker-keygen.8 +++ b/man/man8/x2gobroker-keygen.8 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man8/x2gobroker-loadchecker.8 b/man/man8/x2gobroker-loadchecker.8 index de8ef81..8f73d74 100644 --- a/man/man8/x2gobroker-loadchecker.8 +++ b/man/man8/x2gobroker-loadchecker.8 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man8/x2gobroker-pubkeyauthorizer.8 b/man/man8/x2gobroker-pubkeyauthorizer.8 index f7d1e9a..98e4e47 100644 --- a/man/man8/x2gobroker-pubkeyauthorizer.8 +++ b/man/man8/x2gobroker-pubkeyauthorizer.8 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/man/man8/x2gobroker-testagent.8 b/man/man8/x2gobroker-testagent.8 index 5ffaf8f..999e094 100644 --- a/man/man8/x2gobroker-testagent.8 +++ b/man/man8/x2gobroker-testagent.8 @@ -1,4 +1,5 @@ '\" -*- coding: utf-8 -*- +'\" vim:fenc=utf-8 .if \n(.g .ds T< \\FC .if \n(.g .ds T> \\F[\n[.fam]] .de URL diff --git a/sbin/x2gobroker-authservice b/sbin/x2gobroker-authservice index f311dae..6703b32 100755 --- a/sbin/x2gobroker-authservice +++ b/sbin/x2gobroker-authservice @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/sbin/x2gobroker-daemon-debug b/sbin/x2gobroker-daemon-debug index 61163ac..6de68cd 100755 --- a/sbin/x2gobroker-daemon-debug +++ b/sbin/x2gobroker-daemon-debug @@ -1,5 +1,6 @@ #!/bin/bash # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/sbin/x2gobroker-keygen b/sbin/x2gobroker-keygen index 07086c6..b259e4c 100755 --- a/sbin/x2gobroker-keygen +++ b/sbin/x2gobroker-keygen @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/sbin/x2gobroker-loadchecker b/sbin/x2gobroker-loadchecker index 9335681..b209aea 100755 --- a/sbin/x2gobroker-loadchecker +++ b/sbin/x2gobroker-loadchecker @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/sbin/x2gobroker-pubkeyauthorizer b/sbin/x2gobroker-pubkeyauthorizer index 8da5b71..ff5c8c8 100755 --- a/sbin/x2gobroker-pubkeyauthorizer +++ b/sbin/x2gobroker-pubkeyauthorizer @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/sbin/x2gobroker-testagent b/sbin/x2gobroker-testagent index a436e94..333cc5c 100755 --- a/sbin/x2gobroker-testagent +++ b/sbin/x2gobroker-testagent @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/setup.py b/setup.py index 338dba2..f6d6054 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/test.py b/test.py index a1fa2e9..9f4b9d7 100755 --- a/test.py +++ b/test.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2014-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/__init__.py b/x2gobroker/__init__.py index cfdbd29..7d4cbc5 100644 --- a/x2gobroker/__init__.py +++ b/x2gobroker/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/_paramiko.py b/x2gobroker/_paramiko.py index c45c4ab..4eece92 100644 --- a/x2gobroker/_paramiko.py +++ b/x2gobroker/_paramiko.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/agent.py b/x2gobroker/agent.py index 55864a1..b267277 100644 --- a/x2gobroker/agent.py +++ b/x2gobroker/agent.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/authmechs/__init__.py b/x2gobroker/authmechs/__init__.py index a78bf12..14002d4 100644 --- a/x2gobroker/authmechs/__init__.py +++ b/x2gobroker/authmechs/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/authmechs/base_authmech.py b/x2gobroker/authmechs/base_authmech.py index ff344b9..4912106 100644 --- a/x2gobroker/authmechs/base_authmech.py +++ b/x2gobroker/authmechs/base_authmech.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/authmechs/https_get_authmech.py b/x2gobroker/authmechs/https_get_authmech.py index e2db510..fda9041 100644 --- a/x2gobroker/authmechs/https_get_authmech.py +++ b/x2gobroker/authmechs/https_get_authmech.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # Copyright (C) 2012-2019 by Josh Lukens <jlukens@botch.com> diff --git a/x2gobroker/authmechs/none_authmech.py b/x2gobroker/authmechs/none_authmech.py index 68607ab..2a17666 100644 --- a/x2gobroker/authmechs/none_authmech.py +++ b/x2gobroker/authmechs/none_authmech.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/authmechs/pam_authmech.py b/x2gobroker/authmechs/pam_authmech.py index 4b5ddcd..62309d9 100644 --- a/x2gobroker/authmechs/pam_authmech.py +++ b/x2gobroker/authmechs/pam_authmech.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/authmechs/testsuite_authmech.py b/x2gobroker/authmechs/testsuite_authmech.py index 2e060ea..fc1d749 100644 --- a/x2gobroker/authmechs/testsuite_authmech.py +++ b/x2gobroker/authmechs/testsuite_authmech.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/authservice.py b/x2gobroker/authservice.py index fe12ce6..28e6b83 100644 --- a/x2gobroker/authservice.py +++ b/x2gobroker/authservice.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/basicauth.py b/x2gobroker/basicauth.py index e8272e4..8a8c496 100644 --- a/x2gobroker/basicauth.py +++ b/x2gobroker/basicauth.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/brokers/__init__.py b/x2gobroker/brokers/__init__.py index 26a2a87..a3697d2 100644 --- a/x2gobroker/brokers/__init__.py +++ b/x2gobroker/brokers/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/brokers/base_broker.py b/x2gobroker/brokers/base_broker.py index a82ccf7..bccc91e 100644 --- a/x2gobroker/brokers/base_broker.py +++ b/x2gobroker/brokers/base_broker.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # Copyright (C) 2012-2019 by Josh Lukens <jlukens@botch.com> diff --git a/x2gobroker/brokers/inifile_broker.py b/x2gobroker/brokers/inifile_broker.py index e4128c5..e677ee7 100644 --- a/x2gobroker/brokers/inifile_broker.py +++ b/x2gobroker/brokers/inifile_broker.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/brokers/zeroconf_broker.py b/x2gobroker/brokers/zeroconf_broker.py index 881a8e4..da1b880 100644 --- a/x2gobroker/brokers/zeroconf_broker.py +++ b/x2gobroker/brokers/zeroconf_broker.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/client/__init__.py b/x2gobroker/client/__init__.py index 26a2a87..a3697d2 100644 --- a/x2gobroker/client/__init__.py +++ b/x2gobroker/client/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/client/plain.py b/x2gobroker/client/plain.py index 469300a..56f6c39 100644 --- a/x2gobroker/client/plain.py +++ b/x2gobroker/client/plain.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/config.py b/x2gobroker/config.py index 018eec3..1263fa9 100644 --- a/x2gobroker/config.py +++ b/x2gobroker/config.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/defaults.py b/x2gobroker/defaults.py index 2d1cd30..55d8538 100644 --- a/x2gobroker/defaults.py +++ b/x2gobroker/defaults.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/loadchecker.py b/x2gobroker/loadchecker.py index fc583b9..da5f108 100644 --- a/x2gobroker/loadchecker.py +++ b/x2gobroker/loadchecker.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/loggers.py b/x2gobroker/loggers.py index 6061091..5a1e971 100644 --- a/x2gobroker/loggers.py +++ b/x2gobroker/loggers.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/nameservices/__init__.py b/x2gobroker/nameservices/__init__.py index 26a2a87..a3697d2 100644 --- a/x2gobroker/nameservices/__init__.py +++ b/x2gobroker/nameservices/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/nameservices/base_nameservice.py b/x2gobroker/nameservices/base_nameservice.py index 5a63922..45b06d9 100644 --- a/x2gobroker/nameservices/base_nameservice.py +++ b/x2gobroker/nameservices/base_nameservice.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/nameservices/libnss_nameservice.py b/x2gobroker/nameservices/libnss_nameservice.py index 6832aae..14175a2 100644 --- a/x2gobroker/nameservices/libnss_nameservice.py +++ b/x2gobroker/nameservices/libnss_nameservice.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/nameservices/testsuite_nameservice.py b/x2gobroker/nameservices/testsuite_nameservice.py index fa7ca2a..d4f48bb 100644 --- a/x2gobroker/nameservices/testsuite_nameservice.py +++ b/x2gobroker/nameservices/testsuite_nameservice.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/optional_scripts/__init__.py b/x2gobroker/optional_scripts/__init__.py index a5c4c68..6c43beb 100755 --- a/x2gobroker/optional_scripts/__init__.py +++ b/x2gobroker/optional_scripts/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # Copyright (C) 2014 by Josh Lukens <jlukens@botch.com> diff --git a/x2gobroker/optional_scripts/base_script.py b/x2gobroker/optional_scripts/base_script.py index 9dcde93..861a537 100755 --- a/x2gobroker/optional_scripts/base_script.py +++ b/x2gobroker/optional_scripts/base_script.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # Copyright (C) 2014 by Josh Lukens <jlukens@botch.com> diff --git a/x2gobroker/tests/__init__.py b/x2gobroker/tests/__init__.py index dba87da..e778a8c 100644 --- a/x2gobroker/tests/__init__.py +++ b/x2gobroker/tests/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/runalltests.py b/x2gobroker/tests/runalltests.py index edbaaa2..210eff1 100644 --- a/x2gobroker/tests/runalltests.py +++ b/x2gobroker/tests/runalltests.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2010-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_broker_agent.py b/x2gobroker/tests/test_broker_agent.py index 45b6826..8d9e489 100644 --- a/x2gobroker/tests/test_broker_agent.py +++ b/x2gobroker/tests/test_broker_agent.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_broker_base.py b/x2gobroker/tests/test_broker_base.py index ed2f136..72f65de 100644 --- a/x2gobroker/tests/test_broker_base.py +++ b/x2gobroker/tests/test_broker_base.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_broker_inifile.py b/x2gobroker/tests/test_broker_inifile.py index 3aadb15..dbc7138 100644 --- a/x2gobroker/tests/test_broker_inifile.py +++ b/x2gobroker/tests/test_broker_inifile.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_broker_zeroconf.py b/x2gobroker/tests/test_broker_zeroconf.py index 3fd8c62..1d02e58 100644 --- a/x2gobroker/tests/test_broker_zeroconf.py +++ b/x2gobroker/tests/test_broker_zeroconf.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_client_plain_base.py b/x2gobroker/tests/test_client_plain_base.py index 3d95f54..64e9d1a 100644 --- a/x2gobroker/tests/test_client_plain_base.py +++ b/x2gobroker/tests/test_client_plain_base.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_uccsjson.py b/x2gobroker/tests/test_uccsjson.py index 40a96af..d339c4b 100644 --- a/x2gobroker/tests/test_uccsjson.py +++ b/x2gobroker/tests/test_uccsjson.py @@ -1 +1,2 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 diff --git a/x2gobroker/tests/test_utils.py b/x2gobroker/tests/test_utils.py index 5095524..f30c098 100644 --- a/x2gobroker/tests/test_utils.py +++ b/x2gobroker/tests/test_utils.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_web_plain_base.py b/x2gobroker/tests/test_web_plain_base.py index 2c947c1..d475e24 100644 --- a/x2gobroker/tests/test_web_plain_base.py +++ b/x2gobroker/tests/test_web_plain_base.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_web_plain_inifile.py b/x2gobroker/tests/test_web_plain_inifile.py index 3a55885..d7b2fe4 100644 --- a/x2gobroker/tests/test_web_plain_inifile.py +++ b/x2gobroker/tests/test_web_plain_inifile.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_web_plain_zeroconf.py b/x2gobroker/tests/test_web_plain_zeroconf.py index a22814c..265aaf1 100644 --- a/x2gobroker/tests/test_web_plain_zeroconf.py +++ b/x2gobroker/tests/test_web_plain_zeroconf.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/tests/test_web_uccs_zeroconf.py b/x2gobroker/tests/test_web_uccs_zeroconf.py index 3934bb4..61653d9 100644 --- a/x2gobroker/tests/test_web_uccs_zeroconf.py +++ b/x2gobroker/tests/test_web_uccs_zeroconf.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/uccsjson.py b/x2gobroker/uccsjson.py index 111311f..291049b 100644 --- a/x2gobroker/uccsjson.py +++ b/x2gobroker/uccsjson.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/utils.py b/x2gobroker/utils.py index 822e88c..e3c80db 100644 --- a/x2gobroker/utils.py +++ b/x2gobroker/utils.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/web/__init__.py b/x2gobroker/web/__init__.py index 26a2a87..a3697d2 100644 --- a/x2gobroker/web/__init__.py +++ b/x2gobroker/web/__init__.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # diff --git a/x2gobroker/web/extras.py b/x2gobroker/web/extras.py index 7ead981..bb62c5f 100644 --- a/x2gobroker/web/extras.py +++ b/x2gobroker/web/extras.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/web/json.py b/x2gobroker/web/json.py index cf138a2..18a6e1d 100644 --- a/x2gobroker/web/json.py +++ b/x2gobroker/web/json.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/web/plain.py b/x2gobroker/web/plain.py index 5eca650..9408d93 100644 --- a/x2gobroker/web/plain.py +++ b/x2gobroker/web/plain.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/web/uccs.py b/x2gobroker/web/uccs.py index cbaaf0f..2a3999d 100644 --- a/x2gobroker/web/uccs.py +++ b/x2gobroker/web/uccs.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # This file is part of the X2Go Project - https://www.x2go.org # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/x2gobroker/x2gobroker_exceptions.py b/x2gobroker/x2gobroker_exceptions.py index 08864e7..3dbf388 100644 --- a/x2gobroker/x2gobroker_exceptions.py +++ b/x2gobroker/x2gobroker_exceptions.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# vim:fenc=utf-8 # Copyright (C) 2012-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git