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...
Look into your modules directory either c:Program Filesnewlispmodules 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 ;)
Quote from: "Lutz"
Look into your modules directory either c:Program Filesnewlispmodules 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!