conrad bookout | 28 Mar 04:46
Picon
Favicon

(no subject)


http://fotodigitalcaldas.com/redoim.php?friend=816

RevoIution To How You Earn An Income

______________
--The German Taube is amonoplane, its main supporting surfaces, as wellas the tail planes, are so
constructed that theyrepresent a bird.Taube means dove.It wouldhave been more appropriate to call it a
hawk. kylena adken

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

conrad bookout | 28 Mar 04:45
Picon
Favicon

(no subject)


Change your financial future
http://transcom68.com/blueoim.php?aninameCID=120

            Wed, 28 Mar 2012 3:45:50

__________________
"  I am alone in the world--let me suffer; can bearit." (c) julie-lynn woolsey

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

conrad bookout | 14 Mar 17:56
Picon
Favicon

(no subject)


Make Income 0nline with revolutionary system
http://realinspirationinc.com/directadm.php?mjljlinkFriend=44

            Wed, 14 Mar 2012 17:56:53
_________________________________
"Halt, said a guard." (c) lionel visszaadta

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

conrad bookout | 14 Mar 17:56
Picon
Favicon

(no subject)


Single mom makes real money working from home
http://kapucyni.ofm.pl/hotdeal.php?carnoo=84

            Wed, 14 Mar 2012 17:56:47
__________________
"The same general idea appears in The Big Board by Kilgore Trout." (c) tavoris aesoburne

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

KURODA Hisao | 13 Feb 01:48
Picon
Favicon

[ILC2012] CALL FOR PAPERS

+----------------------------------------------------------------------+
|                                                                      |
|                  INTERNATIONAL LISP CONFERENCE 2012                  |
|                                                                      |
|             http://www.international-lisp-conference.org             |
|                                                                      |
|       Campus Plaza Kyoto, Kyoto, Japan -  October 21-24, 2012        |
|                                                                      |
|            Sponsored by:  The Association of Lisp Users              |
|                                                                      |
+----------------------------------------------------------------------+

   General Information:

     The Association of Lisp Users is pleased to announce the 2012
     International Lisp Conference will be held in Kyoto, Japan at
     Campus Plaza Kyoto from October 21st to 24th, 2012.

     This year's program consists of tutorials at beginners' and
     advanced levels, prominent invited speakers from the Lisp
     communities, an excellent technical session, tours of
     Jidai-Matsuri: festival enjoyed by people of all ages,
     participating in its historical reenactment parade dressed in
     authentic costumes representing various periods, and characters
     in Japanese feudal history.

     General conference announcements are made on a very occasional
     basis to the low-volume mailing list
     ilc12-announce. http://www.alu.org/mailman/listinfo/ilc12-announce

(Continue reading)

Xu Jingtao | 21 Sep 11:32
Picon
Gravatar

how to export all files in the directory?

Hi www-cl:

I use following codes export my directory in cl-http
=====================================================
(export-url (format nil "http://~A:8000/clouds/" *host-ip*)
            :directory :pathname "/home/www/down/"
            :expiration '(:no-expiration-header)
            :character-set :utf-8
            :recursive-p t :expiration '(:no-expiration-header))
=====================================================
But if file in this directory has no suffix or suffix is not a text file,it could not be read
from web browser.
For example, file name "context" & "context.centos" is bad,and file name "context.txt" is good.

Do anyone know how to fix it to allow all files could be exported in that directory?

With best regards.
jingtao.

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

Mark Klein | 9 Sep 12:04
Picon
Favicon

simple iframes question


I want to have a PDF document appear within an iframe, so I wrote a cl-http response function that generates the following HTML:

<html> <body> <iframe width=1000 height=700 src=http://cci.mit.edu/klein/papers/guidelines.pdf></iframe> </body> </html>
The problem is that the PDF document gets downloaded into a new window, and not within the iframe I specified. Any suggestions on what I can do about that?

    Thanks!

Mark

-------------------------------
Mark Klein
Principal Research Scientist
MIT Center for Collective Intelligence



_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl
Picon
Picon

latest (2003) published CL-HTTP 70-190a fails on CMUCL

CL-HTTP 70-190a fails on CMUCL,
how can I get a newer version?

		Peace
			--Devon

PS: Not sure who to ask, JCMa and everyone here
most likely out of town for the long weekend.
Should I punt and try Hottentot or whatever?

PPS: CSAIL sys admins are either gone too or working overtime
Failed to connect to outgoing.csail.mit.edu:25 [SMTP: Failed to connect socket: No route to host (code:
-1, response: )]

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

Mark Klein | 7 Jul 17:49
Picon
Favicon

getting a virtual host to listen to post 80


I'd like to create a cl-http virtual host that listens to port 80. The virtual host is
deliberatorium.mit.edu, which has a DNS entry that aliases to franc2.mit.edu. I added the following
code to my server:

	(http:add-virtual-host "deliberatorium.mit.edu" 8000)

	(http:export-url #u("/" :host "deliberatorium.mit.edu" :port 8000)
            :computed
            :response-function #'(lambda (u s) (declare (ignore u s)) (redirect-to "http://franc2.mit.edu:8000/ci/login")))

That works fine when accessing

	http://deliberatorium.mit.edu:8000/

But if I use the following code:

	(http:add-virtual-host "deliberatorium.mit.edu" 80)

	(http:export-url #u("/index.html" :host "deliberatorium.mit.edu" :port 80)
            :computed
            :response-function #'(lambda (u s) (declare (ignore u s)) (redirect-to "http://franc2.mit.edu:8000/ci/login")))

and try to access 

	http://deliberatorium.mit.edu/

then my browser says:

	"Safari can’t connect to the server “deliberatorium.mit.edu”

Any ideas how I can get the port 80 thing to work within the context of cl-http? 

My server (Intel Mac OS 10.5) doesn't have Apache running.

    Thanks!

	Mark

-------------------------------
Mark Klein
Principal Research Scientist
MIT Center for Collective Intelligence
http://cci.mit.edu/klein/

_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

Chun Tian (binghe | 6 Jul 16:30
Picon

More fixes for SBCL

SBCL's string type is (SIMPLE-ARRAY CHARACTER ...):

* (type-of "xxx")

(SIMPLE-ARRAY CHARACTER (3))

This type, if processed by function 'string-type-symbol, only the part SIMPLE-ARRAY left, which cannot
be used as a valid sequence type for 'concatenate.

Attached patch fixed this, this was learnt from kpoeck the first time when I reported SBCL related bug.

--binghe

Attachment (cl-http-sbcl-string-type-symbol.diff): application/octet-stream, 1108 bytes
_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl
Changxue.Yang | 1 Jul 08:56
Picon

what function or macro can write <li><ul>?


Hi, everyone.

What Function or Macro can write out the html element <li> and <ul>?      thanks.


                                                wislin




_______________________________________________
WWW-CL mailing list
WWW-CL <at> lists.csail.mit.edu
https://lists.csail.mit.edu/mailman/listinfo/www-cl

Gmane