Fixed (hopefully) a query parsing bug, made the query parser more tolerant, and added a parameter to cookie to limit cookies to secure (https) sessions.
Download: http://static.artfulcode.net/newlisp/web.lsp
Tight coding jeff! nice work..
Hey Jeff, very nice, but should this be set?
(dolist (idx '($0 $1 $2 $3 $4 $5 $6 $7 $8 $9))
(setf idx nil))
; ^ set?
Why? In that instance, they are identical.
m35 has a point ;-)
> (dolist (idx '($0 $1 $2 $3)) (setf idx 123))
123
> $0
nil
> $1
nil
> (dolist (idx '($0 $1 $2 $3)) (set idx 123))
123
> $0
123
> $1
123
>
I stand corrected. I'll upload a fixed version momentarily.
It's working fine, thanks Jeff. I'm testing it out at //http://unbalanced-parentheses.nfshost.com/lambdalator/index - so far no problems (from your code - plenty from mine... :)