From edi at agharta.de Tue May 1 14:08:07 2007 From: edi at agharta.de (Edi Weitz) Date: Tue, 01 May 2007 16:08:07 +0200 Subject: [hunchentoot-announce] New release 0.9.2 (Was: User defined http return codes) In-Reply-To: <4636B040.2010601@itsec.co.kr> (Jong-won Choi's message of "Tue, 01 May 2007 12:13:04 +0900") References: <4636B040.2010601@itsec.co.kr> Message-ID: On Tue, 01 May 2007 12:13:04 +0900, Jong-won Choi wrote: > Currently if a user want to define a custom http return code, s/he > has to change reason-phrase function manually. > > The attached patch file is my suggestion on this problem. Thanks, I've made a new release with a modified version of your patch. > + (defconstant +http-code-reason-table+ (make-hash-table :test #'eq)) That's not portable, you should use EQL. Also, please don't create new functions or variables without doc strings. See http://weitz.de/patches.html Thanks, Edi. From edi at agharta.de Mon May 7 22:22:10 2007 From: edi at agharta.de (Edi Weitz) Date: Tue, 08 May 2007 00:22:10 +0200 Subject: [hunchentoot-announce] New release 0.9.3 (Was: create-folder-dispatcher-and-handler question) In-Reply-To: <873b288vx5.fsf@no-log.org> (Nicolas Lamirault's message of "Mon, 07 May 2007 18:01:42 +0200") References: <873b288vx5.fsf@no-log.org> Message-ID: On Mon, 07 May 2007 18:01:42 +0200, Nicolas Lamirault wrote: > i think the problem comes from the space in the name. Yes. Seems this is a bug which was already in TBNL. The new release hopefully fixes that. Thanks for the report, Edi. From edi at agharta.de Fri May 11 22:37:00 2007 From: edi at agharta.de (Edi Weitz) Date: Sat, 12 May 2007 00:37:00 +0200 Subject: [hunchentoot-announce] New release 0.10.0 (Was: *catch-errors-p* and spurious stream errors patch (add your own implementation and shake).) In-Reply-To: (Vladimir Sedach's message of "Tue, 8 May 2007 13:43:59 -0600") References: <20070507233451.GA17561@bateleur.arcanes.fr.eu.org> Message-ID: On Tue, 8 May 2007 13:43:59 -0600, "Vladimir Sedach" wrote: > Making maybe-invoke-debugger a generic function so you can > specialize on the condition (ignore the :around in my patch, I was > being stupid) seems like an outgrowth of this approach. Yes, that makes sense. I've made a new release where MAYBE-INVOKE-DEBUGGER is an exported generic function. Thanks, Edi. From edi at agharta.de Sat May 19 22:37:35 2007 From: edi at agharta.de (Edi Weitz) Date: Sun, 20 May 2007 00:37:35 +0200 Subject: [hunchentoot-announce] New CL-WEBDAV release 0.1.1 (Was: Bugreport (and patch)) In-Reply-To: <1179588588.6432.4.camel@localhost.localdomain> (Ralf Mattes's message of "Sat, 19 May 2007 17:29:48 +0200") References: <1179588588.6432.4.camel@localhost.localdomain> Message-ID: On Sat, 19 May 2007 17:29:48 +0200, Ralf Mattes wrote: > during some moderate WebDAV conformance tests is stumbled over the > following bug/typo: > > --- handlers.lisp 2007-04-18 02:29:07.000000000 +0200 > +++ /LISP/ediware/cl-webdav/handlers.lisp 2007-05-19 > 17:05:45.000000000 +0200 > @@ -314,7 +314,7 @@ > (let ((resource (get-resource))) > (when (resource-exists resource) > (setf (header-out :allow) > - (format nil "~{~A~^~, ~}" > + (format nil "~{~A~^, ~}" > (set-difference *allowed-methods* > '(:get :head :mkcol)))) > (method-not-allowed)) > (let ((parent (resource-parent resource))) > > MKCOL on an existing resource created an 500 status instead of the > expected 405. Ah, right, thanks. Fixed in 0.1.1. Good to know that someone is finally testing this... :) Cheers, Edi. From edi at agharta.de Fri May 25 11:41:55 2007 From: edi at agharta.de (Edi Weitz) Date: Fri, 25 May 2007 13:41:55 +0200 Subject: [hunchentoot-announce] New release 0.11.0 Message-ID: ChangeLog Version 0.11.0 2007-05-25 Added server names and coupled them with easy handlers (suggested by Mac Chan) Exported SESSION-COOKIE-VALUE instead of SESSION-STRING (suggested by Slava Akhmechet) Documentation fixes (thanks to Victor Kryukov and Igor Plekhov) Download http://weitz.de/files/hunchentoot.tar.gz Cheers, Edi. From edi at agharta.de Fri May 25 16:55:55 2007 From: edi at agharta.de (Edi Weitz) Date: Fri, 25 May 2007 18:55:55 +0200 Subject: [hunchentoot-announce] New release 0.11.1 (Was: Hunchentoot and OpenMCL) In-Reply-To: (Edi Weitz's message of "Fri, 25 May 2007 18:41:25 +0200") References: Message-ID: On Fri, 25 May 2007 18:41:25 +0200, Edi Weitz wrote: > Ah, thanks, I think you're right. I'll change that. OK, I've made a new release which now hopefully works with the latest OpenMCL release. Please check. Cheers, Edi.