提交 dfc38477 编写于 作者: M Mike O'Connor 提交者: Joerg Jaspert

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: NMike O'Connor <stew@debian.org>
Signed-off-by: NJoerg Jaspert <joerg@debian.org>
上级 359a85fc
......@@ -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>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册