mirror of https://github.com/dirtbags/moth.git
Merge branch 'master' of woozle.org:/home/neale/projects/ctf/base
This commit is contained in:
commit
fec278db6f
|
@ -40,12 +40,11 @@ function koth.page(title, body)
|
||||||
print(body)
|
print(body)
|
||||||
print("</section>")
|
print("</section>")
|
||||||
end
|
end
|
||||||
print([[<section id="sponsors">
|
print('<section id="sponsors">')
|
||||||
<img src="../images/lanl.png" alt="Los Alamos National Laboratory">
|
print('<img src="../images/lanl.png" alt="Los Alamos National Laboratory">')
|
||||||
<img src="../images/doe.png" alt="US Department Of Energy">
|
print('<img src="../images/doe.png" alt="US Department Of Energy">')
|
||||||
<img src="../images/sandia.png" alt="Sandia National Laboratories">
|
print('<img src="../images/sandia.png" alt="Sandia National Laboratories">')
|
||||||
</section>]])
|
print('</section>')
|
||||||
|
|
||||||
print("</body></html>")
|
print("</body></html>")
|
||||||
os.exit(0)
|
os.exit(0)
|
||||||
end
|
end
|
||||||
|
@ -55,6 +54,9 @@ end
|
||||||
--
|
--
|
||||||
function koth.award_points(team, category, points, comment)
|
function koth.award_points(team, category, points, comment)
|
||||||
team = team:gsub("[^0-9a-f]", "-")
|
team = team:gsub("[^0-9a-f]", "-")
|
||||||
|
if (team == "") then
|
||||||
|
team = "-"
|
||||||
|
end
|
||||||
|
|
||||||
local filename = team .. "." .. category .. "." .. points
|
local filename = team .. "." .. category .. "." .. points
|
||||||
local entry = team .. " " .. category .. " " .. points
|
local entry = team .. " " .. category .. " " .. points
|
||||||
|
|
Loading…
Reference in New Issue