File: processors.py

package info (click to toggle)
mumble-django 2.7-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 14,220 kB
  • sloc: python: 4,800; sh: 162; sql: 160; makefile: 45; xml: 5
file content (36 lines) | stat: -rw-r--r-- 1,286 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
# kate: space-indent on; indent-width 4; replace-tabs on;

"""
 *  Copyright © 2009-2010, 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.
"""

def installed_apps(request):
    from django.conf import settings
    return { 'INSTALLED_APPS': settings.INSTALLED_APPS }

def mumble_version(request):
    from mumble import version_str
    return { 'CURRENTVERSION': version_str }

def mumble_media_prefix(request):
    from django.conf import settings
    return { 'MUMBLE_MEDIA_PREFIX': settings.MUMBLE_MEDIA_PREFIX,
             'MUMBLE_DJANGO_URL':   settings.MUMBLE_DJANGO_URL}

def theme_url(request):
    from django.conf import settings
    if settings.THEME:
        return { 'THEME_URL': settings.THEME_URL }
    else:
        return {}