r3393: *** empty log message ***
[lml.git] / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.cl
6 ;;;; Purpose:       Package file for Lisp Markup Language
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.3 2002/11/12 17:35:49 kevin Exp $
11 ;;;;
12 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML 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
22   (:use #:common-lisp)
23   (:nicknames #:lml)
24   (:export
25
26    ;; lml.cl
27    #:reset-indent
28    #:with
29    #:print-page
30    #:page
31    #:lml-print
32    #:lml-print-date
33    #:*html-output*
34    
35    ;; files.cl
36    #:with-dir
37    #:process-dir
38    #:lml-load
39    #:include-file
40
41    ;; stdsite.cl
42    #:print-std-page
43    #:std-page
44    #:std-body
45    #:std-head
46    #:titled-pre-section
47    
48    ;; downloads.cl
49    #:std-dl-page
50    #:full-dl-page
51
52    ;; utils.cl
53    #:lml-quit
54    #:lml-cwd
55 ))