Search found 8 matches

by BDunbar
Tue Mar 06, 2012 6:13 pm
Forum: newLISP in the real world
Topic: Authentication and Authorization
Replies: 2
Views: 2518

Re: Authentication and Authorization

This looks interesting ... http://lisplets.sourceforge.net/ Lisplets are Java Servlets that forward their requests, and gather their response headers, using s-expressions over sockets. They enable easy integration of Common Lisp or Scheme into a Java-based web environment. The library consists of a ...
by BDunbar
Sun Mar 04, 2012 10:51 pm
Forum: newLISP and the O.S.
Topic: newLISP-GS - OS X - freezes after hibernation -
Replies: 3
Views: 4434

Re: newLISP-GS - OS X - freezes after hibernation -

If you prefer a different default directory from $HOME upon start of newLISP-GS, edit the hidden $HOME/.newlisp-edit.conf

Exactly what was wanted - thanks!

I'll poke around with the hibernation settings.
by BDunbar
Sun Mar 04, 2012 6:27 pm
Forum: newLISP and the O.S.
Topic: newLISP-GS - OS X - freezes after hibernation -
Replies: 3
Views: 4434

newLISP-GS - OS X - freezes after hibernation -

OS X - 10.6.8 newLISP-GS 1.44 newLISP version # newlisp -v newLISP v.10.3.3 on OSX IPv4/6 UTF-8. Scenario: - Open newLISP-GS - enter some code - save/execute that code - Do some actual paying work for a while - Close the laptop and go home - Open the laptop hours later at home - I can no longer save...
by BDunbar
Sun Mar 04, 2012 5:34 pm
Forum: newLISP in the real world
Topic: Authentication and Authorization
Replies: 2
Views: 2518

Authentication and Authorization

I have a need to authenticate and authorize users to an application. Assume Application FOO. Users Bob, Carol, Deke. FOO will allow Bob, Carol, and Deke to login. FOO will allow anyone to see stuff. Bob can edit anyone's stuff. Carol and Deke can write stuff, but only edit their own posts. (I notice...
by BDunbar
Mon Feb 20, 2012 1:44 am
Forum: newLISP and the O.S.
Topic: Unix - Linking newLISP source and executable - newbie query
Replies: 5
Views: 6128

Re: Unix - Linking newLISP source and executable - newbie qu

Hmm, I don't remember seeing the error before. OS X 10.6.8 Installed using the package Nothing out of the ordinary about the system or what I've done to it, that I can think of. However can you add the pathname for the newlisp executable in your repl. So I can! $ cat uppercase.lsp :: uppercase.lsp ...
by BDunbar
Sun Feb 19, 2012 3:28 pm
Forum: newLISP and the O.S.
Topic: Unix - Linking newLISP source and executable - newbie query
Replies: 5
Views: 6128

Re: Unix - Linking newLISP source and executable - newbie qu

I lifted uppercase.lsp from the docs - but I don't think it's the problem?

Code: Select all

$  cat uppercase.lsp
:: uppercase.lsp - Link example
(println (upper-case (main-args 1)))
(exit)
$
by BDunbar
Sun Feb 19, 2012 3:26 pm
Forum: newLISP and the O.S.
Topic: Unix - Linking newLISP source and executable - newbie query
Replies: 5
Views: 6128

Re: Unix - Linking newLISP source and executable - newbie qu

$ ls uppercase.lsp $ newlisp /usr/share/newlisp/util/link.lsp newLISP v.10.3.3 on OSX IPv4/6 UTF-8, execute 'newlisp -h' for more info. > (link "newlisp" "uppercase" "uppercase.lsp") original newlisp executable:newlisp new executable:uppercase source:uppercase.lsp ERR: array, list or string expecte...
by BDunbar
Fri Feb 17, 2012 7:59 pm
Forum: newLISP and the O.S.
Topic: Unix - Linking newLISP source and executable - newbie query
Replies: 5
Views: 6128

Unix - Linking newLISP source and executable - newbie query

New to NewLISP. Also new to writing code that needs to be compiled and linked [1] From the manual, '23. Linking newLISP source and executable" I find that to compile/link I need a copy of link.lsp and newlisp in the same directory. Experimenting, I see symbolic links will serve the same purpose. Now...