Browse Source

add copyright headers

Natenom/support-murmur-13-1446181288462
Michael Ziegler 15 years ago
parent
commit
30080192cd
  1. 14
      pyweb/mumble/management/__init__.py
  2. 15
      pyweb/mumble/management/commands/__init__.py
  3. 14
      pyweb/mumble/management/commands/checkenv.py
  4. 4
      pyweb/settings.py

14
pyweb/mumble/management/__init__.py

@ -1,5 +1,19 @@
# -*- coding: utf-8 -*-
"""
* Copyright (C) 2009, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
*
* 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

15
pyweb/mumble/management/commands/__init__.py

@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
"""
* Copyright (C) 2009, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
*
* 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.
"""

14
pyweb/mumble/management/commands/checkenv.py

@ -1,5 +1,19 @@
# -*- coding: utf-8 -*-
"""
* Copyright (C) 2009, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
*
* 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

4
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

Loading…
Cancel
Save