Hello,

Perhaps a bit off-topic, but...


HTTP.lua is a web.py clone implemented in Lua [1]:

http://dev.alt.textdrive.com/browser/HTTP/HTTP.lua


Canonical "Hello world" example:

--8<--
local HTTP = require( 'HTTP' )

HTTP[ '/hello(%a*)' ] = function( aName ) return 'Hello ' .. ( aName  
or 'world' ) end

HTTP()
-->8--


And... Nanoki is a wiki engine implemented on top of HTTP.lua:

http://alt.textdrive.com/nanoki/
http://dev.alt.textdrive.com/browser/HTTP/Nanoki.lua

Online demo:

http://svr225.stepx.com:3388/nanoki

The similarities with web.py and Infogami stop there :)

Cheers,

PA.

[1] http://www.lua.org/about.html


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to