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>
function countdown()
{
var now = new Date();
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;
stunden = Math.floor(rest/3600);
if (stunden < 10) stunden = "0" + stunden;
-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 <blade@debian.org>
<br>Small update to use 12h dinstall by Felipe Augusto van de Wiel (faw)
<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.
+<br>Small update to use 6h dinstall by Mike O'Connor (stew)