caveman icon indicating copy to clipboard operation
caveman copied to clipboard

Lightweight web application framework for Common Lisp.

Results 47 caveman issues
Sort by recently updated
recently updated
newest added

I used lack-session-store-dbi to manage the sessions, ``` lisp (:session :store (make-dbi-store :connector (lambda () (apply #'dbi:connect (robot-web.db:connection-settings))))) ``` after starting the server, and after it processed some requests, it...

When running Hunchentoot, the association list is returned properly. However, when I switch the server for Woo, I hit an exception. I am running SBCL on OS X. So: `/foo?bar=hello`...

I am not sure what is the best way to do database transactions. For now I have added this to the generated db.lisp file: ``` (defmacro with-transaction (&body body) `(cl-dbi:with-transaction...

Readme and documentation in general miss information on how to access database using the CLSQL/Clack middleware.

I'm still struggling with occasional errors that bubble up with backtraces based on bad user input (for instance, someone sent a PUT request with JSON and clack attempted to eval...

On Hunchentoot, all assets in the web base will serve. As it is common to add third party assets (such as bootstrap) into their own directory, and not mixed with...

I want to provide a safe page, caveman support ssl it?

Could somebody please clarify if project configuration is really parsed, especially the `:database-connection-spec` parameter. As far as I understand the only information that has any sort of impact is: log-path,...

Hi, I am not sure, but it looks like the proper way to access params is using a kind of literal keywords: ``` (getf params :|customer-name|) ``` instead of ```...