Page 1 of 1

CGI module available?

Posted: Sun Aug 19, 2007 12:57 pm
by dukester
I'd like to use newLISP to write CGI apps with SQL database backends.

Is there a newLISP library that deals exclusively with CGI support -- something like CGI.pm or its predecessor cgilib.pl?

I'll have to write one if such doesn't yet exist. TIA...

Posted: Sun Aug 19, 2007 1:58 pm
by Lutz
Look into your modules directory either c:\Program Files\newlisp\modules or /usr/share/newlisp/modules (what OS are you using?)

you can find documentation here:
http://newlisp.org/code/modules/

you can create the same documentation on your machine running newlispdoc inside the modules directory: newlispdoc *.lsp

you can find CGI examples here:
http://newlisp.org/index.cgi?Tips_and_Tricks

and entire CGI applications here:
http://newlisp.org/index.cgi?Applications

Lutz

ps: it helps browsing the http://newlisp.org website you will find most of your questions answered there ;)

Posted: Mon Aug 20, 2007 4:03 am
by dukester
Lutz wrote:Look into your modules directory either c:\Program Files\newlisp\modules or /usr/share/newlisp/modules (what OS are you using?)

you can find documentation here:
http://newlisp.org/code/modules/

you can create the same documentation on your machine running newlispdoc inside the modules directory: newlispdoc *.lsp

you can find CGI examples here:
http://newlisp.org/index.cgi?Tips_and_Tricks

and entire CGI applications here:
http://newlisp.org/index.cgi?Applications

Lutz

ps: it helps browsing the http://newlisp.org website you will find most of your questions answered there ;)
Thanks for the references!