Fixed sort stability; nan comparisons
[xuriella.git] / package.lisp
blob296605f8db82f5a9880f7ffb42b02497ab16dcc4
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-extension-namespaces
35 #:with-duplicates-check))
37 (defpackage :xuriella
38 (:use :cl)
39 (:export #:parse-stylesheet
40 #:apply-stylesheet
41 #:make-parameter)
42 (:import-from :xpath-protocol #:define-default-method)
43 (:documentation
44 "Empty is an empty example.
46 @begin[Empty section]{section}
47 I am a blind text.
49 @end{section}"))