File: test_main.lp

package info (click to toggle)
lua-cgi 6.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 956 kB
  • sloc: javascript: 2,216; makefile: 25
file content (27 lines) | stat: -rwxr-xr-x 608 bytes parent folder | download | duplicates (4)
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
27
#!/usr/bin/env cgilua.cgi
<html>
<head><title>Embeded Lua Test</title></head>

<body>
cgilua.QUERY =
<?lua
cgilua.serialize = require"cgilua.serialize".serialize
cgilua.serialize (cgilua.QUERY, cgilua.put)
?>
<br>
cgilua.POST =
<?lua
cgilua.serialize (cgilua.POST, cgilua.put)
?>
<br>
Remote address: <%= cgilua.servervariable"REMOTE_ADDR" %>
<br>
Is persistent = <%= tostring (SAPI.Info.ispersistent) %>
<br>
ap = <?lua= tostring(ap) ?> <br>
lfcgi = <% = tostring(lfcgi) %> <br>
<%= (ap and ap.handler()) or "" %> <br>

</body>
<small>$Id: test_main.lp,v 1.5 2005/02/11 14:39:21 tomas Exp $</small>
</html>