From dlichteblau at common-lisp.net Sun Aug 5 11:15:51 2007 From: dlichteblau at common-lisp.net (dlichteblau) Date: Sun, 5 Aug 2007 07:15:51 -0400 (EDT) Subject: [cxml-cvs] CVS cxml/xml Message-ID: <20070805111551.3D9AB1703E@common-lisp.net> Update of /project/cxml/cvsroot/cxml/xml In directory clnet:/tmp/cvs-serv29116 Modified Files: xml-parse.lisp Log Message: fixed the DTD/SAX fix --- /project/cxml/cvsroot/cxml/xml/xml-parse.lisp 2007/07/22 19:43:27 1.71 +++ /project/cxml/cvsroot/cxml/xml/xml-parse.lisp 2007/08/05 11:15:48 1.72 @@ -1095,9 +1095,10 @@ (let ((e (find-element element-name dtd))) (cond ((null e) - (setf (gethash element-name (dtd-elements dtd)) - (make-elmdef :name element-name :content content-model)) - (sax:element-declaration (handler *ctx*) element-name content-model)) + (prog1 + (setf (gethash element-name (dtd-elements dtd)) + (make-elmdef :name element-name :content content-model)) + (sax:element-declaration (handler *ctx*) element-name content-model))) ((null content-model) e) (t From dlichteblau at common-lisp.net Sun Aug 5 11:16:15 2007 From: dlichteblau at common-lisp.net (dlichteblau) Date: Sun, 5 Aug 2007 07:16:15 -0400 (EDT) Subject: [cxml-cvs] CVS cxml/xml Message-ID: <20070805111615.728021E07C@common-lisp.net> Update of /project/cxml/cvsroot/cxml/xml In directory clnet:/tmp/cvs-serv29196 Modified Files: unparse.lisp Log Message: fixed canonical output of processing instructions --- /project/cxml/cvsroot/cxml/xml/unparse.lisp 2007/07/22 19:44:01 1.19 +++ /project/cxml/cvsroot/cxml/xml/unparse.lisp 2007/08/05 11:16:15 1.20 @@ -423,9 +423,12 @@ (unless (rod-equal target '#.(string-rod "xml")) (%write-rod '#.(string-rod "") sink))) (defmethod sax:start-cdata ((sink sink)) From dlichteblau at common-lisp.net Sun Aug 5 12:01:28 2007 From: dlichteblau at common-lisp.net (dlichteblau) Date: Sun, 5 Aug 2007 08:01:28 -0400 (EDT) Subject: [cxml-cvs] CVS cxml/doc Message-ID: <20070805120128.F17B7560A2@common-lisp.net> Update of /project/cxml/cvsroot/cxml/doc In directory clnet:/tmp/cvs-serv10048 Modified Files: index.xml Log Message: new release --- /project/cxml/cvsroot/cxml/doc/index.xml 2007/07/22 19:59:26 1.15 +++ /project/cxml/cvsroot/cxml/doc/index.xml 2007/08/05 12:01:23 1.16 @@ -51,7 +51,7 @@

Recent Changes

-

rel-2007-xx-yy

+

rel-2007-08-05