summaryrefslogtreecommitdiffhomepage
path: root/libs/nixio/axTLS/www/lua/env.lua
blob: c4298477b6d000ff94e31172dcce06f0518ead83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- This file should be executed before any script in this directory
-- according to the configuration (cgilua/conf.lua).

pcall (cgilua.enablesession)

local put, mkurlpath = cgilua.put, cgilua.mkurlpath

cgilua.addclosefunction (function ()
	put [[
<p>
<small>
<a href="test_main.html">Main</a>]]
	for _, test in {
			{ "Get", "test_main.lua", {ab = "cd", ef = "gh"} },
			{ "Cookies", "test_cookies.lua", },
			{ "FileSystem", "test_fs.lua", },
			{ "Libraries", "test_lib.lua", },
			{ "Session", "test_session.lua", },
			{ "Variables", "test_variables.lp", },
		} do
		put (string.format (' &middot; <a href="%s">%s</a>',
			mkurlpath (test[2], test[3]), test[1]))
	end
	put [[
</small>]]
end)