[cxml-cvs] CVS update: cxml/README.html cxml/cxml.asd
David Lichteblau
dlichteblau at common-lisp.net
Wed Dec 28 23:11:19 UTC 2005
Update of /project/cxml/cvsroot/cxml
In directory common-lisp.net:/tmp/cvs-serv577
Modified Files:
README.html cxml.asd
Log Message:
sink reorganization
Date: Thu Dec 29 00:11:18 2005
Author: dlichteblau
Index: cxml/README.html
diff -u cxml/README.html:1.14 cxml/README.html:1.15
--- cxml/README.html:1.14 Tue Dec 27 21:01:10 2005
+++ cxml/README.html Thu Dec 29 00:11:18 2005
@@ -10,6 +10,49 @@
<p>
<a href="README.html">CXML Homepage</a>
</p>
+ <ul class="main">
+ <li>
+ <a href="doc/installation.html">Installing Closure XML</a>
+ <ul class="sub">
+ <li><a href="doc/installation.html#download"><b>Download</b></a></li>
+ <li><a href="doc/installation.html#implementations">Implementation-specific notes</a></li>
+ <li><a href="doc/installation.html#compilation">Compilation</a></li>
+ <li><a href="doc/installation.html#tests">Tests</a></li>
+ </ul>
+ </li>
+ <li>
+ <ul class="hack">
+ <li>
+ <a href="doc/using.html#quickstart"><b>Quick-Start Example</b></a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <a href="doc/using.html">SAX parser</a>
+ <ul class="sub">
+ <li><a href="doc/using.html#parser">Parsing and Validating</a></li>
+ <li><a href="doc/using.html#serialization">Serialization</a></li>
+ <li><a href="doc/using.html#misc">Miscellaneous SAX handlers</a></li>
+ <li><a href="doc/using.html#rods">Recoders</a></li>
+ <li><a href="doc/using.html#dtdcache">Caching of DTD Objects</a></li>
+ <li><a href="doc/using.html#catalogs">XML Catalogs</a></li>
+ <li><a href="doc/using.html#sax">SAX Interface</a></li>
+ </ul>
+ </li>
+ <li>
+ <a href="doc/using.html">DOM implementation</a>
+ <ul class="sub">
+ <li><a href="doc/dom.html#parser">Parsing with the DOM builder</a></li>
+ <li><a href="doc/dom.html#serialization">Serialization</a></li>
+ <li><a href="doc/dom.html#mapping">DOM/Lisp mapping</a></li>
+ </ul>
+ </li>
+ <li>
+ <ul class="hack">
+ <li><a href="doc/xmls-compat.html">XMLS Builder</a></li>
+ </ul>
+ </li>
+ </ul>
</div>
<h1>Closure XML Parser</h1>
@@ -67,6 +110,7 @@
<li>Implemented DOM 2 Core.</li>
<li>Error handling overhaul.</li>
<li>UTF-8 string support in DOM on Lisps without Unicode characters.</li>
+ <li>Sink API has been changed.</li>
<li>Support internal subset serialization.</li>
<li>Gilbert Baumann has clarified the license as Lisp-LGPL.</li>
<li>Use trivial-gray-streams.</li>
Index: cxml/cxml.asd
diff -u cxml/cxml.asd:1.8 cxml/cxml.asd:1.9
--- cxml/cxml.asd:1.8 Tue Dec 27 01:21:27 2005
+++ cxml/cxml.asd Thu Dec 29 00:11:18 2005
@@ -51,7 +51,8 @@
(:file "encodings" :depends-on ("package"))
(:file "encodings-data" :depends-on ("package" "encodings"))
(:file "xstream"
- :depends-on ("package" "definline" "syntax" "encodings-data"))))
+ :depends-on ("package" "definline" "syntax" "encodings-data"))
+ (:file "ystream" :depends-on (runes))))
(asdf:defsystem :cxml-xml
:default-component-class closure-source-file
@@ -106,7 +107,6 @@
(utf8dom-file utf8-impl :pathname "dom-impl" :depends-on ("package"))
#+rune-is-integer
(utf8dom-file utf8-builder :pathname "dom-builder" :depends-on (utf8-impl))
- (:file "unparse" :depends-on ("package"))
(:file "dom-sax" :depends-on ("package")))
:depends-on (:cxml-xml))
More information about the Cxml-cvs
mailing list