Updated examples to remove yields, pass req param. Integration woes.

This commit is contained in:
Marcos Kirsch
2016-02-15 22:33:30 -06:00
parent d31b2d2c89
commit 5ccc69dc73
3 changed files with 2 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
return function (connection, args)
return function (connection, req, args)
dofile("httpserver-header.lc")(connection, 200, 'html')
connection:send([===[
@@ -6,21 +6,18 @@ return function (connection, args)
<body>
<h1>Server File Listing</h1>
]===])
coroutine.yield()
local remaining, used, total=file.fsinfo()
connection:send("<b>Total size: </b> " .. total .. " bytes<br/>\n" ..
"<b>In Use: </b> " .. used .. " bytes<br/>\n" ..
"<b>Free: </b> " .. remaining .. " bytes<br/>\n" ..
"<p>\n<b>Files:</b><br/>\n<ul>\n")
coroutine.yield()
for name, size in pairs(file.list()) do
local isHttpFile = string.match(name, "(http/)") ~= nil
if isHttpFile then
local url = string.match(name, ".*/(.*)")
connection:send(' <li><a href="' .. url .. '">' .. url .. "</a> (" .. size .. " bytes)</li>\n")
coroutine.yield()
end
end
connection:send("</ul>\n</p>\n</body></html>")