X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;fp=package.lisp;h=f71ee39101910e5d8780d7f7ffc570e1a368b18a;hb=e741d288978f9a65554235ecb3115db8eef60b54;hp=0000000000000000000000000000000000000000;hpb=f3088cd6e99688e7bc3d37bb6c5a58e08c958611;p=lml.git diff --git a/package.lisp b/package.lisp new file mode 100644 index 0000000..f71ee39 --- /dev/null +++ b/package.lisp @@ -0,0 +1,54 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: package.cl +;;;; Purpose: Package file for Lisp Markup Language +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Aug 2002 +;;;; +;;;; $Id: package.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ +;;;; +;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; LML users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU General Public License v2 +;;;; (http://www.gnu.org/licenses/gpl.html) +;;;; ************************************************************************* + +(in-package :cl-user) + +(defpackage #:lisp-markup-language + (:use #:common-lisp) + (:nicknames #:lml) + (:export + + ;; lml.cl + #:reset-indent + #:with + #:print-page + #:page + #:lml-print + #:lml-print-date + + ;; files.cl + #:with-dir + #:process-dir + #:lml-load + #:include-file + + ;; stdsite.cl + #:print-std-page + #:std-page + #:std-body + #:std-head + #:titled-pre-section + + ;; downloads.cl + #:std-dl-page + #:full-dl-page + + ;; utils.cl + #:lml-quit + #:lml-cwd +))