aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apt-panopticon-report-email-web.lua
diff options
context:
space:
mode:
authoronefang2019-12-23 14:26:42 +1000
committeronefang2019-12-23 14:26:42 +1000
commit630c7d0332420a81624b5d4bde462083279cd056 (patch)
treeafffcad342eaf3dc643573190939be20c6f2fff1 /apt-panopticon-report-email-web.lua
parentVarious mostly useless tweaks. (diff)
downloadapt-panopticon-630c7d0332420a81624b5d4bde462083279cd056.zip
apt-panopticon-630c7d0332420a81624b5d4bde462083279cd056.tar.gz
apt-panopticon-630c7d0332420a81624b5d4bde462083279cd056.tar.bz2
apt-panopticon-630c7d0332420a81624b5d4bde462083279cd056.tar.xz
Fix up web page refresh.
Diffstat (limited to 'apt-panopticon-report-email-web.lua')
-rwxr-xr-xapt-panopticon-report-email-web.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-panopticon-report-email-web.lua b/apt-panopticon-report-email-web.lua
index cdfa5bd..12a3960 100755
--- a/apt-panopticon-report-email-web.lua
+++ b/apt-panopticon-report-email-web.lua
@@ -311,13 +311,13 @@ APT.html = true
311local web, e = io.open("results/Report-web.html", "w+") 311local web, e = io.open("results/Report-web.html", "w+")
312if nil == web then C("opening mirrors file - " .. e) else 312if nil == web then C("opening mirrors file - " .. e) else
313 web:write( "<html><head><title>apt-panopticon results</title>\n") 313 web:write( "<html><head><title>apt-panopticon results</title>\n")
314 if 0 < APT.options.refresh.value then 314 if 0 < tonumber(APT.options.refresh.value) then
315 web:write('<meta http-equiv="refresh" content="' .. APT.options.refresh.value .. '">\n') 315 web:write('<meta http-equiv="refresh" content="' .. APT.options.refresh.value .. '">\n')
316 end 316 end
317 web:write( '</head><body bgcolor="black" text="white">' .. 317 web:write( '</head><body bgcolor="black" text="white">' ..
318 "<h1>Welcome to the apt-panopticon results page.</h1>\n" .. 318 "<h1>Welcome to the apt-panopticon results page.</h1>\n" ..
319 "<p>This is the status of the mirror servers in the Devuan package mirror network.</p>\n") 319 "<p>This is the status of the mirror servers in the Devuan package mirror network.</p>\n")
320 if 0 < APT.options.refresh.value then 320 if 0 < tonumber(APT.options.refresh.value) then
321 web:write( '<p>This page will refresh every ' .. (APT.options.refresh.value / 60) .. ' minutes.</p>') 321 web:write( '<p>This page will refresh every ' .. (APT.options.refresh.value / 60) .. ' minutes.</p>')
322 end 322 end
323 web:write( "<p><font style='background-color:red; color:black'>EXPERIMENTAL CODE - double check all results you see here, and read the logs if it's important.</font></p>" .. 323 web:write( "<p><font style='background-color:red; color:black'>EXPERIMENTAL CODE - double check all results you see here, and read the logs if it's important.</font></p>" ..