[plt-scheme] New Help Desk
Yeah, but even with a hard space it doesn't seem to work.
A file with these contents:
<html><body><a href="test dir/file.html"></body></html>
will not point to "test dir/file.html", you get a 404 from the server
(not talking about servlets)... it doesn't seem to be unescaping the
request that the web browser may have escaped.
-----------------------------------
Daniel Silva
dsilva at ccs.neu.edu
> -----Original Message-----
> From: Paul Steckler [mailto:steck at ccs.neu.edu]
> Sent: Tuesday, July 02, 2002 2:32 PM
> To: 'Daniel Silva'; plt-scheme at tux.cs.brown.edu
> Subject: RE: [plt-scheme] New Help Desk
>
> > Does the PLT web-server support directory names with spaces yet?
> > When I was using it a month or two ago I could make an anchor with
`(a
> > (["href" "my dir/blah.html"]) "link") and have blah.html inside a
dir
> > called "my%20dir" but not if the dir was called "my dir". Am I not
> > supposed to have folders with spaces in the name?
>
> Substitute `%20' for spaces in the string. Hex 20 is decimal 32,
which
> is an ASCII space.
>
> -- Paul