Guillaume Pellerin <yomguy@altern.org>
 Olivier Guilyardi <olivier@samalyse.com>
+Riccardo Zaccarelli <riccardo.zaccarelli@gmail.com>
 
 
 Licence
 =======
-CeCILL v2 (see COPYING)
+CeCILL v2 (see LICENSE)
 
 
 Bugs and feedback
 Sponsors
 ========
 
-The Telemeta project is developed by Parisson and Samalyse. It is sponsored by :
+The Telemeta project is developed by Parisson. It is sponsored by :
 
   * CNRS : Centre National de la Recherche Scientifique (the french Natianal Research and Scientific Center)
     http://cnrs.fr
     http://www.musee-europemediterranee.org
   * MMSH : Maison Méditerranéenne des Sciences de l'Homme
     http://www.mmsh.univ-aix.fr/
-  *  The Antropponet Project (ended)
 
+++ /dev/null
-#!/bin/sh
-# needs epydoc
-
-epydoc -n telemeta -u http://telemeta.org -o doc/html/ telemeta/
-
 
 
     class Meta(MetaCore):
         db_table = 'media_items'
-        ordering = ['code', 'old_code']
+#        ordering = ['code', 'old_code']
 
     def is_valid_code(self, code):
         "Check if the item code is well formed"
 
 web_view = WebView()
 
 # query sets for Django generic views
-all_items = { 'queryset': MediaItem.objects.enriched(), }
+all_items = { 'queryset': MediaItem.objects.enriched().order_by('code', 'old_code') }
 all_collections = { 'queryset': MediaCollection.objects.enriched(), }
 
 # CREM collections
 
             break
         yield __processor.chunk
 
-def stream_from_file(file):
+def stream_from_file(__file):
     chunk_size = 0x10000
-    f = open(file, 'r')
+    f = open(__file, 'r')
     while True:
         __chunk = f.read(chunk_size)
         if not len(__chunk):