[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] update dinstall.html for 4 daily dinstall runs



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@vireo.org>
---
 web/dinstall.html |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/web/dinstall.html b/web/dinstall.html
index 2d0f967..0eb3ae8 100644
--- a/web/dinstall.html
+++ b/web/dinstall.html
@@ -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>
 
-- 
1.5.6.5



Reply to: