[version 0.15.7 ediware**20080521170026] { hunk ./CHANGELOG 1 +Version 0.15.7 +2008-05-21 +Avoid FLEXI-STREAMS when sending output (if possible) + hunk ./doc/index.html 149 -current version is 0.15.6. +current version is 0.15.7. hunk ./doc/index.html 298 +
  • "Lisp for the Web" by Adam Petersen. hunk ./doc/index.html 1135 +

    +If you want to use non-ASCII characters here, look at Christian +Haselbach's CL-RFC2047 +library. +See here +for a code example. hunk ./doc/index.html 2633 -$Header: /usr/local/cvsrep/hunchentoot/doc/index.html,v 1.141 2008/04/09 08:17:50 edi Exp $ +$Header: /usr/local/cvsrep/hunchentoot/doc/index.html,v 1.144 2008/05/21 14:38:50 edi Exp $ hunk ./headers.lisp 2 -;;; $Header: /usr/local/cvsrep/hunchentoot/headers.lisp,v 1.29 2008/03/27 08:08:31 edi Exp $ +;;; $Header: /usr/local/cvsrep/hunchentoot/headers.lisp,v 1.30 2008/05/21 14:38:47 edi Exp $ hunk ./headers.lisp 247 - (write-sequence content *hunchentoot-stream*))) + (write-sequence content (typecase content + (string *hunchentoot-stream*) + ;; if the content is binary, we + ;; don't need FLEXI-STREAM's + ;; encoding capabilities + (otherwise (flexi-stream-stream *hunchentoot-stream*)))))) hunk ./hunchentoot.asd 2 -;;; $Header: /usr/local/cvsrep/hunchentoot/hunchentoot.asd,v 1.61 2008/04/09 08:17:48 edi Exp $ +;;; $Header: /usr/local/cvsrep/hunchentoot/hunchentoot.asd,v 1.62 2008/05/21 14:38:47 edi Exp $ hunk ./hunchentoot.asd 37 -(defvar *hunchentoot-version* "0.15.6" +(defvar *hunchentoot-version* "0.15.7" }