summaryrefslogtreecommitdiff
path: root/html/widgets/wait.tmpl
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2011-10-08 07:43:51 +0200
committeranbr <vdr07@deltab.de>2011-10-08 07:43:51 +0200
commit85d4bfa04ce28b5ec3eb0054306c43bc59c55128 (patch)
treed7878021068d70e2a4ab3044beb5f770a57fc980 /html/widgets/wait.tmpl
parenta71b70567ed73853367d972a95d2a346b2f93989 (diff)
downloadxxv-85d4bfa04ce28b5ec3eb0054306c43bc59c55128.tar.gz
xxv-85d4bfa04ce28b5ec3eb0054306c43bc59c55128.tar.bz2
Merge skins into common directory
Diffstat (limited to 'html/widgets/wait.tmpl')
-rw-r--r--html/widgets/wait.tmpl34
1 files changed, 0 insertions, 34 deletions
diff --git a/html/widgets/wait.tmpl b/html/widgets/wait.tmpl
deleted file mode 100644
index 4d0b2a5..0000000
--- a/html/widgets/wait.tmpl
+++ /dev/null
@@ -1,34 +0,0 @@
-<!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 %?>">&nbsp;&nbsp;&nbsp;</td>
-<?% END %?>
- <td>&nbsp;<b><?% percent div 1 | format "%02d" %?>%</b> (<?% data.eta %?>)</td>
-</table>
-</center>
-</body>
-</html>