File: wsapi.cgi.1.txt

package info (click to toggle)
lua-wsapi 1.1.0-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 400 kB
  • ctags: 171
  • sloc: ansic: 613; sh: 100; makefile: 30
file content (32 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (6)
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
28
29
30
31
32
NAME
  wsapi.cgi - cgi wrapper for wsapi based dynamic pages

SYNOPSIS
  #!/usr/bin/env wsapi.cgi

DESCRIPTION
  A sample dynamic page follows:

    #!/usr/bin/env wsapi.cgi

    module(..., package.seeall)
    
    function run(wsapi_env)
      local headers = { ["Content-type"] = "text/html" }
    
      local function hello_text()
        coroutine.yield("<html><body>")
        coroutine.yield("<p>Hello Wsapi!</p>")
        coroutine.yield("<p>PATH_INFO: " .. wsapi_env.PATH_INFO .. "</p>")
        coroutine.yield("<p>SCRIPT_NAME: " .. wsapi_env.SCRIPT_NAME .. "</p>")
        coroutine.yield("</body></html>")
      end
    
      return 200, headers, coroutine.wrap(hello_text)
    end

SEE ALSO
  wsapi.fcgi(1)

AUTHOR
  Enrico Tassi <gareuselesinge@debian.org>