newLISP Fan Club

Forum => So, what can you actually DO with newLISP? => Topic started by: Jeff on August 13, 2009, 09:54:54 AM

Title: web.lsp 0.3
Post by: Jeff on August 13, 2009, 09:54:54 AM
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
Title:
Post by: newdep on August 13, 2009, 12:59:35 PM
Tight coding jeff! nice work..
Title:
Post by: m35 on August 14, 2009, 11:01:45 AM
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?
Title:
Post by: Jeff on August 14, 2009, 11:07:13 AM
Why? In that instance, they are identical.
Title:
Post by: Lutz on August 14, 2009, 12:04:37 PM
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
>
Title:
Post by: Jeff on August 14, 2009, 12:21:17 PM
I stand corrected. I'll upload a fixed version momentarily.
Title:
Post by: cormullion on August 15, 2009, 02:09:01 AM
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... :)