From: yomguy <> Date: Wed, 27 Aug 2008 21:22:18 +0000 (+0000) Subject: * Add dependency : python-imaging (>= 1.1.6) X-Git-Tag: 1.1~808 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=99e0dfaf65dc09c8107c77e640f8a813c4022534;p=telemeta.git * Add dependency : python-imaging (>= 1.1.6) --- diff --git a/debian/control b/debian/control index eef2968c..2dbf0e82 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Standards-Version: 3.7.3 Package: telemeta Architecture: any -Depends: ${python:Depends}, python-xml, python-mutagen, python-django (>= 0.96.2), sox, vorbis-tools, flac, normalize-audio, python-mysqldb, mysql-server, octave2.9, python-tk, libgd2-xpm, libsndfile1 (>= 1.0.17), python-numpy, python-ctypes (>= 1.0.1), vamp-examples +Depends: ${python:Depends}, python-xml, python-mutagen, python-django (>= 0.96.2), python-imaging (>= 1.1.6), sox, vorbis-tools, flac, normalize-audio, python-mysqldb, mysql-server, octave2.9, python-tk, libgd2-xpm, libsndfile1 (>= 1.0.17), python-numpy, python-ctypes (>= 1.0.1), vamp-examples Recommends: lame Suggests: ecasound, festival, par2 Description: web frontend to backup, transcode and tag any audio content with metadata diff --git a/telemeta/htdocs/js/multiform.js b/telemeta/htdocs/js/multiform.js new file mode 100644 index 00000000..b3c9fcf7 --- /dev/null +++ b/telemeta/htdocs/js/multiform.js @@ -0,0 +1,24 @@ +function choix(formulaire) + { + var j; + var i = formulaire.department.selectedIndex; + if (i == 0) + for(j = 1; j < '+ str(self.len_departments) + '; j++) + formulaire.conference.options[j].text=""; + else{ + switch (i){ + for k in range(0, self.len_departments): + department = self.departments[k] + conferences = department['conferences'] + #print conferences + conferences_t = dict2tuple(conferences) + #print conferences + conferences = '"'+'","'.join(conferences_t)+'"' + case '+str(k+1)+' : var text = new Array('+conferences+'); + break; + } + for(j = 0; j<'+str(self.conference_nb_max)+'; j++) + formulaire.conference.options[j+1].text=text[j]; + formulaire.conference.options[j+1].value=text[j]; + } +formulaire.conference.selectedIndex=0;}