Namespace node copying
[xuriella.git] / package.lisp
blob76ac29ddd47cbfad04880cb6498556dab0bff239
1 (defpackage :xsl
2 (:nicknames :xslt)
3 (:use)
4 (:export #:template
5 #:apply-templates
6 #:apply-imports
7 #:call-template
8 #:element
9 #:literal-element
10 #:literal-attribute
11 #:attribute
12 #:text
13 #:unescaped-text
14 #:processing-instruction
15 #:comment
16 #:copy
17 #:value-of
18 #:unescaped-value-of
19 #:number
20 #:for-each
21 #:with-base-uri
22 #:copy-of
23 #:message
24 #:terminate
25 #:fallback
26 #:use-attribute-sets
28 ;; Extensions
29 #:document ;fixme: incompatible with XSLT 2.0
31 ;; xuriella internals
32 #:with-namespaces
33 #:with-excluded-namespaces
34 #:with-duplicates-check))
36 (defpackage :xuriella
37 (:use :cl)
38 (:export #:parse-stylesheet
39 #:apply-stylesheet
40 #:make-parameter)
41 (:import-from :xpath-protocol #:define-default-method)
42 (:documentation
43 "Empty is an empty example.
45 @begin[Empty section]{section}
46 I am a blind text.
48 @end{section}"))