Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
update docs and rockspec for version 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Mascarenhas committed Oct 21, 2010
1 parent 1aebe29 commit eb677c0
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README
@@ -1,4 +1,4 @@
Xavante 2.2.0
Xavante 2.2.1
http://keplerproject.org/xavante/

Xavante is a Lua HTTP 1.1 Web server that uses a modular architecture based on
Expand Down Expand Up @@ -34,6 +34,10 @@ in Lua and are as portable as Lua itself.

History

Xavante 2.2.1 [21/Oct/2010]
* allow 0 as a port value, so the OS assigns one dynamically (contributed by Tim Niemueller
* bugfixes in CGILua handler

Xavante 2.2.0 [18/Mar/2010]
* xavante.cgiluahandler now works with WSAPI 1.2/1.3 without needing kepler_init

Expand Down Expand Up @@ -118,4 +122,4 @@ luahttpd is now part of Xavante.

Xavante 1.0 was designed and implemented by André Carregal as part of the
Kepler Project with contributions from Renato Crivano and Danilo Tuler.
Xavante 1.0 development was sponsored by Fábrica Digital and Hands.
Xavante 1.0 development was sponsored by Fábrica Digital and Hands.
8 changes: 7 additions & 1 deletion doc/us/index.html
Expand Up @@ -71,7 +71,7 @@ <h2><a name="over"></a>Overview</h2>

<h2><a name="status"></a>Status</h2>

<p>Current version is 2.2.0 and works with Lua 5.1.</p>
<p>Current version is 2.2.1 and works with Lua 5.1.</p>

<h2><a name="download"></a>Download</h2>

Expand Down Expand Up @@ -122,6 +122,12 @@ <h2><a name="dependencies"></a>Dependencies</h2>

<h2><a name="history"></a>History</h2>
<dl>
<dt><strong>Xavante 2.2.1</strong> [21/Oct/2010]</dt>
<dd><ul>
<li>allow 0 as a port value, so the OS assigns one dynamically (contribut$</li>
<li>bugfixes in CGILua handler</li>
</ul></dd>

<dt><strong>Xavante 2.2.0</strong> [18/Mar/2010]</dt>
<dd><ul>
<li>Changed xavante.cgiluahandler to works with WSAPI 1.2/1.3 without needing kepler_init</li>
Expand Down
45 changes: 45 additions & 0 deletions rockspec/xavante-2.2.1-1.rockspec
@@ -0,0 +1,45 @@
package = "Xavante"

version = "2.2.1-1"

description = {
summary = "Lua Web Server Library",
detailed = [[
Xavante is a Lua HTTP 1.1 Web server that uses a modular architecture based on URI mapped handlers.
This rock installs Xavante as a library that other applications can use.
]],
license = "MIT/X11",
homepage = "http://www.keplerproject.org/xavante"
}

dependencies = { 'luasocket >= 2.0', 'copas >= 1.1.5', 'luafilesystem >= 1.5.0' }

source = {
url = "http://github.com/downloads/keplerproject/xavante/xavante-2.2.1.tar.gz"
}

local XAVANTE_LUAS = { "src/xavante/cgiluahandler.lua",
"src/xavante/encoding.lua",
"src/xavante/filehandler.lua",
"src/xavante/httpd.lua",
"src/xavante/mime.lua",
"src/xavante/patternhandler.lua",
"src/xavante/redirecthandler.lua",
"src/xavante/vhostshandler.lua",
"src/xavante/indexhandler.lua",
"src/xavante/urlhandler.lua",
"src/xavante/ruleshandler.lua" }

build = {
type = "module",
modules = {
sajax = "src/sajax/sajax.lua",
xavante = "src/xavante/xavante.lua"
}
}

for i = 1,#(XAVANTE_LUAS) do
local src = XAVANTE_LUAS[i]
local mod = "xavante." .. src:match("^src/xavante/([^%.]+)%.lua")
build.modules[mod] = src
end

0 comments on commit eb677c0

Please sign in to comment.