
19 Feb
2008
19 Feb
'08
6:04 p.m.
Hi, Quoting Chaitanya Gupta (mail@chaitanyagupta.com):
CL-USER> (with-input-from-string (s "<foo>bar</foo>") (cxml:parse s (cxml-dom:make-dom-builder))) I tried this on ACL 8.0 and CXML is from CVS. Shouldn't string streams be parseable?
parsing from character streams is a reasonable feature suggestion, but currently not implemented. When parsing from streams, the stream must have element-type (unsigned-byte 8). However, you can parse from a string directly. Is that good enough for now? (cxml:parse "<foo>bar</foo>" (cxml-dom:make-dom-builder)) d.