diff options
author | onefang | 2019-11-06 20:58:04 +1000 |
---|---|---|
committer | onefang | 2019-11-06 20:58:04 +1000 |
commit | 15b0fcedca37dfff4d04482e935ad8330d051b79 (patch) | |
tree | 35a52f0f727b2d481b2072cc402f7a32324d18da | |
parent | Add a web page output generator. (diff) | |
download | apt-panopticon-15b0fcedca37dfff4d04482e935ad8330d051b79.zip apt-panopticon-15b0fcedca37dfff4d04482e935ad8330d051b79.tar.gz apt-panopticon-15b0fcedca37dfff4d04482e935ad8330d051b79.tar.bz2 apt-panopticon-15b0fcedca37dfff4d04482e935ad8330d051b79.tar.xz |
Add my preferred web colours.
-rwxr-xr-x | apt-panopticon-report-web.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-panopticon-report-web.lua b/apt-panopticon-report-web.lua index ece9e09..570ec53 100755 --- a/apt-panopticon-report-web.lua +++ b/apt-panopticon-report-web.lua | |||
@@ -169,7 +169,7 @@ local mirrors = loadfile("results/mirrors.lua")() | |||
169 | local file, e = io.open("results/Report-web.html", "w+") | 169 | local file, e = io.open("results/Report-web.html", "w+") |
170 | if nil == file then C("opening mirrors file - " .. e) else | 170 | if nil == file then C("opening mirrors file - " .. e) else |
171 | file:write( "<html><head>\n" .. | 171 | file:write( "<html><head>\n" .. |
172 | "</head><body>" .. | 172 | "</head><body bgcolor="black" text="white" alink="red" link="blue" vlink="purple">" .. |
173 | "Check date: " .. os.date("!%a %b %d %T %Z %Y") .. "\n<br>\n") | 173 | "Check date: " .. os.date("!%a %b %d %T %Z %Y") .. "\n<br>\n") |
174 | for k, v in orderedPairs(mirrors) do | 174 | for k, v in orderedPairs(mirrors) do |
175 | local results = loadfile("results/" .. k .. ".lua")() | 175 | local results = loadfile("results/" .. k .. ".lua")() |