Re: [spr28409] HTMLGEN: arguments can't be adjustable strings?

John Foderaro <[email protected]> Tue, 23 Dec 2003 08:03:43 -0800
Newsgroups gmane.lisp.open-source.franz
Message-ID <[email protected]>

this bug was fixed on 10/31/2003
from the htmlgen/ChangeLog

2003-10-31  John Foderaro  <[email protected]>

	* htmlgen.cl: remove restriction on simple-string in :princ code



testing your case:

cl-user(1): (require :aserve)
; Fast loading /paw/cl.linux/src/code/aserve.fasl
;   Fast loading /paw/cl.linux/src/code/acldns.fasl
;;; Installing acldns patch, version 5
t
cl-user(2): (let ((zero (make-array 0
                             :element-type 'character
			     :adjustable t
                             :fill-pointer t)))
                (vector-push-extend #\0 zero)
		(net.html.generator:html-stream 
		 *standard-output*
		 ((:table :border zero))))
<table border="0"></table>
"</table>"
cl-user(3): 





 However there hasn't been an aserve release 
since 10/27/03 (version 1.2.33).

 I'll create a new 1.2.34 release today and release the source
on our ftp site, but it may take a few
days to get an official aserve patch out (in case if you want to use
a binary patch rather than the source).

 btw: I like htmlgen precisely *because* it integrates so smoothly
with the rest of the language.