packages.lisp
 1 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
2 ;;; $Header: /usr/local/cvsrep/cl-who/packages.lisp,v 1.21 2009/01/26 11:10:49 edi Exp $
3
4 ;;; Copyright (c) 2003-2009, Dr. Edmund Weitz. All rights reserved.
5
6 ;;; Redistribution and use in source and binary forms, with or without
7 ;;; modification, are permitted provided that the following conditions
8 ;;; are met:
9
10 ;;; * Redistributions of source code must retain the above copyright
11 ;;; notice, this list of conditions and the following disclaimer.
12
13 ;;; * Redistributions in binary form must reproduce the above
14 ;;; copyright notice, this list of conditions and the following
15 ;;; disclaimer in the documentation and/or other materials
16 ;;; provided with the distribution.
17
18 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
19 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 ;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30 (in-package :cl-user)
31
32 (defpackage :cl-who
33 (:use :cl)
34 (:nicknames :who)
35 #+:sbcl (:shadow :defconstant)
36 #+:sb-package-locks (:lock t)
37 (:export :*attribute-quote-char*
38 :*escape-char-p*
39 :*prologue*
40 :*downcase-tokens-p*
41 :*html-no-indent-tags*
42 :*html-empty-tags*
43 :*html-empty-tag-aware-p*
44 :conc
45 :convert-attributes
46 :convert-tag-to-string-list
47 :esc
48 :escape-char
49 :escape-char-all
50 :escape-char-iso-8859-1
51 :escape-char-minimal
52 :escape-char-minimal-plus-quotes
53 :escape-string
54 :escape-string-all
55 :escape-string-iso-8859-1
56 :escape-string-minimal
57 :escape-string-minimal-plus-quotes
58 :fmt
59 :htm
60 :html-mode
61 :str
62 :with-html-output
63 :with-html-output-to-string))
64
65 (pushnew :cl-who *features*)