Initial revision

This commit is contained in:
david
2005-03-13 18:02:10 +00:00
commit d6ca7664f4
81 changed files with 19663 additions and 0 deletions

41
xml/package.lisp Normal file
View File

@ -0,0 +1,41 @@
(in-package :cl-user)
(defpackage :Encoding
(:use :glisp)
(:export
#:find-encoding
#:decode-sequence))
(defpackage :XML
(:use
:glisp
:encoding)
(: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-string) )