Search found 10 matches

by Hero Doug
Sat May 16, 2009 6:50 pm
Forum: Common Lisp
Topic: Common Lisp the Language Three
Replies: 3
Views: 5410

Re: Common Lisp the Language Three

If you don't know what to say(or are you chatting on the site itself?), let me additionally ask: what libraries would you want in such be standard? The article I linked to here explains it all. Someone (not I) is proposing a project not to "create _the_ standard, but 'a standard" library ...
by Hero Doug
Sat May 16, 2009 5:49 pm
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Re: Clozure Lisp CGI Programming

I received an error when trying to save an image with a prepended kernel not long ago. I sent an Email to the Clozure mailing list and it was resolved surprisingly quickly. [quote=The Error] :The Error > Error: value NIL is not of the expected type REAL. > While executing: CCL::<-2, in process Initi...
by Hero Doug
Sat May 16, 2009 4:23 am
Forum: Common Lisp
Topic: Common Lisp the Language Three
Replies: 3
Views: 5410

Common Lisp the Language Three

I came across this post today. I like the main idea of the post, specifically because it has the opportunity to be more than just talk. This idea is really in its infancy right now, but with some support we can at the very least develop a nice tango or boost like library for Common Lisp. I'm just wo...
by Hero Doug
Fri May 15, 2009 2:43 am
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Re: Clozure Lisp CGI Programming

Now I have the same problems (and more) on my personal computer (I did all that other stuff from my work computer). I can't save an image with a prepended kernel, and I cant run the image using ANY method. I've shot an email off the the CCL guys and I'll see what they have to say. I have to say, I'm...
by Hero Doug
Thu May 14, 2009 2:56 am
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Re: Clozure Lisp CGI Programming

Ok, I got it working, sort of. I make an image file and ran it under www-data using a shell script. #!/bin/sh /home/doug/software/ccl/ccl -I /home/doug/dev/trunk/htdocs/sitewire.app I also prepended the image file to the image and ran that as well using the same method. #!/bin/sh /home/doug/dev/trun...
by Hero Doug
Thu May 14, 2009 2:34 am
Forum: Common Lisp
Topic: thoughts on CL project organization
Replies: 4
Views: 7406

Re: thoughts on CL project organization

One thing that has turned me off ASDF (besides being a pain on Windows) is that it doesn't seem to take version numbers into account. I suppose if developers named their packages as :my-library1 and the successor as :my-library2 (and so on) then api issues would be mitigated. Instead of using asdf I...
by Hero Doug
Thu May 14, 2009 1:29 am
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Re: Clozure Lisp CGI Programming

To the most recent reply, here are the results of running the app as www-data, it seems as if it's not a permission problem. doug@doug-desktop:~/software/ccl$ sudo -u www-data /home/doug/dev/trunk/htdocs/index.cgi [sudo] password for doug: Content-type: text/html This is a test cgsullivan >> The &qu...
by Hero Doug
Sun May 10, 2009 6:58 pm
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Re: Clozure Lisp CGI Programming

No, I ran it as Opera to see if the root user also had the same problems. I assumed (I'm not a Linux expert yet) that since root has full control over the system that any permission problems my regular account were having wouldn't apply to the root user. However, since the root user it getting Apach...
by Hero Doug
Fri May 08, 2009 10:42 pm
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Re: Clozure Lisp CGI Programming

I gave full permissions to apache (www-data in Ubuntu) and I still have the same problem. I think that it's highly unlikely that it's a permission problem because I compiled an equivalent C program and ran it without a hitch. I applied the same permissions from the C program to the lisp program and ...
by Hero Doug
Thu May 07, 2009 5:00 am
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 39998

Clozure Lisp CGI Programming

I'm attempting to set up CLozure CL for CGI programming and have run into a snag. I can run the program perfectly from the command line, but it won't run through the browser. To make sure that the webserver was properly configured I wrote a simple hello world app in C and ran that through the cgi in...