The Month of the Hunchentoot
Edi Weitz asked if people would be interested in using Hunchentoot (a web server implemented atop of TBNL) in Common Lisp implementations other than LispWorks.
A few weeks later the Month of the Hunchentoot began. :-)
I hope there's pudding
Edi Weitz asked if people would be interested in using Hunchentoot (a web server implemented atop of TBNL) in Common Lisp implementations other than LispWorks.
A few weeks later the Month of the Hunchentoot began. :-)
*HTTP-ERROR-HANDLER* (defaults to NIL) which canNIL and TBNL takes over. The function could
(defun http-error-handler (code)
"Return content for error output of HTTP error CODE."
(case code
(404 (emb:execute-emb *fnf-error-template*
`(:code 404 :uri ,(tbnl:request-uri))))))
(setf tbnl:*http-error-handler* 'http-error-handler)