Files
CXML/xml/package.lisp
dlichteblau 41ee5ae24d Added new functions attribute*, unparse-attribute, and macro with-element*,
with-namespace* to the SAX generation wrapper API.
2007-05-01 20:06:59 +00:00

97 lines
1.9 KiB
Common Lisp

;;;; package.lisp -- Paketdefinition
;;;;
;;;; This file is part of the CXML parser, released under Lisp-LGPL.
;;;; See file COPYING for details.
(in-package :cl-user)
(defpackage :cxml
(:use :cl :runes :runes-encoding :trivial-gray-streams)
(:export
;; xstreams
#:make-xstream
#:make-rod-xstream
#:close-xstream
#:read-rune
#:peek-rune
#:unread-rune
#:fread-rune
#:fpeek-rune
#:xstream-position
#:xstream-line-number
#:xstream-column-number
#:xstream-plist
#:xstream-encoding
;; xstream controller protocol
#:read-octects
#:xstream/close
#:attribute-namespace-uri
#:attribute-local-name
#:attribute-qname
#:attribute-value
#:parse-file
#:parse-stream
#:parse-rod
#:parse-octets
#:parse-empty-document
#:make-octet-vector-sink
#:make-octet-stream-sink
#:make-rod-sink
#+rune-is-character #:make-string-sink
#+rune-is-character #:make-character-stream-sink
;; See comment in runes/package.lisp
;; #-rune-is-character
#:make-string-sink/utf8
;; #-rune-is-character
#:make-character-stream-sink/utf8
#:with-xml-output
#:with-namespace
#:with-element
#:with-element*
#:attribute
#:attribute*
#:unparse-attribute
#:cdata
#:text
#:xml-parse-error
#:well-formedness-violation
#:validity-error
#:parse-dtd-file
#:parse-dtd-stream
#:make-validator
#:*cache-all-dtds*
#:*dtd-cache*
#:getdtd
#:remdtd
#:make-dtd-cache
#:clear-dtd-cache
#:make-extid
#:*catalog*
#:*prefer*
#:make-catalog
#:resolve-uri
#:resolve-extid
#:make-recoder
#:make-namespace-normalizer
#:make-whitespace-normalizer
#:rod-to-utf8-string
#:utf8-string-to-rod
#:broadcast-handler
#:broadcast-handler-handlers
#:make-broadcast-handler
#:sax-proxy
#:proxy-chained-handler
#:make-source))