File: python-django-mumble.README.debian

package info (click to toggle)
mumble-django 2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,828 kB
  • ctags: 2,432
  • sloc: python: 3,460; sql: 160; sh: 143; makefile: 41
file content (28 lines) | stat: -rw-r--r-- 1,079 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
------------------------
Mumble-Django for Debian
------------------------

This package is part of Mumble-Django. It contains the core Django application
that handles all communication to the Mumble server.


Using Python-Django-Mumble:
---------------------------
This application is meant to be included in a Django project of your own. It
has been installed on the system to be on the pythonpath, so you can simply
import it in a Django project:
    >>> import mumble
    >>> from mumble.models import Mumble, MumbleUser

If you are instead looking for a full-featured web interface, you should install
Mumble-Django.

File locations:
---------------
- Code:            /usr/share/pyshared/mumble/
  This is the code for the application. All models and views can be found here.
- Static content:  /usr/share/pyshared-data/python-django-mumble/htdocs
  Images/CSS needed for the channel viewer.
- Templates:       /usr/share/pyshared-data/python-django-mumble/templates
  Templates for the channel viewer and the main page including the registration
  and server admin forms.