Browse Source

added AUTHORS CHANGELOG INSTALL LICENSE and README files

Natenom/support-murmur-13-1446181288462 v0.1
mistagee 15 years ago
parent
commit
29d110800a
  1. 7
      AUTHORS
  2. 11
      CHANGELOG
  3. 21
      INSTALL
  4. 28
      LICENSE
  5. 25
      README
  6. 1
      template/base.htm

7
AUTHORS

@ -0,0 +1,7 @@
The primary author of mumble-django is Michael Ziegler
<diese-addy@funzt-halt.net>.
Others who have contributed to the application:
* Thorvald Natvig (helped a million with the Debian packaging)

11
CHANGELOG

@ -0,0 +1,11 @@
=======================
mumble-django changelog
=======================
Version 0.1, 21 February 2009:
------------------------------
* Set up a Django project that uses the Mumble application to make use
easier for Django inexperienced users
* First official Release

21
INSTALL

@ -0,0 +1,21 @@
Thanks for downloading mumble-django.
To install the fully functional version, extract it to wherever you would
like it to reside. Alter settings.py to fit your needs (the most important
parts are the Database config and the TEMPLATE_DIRS), and then run:
python manage.py syncdb
If you need instructions on how to configure your web server in order to
serve this application, you can have a look at the Wiki at
<http://bitbucket.org/Svedrin/mumble-django/wiki/Webserver_Setup>. The wsgi
config file is already included as mumble-django.wsgi, but you will have to
alter the paths in this file.
Note that there is no need to use the same Database that Murmur itself uses,
as mumble-django exclusively uses DBus to connect to Murmur and does not
access Murmur's database directly.
Also note that this application requires Python 2.3 or later, and a
functional installation of Django 1.0 or newer. You can obtain Python
from http://www.python.org/ and Django from http://www.djangoproject.com/.

28
LICENSE

@ -0,0 +1,28 @@
Copyright (c) 2007-2008, Michael Ziegler
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the author nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

25
README

@ -0,0 +1,25 @@
============================================
Mumble-django -- A murmur config application
============================================
mumble-django is a Django web interface application that configures a
Murmur server. It is able to create and remove vservers, start/stop them,
and configure them.
Furthermore, registered Django users can sign up for user accounts on the
configured vservers and change their registration names and passwords.
This package contains a fully functional Django project that runs as a
standalone web application. Use this if you do not have a Django-driven
website that you could integrate mumble-django in.
The main Mumble application is a complete reusable Module of its own, so
integrating it in your own Django project is fairly easy if you're familiar
with the way Django works. To do this, you will need the following
directories:
* pyweb/mumble: The main application code
* template/mumble: The templates
* htdocs/mumble: Static content like images and CSS for the Channel Viewer
For installation instructions, see the file "INSTALL" in this
directory.

1
template/base.htm

@ -16,6 +16,7 @@
.
<a href="/accounts/login/" class="navi">Login</a> .
<a href="/admin/" class="navi">Admin</a> .
<a href="/mumble/" class="navi">Mumble</a> .
<a href="/accounts/profile/" class="navi">Profile</a> .
</div>
</div>

Loading…
Cancel
Save