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.
|