CGI module available?

For the Compleat Fan
Locked
dukester
Posts: 115
Joined: Tue May 08, 2007 1:06 pm
Location: Alberta, Canada

CGI module available?

Post 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...

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post 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 ;)

dukester
Posts: 115
Joined: Tue May 08, 2007 1:06 pm
Location: Alberta, Canada

Post 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!

Locked