blob: 4d0b2a5b3ad51bd5b9d07bb20503c75a24492da8 (
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
|
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>XXV</title>
<meta http-equiv="Content-Type" content="text/html; charset=<?% charset %?>">
<meta name="copyright" content="copyright 2004 Xpix">
<style type="text/css">
<!--
<?% INCLUDE style/style.css %?>
-->
</style>
</head>
<body>
<!-- WaitTemplate -->
<?% percent = (data.current / data.maximum) * 100 %?>
<?% step = data.maximum / data.steps %?>
<?% c = 0 %?>
<center>
<h3><?% data.msg %?></h3>
<table border=0 align=center>
<?% WHILE c < data.steps %?>
<?% c = c + 1 %?>
<?% color = (step * c) <= data.current ? "red" : "white" %?>
<td bgcolor="<?% color %?>"> </td>
<?% END %?>
<td> <b><?% percent div 1 | format "%02d" %?>%</b> (<?% data.eta %?>)</td>
</table>
</center>
</body>
</html>
|