2008-08-11 Joerg Jaspert <joerg@debian.org>
+ * web/dinstall.html: Added
+
* config/debian/dak.conf: Added back the pgp keyrings for now, as
it seems that we should keep it for a few more days, until we
somehow got ll those oldtimers to get a newer key into the
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<HTML>
+<HEAD>
+<TITLE>Dinstall might be running in...</TITLE>
+
+</HEAD>
+
+
+<BODY>
+
+
+<h1>Dinstall might be running (more or less) in...</h1>
+
+<br>
+
+<script type="text/javascript">
+document.write('<table><tr><td id="time" style="border:3px ridge black;padding:2px;color:white;background-color:#de0452;font-size:40px"> </td></tr></table>');
+dinstall = new Date();
+dinstall.setUTCHours(19);
+dinstall.setUTCMinutes(52);
+dinstall.setUTCSeconds(00);
+
+function countdown()
+{
+ var now = new Date();
+ var rest = Math.floor((dinstall - now)/1000) % 43200;
+ if(now>dinstall) rest+=43200;
+
+ stunden = Math.floor(rest/3600);
+ if (stunden < 10) stunden = "0" + stunden;
+ rest %= 3600;
+
+ minuten = Math.floor(rest/60);
+ if (minuten < 10) minuten = "0" + minuten;
+ rest %= 60;
+
+ sekunden = rest;
+ if (sekunden < 10) sekunden = "0" + sekunden;
+
+ document.getElementById('time').firstChild.data=stunden+':'+minuten+':'+sekunden;
+}
+
+setInterval('countdown()',1000);
+</script><br>
+
+<br><br>
+
+dinstall should run 07h 52min and 19h 52min or 07h 52min AM/PM (UTC)
+
+<br><br>
+<font size="-2">Made by Eduard Bloch <blade@debian.org>
+<br>Small update to use 12h dinstall by Felipe Augusto van de Wiel (faw)
+<br>Please check this <a href="http://lists.debian.org/debian-cd/2006/11/msg00049.html">announcement</a> about dinstall twice daily.
+
+</BODY>
+
+</HTML>
+
+<!-- (C) 2005 by Eduard Block <blade@debian.org> -->