]> git.decadent.org.uk Git - dak.git/commitdiff
update dinstall.html for 4 daily dinstall runs
authorMike O'Connor <stew@debian.org>
Fri, 2 Jan 2009 23:58:12 +0000 (18:58 -0500)
committerJoerg Jaspert <joerg@debian.org>
Sat, 3 Jan 2009 00:21:59 +0000 (01:21 +0100)
dinstall.html contains a javascript countdown timer used to estimate when the
next dinstall run will occur.  It was hardcoded for 2 daily dinstall runs.
This patch hard codes it to 4 daily runs.

There previously was a link to the announcement of the switch to 2 daily
dinstall runs.  I was not able to locate a similar announcement to the switch
to 4 daily runs, so I simply removed the link to the announcement.

Signed-off-by: Mike O'Connor <stew@debian.org>
Signed-off-by: Joerg Jaspert <joerg@debian.org>
web/dinstall.html

index 2d0f967fa9d9d94a85add71ab7adfa49c208a747..0eb3ae8b955f4c6c253b7f7602132ab3a576caac 100644 (file)
@@ -23,8 +23,8 @@ dinstall.setUTCSeconds(00);
 function countdown()
 {
     var now = new Date();
-    var rest = Math.floor((dinstall - now)/1000) % 43200;
-    if(now>dinstall) rest+=43200;
+    var rest = Math.floor((dinstall - now)/1000) % 21600;
+    if(now>dinstall) rest+=21600;
     
     stunden = Math.floor(rest/3600);
     if (stunden < 10) stunden = "0" + stunden;
@@ -45,12 +45,12 @@ setInterval('countdown()',1000);
 
 <br><br>
 
-dinstall should run 07h 52min and 19h 52min or 07h 52min AM/PM (UTC)
+dinstall should run 4 times a day at 01:52, 07:52, 13:52, 19:52 (all times in UTC).
 
 <br><br>
 <font size="-2">Made by Eduard Bloch &lt;blade@debian.org&gt;
 <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.
+<br>Small update to use 6h dinstall by Mike O'Connor (stew)
 
 </BODY>