Lisp HUG Maillist Archive

CL-HTTP 70.190a on LispWorks 5

Hi, LispWorks Users

The big CL-HTTP project seems quite advanced. Since the new version
release are slowly, I'm working on port the old 70.190a [1] version to
LispWorks 5.0

With the patch I made in attach, I can almost get CL-HTTP work on LWL
Personal 5.0.1 and Enterprise 5.0.2.

But I meet a problem: CL-HTTP cannot create some directories correctly.
When it want create a logical pathname directory like
"HTTP:PROXY-CACHE;", a directrory just named "HTTP:PROXY-CACHE;" appear
on my filesystem, not a proxy-cache directory:

-rw-r--r--  1 binghe staff  4180 2007-10-20 17:47 -license-.text
-rw-r--r--  1 binghe staff 24179 2007-10-20 17:47 -release-notes-.text
drwxr-xr-x  2 binghe staff     6 2007-10-20 18:00 HTTP:PROXY-CACHE;
drwxr-xr-x  6 binghe staff    72 2007-10-20 17:41 acl
-rw-r--r--  1 binghe staff    85 2007-10-20 17:47 acl-read-me.text
drwxr-xr-x  3 binghe staff  4096 2007-10-20 18:00 client
drwxr-xr-x  7 binghe staff    66 2007-10-20 17:35 clim
drwxr-xr-x 10 binghe staff  4096 2007-10-20 17:43 cmucl
drwxr-xr-x  9 binghe staff   103 2007-10-20 17:42 contrib
drwxr-xr-x  6 binghe staff  4096 2007-10-20 18:00 examples
drwxr-xr-x  7 binghe staff    55 2007-10-20 17:40 html-parser
drwxr-xr-x  4 binghe staff  4096 2007-10-20 18:00 lambda-ir
drwxr-xr-x  7 binghe staff  4096 2007-10-20 17:45 lcl
-rw-r--r--  1 binghe staff    83 2007-10-20 17:47 lcl-read-me.text
drwxr-xr-x 12 binghe staff   154 2007-10-20 17:34 lispm
drwxr-xr-x  4 binghe staff    27 2007-10-20 18:00 log
drwxr-xr-x  8 binghe staff  4096 2007-10-20 17:28 lw
-rw-r--r--  1 binghe staff    86 2007-10-20 17:47 lw-read-me.text
drwxr-xr-x 13 binghe staff  4096 2007-10-20 17:46 mcl
-rw-r--r--  1 binghe staff  1496 2007-10-20 17:47 mcl-read-me.text
drwxr-xr-x  4 binghe staff  4096 2007-10-20 18:00 proxy
drwxr-xr-x  3 binghe staff  4096 2007-10-20 18:00 server
drwxr-xr-x  3 binghe staff    88 2007-10-20 17:59 smtp
drwxr-xr-x  5 binghe staff    55 2007-10-20 17:31 standards
drwxr-xr-x  3 binghe staff  4096 2007-10-20 18:00 w3p
drwxr-xr-x  4 binghe staff  4096 2007-10-20 18:00 w4
drwxr-xr-x  4 binghe staff    49 2007-10-20 17:39 www

I didn't read much of CL-HTTP's code, anyone can give me some help or
note about this?

Thanks.

[1] http://www.cl-http.org:8001/cl-http/dist/cl-http-70-190a.tar.gz


Re: CL-HTTP 70.190a on LispWorks 5

OK, I find the problem by myself. more #+LispWorks4 should be replaced
by #+(or LispWorks4 LispWorks5).

Chun Tian (binghe) wrote:
> Hi, LispWorks Users
>
> The big CL-HTTP project seems quite advanced. Since the new version
> release are slowly, I'm working on port the old 70.190a [1] version to
> LispWorks 5.0
>
> With the patch I made in attach, I can almost get CL-HTTP work on LWL
> Personal 5.0.1 and Enterprise 5.0.2.
>
> But I meet a problem: CL-HTTP cannot create some directories correctly.
> When it want create a logical pathname directory like
> "HTTP:PROXY-CACHE;", a directrory just named "HTTP:PROXY-CACHE;" appear
> on my filesystem, not a proxy-cache directory:
>
> -rw-r--r--  1 binghe staff  4180 2007-10-20 17:47 -license-.text
> -rw-r--r--  1 binghe staff 24179 2007-10-20 17:47 -release-notes-.text
> drwxr-xr-x  2 binghe staff     6 2007-10-20 18:00 HTTP:PROXY-CACHE;
> drwxr-xr-x  6 binghe staff    72 2007-10-20 17:41 acl
> -rw-r--r--  1 binghe staff    85 2007-10-20 17:47 acl-read-me.text
> drwxr-xr-x  3 binghe staff  4096 2007-10-20 18:00 client
> drwxr-xr-x  7 binghe staff    66 2007-10-20 17:35 clim
> drwxr-xr-x 10 binghe staff  4096 2007-10-20 17:43 cmucl
> drwxr-xr-x  9 binghe staff   103 2007-10-20 17:42 contrib
> drwxr-xr-x  6 binghe staff  4096 2007-10-20 18:00 examples
> drwxr-xr-x  7 binghe staff    55 2007-10-20 17:40 html-parser
> drwxr-xr-x  4 binghe staff  4096 2007-10-20 18:00 lambda-ir
> drwxr-xr-x  7 binghe staff  4096 2007-10-20 17:45 lcl
> -rw-r--r--  1 binghe staff    83 2007-10-20 17:47 lcl-read-me.text
> drwxr-xr-x 12 binghe staff   154 2007-10-20 17:34 lispm
> drwxr-xr-x  4 binghe staff    27 2007-10-20 18:00 log
> drwxr-xr-x  8 binghe staff  4096 2007-10-20 17:28 lw
> -rw-r--r--  1 binghe staff    86 2007-10-20 17:47 lw-read-me.text
> drwxr-xr-x 13 binghe staff  4096 2007-10-20 17:46 mcl
> -rw-r--r--  1 binghe staff  1496 2007-10-20 17:47 mcl-read-me.text
> drwxr-xr-x  4 binghe staff  4096 2007-10-20 18:00 proxy
> drwxr-xr-x  3 binghe staff  4096 2007-10-20 18:00 server
> drwxr-xr-x  3 binghe staff    88 2007-10-20 17:59 smtp
> drwxr-xr-x  5 binghe staff    55 2007-10-20 17:31 standards
> drwxr-xr-x  3 binghe staff  4096 2007-10-20 18:00 w3p
> drwxr-xr-x  4 binghe staff  4096 2007-10-20 18:00 w4
> drwxr-xr-x  4 binghe staff    49 2007-10-20 17:39 www
>
> I didn't read much of CL-HTTP's code, anyone can give me some help or
> note about this?
>
> Thanks.
>
> [1] http://www.cl-http.org:8001/cl-http/dist/cl-http-70-190a.tar.gz
>
>   


Updated at: 2020-12-10 08:45 UTC