blob: 23479c9f18aa6acd1da8470d17dce4faf3a96ce6 (
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
|
<?xml version="1.0" encoding="<?% charset %?>"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<title>XXV</title>
<meta http-equiv="content-type" content="text/html; charset=<?% charset %?>" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="robots" content="noindex,noarchive,nofollow" />
<?% IF info.http_useragent.match('.*MSIE.*') && !info.http_useragent.match('.*Opera.*');
global.imagetyp = "gif";
ELSE;
global.imagetyp = "png";
END %?>
<style type="text/css">
<!--
<?% INCLUDE style.css %?>
-->
</style>
</head>
<!-- WaitTemplate -->
<body id="frame">
<div id="body">
<?% percent = (data.current / data.maximum) * 100 %?>
<?% step = data.maximum / data.steps %?>
<?% c = -1 %?>
<h1><?% data.msg %?></h1>
<table align="center">
<td><img src="images/wait.gif" alt="" /></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<?% WHILE c <= data.steps %?>
<?% c = c + 1 %?>
<?% color = (step * c) <= data.current ? "wait_full" : "wait_clear" %?>
<td class="<?% color %?>"> </td>
<?% END %?>
<td> <b><?% percent div 1 | format "%02d" %?>%</b> (<?% data.eta %?>)</td>
</table>
</div>
<!-- ###### Kopfzeile ###### -->
<?% IF ! global.iframe.defined %?>
<div id="header">
<div id="logo">
<?% IF allow( 'reload' ) %?>
<a href="?cmd=reload" title="Reload">
<img src="images/logo.<?% global.imagetyp %?>" alt="" />
</a>
<?% ELSE %?>
<img src="images/logo.<?% global.imagetyp %?>" alt="" />
<?% END %?>
</div>
<div id="headerNav">
·
<?% IF allow( 'n' ) %?> <a accesskey="n" class="headerNav" href="?cmd=n"><?% gettext("Running now") %?></a> · <?% END %?>
<?% IF allow( 'p' ) %?> <a accesskey="p" class="headerNav" href="?cmd=p"><?% gettext("Program guide") %?></a> · <?% END %?>
<?% IF allow( 'al' ) %?> <a accesskey="a" class="headerNav" href="?cmd=al"><?% gettext("Autotimer") %?></a> · <?% END %?>
<?% IF allow( 'tl' ) %?> <a accesskey="t" class="headerNav" href="?cmd=tl"><?% gettext("Timers") %?></a> · <?% END %?>
<?% IF allow( 'rl' ) %?> <a accesskey="r" class="headerNav" href="?cmd=rl"><?% gettext("Recordings") %?></a> · <?% END %?>
<?% IF allow( 'vc' ) %?> <a accesskey="v" class="headerNav" href="?cmd=vc"><?% gettext("Teletext") %?></a> · <?% END %?>
<?% IF allow( 'ml' ) %?> <a accesskey="m" class="headerNav" href="?cmd=ml"><?% gettext("Music") %?></a> · <?% END %?>
<?% IF allow( 'r' ) %?> <a accesskey="f" class="headerNav" href="?cmd=r"><?% gettext("Remote") %?></a> · <?% END %?>
<?% IF allow( 'sa' ) %?> <a accesskey="s" class="headerNav" href="?cmd=sa"><?% gettext("Status") %?></a> · <?% END %?>
<?% IF allow( 'ce' ) %?> <a accesskey="c" class="headerNav" href="?cmd=ce"><?% gettext("Preferences") %?></a> ·
<?% ELSIF allow( 'uprefs' ) %?><a accesskey="u" class="headerNav" href="?cmd=uprefs"><?% gettext("Own settings") %?></a> ·
<?% END %?>
<?% IF allow( 'logout' ) %?> <a accesskey="q" class="headerNav" href="?cmd=logout"><?% gettext("Logout") %?></a> · <?% END %?>
<?% IF allow( 'help' ) %?> <a accesskey="h" class="headerNav" href="?cmd=help">?</a> · <?% END %?>
</div>
</div>
<?% END %?>
<!-- ###### Ende ###### -->
</body>
</html>
|