[cxml-cvs] CVS update: cxml/doc/using.html
David Lichteblau
dlichteblau at common-lisp.net
Tue Dec 27 00:21:33 UTC 2005
Update of /project/cxml/cvsroot/cxml/doc
In directory common-lisp.net:/tmp/cvs-serv11709/doc
Modified Files:
using.html
Log Message:
utf8-dom
Date: Tue Dec 27 01:21:30 2005
Author: dlichteblau
Index: cxml/doc/using.html
diff -u cxml/doc/using.html:1.6 cxml/doc/using.html:1.7
--- cxml/doc/using.html:1.6 Mon Dec 26 23:04:10 2005
+++ cxml/doc/using.html Tue Dec 27 01:21:30 2005
@@ -323,11 +323,10 @@
builder, since DOM is specified to use UTF-16.
</p>
<p>
- <div class="def">Function CXML:MAKE-RECODER (chained-handler &optional recoder-fn)</div>
+ <div class="def">Function CXML:MAKE-RECODER (chained-handler recoder-fn)</div>
Return a SAX handler which passes all events on to
<tt>chained-handler</tt> after converting all strings and rods
- using <tt>recoder-fn</tt>, a function of one argument which
- defaults to <tt>runes:rod-string</tt>.
+ using <tt>recoder-fn</tt>, a function of one argument.
</p>
<p>
<b>Example.</b> In a Lisp which ordinarily would use octet vector rods:
@@ -337,7 +336,7 @@
<p>
Use a SAX recoder to get strings instead::
</p>
- <pre>CL-USER(17): (parse-string "<test/>" (cxml:make-recoder (cxml-xmls:make-xmls-builder)))
+ <pre>CL-USER(17): (parse-string "<test/>" (cxml:make-recoder (cxml-xmls:make-xmls-builder) 'runes:rod-string))
("test" NIL)</pre>
<a name="dtdcache"/>
More information about the Cxml-cvs
mailing list