r3797: Auto commit for Debian build
[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.4 2003/01/17 22:16:25 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    ;; base.lisp
27    #:reset-indent
28    #:with
29    #:print-page
30    #:page
31    #:lml-format
32    #:lml-print
33    #:lml-princ
34    #:lml-write-char
35    #:lml-print-date
36    #:*html-output*
37    
38    ;; files.lisp
39    #:with-dir
40    #:process-dir
41    #:lml-load
42    #:include-file
43
44    ;; stdsite.lisp
45    #:print-std-page
46    #:std-page
47    #:std-body
48    #:std-head
49    #:titled-pre-section
50    
51    ;; downloads.lisp
52    #:std-dl-page
53    #:full-dl-page
54
55    ;; utils.lisp
56    #:lml-quit
57    #:lml-cwd
58 ))