blob: 8e3d6c4ef6325a4e048c08cd71cd5a3ffd34e088 (
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
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=<%! ISO-8859-1 !%>" />
<title><tmpl_var title></title>
<script type="text/javascript" language="JavaScript1.2" src="library.js"></script>
<link href="style.css" rel="stylesheet" media="screen" type="text/css" />
<tmpl_if usercss>
<link href="user.css" rel="stylesheet" media="screen" type="text/css" />
</tmpl_if>
</head>
<body id="prog_detail" onload="window.focus()">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="group">
<tr class="heading">
<td class="col_content">
<span class="channel_name"><tmpl_var channel_name></span><tmpl_if date><span class="date_long"><tmpl_var date></span><span class="time_duration"><span class="time_start"><tmpl_var start></span> - <span class="time_stop"><tmpl_var stop></span></span><tmpl_if vps><span class="time_vps"><%! VPS !%> <tmpl_var vps></span></tmpl_if></tmpl_if>
</td>
</tr>
<tr class="row_even">
<td class="col_content">
<table border="0" cellspacing="0" cellpadding="0" class="content">
<tr>
<td class="col_buttons">
<span class="action close">
<a href="javascript:window.close()"><img src="bilder/close.png" border="0" alt="<%! close !%>" onmouseover="window.status='<%! close !%>';return true" title="<%! close !%>" /></a>
</span>
<tmpl_if date>
<tmpl_if switchurl>
<span class="action switch">
<a href="javascript:callurl('<tmpl_var switchurl>')"><img src="bilder/view.png" border="0" alt="<%! view !%>" onmouseover="window.status='<%! view !%>';return true" title="<%! view !%>" /></a>
</span>
</tmpl_if>
<tmpl_if recurl>
<span class="action record">
<a href="javascript:window.close();opener.location.href='<tmpl_var recurl>'"><img src="bilder/rec_button.png" border="0" alt="<%! record !%>" onmouseover="window.status='<%! record !%>';return true" title="<%! record !%>" /></a>
</span>
</tmpl_if>
<span class="action repeatings">
<a href="vdradmin.pl?search=<tmpl_var find_title>&aktion=prog_summary&submit=go11" target="main"><img src="bilder/find.png" border="0" alt="<%! search !%>" onmouseover="window.status='<%! search !%>';return true" title="<%! search !%>" /></a>
</span>
</tmpl_if>
<tmpl_if imdburl>
<span class="action imdb">
<a href="<tmpl_var imdburl>" target="_blank" title="<%! Lookup movie in the Internet-Movie-Database (IMDb) !%>"><img src="bilder/imdb.png" border="0" alt="IMDb" onmouseover="window.status='IMDb';return true" title="IMDb" /></a>
</span>
</tmpl_if>
</td>
<td class="col_epg">
<div class="epg_title"><tmpl_var title></div>
<tmpl_if subtitle>
<div class="epg_subtitle"><tmpl_var subtitle></div>
</tmpl_if>
<div class="epg_summary"><tmpl_var text></div>
<tmpl_if has_video>
<div class="epg_video">
<h4><%! Video tracks: !%></h4>
<tmpl_loop video>
<h5><%! Language: !%></h5> <tmpl_var lang> <h5><%! Format: !%></h5> <tmpl_var format><br />
</tmpl_loop>
</div>
</tmpl_if>
<tmpl_if has_audio>
<div class="epg_audio">
<h4><%! Audio tracks: !%></h4>
<tmpl_loop audio>
<h5><%! Language: !%></h5> <tmpl_var lang>
<tmpl_if descr>
<h5><%! Description: !%></h5> <tmpl_var descr>
</tmpl_if>
<br />
</tmpl_loop>
</div>
</tmpl_if>
<tmpl_if epgimages>
<div class="epg_images">
<tmpl_loop epgimages>
<img src="<tmpl_var image>"/>
</tmpl_loop>
</div>
</tmpl_if>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|