X-Git-Url: http://git.kpe.io/?p=lml2.git;a=blobdiff_plain;f=package.lisp;h=a1a4420e80fa2c0310b915fe44b955ffc50bb77b;hp=db700bc0870a7f7e2d62cd318a975996fea3b81d;hb=5c64ed6c6024c426b9922f5d3d6f92134fe91cf5;hpb=a5621a5bf235313916f437a55d9998418ee26f5a diff --git a/package.lisp b/package.lisp index db700bc..a1a4420 100644 --- a/package.lisp +++ b/package.lisp @@ -7,36 +7,35 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: June 2003 ;;;; -;;;; $Id: package.lisp,v 1.1 2003/06/20 04:12:29 kevin Exp $ +;;;; $Id$ ;;;; -;;;; This file, part of LML2, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of LML2, is Copyright (c) 2000-2003 by Kevin Rosenberg. +;;;; Rights of modification and redistribution are in the LICENSE file. ;;;; -;;;; LML2 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-2 - (:use #:common-lisp) + (:use #:common-lisp #:kmrcl) (:nicknames #:lml2) (:export + ;; data.lisp + #:*html-stream* + ;; base.lisp - #:*print-spaces* - #:reset-indent - #:with - #:print-page - #:page + #:html-file-page + #:dtd-prologue #:lml-format #:lml-print #:lml-princ #:lml-write-char #:lml-write-string #:lml-print-date - #:*html-output* - + #:alink + #:alink-c + ;; htmlgen.lisp #:html #:html-print #:html-print-subst #:html-print-list #:html-print-list-subst #:html-stream #:*html-stream* @@ -46,7 +45,7 @@ #:with-dir #:process-dir #:lml-load - #:include-file + #:insert-file ;; stdsite.lisp #:print-std-page @@ -62,4 +61,7 @@ ;; utils.lisp #:lml-quit #:lml-cwd + + ;; apache-dir + #:write-html-apache-directory ))