From edi at agharta.de Tue Dec 1 22:28:32 2009 From: edi at agharta.de (Edi Weitz) Date: Tue, 1 Dec 2009 23:28:32 +0100 Subject: [drakma-devel] redirect in http-request In-Reply-To: <6f8d23640911281914v221c202ao3f35c6ab4c7d74bf@mail.gmail.com> References: <6f8d23640911111805u26bac7ddpa5b279954b089627@mail.gmail.com> <6f8d23640911122123m276278bbh8ac335f8767a138a@mail.gmail.com> <6f8d23640911251904o4161fc7nf335c113ff5e571e@mail.gmail.com> <6f8d23640911281914v221c202ao3f35c6ab4c7d74bf@mail.gmail.com> Message-ID: I've now made the change you asked for: http://bknr.net/trac/changeset/4480/trunk/thirdparty Thanks, Edi. From edi at agharta.de Tue Dec 1 22:43:39 2009 From: edi at agharta.de (Edi Weitz) Date: Tue, 1 Dec 2009 23:43:39 +0100 Subject: [drakma-devel] New releases (1.1.0) of Drakma and Chunga... Message-ID: ...can be found at the usual location. If you update one of the libraries, please update both. What's new? http://weitz.de/drakma/CHANGELOG.txt http://weitz.de/chunga/CHANGELOG.txt Thanks, Edi. From e.dmitrenk at gmail.com Wed Dec 2 17:06:50 2009 From: e.dmitrenk at gmail.com (=?KOI8-R?B?5dfHxc7JyiDkzcnU0sXOy88=?=) Date: Wed, 2 Dec 2009 19:06:50 +0200 Subject: [drakma-devel] Several problems Message-ID: In the official manual http://weitz.de/drakma/#connection-timeoutconnection-timeout key parameter exists. But my SBCL interpreter says: debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: unknown &KEY argument: :CONNECTION-TIMEOUT Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL. restarts (invokable by number or by possibly-abbreviated name): 0: [ABORT] Exit debugger, returning to top level. (DRAKMA:HTTP-REQUEST "http://bcheck.scanit.be/bcheck/")[:EXTERNAL] 0] when I try to call function: (drakma:http-request "http://bcheck.scanit.be/bcheck/" :method :get :content-length t :connection-timeout 10) Please help me to solve this problem. Best regards, Evgen Dmitrenko -------------- next part -------------- An HTML attachment was scrubbed... URL: From edi at agharta.de Wed Dec 2 19:31:35 2009 From: edi at agharta.de (Edi Weitz) Date: Wed, 2 Dec 2009 20:31:35 +0100 Subject: [drakma-devel] Several problems In-Reply-To: References: Message-ID: 2009/12/2 ??????? ????????? : > In the official manual http://weitz.de/drakma/#connection-timeout > connection-timeout key parameter exists. If you read on, you'll see in the next sentence that "all timeout keyword arguments are only available for LispWorks"... HTH, Edi. From stassats at gmail.com Wed Dec 2 19:05:44 2009 From: stassats at gmail.com (Stas Boukarev) Date: Wed, 02 Dec 2009 22:05:44 +0300 Subject: [drakma-devel] Several problems In-Reply-To: (=?utf-8?B?ItCV0LLQs9C10L3QuNC5INCU0LzQuNGC0YDQtdC90LrQviIncw==?= message of "Wed, 2 Dec 2009 19:06:50 +0200") References: Message-ID: <87r5rd8ad3.fsf@gmail.com> ??????? ????????? writes: > In the official manual http://weitz.de/drakma/#connection-timeout connection-timeout key parameter exists. > But my SBCL interpreter says: > > debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: > unknown &KEY argument: :CONNECTION-TIMEOUT > > Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL. > > restarts (invokable by number or by possibly-abbreviated name): > 0: [ABORT] Exit debugger, returning to top level. > > (DRAKMA:HTTP-REQUEST "http://bcheck.scanit.be/bcheck/")[:EXTERNAL] > 0] > > when I try to call function: > > (drakma:http-request "http://bcheck.scanit.be/bcheck/" > :method :get > :content-length t > :connection-timeout 10) > > Please help me to solve this problem. Later in the manual: All timeout keyword arguments are only available for LispWorks, write-timeout is only available for LispWorks 5.0 or higher. -- With Best Regards, Stas. From eugoss at gmail.com Wed Dec 2 19:08:48 2009 From: eugoss at gmail.com (Eugene Ossintsev) Date: Wed, 2 Dec 2009 14:08:48 -0500 Subject: [drakma-devel] Several problems In-Reply-To: References: Message-ID: <6ba04de90912021108h1c5887aga3128857fe162ab9@mail.gmail.com> The documentation says that all timeout keyword arguments are only available for LispWorks. The source code says the same. request.lisp: (defun http-request ......... #+:lispworks (connection-timeout 20) - Eugene All timeout keyword arguments are only available for LispWorks 2009/12/2 ??????? ????????? > > In the official manual http://weitz.de/drakma/#connection-timeoutconnection-timeout key parameter exists. But my SBCL interpreter says: > > debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: > unknown &KEY argument: :CONNECTION-TIMEOUT > > Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL. > > restarts (invokable by number or by possibly-abbreviated name): > 0: [ABORT] Exit debugger, returning to top level. > > (DRAKMA:HTTP-REQUEST "http://bcheck.scanit.be/bcheck/")[:EXTERNAL] > 0] > > when I try to call function: > > (drakma:http-request "http://bcheck.scanit.be/bcheck/" > :method :get > :content-length t > :connection-timeout 10) > > Please help me to solve this problem. > > Best regards, > Evgen Dmitrenko > > _______________________________________________ > drakma-devel mailing list > drakma-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/drakma-devel > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From e.dmitrenk at gmail.com Thu Dec 3 12:23:57 2009 From: e.dmitrenk at gmail.com (=?KOI8-R?B?5dfHxc7JyiDkzcnU0sXOy88=?=) Date: Thu, 3 Dec 2009 14:23:57 +0200 Subject: [drakma-devel] Several problems In-Reply-To: References: Message-ID: Thank you. It's sad. That feature could be very useful. 2009/12/2 Edi Weitz > 2009/12/2 ??????? ????????? : > > > In the official manual http://weitz.de/drakma/#connection-timeout > > connection-timeout key parameter exists. > > If you read on, you'll see in the next sentence that "all timeout > keyword arguments are only available for LispWorks"... > > HTH, > Edi. > > _______________________________________________ > drakma-devel mailing list > drakma-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/drakma-devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: