From dlichteblau at common-lisp.net Sun Apr 22 13:23:54 2007 From: dlichteblau at common-lisp.net (dlichteblau) Date: Sun, 22 Apr 2007 09:23:54 -0400 (EDT) Subject: [cxml-cvs] CVS cxml Message-ID: <20070422132354.60DC66A004@common-lisp.net> Update of /project/cxml/cvsroot/cxml In directory clnet:/tmp/cvs-serv17056 Modified Files: cxml.asd Log Message: +
  • New class broadcast-handler as a generalization + of the older sax-proxy.
  • +
  • New class tapping-source, a klacks source that + relays events from an upstream klacks source unchanged, while also + emitting them as SAX events to a user-specified handler at the + same time.
  • + Fixed serialize-event to generate + start-prefix-mapping and end-prefix-mapping events. New function + map-current-namespace-declarations. --- /project/cxml/cvsroot/cxml/cxml.asd 2007/02/18 14:35:14 1.15 +++ /project/cxml/cvsroot/cxml/cxml.asd 2007/04/22 13:23:54 1.16 @@ -118,7 +118,8 @@ :components ((:file "package") (:file "klacks") - (:file "klacks-impl")) + (:file "klacks-impl") + (:file "tap-source")) :depends-on (:cxml-xml)) (asdf:defsystem :cxml-test From dlichteblau at common-lisp.net Sun Apr 22 13:23:54 2007 From: dlichteblau at common-lisp.net (dlichteblau) Date: Sun, 22 Apr 2007 09:23:54 -0400 (EDT) Subject: [cxml-cvs] CVS cxml/doc Message-ID: <20070422132354.E8A5716@common-lisp.net> Update of /project/cxml/cvsroot/cxml/doc In directory clnet:/tmp/cvs-serv17056/doc Modified Files: cxml.css index.xml klacks.xml sax.xml Log Message: +
  • New class broadcast-handler as a generalization + of the older sax-proxy.
  • +
  • New class tapping-source, a klacks source that + relays events from an upstream klacks source unchanged, while also + emitting them as SAX events to a user-specified handler at the + same time.
  • + Fixed serialize-event to generate + start-prefix-mapping and end-prefix-mapping events. New function + map-current-namespace-declarations. --- /project/cxml/cvsroot/cxml/doc/cxml.css 2006/08/20 11:48:58 1.6 +++ /project/cxml/cvsroot/cxml/doc/cxml.css 2007/04/22 13:23:54 1.7 @@ -10,10 +10,11 @@ background-color: #9c0000; border: solid #9c0000; border-top-width: 1px; - border-bottom-width: 0px; + border-bottom-width: 2px; border-left-width: 4px; border-right-width: 0px; - margin: 0em 2pt 1px 2em; + padding-left: 1px; + margin: 0em 2pt 0px 2em; } div.sidebar-title a { @@ -21,15 +22,14 @@ } div.sidebar-main { - background-color: #eeeeee; + background-color: #f7f7f7; border: solid #9c0000; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 4px; border-right-width: 0px; margin: 0em 2pt 1em 2em; - padding-top: 2px; - padding-left: 2px; + padding: 1em; } div.sidebar ul.main { --- /project/cxml/cvsroot/cxml/doc/index.xml 2007/03/04 21:04:11 1.4 +++ /project/cxml/cvsroot/cxml/doc/index.xml 2007/04/22 13:23:54 1.5 @@ -55,12 +55,20 @@
  • xml:base support (SAX and Klacks only, not yet used in DOM). See documentation here and here.
  • -
  • Fixed attributes to carry an lname even without when occurring +
  • New class broadcast-handler as a generalization + of the older sax-proxy.
  • +
  • New class tapping-source, a klacks source that + relays events from an upstream klacks source unchanged, while also + emitting them as SAX events to a user-specified handler at the + same time.
  • +
  • Changed attributes to carry an lname even when occurring without a namespace.
  • Klacks improvements: Incompatibly changed klacks:find-element and find-event to consider the current event as a result. Added klacks-error, klacks:expect, klacks:skip, - klacks:expecting-element.
  • + klacks:expecting-element. Fixed serialize-event to generate + start-prefix-mapping and end-prefix-mapping events. New function + map-current-namespace-declarations.

    rel-2007-02-18