blob: 9b5db5e6b3d701da92f3a1934fa0b3f76716a94f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
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();
}
}
|