-telemeta (1.2) unstable; urgency=low
+telemeta (1.3-1) unstable; urgency=low
+
+ * add related media objects to collections and items (mime type detection, image preview, URL only capable, YouTube URL detection and preview)
+ * add "Sound" filters to collection lists and search results
+ * add a scrollbar to marker lists
+ * add dependencies to setup.py
+ * various bugfixes
+ * developers now use Git
+
+-- Guillaume Pellerin <yomguy@parisson.com> Mon, 01 Dec 2011 17:10:22 +0200
+
+telemeta (1.2-1) unstable; urgency=low
* fix the whole setup
-==================
-Telemeta - INSTALL
-==================
+===========
+INSTALL
+===========
Don't worry, Telemeta is easy to setup as any other Django app !
-----------------
Telemeta is designed to run on Linux and other UNIX based architectures.
-It depends on several python librairies like Django (version >= 1.1.1).
+It depends on several python librairies like Django (version >= 1.3.1).
See http://djangoproject.com.
Other needed librairies are listed below.
+
-----------------------
Install the software
-----------------------
Install TimeSide
-----------------
-The web audio components provided by the TimeSide module have been automatically installed if you used pip or setup.py to install Telemeta.
-In this case only, you can pass this stage.
+The web audio components provided by the TimeSide module have been automatically installed if you used pip or setup.py to install Telemeta. In this case only, you can pass this stage.
Otherwise, you have to download and install it from source.
So, download the last archive at :
http://code.google.com/p/timeside/downloads/list
-Uncompress it and see README and INSTALL to install the dependencies
+Uncompress it and read README and INSTALL to install the dependencies
and then the module.
Install JSON-RPC server
------------------------
-In order to use markers on the player, you will need a JSON-RPC server for django::
+The JSON module provided by django-json-rpc have been automatically installed if you used pip or setup.py to install Telemeta. In this case only, you can pass this stage.
+
+Otherwise, you have to download and install it from source::
git clone git://github.com/samuraisam/django-json-rpc.git
cd django-json-rpc
python setup.py install
+
-------------------------
Fast testing (sandbox)
-------------------------
If you just want to test Telemeta, a sandbox is available in the example/ directory.
As Telemeta needs MySQL to work properly and fast, please create a database before editing setting.py
+
--------------------------
Or create a Django project
--------------------------
cd ~/my_projects
django-admin startproject mysite
+
-----------------------------------------
Create the media and cache directories
-----------------------------------------
You might want to place these data directories somewhere else, no pb.
+
------------------------
Create the database
------------------------
Telemeta needs MySQL to work well and fast. So you need to create a MySQL database before trying it.
+
----------------------------------
Configure the telemeta project
----------------------------------
example/sandbox/settings.py
+
--------------------------
Initialize the database
--------------------------
setup(
name = "Telemeta",
url = "http://telemeta.org",
- description = "a web Audio Content Management System",
+ description = "an open web audio CMS",
long_description = open('README.rst').read(),
- author = ["Guillaume Pellerin", "Olivier Guilyardi", "Riccardo Zaccarelli"],
- author_email = ["yomguy@parisson.com","olivier@samalyse.com", "riccardo.zaccarelli@gmail.com"],
+ author = "Guillaume Pellerin",
+ author_email = "yomguy@parisson.com",
version = telemeta.__version__,
install_requires = [
'timeside',
- 'Django>=1.2.5',
+ 'django>=1.3.1',
+ 'django-registration',
+ 'lxml',
+ 'django-json-rpc',
],
platforms=['OS Independent'],
license='CeCILL v2',