[Pkg-voip-commits] r7101 - in /mumble-django/trunk/debian: mumble-django.README.Debian python-django-mumble.README.debian
svedrin-guest at alioth.debian.org
svedrin-guest at alioth.debian.org
Fri May 1 12:31:01 UTC 2009
Author: svedrin-guest
Date: Fri May 1 12:31:01 2009
New Revision: 7101
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=7101
Log:
added README files
Added:
mumble-django/trunk/debian/mumble-django.README.Debian
mumble-django/trunk/debian/python-django-mumble.README.debian
Added: mumble-django/trunk/debian/mumble-django.README.Debian
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/mumble-django.README.Debian?rev=7101&op=file
==============================================================================
--- mumble-django/trunk/debian/mumble-django.README.Debian (added)
+++ mumble-django/trunk/debian/mumble-django.README.Debian Fri May 1 12:31:01 2009
@@ -1,0 +1,37 @@
+------------------------
+Mumble-Django for Debian
+------------------------
+
+This package contains a Django project wrapped around python-mumble-django
+to provide a full web interface.
+
+
+Using Mumble-Django:
+--------------------
+After installation, open your web browser and point it to:
+ http://<yourserver>:8002/
+This address can be configured by altering the apache2.conf file shipped
+with this package.
+
+
+Updating the database:
+----------------------
+When you installed Mumble-Django, a first database update was done
+automatically to generate the database for you. If for some reason Mumble-
+Django was unable to contact your Mumble server, you will need to run this
+process manually to make sure your existing servers and users are detected.
+To do this, run the following commands:
+ cd /usr/share/mumble-django/pyweb
+ python manage.py syncdb
+
+
+File locations:
+---------------
+- Configs: /etc/mumble-django
+ - settings.py: main configuration for Mumble-Django.
+ - apache2.conf: VirtualHost config for the Apache2 web server.
+- Database: /var/lib/mumble-django
+ contains all data stored in the web interface.
+- Source code: /usr/share/mumble-django
+ contains all code necessary to run mumble-django.
+
Added: mumble-django/trunk/debian/python-django-mumble.README.debian
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/python-django-mumble.README.debian?rev=7101&op=file
==============================================================================
--- mumble-django/trunk/debian/python-django-mumble.README.debian (added)
+++ mumble-django/trunk/debian/python-django-mumble.README.debian Fri May 1 12:31:01 2009
@@ -1,0 +1,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.
More information about the Pkg-voip-commits
mailing list