r3629: *** empty log message ***
[kmrcl.git] / package.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package definition for kmrcl package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.17 2002/12/14 18:51:53 kevin Exp $
11 ;;;;
12 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; KMRCL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20
21 (in-package :cl-user)
22
23 (defpackage #:kmrcl
24   (:nicknames :kl)
25   (:use :common-lisp)
26   (:export #:let-if
27            #:let-when
28            #:aif
29           #:awhen
30           #:awhile
31           #:aand
32           #:acond
33           #:alambda
34           #:it
35           #:mac
36           #:show
37           #:show-variables
38           #:show-functions
39           #:ensure-integer
40           #:mklist
41           #:filter
42           #:appendnew
43           #:memo-proc
44           #:memoize
45           #:defun-memo
46           #:_f
47           #:compose
48           #:until
49           #:while
50           #:for
51           #:mapappend
52           #:mapcar-append-string
53           #:mapcar2-append-string
54           #:delimited-string-to-list
55           #:list-to-delimited-string
56           #:string-append
57           #:count-string-words
58           #:substitute-string-for-char
59           #:string-trim-last-character
60           #:string-hash
61           #:string-not-null?
62           #:whitespace?
63           #:not-whitespace?
64           #:string-ws?
65           #:string-invert
66           #:indent-spaces
67           #:print-list
68           #:print-rows
69           #:file-subst
70           #:stream-subst
71           #:remove-tree-if
72           #:find-tree
73           #:with-each-file-line
74           #:with-each-stream-line
75           #:print-file-contents
76           #:read-file-to-string
77           #:read-file-to-strings
78           #:add-sql-quotes
79           #:escape-backslashes
80           #:remove-keyword
81           #:remove-keywords
82           #:in
83           #:mean
84           #:with-gensyms
85
86           ;; symbols.lisp
87           #:ensure-keyword
88           #:concat-symbol
89           #:concat-symbol-pkg
90
91           ;; From attrib-class.lisp
92           #:attributes-class
93           #:slot-attribute
94
95           #:generalized-equal
96           
97           ;; From buffered input
98           
99           #:make-fields-buffer
100           #:read-buffered-fields
101
102           #:pretty-date
103           #:date-string
104
105           ;; From random.lisp
106           #:seed-random-generator
107           #:random-choice
108
109           ;; From telnet-server.lisp
110           #:start-telnet-server   
111
112           ;; From web-utils
113           #:*base-url*
114           #:base-url!
115           #:make-url
116           #:*standard-html-header*
117           #:*standard-xhtml-header*
118           #:*standard-xml-header*
119           #:user-agent-ie-p
120
121           ;; From xml-utils
122           #:wrap-with-xml
123           #:xml-tag-contents
124           #:positions-xml-tag-contents
125           #:xml-cdata
126           
127           ;; From console
128           *console-msgs*
129           cmsg
130           cmsg-c
131           cmsg-add
132           cmsg-remove
133           fixme
134           ))
135
136
137