diff options
Diffstat (limited to 'javascript/ajax.js')
-rwxr-xr-x | javascript/ajax.js | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/javascript/ajax.js b/javascript/ajax.js deleted file mode 100755 index 9b5db5e..0000000 --- a/javascript/ajax.js +++ /dev/null @@ -1,61 +0,0 @@ -function ajax(session) -{ - var xhr=null; - - xhr = new XMLHttpRequest(); - //on définit l'appel de la fonction au retour serveur - xhr.onreadystatechange = function() { alert_ajax(xhr, session); }; - - xhr.open("GET", "streamstatus.php?session=" + session, true); - xhr.send(null); -} - -function alert_ajax(xhr, session) -{ - if (xhr.readyState==4) - { - var docXML= xhr.responseXML; - var streamstatus = null; - var items = docXML.getElementsByTagName("streamstatus"); - streamstatus = items.item(0).firstChild.data; - if ( streamstatus == 'error' ) { - var items2 = docXML.getElementsByTagName("message"); - var errmessage = items2.item(0).firstChild.data; - errorMsg(errmessage); - } - else - swapPic(session); - } -} - -function playmusic(path,name) -{ - var xhr=null; - - xhr = new XMLHttpRequest(); - //on définit l'appel de la fonction au retour serveur - xhr.onreadystatechange = function() { openpls(xhr); }; - encpath=escape(path); - encname=escape(name); - xhr.open("GET", "genplaylist.php?path=" + encpath + "&name=" + encname, false); - xhr.send(null); - -} - -function openpls(xhr) -{ - if (xhr.readyState==4) - { - var docXML= xhr.responseXML; - var streamstatus = null; - var items = docXML.getElementsByTagName("m3u") - - streamstatus = items.item(0).firstChild.data; - if ( streamstatus == 'error' ) { - this.location.href = 'error.php'; - } - - //this.location.href = 'playlist/playlist.m3u'; - //document.s1.Play(); - } -} |