+global-exclude *.pyc
+prune dist
+prune build
include AUTHORS.txt
include LICENSE.txt
include README.rst
recursive-include examples *
recursive-include tests *
recursive-exclude examples/sandbox/media *
-recursive-exclude * *.pyc
recursive-exclude * *.swp
recursive-exclude dist *
recursive-exclude build *
recursive-exclude tests/samples *
recursive-exclude tests/results *
recursive-exclude doc/build *
+global-exclude *.pyc
\ No newline at end of file
* General : http://files.parisson.com/timeside/doc/
* Tutorial : http://files.parisson.com/timeside/doc/tutorial/index.html
* API : http://files.parisson.com/timeside/doc/api/index.html
+* Publications : https://github.com/Parisson/Telemeta-doc
* Player / UI : https://github.com/Parisson/TimeSide/wiki/Ui-Guide (see also "Web player")
* Notebooks : http://nbviewer.ipython.org/github/thomasfillon/Timeside-demos/tree/master/
-* Usage : http://archives.crem-cnrs.fr/archives/items/CNRSMH_E_2004_017_001_01/
+* Example : http://archives.crem-cnrs.fr/archives/items/CNRSMH_E_2004_017_001_01/
Install
=======
* General : http://files.parisson.com/timeside/doc/
* Tutorial : http://files.parisson.com/timeside/doc/tutorial/index.html
* API : http://files.parisson.com/timeside/doc/api/index.html
+* Publications : https://github.com/Parisson/Telemeta-doc
* Player / UI : https://github.com/Parisson/TimeSide/wiki/Ui-Guide (see also "Web player")
* Notebooks : http://nbviewer.ipython.org/github/thomasfillon/Timeside-demos/tree/master/
-* Usage : http://archives.crem-cnrs.fr/archives/items/CNRSMH_E_2004_017_001_01/
+* Example : http://archives.crem-cnrs.fr/archives/items/CNRSMH_E_2004_017_001_01/
"""
import os, sys
+#os.environ[ 'MPLCONFIGDIR' ] = '/home/$USER/.matplotlib'
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
+# Force matplotlib to not use any Xwindows backend.
+import matplotlib
+matplotlib.use('Agg')
+
# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
-from django.core.wsgi import get_wsgi_application
-application = get_wsgi_application()
+import django.core.handlers.wsgi
+application = django.core.handlers.wsgi.WSGIHandler()
-# Apply WSGI middleware here.
-# from helloworld.wsgi import HelloWorldApplication
-# application = HelloWorldApplication(application)