added footer
authorJean Philip Orsini <orsinije@fr.ibm.com>
Tue, 19 Jan 2016 16:29:14 +0000 (17:29 +0100)
committerJean Philip Orsini <orsinije@fr.ibm.com>
Tue, 19 Jan 2016 16:29:14 +0000 (17:29 +0100)
html/index.html
mp3tohtml.py

index 8109c8a..bf577b2 100644 (file)
@@ -82,7 +82,6 @@ $(document).ready(function(){
 
         <section>
 
-
 <div id="jquery_jplayer_1" class="jp-jplayer"></div>
 <div id="jp_container_1" class="jp-audio" role="application" aria-label="media player">
        <div class="jp-type-single">
index 0dcfaf7..3ba95f6 100755 (executable)
@@ -1,6 +1,13 @@
 #!/usr/bin/python
 
-# mp3tohtml.py <mp3_dir>
+# Generate an HTML page containing information about
+# MP3s in a directory.
+#
+# Usage: mp3tohtml.py <mp3_dir>
+#
+# Last version of this tool can be get from the GIT repository http://git.wpitchoune.net/radio.git
+#
+# (c) 2015 Jean-Philippe Orsini  <jeanfi@gmail.com>
 
 import glob
 import sys
@@ -13,7 +20,7 @@ files = glob.glob(sys.argv[1] + "/**/*mp3")
 
 print "<html>"
 print "<head>"
-print "<title>List of songs</title>"
+print "<title>All songs</title>"
 
 print "        <link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css\">"
 print "<script type=\"text/javascript\" language=\"javascript\" src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js\">"
@@ -34,13 +41,13 @@ for f in files:
 
     print "\t<tr>"
 
-    try: 
+    try:
         artist = tag.getArtist()
-        print "\t\t<td>" + artist + "</td>"       
+        print "\t\t<td>" + artist + "</td>"
     except UnicodeEncodeError:
         print "\t\t<td></td>"
 
-    try:        
+    try:
         print "\t\t<td>" + tag.getAlbum() + "</td>"
     except UnicodeEncodeError:
         print "\t\t<td></td>"
@@ -59,5 +66,9 @@ for f in files:
     print "\t</tr>"
 
 print "</table>"
-    
+print "<footer>"
+print "            <ul>"
+print "                    <li><a href=\"mailto:proxyradio@wpitchoune.net\">Contact</a></li>"
+print "            </ul>"
+print "</footer>"
 print "</body></html>"