aboutsummaryrefslogtreecommitdiffstats
path: root/generate-html.lua
diff options
context:
space:
mode:
Diffstat (limited to 'generate-html.lua')
-rwxr-xr-xgenerate-html.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/generate-html.lua b/generate-html.lua
index f6d3f63..19f4756 100755
--- a/generate-html.lua
+++ b/generate-html.lua
@@ -135,6 +135,10 @@ function get_mirrors()
for a,mirror in pairs(mirrors) do
mirrors[a].location = mirror.location or "Unknown"
mirrors[a].bandwidth = mirror.bandwidth or "Unknown"
+ mirrors[a].num = a
+ if mirror.name:len() > 32 then
+ mirrors[a].name = ("%s..."):format(mirror.name:sub(1,32))
+ end
for b,url in pairs(mirror.urls) do
local scheme = url:match("(.*)://*.")
mirrors[a].urls[b] = {url = url, scheme = scheme}
@@ -164,7 +168,7 @@ function build_status_tables(indexes)
table.insert(rows, { row = row })
end
res[idx] = {
- url = mirror.url, thead = thead, tbody = rows,
+ url = mirror.url, thead = thead, tbody = rows, num = idx,
duration = mirror.duration, count = mirror.count
}
end