From 30080192cd64812a73c7e5a1b5c1a97d0430c9ba Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sun, 20 Sep 2009 00:45:20 +0200 Subject: [PATCH] add copyright headers --- pyweb/mumble/management/__init__.py | 14 ++++++++++++++ pyweb/mumble/management/commands/__init__.py | 15 +++++++++++++++ pyweb/mumble/management/commands/checkenv.py | 14 ++++++++++++++ pyweb/settings.py | 4 ++-- 4 files changed, 45 insertions(+), 2 deletions(-) diff --git a/pyweb/mumble/management/__init__.py b/pyweb/mumble/management/__init__.py index adb1c17..115ef89 100644 --- a/pyweb/mumble/management/__init__.py +++ b/pyweb/mumble/management/__init__.py @@ -1,5 +1,19 @@ # -*- coding: utf-8 -*- +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. +""" + from server_detect import find_existing_instances from django.db.models import signals from mumble import models diff --git a/pyweb/mumble/management/commands/__init__.py b/pyweb/mumble/management/commands/__init__.py index e69de29..fd17826 100644 --- a/pyweb/mumble/management/commands/__init__.py +++ b/pyweb/mumble/management/commands/__init__.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. +""" diff --git a/pyweb/mumble/management/commands/checkenv.py b/pyweb/mumble/management/commands/checkenv.py index 973b71b..a3ad9cb 100644 --- a/pyweb/mumble/management/commands/checkenv.py +++ b/pyweb/mumble/management/commands/checkenv.py @@ -1,5 +1,19 @@ # -*- coding: utf-8 -*- +""" + * Copyright (C) 2009, Michael "Svedrin" Ziegler + * + * Mumble-Django is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This package is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. +""" + import os from django.core.management.base import BaseCommand diff --git a/pyweb/settings.py b/pyweb/settings.py index 869e563..1ced8c6 100644 --- a/pyweb/settings.py +++ b/pyweb/settings.py @@ -53,8 +53,8 @@ if not MUMBLE_DJANGO_ROOT or not exists( MUMBLE_DJANGO_ROOT ): # The ICE interface version to use. -SLICE_VERSION = (1, 1, 8) -#SLICE_VERSION = (1, 2, 0) +#SLICE_VERSION = (1, 1, 8) +SLICE_VERSION = (1, 2, 0) # Murmur 1.2.0 is incompatible with 1.1.8, that's why this needs to be configured here. # If you have <=1.1.8 and 1.2.0 servers running simultaneously, consider using DBus for # the <=1.1.8 servers and ICE for 1.2.0. That way, you will be able to manage both server