[cxml-cvs] CVS update: cxml/doc/installation.html cxml/doc/using.html

David Lichteblau dlichteblau at common-lisp.net
Sun Nov 27 20:49:13 UTC 2005


Update of /project/cxml/cvsroot/cxml/doc
In directory common-lisp.net:/tmp/cvs-serv19554/doc

Modified Files:
	installation.html using.html 
Log Message:
zeilennummern fuer den ganzen stack ausgeben

Date: Sun Nov 27 21:49:11 2005
Author: dlichteblau

Index: cxml/doc/installation.html
diff -u cxml/doc/installation.html:1.2 cxml/doc/installation.html:1.3
--- cxml/doc/installation.html:1.2	Sat Nov 26 22:48:16 2005
+++ cxml/doc/installation.html	Sun Nov 27 21:49:11 2005
@@ -131,11 +131,14 @@
       with cxml yet.  The <tt>ant</tt> step is necessary to run the DOM
       tests.
     </p>
-    <p>Usage and expected output:</p>
+    <p>Usage:</p>
     <pre>* (xmlconf:run-all-tests "/path/to/2001/XML-Test-Suite/xmlconf/")
-0/556 tests failed; 1606 tests were skipped
 * (domtest:run-all-tests "/path/to/2001/DOM-Test-Suite/")
-0/449 tests failed; 71 tests were skipped</pre>
+</pre>
+    <p>
+      To compare your results with known output, refer to the files
+      <tt>XMLCONF</tt> and <tt>DOMTEST</tt> in the cxml distribution.
+    </p>
 
     <p>
       <i>fixme</i>: Add an explanation of xml/sax-tests here.


Index: cxml/doc/using.html
diff -u cxml/doc/using.html:1.1 cxml/doc/using.html:1.2
--- cxml/doc/using.html:1.1	Sat Jun 25 15:56:54 2005
+++ cxml/doc/using.html	Sun Nov 27 21:49:11 2005
@@ -161,6 +161,23 @@
     </p>
     <pre>(cxml:parse-file "test.xml" (dom:make-dom-builder))</pre>
 
+    <p>
+      <div class="def">Condition class CXML:XML-PARSE-ERROR ()</div>
+      Superclass of all conditions signalled by the CXML parser.
+    </p>
+    <p>
+      <div class="def">Condition class CXML:WELL-FORMEDNESS-VIOLATION (cxml:xml-parse-error)</div>
+      This condition is signalled for all well-formedness violations.
+      (Note that, when parsing document that is not well-formed in validating
+      mode, the parser might encounter validity errors before detecting
+      well-formedness problems, so also be prepared for <tt>validity-error</tt>
+      in that situation.)
+    </p>
+    <p>
+      <div class="def">Condition class CXML:VALIDITY-ERROR (cxml:xml-parse-error)</div>
+      Reports the violation of a validity constraint.
+    </p>
+
     <a name="serialization"/>
     <h3>Serialization</h3>
     <p>




More information about the Cxml-cvs mailing list