[s-xml-cvs] CVS update: public_html/S-XML.html
Sven Van Caekenberghe
scaekenberghe at common-lisp.net
Wed Jun 30 19:09:43 UTC 2004
Update of /project/s-xml/cvsroot/public_html
In directory common-lisp.net:/tmp/cvs-serv14647
Modified Files:
S-XML.html
Log Message:
updated API to new exports
Date: Wed Jun 30 12:09:43 2004
Author: scaekenberghe
Index: public_html/S-XML.html
diff -u public_html/S-XML.html:1.1 public_html/S-XML.html:1.2
--- public_html/S-XML.html:1.1 Fri Jun 11 06:25:04 2004
+++ public_html/S-XML.html Wed Jun 30 12:09:43 2004
@@ -46,6 +46,15 @@
<blockquote>Generate XML output to a string from a DOM of input-type (:lxml by default), optionally pretty printing (off by default)</blockquote>
<p>(<b>start-parse-xml</b> stream &optional (state (make-instance (quote xml-parser-state)))) <i>function</i></p>
<blockquote>Parse and return a toplevel XML element from stream, using parser state</blockquote>
+<p>(<b>xml-element-attribute</b> xml-element key) <i>function</i></p>
+<blockquote>Return the string value of the attribute with name the keyword :key
+ of xml-element if any, return null if not found</blockquote>
+<p>(setf (<b>xml-element-attribute</b> xml-element key) value) <i>function</i></p>
+<blockquote>Set the string value of the attribute with name the keyword :key of
+ xml-element, creating a new attribute if necessary or overwriting an
+ existing one, returning the value</blockquote>
+<p>(<b>xml-element-attributes</b> object) <i>function</i></p>
+<blockquote>Return the alist of attribute names and values dotted pairs from an xml-element struct</blockquote>
<p>(<b>xml-element-children</b> object) <i>function</i></p>
<blockquote>Return the list of children from an xml-element struct</blockquote>
<p>(<b>xml-element-name</b> object) <i>function</i></p>
More information about the S-xml-cvs
mailing list