r2656: initial import
[lml.git] / package.cl
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.cl,v 1.1 2002/09/16 01:13: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   (:nicknames #:lml)
23   (:export
24
25    ;; lml.cl
26    #:reset-indent
27    #:with
28    #:print-page
29    #:page
30    #:lml-print
31    #:lml-print-date
32
33    ;; files.cl
34    #:with-dir
35    #:process-dir
36    #:lml-load
37    #:include-file
38
39    ;; stdsite.cl
40    #:print-std-page
41    #:std-page
42    #:std-body
43    #:std-head
44    #:titled-pre-section
45    
46    ;; downloads.cl
47    #:std-dl-page
48    #:full-dl-page
49 ))