.\"Text automatically generated by txt2man .TH wsapi.cgi 1 "28 April 2009" "" "wsapi documentation" .SH NAME \fBwsapi.cgi \fP- cgi wrapper for wsapi based dynamic pages \fB .SH SYNOPSIS .nf .fam C #!/usr/bin/env wsapi.cgi .fam T .fi .fam T .fi .SH DESCRIPTION A sample dynamic page follows: .PP .nf .fam C #!/usr/bin/env wsapi.cgi module(\.\.\., package.seeall) function run(wsapi_env) local headers = { ["Content-type"] = "text/html" } local function hello_text() coroutine.yield("") coroutine.yield("

Hello Wsapi!

") coroutine.yield("

PATH_INFO: " .. wsapi_env.PATH_INFO .. "

") coroutine.yield("

SCRIPT_NAME: " .. wsapi_env.SCRIPT_NAME .. "

") coroutine.yield("") end return 200, headers, coroutine.wrap(hello_text) end .fam T .fi .SH SEE ALSO \fBwsapi.fcgi\fP(1) .SH AUTHOR Enrico Tassi