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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
/*
* Javascript functions for the status update box.
* This file needs mootools.js to be included on the pages.
*/
var LiveVdrInfo = Ajax.extend({
options: {
autoCancel: true
},
initialize: function(url, boxId)
{
this.parent(url, null);
this.addEvent('onComplete', this.showInfo);
this.addEvent('onFailure', this.reportError);
this.boxId = boxId;
this.reload = true;
this.timer = null;
},
request: function(update)
{
this.parent({update: update ? "1" : "0"});
},
showInfo: function(text, xmldoc)
{
try {
var infoType = xmldoc.getElementsByTagName('type').item(0);
var channel = $(this.boxId + '_channel_buttons');
var playback = $(this.boxId + '_recording_buttons');
if (infoType.firstChild.nodeValue != "channel") {
channel.style.display = 'none';
playback.style.display = 'block';
this.setTextContent('pause', infoType.firstChild.nodeValue);
this.setTextContent('play', infoType.firstChild.nodeValue);
this.setTextContent('rwd', infoType.firstChild.nodeValue);
this.setTextContent('ffw', infoType.firstChild.nodeValue);
this.setTextContent('stop', infoType.firstChild.nodeValue);
}
else {
playback.style.display = 'none';
channel.style.display = 'block';
}
var epgInfo = xmldoc.getElementsByTagName('epginfo').item(0);
for (var i = 0; i < epgInfo.childNodes.length; i++) {
var node = epgInfo.childNodes.item(i);
if (node.nodeType == 1) {
var textContent = "";
if (node.firstChild != null)
textContent = node.firstChild.nodeValue;
this.setTextContent(node.nodeName, textContent);
}
}
/* check if we still need to update the status */
var upd = xmldoc.getElementsByTagName('update').item(0);
var rel = (upd.firstChild.nodeValue == "1");
if (rel != this.reload) {
this.reload = rel;
var img = $('statusReloadBtn');
if (img != null) {
// change image according to state.
img.src = this.reload ? 'stop_update.png' : 'reload.png';
}
}
if (this.reload)
this.timer = this.request.delay(1000, this, true);
}
catch (e) {
this.reportError(null);
}
},
reportError: function(transport)
{
this.setTextContent('caption', 'ERROR');
var message;
if (transport != null) {
message = $("__infobox_request_err").firstChild.nodeValue;
}
else {
message = $("__infobox_update_err").firstChild.nodeValue;
}
this.setTextContent('name', message);
},
setTextContent: function(nodeName, textContent)
{
var docNode = $(this.boxId + '_' + nodeName);
if (docNode != null) {
switch (nodeName) {
case "caption":
case "timenow":
case "name":
case "duration":
{
if (docNode.innerHTML != textContent)
docNode.innerHTML = textContent;
break;
}
case "elapsed":
{
var width = textContent + "px";
if (docNode.style.width != width)
docNode.style.width = width;
break;
}
case "nextchan":
case "prevchan":
{
if (textContent != "") {
docNode.href = "javascript:LiveSimpleAjaxRequest('switch_channel.xml', 'param', '" + textContent + "');";
docNode.style.visibility = "visible";
}
else {
docNode.style.visibility = "hidden";
}
break;
}
case "pause":
case "play":
case "rwd":
case "ffw":
case "stop":
{
if (textContent != "") {
docNode.href = "javascript:LiveSimpleAjaxRequest('" + nodeName + "_recording.xml', 'param', '" + textContent + "');";
docNode.style.visibility = "visible";
}
else {
docNode.style.visibility = "hidden";
}
break;
}
default:
break;
}
}
},
toggleUpdate: function()
{
if (this.reload) {
if (this.timer != null) {
this.timer = $clear(this.timer);
}
}
this.request(!this.reload);
},
pageFinished: function()
{
if (this.reload) {
if (this.timer != null) {
this.timer = $clear(this.timer);
}
}
this.cancel();
}
});
|