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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
## Overview
*WSAPI* is an API that abstracts the web server from Lua web applications. By coding
against WSAPI your application can run on any of the supported servers and
interfaces (currently CGI, FastCGI and Xavante, on Windows and UNIX-based systems).
WSAPI provides a set of helper libraries that help with request processing
and output buffering. You can also write applications that act as filters that
provide some kind of service to other applications, such as authentication,
file uploads, request isolation, or multiplexing.
WSAPI's main influence is Ruby's [Rack](http://rack.rubyforge.org/) framework, but it was
also influenced by Python's [WSGI](http://wsgi.org/wsgi) (PEP 333). It's not a direct
clone of either of them, though, and tries to follow standard Lua idioms.
WSAPI is free software and uses the same license as Lua 5.1
## Status
Current version is 1.1. It was developed for Lua 5.1.
## Download
WSAPI can be downloaded from its [LuaForge](http://luaforge.net/projects/wsapi/) page.
You can also get WSAPI using [LuaRocks](http://luarocks.org):
<pre class="example">
luarocks install wsapi
</pre>
## CVS and Bug Tracker
WSAPI CVS and bug tracker are available at its [LuaForge](http://luaforge.net/projects/wsapi/) page.
## History
**WSAPI 1.1** [04/Feb/2009]
* Adds *options* table to **wsapi.request.new**, *delay_post* option delays
POST processing until **req:parse_post_data()** is called
* Moves call to **lfs.setmode** from wsapi.common to wsapi.cgi
* Adds **wsapi.util.make\_rewindable(*wsapi\_env*)** method - wraps *wsapi\_env* in a new
environment that lets you process the POST data more than once.
* Correctly handles PATH\_TRANSLATED and SCRIPT\_FILENAME in case the web server gets creative
* Statically links the FastCGI version on Windows
[**WSAPI 1.0**](http://wsapi.luaforge.net/1.0/) [18/May/2008]
* First public version.
* Includes CGI, FastCGI and Xavante WSAPI connectors.
## Credits
WSAPI was designed and developed by Fábio Mascarenhas and
André Carregal, and is maintained by Fábio Mascarenhas.
## Contact Us
For more information please [contact us](mailto:info-NO-SPAM-THANKS@keplerproject.org).
Comments are welcome!
You can also reach us and other developers and users on the Kepler Project
[mailing list](http://luaforge.net/mail/?group_id=104).
|