r5163: *** empty log message ***
[lml2.git] / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package file for Lisp Markup Language 2
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  June 2003
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.1 2003/06/20 04:12:29 kevin Exp $
11 ;;;;
12 ;;;; This file, part of LML2, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML2 users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
21 (defpackage #:lisp-markup-language-2
22   (:use #:common-lisp)
23   (:nicknames #:lml2)
24   (:export
25
26    ;; base.lisp
27    #:*print-spaces*
28    #:reset-indent
29    #:with
30    #:print-page
31    #:page
32    #:lml-format
33    #:lml-print
34    #:lml-princ
35    #:lml-write-char
36    #:lml-write-string
37    #:lml-print-date
38    #:*html-output*
39
40    ;; htmlgen.lisp
41    #:html #:html-print #:html-print-subst #:html-print-list #:html-print-list-subst
42    #:html-stream #:*html-stream*
43
44
45    ;; files.lisp
46    #:with-dir
47    #:process-dir
48    #:lml-load
49    #:include-file
50
51    ;; stdsite.lisp
52    #:print-std-page
53    #:std-page
54    #:std-body
55    #:std-head
56    #:titled-pre-section
57    
58    ;; downloads.lisp
59    #:std-dl-page
60    #:full-dl-page
61
62    ;; utils.lisp
63    #:lml-quit
64    #:lml-cwd
65 ))