[Prev][Next][Index][Thread]

Re: export-url and "real" web pages



At 3:19 PM -0700 1997-01-07, jvb@uwyo.edu wrote:
>Richard.  You have a couple of things wrong with your export-url.
>First, is there really a "<" in the line?  There should not be.
>Also its http::
>
>(http:export-url "<http:/lynch.lscorp.com/" :directory :recursive-p)
>
>Finally, the URL string and the pathname are different fields, so your
>export should look something like.
>
>(http:export-url "http::/lynch.lscorp.com/" :directory <your directory path>
>                 :recursive-p t)

The correct rul syntax is:
                       +
(http:export-url "http://lynch.lscorp.com/" :directory <your directory path>
		:recursive-p t)

This merges your host name to produce the same result, but has
the advantage of being portable across machines.

(http:export-url #u"/" :directory <your directory path>
		:recursive-p t)

See the file http:examples;exports.lisp for a variety of uses of export-url

also avilable at: http://wilson.ai.mit.edu/cl-http/sources/examples/exports.lisp
	




References: